/*** tailwind override ****/
html {
	scroll-behavior: smooth;
}

body,
html {
	font-family: "Montserrat", sans-serif;
	margin: 0;
	padding: 0;
}

main > section {
	scroll-margin-top: 89px;
}

.fadeUp {
	opacity: 0;
	transform: translateY(30px);
	animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* Contact form submit button – disabled state */
#contact-submit:disabled {
	opacity: 0.6;
	cursor: not-allowed;
	pointer-events: none;
}

a:hover,
a:focus {
	text-decoration: none;
}

.container {
	width: 100%;
	max-width: 1170px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 15px;
	padding-left: 15px;
}

@media (max-width: 767px) {
	.container.px-0 {
		padding: 0;
	}
}

@media (min-width: 768px) {
	.container {
		width: 750px;
	}
}

@media (min-width: 992px) {
	.container {
		width: 970px;
	}
	main > section {
		scroll-margin-top: 65px;
	}
}

@media (min-width: 1200px) {
	.container {
		width: 1170px;
	}
}
.accordion-content {
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.5s ease-out;
}

/*--- hero wrapper --- */
.heroWrapper .owl-carousel {
	position: relative;
}

.heroWrapper .owl-carousel .slide1 {
	background-image: url("../images/banner01.jpg");
	/* background-size: cover;
	background-position: center bottom; */
}

.heroWrapper .owl-carousel .slide2 {
	background-image: url("../images/banner02.jpg");
	/* background-size: cover;
	background-position: center bottom; */
}

.heroWrapper .owl-carousel .slide3 {
	background-image: url("../images/banner03.jpg");
	/* background-size: cover;
	background-position: center bottom; */
}

.heroWrapper .owl-carousel button.owl-prev {
	position: absolute;
	left: 15px;
	top: calc(50% - 23px);
	height: 46px;
	width: 36px;
	background: url("../images/ic_slider_arrow.png");
	background-size: 14px auto;
	background-position: center;
	background-repeat: no-repeat;
}

.heroWrapper .owl-carousel button.owl-prev span {
	display: none;
}

.heroWrapper .owl-carousel button.owl-next {
	position: absolute;
	right: 15px;
	top: calc(50% - 23px);
	height: 46px;
	width: 36px;
	background: url("../images/ic_slider_arrow.png");
	background-size: 14px auto;
	background-position: center;
	background-repeat: no-repeat;
	/* border-radius: 36px; */
	-webkit-transform: rotate(180deg);
	transform: rotate(180deg);
}

.heroWrapper .owl-carousel button.owl-next span {
	display: none;
}
/*--- ./hero wrapper --- */

/* services */
.serviceWrapper {
	background: linear-gradient(to bottom, #d61b64 50%, #f6f1f2 40%);
}
@media (min-width: 768px) {
	.serviceWrapper {
		background: linear-gradient(to bottom, #d61b64 44%, #f6f1f2 40%);
	}
}
@media (min-width: 992px) {
	.serviceWrapper {
		background: linear-gradient(to right, #d61b64 50%, #f6f1f2 50%);
	}
}
/* ./ services */

/* testimonial */
.testimonialWrapper {
	background-image: url("../images/testimonial-bg.jpg");
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
}
.testimonialCarousel .owl-dots {
	margin-top: 16px;
	left: 0;
	right: 0;
	position: absolute;
	text-align: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	gap: 10px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.testimonialCarousel .owl-dots .owl-dot span {
	display: block;
	height: 12px;
	width: 12px;
	border: 2px solid #e8e8e8;
	background-color: #e8e8e8;
	border-radius: 12px;
	overflow: hidden;
}

.testimonialCarousel .owl-dots .owl-dot.active span {
	border-color: #d51a63;
	background-color: #d51a63;
}
/* ./testimonial */

/* Footer */
.footerWrapper {
	background-image: url("../images/footer-bg.jpg");
	background-size: cover;
	background-position: center;
}
/* ./footer */
