/* Header Css  */
.site-header {
	position: relative;
	width: 100%;
	z-index: 99;
	/* background: var(--body-color); */
}

.site-header::before {
	content: "";
	position: absolute;
	background-image: url(../img/header-top-img.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 30px;
	top: 0;
}

.site-header .mobile-header {
	position: fixed;
	width: 50%;
	height: 100vh;
	top: 0;
	right: 0;
	padding: 100px 40px 20px;
	background-color: var(--extra-color-1);
	min-height: 100%;
	transform: translateX(100%);
	transition: 0.2s;
	z-index: 9999;
}

.header-logo .logo-here {
	object-fit: cover;
	width: 100%;
	max-width: 270px;
}

.head-link {
	gap: 60px;
}

.head-link li:first-child {
	list-style: none;
	padding-left: 0px;
}

.contact-icon {
	background: var(--secondary-color);
	color: var(--primary-color);
	border: 1px solid transparent;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	animation: pulse-animation1 2s infinite;
	text-decoration: none;
}

.contact-icon i {
	font-size: 20px;
}

@keyframes pulse-animation1 {
	0% {
		box-shadow: 0 0 0 0px rgb(1, 83, 1, 0.2);
	}

	100% {
		box-shadow: 0 0 0 20px rgba(255, 255, 255, 0.1);
	}
}

@media (min-width: 1700px) {
	.container,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		max-width: 1600px;
	}
}

@media (max-width: 991px) {
	.site-header .mobile-header.active {
		transform: translateX(0);
	}
}

/* Header Css  */

/* banner Css  */
.banner {
	margin-top: -10px;
}
.banner::after {
	content: "";
	position: absolute;
	background-image: url(../img/banner-bottom.png);
	background-repeat: no-repeat;
	width: 80%;
	height: 100px;
	margin: auto;
	bottom: -16px;
	background-size: cover;
	z-index: 9;
	left: 0;
	right: 0;
}
.banner-inner-content {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
	z-index: 1;
}

.banner-wrapper {
	display: flex;
	justify-content: center;
	align-items: start;
}

.banner .swiper-banner {
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.banner .swiper-slide {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: start;
	align-items: center;
}

.banner .swiper-pagination {
	position: absolute;
	/* top: 0; */
	bottom: 180px;
	right: 30px;
	width: 130px;
	left: unset;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 50px;
	margin: auto;
	transform: rotate(48deg);
	height: 150px;
}

.swiper-line {
	position: relative;
}

.swiper-line::after {
	content: "";
	background-color: #fff;
	width: 70px;
	height: 2px;
	position: absolute;
	left: 40px;
	bottom: 4rem;
	transform: rotate(90deg);
	z-index: 99;
}

/* .banner .swiper-banner .swiper-button-prev {
    bottom: 140px;
    left: 8%;
    top: unset;
}

.banner .swiper-banner .swiper-button-next {
    right: unset;
    left: 16%;
    bottom: 140px;
    top: unset;
} */

.banner .swiper-banner .swiper-button-next:after,
.swiper-button-prev:after {
	font-size: 12px;
	color: var(--body-color);
}

.banner .swiper-pagination-bullet {
	padding: 0px 5px;
	border-radius: 0;
	width: auto;
	height: 30px;
	text-align: center;
	line-height: 30px;
	font-size: 19px;
	font-family: var(--primary-bold-font);
	color: var(--body-color);
	opacity: 1;
	background: transparent;
	position: relative;
	transition: 0.5s ease;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px !important;
}

.banner .swiper-pagination-bullet-active span.bullet-number {
	display: block;
	font-size: 34px;
	color: var(--extra-color-2);
	transform: rotate(311deg);
}

.banner .swiper-pagination-bullet-active:before {
	content: "";
	position: absolute;
	transform: rotate(-45deg);
	border-radius: 0;
}

.banner .swiper-pagination-bullet-active {
	color: var(--body-color);
	background: transparent;
	font-size: 32px;
	font-family: var(--primary-bold-font);
	right: 0px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 0px !important;
}

span.bullet-number {
	font-size: 12px;
	color: #fff;
	position: absolute;
	top: unset;
	/* display: none; */
	/* bottom: -20px; */
	transform: rotate(310deg);
	/* left: -10px; */
}

.banner-social-links {
	z-index: 9;
	height: fit-content;
	margin: auto;
}

.active-slide-number {
	display: inline-block;
	background-color: #f0f0f0;
	padding: 5px 10px;
	border-radius: 5px;
	margin-top: 10px;
	font-weight: bold;
}

.banner-icon {
	background: transparent;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 50%;
}

.banner-icon:hover {
	background: var(--secondary-color);
	color: var(--primary-color);
}

.heading-bg:before {
	content: "";
	position: absolute;
	background: linear-gradient(45deg, #4d99cd, transparent);
	width: 100%;
	height: 75px;
	z-index: -1;
	left: -10px;
	bottom: 0;
	top: 0;
	margin: auto;
}

/* .about-heading::after {
    content: "";
    position: absolute;
    background: var(--primary-color);
    width: 70px;
    height: 4px;
    display: block;
    bottom: 0px;
    left: -10px;
    border-radius: 2px;
} */

.scroll-down-wrapper {
	bottom: 20px;
	z-index: 99;
}

/* Banner Section End Here */

/* about-section Css  */

.about-section::before {
	content: "";
	position: absolute;
	background-image: url(../img/about-left-img.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 230px;
	height: 230px;
	bottom: 130px;
	left: 5rem;
	z-index: 999;
	animation-name: float_up_down;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.call_img {
	animation-name: float_up_down;
	animation-duration: 2s;
	animation-iteration-count: infinite;
	animation-timing-function: linear;
}

.cell-no:hover {
	color: var(--secondary-color);
}

.about_fig::before {
	content: "";
	position: absolute;
	background-color: var(--secondary-color);
	width: 740px;
	height: 740px;
	top: -15px;
	left: -19px;
	z-index: 99;
	border-radius: 50%;
	clip-path: inset(0 20% 0 0);
	transform: rotate(-40deg);
	animation: rotateAnimation 9s infinite linear;
}

.circle-wrapper {
	position: absolute;
	bottom: 0;
	top: 0;
	margin: auto;
	height: fit-content;
	z-index: 999;
	left: -100px;
}

.about_fig::after {
	content: "";
	position: absolute;
	width: 770px;
	height: 770px;
	top: -32px;
	left: -34px;
	border-radius: 50%;
	z-index: 9;
	transform: rotate(-60deg);
	clip-path: polygon(0% 0%, 80% 0%, 40% 100%, 0% 100%);
	/* background: #e3f0ed; */
	border: 2px dashed #a9abaf;
}

@keyframes float_up_down {
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-10px);
		/* Adjust the value for the float effect */
	}

	100% {
		transform: translateY(0);
	}
}

/* about-section Css  */

/* service-section Css */
.service_heading::before {
	content: "";
	position: absolute;
	background-color: var(--secondary-color);
	background-size: cover;
	width: 120px;
	height: 1px;
	left: -140px;
	top: 0;
	margin: auto;
	bottom: 0;
}

.service_heading::after {
	content: "";
	position: absolute;
	background-color: var(--secondary-color);
	background-size: cover;
	width: 120px;
	height: 1px;
	right: -140px;
	top: 0;
	margin: auto;
	bottom: 0;
}
.service-section {
	padding: 50px 0px 150px;
	margin: 100px 0;
}

.service-section::before {
	content: "";
	position: absolute;
	background-image: url(../img/service-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 95%;
	height: 100%;
	z-index: 1;
	top: 0;
}

.service-section::after {
	content: "";
	position: absolute;
	background-color: var(--secondary-color);
	background-size: cover;
	background-position: center;
	width: 30%;
	height: 1000px;
	z-index: -1;
	top: -3rem;
	right: 0;
}

.service_main_wrapper::before {
	content: "";
	position: absolute;
	background-image: url(../img/circle-img.png);
	background-size: cover;
	background-position: center;
	width: 150px;
	height: 150px;
	z-index: 1;
	top: 60px;
	left: -50px;
}

.service_main_wrapper::after {
	content: "";
	position: absolute;
	background-image: url(../img/circle-img.png);
	background-size: cover;
	background-position: center;
	width: 150px;
	height: 150px;
	z-index: 1;
	bottom: -210px;
	right: -100px;
}

.service-img-wrapper figure .img-fluid {
	border-radius: 0px;
}

/* service-section Css */

/* residential-section Css  */
.residential-section::before {
	content: "";
	position: absolute;
	background-image: url(../img/residential-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 100%;
	top: 0;
	z-index: -1;
}

@keyframes background-animate {
	0% {
		background-color: var(--secondary-color);
	}

	33% {
		background-color: var(--extra-color-4);
	}

	66% {
		background-color: var(--primary-color);
	}

	100% {
		background-color: var(--secondary-color);
	}
}

.residental_fig::before {
	content: "";
	position: absolute;
	background: var(--secondary-color);
	background-size: cover;
	width: 360px;
	height: 160px;
	left: -15px;
	bottom: -15px;
	border-radius: 30px;
	z-index: 1;
	animation: background-animate 3s ease-in-out infinite;
}

.residential_heading {
	opacity: 0.05;
}

.residentail-text {
	left: -70px;
	z-index: -1;
}

.residental_fig img.img-fluid {
	z-index: 9;
	position: relative;
}

@keyframes rotateAnimation {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.circle-wrap {
	top: -60px;
	left: -70px;
	z-index: -1;
}

.circle-wrap-one {
	bottom: -60px;
	right: -70px;
	z-index: -1;
}

.ml1 .letter {
	display: inline;
	/* line-height: 1em; */
}

.ml1 .text-wrapper {
	position: relative;
	display: inline-block;
	padding-top: 0.1em;
	padding-right: 0.05em;
	padding-bottom: 0.15em;
}

.ml14 .letters,
.ml14 .line,
.ml14 .letter {
	opacity: 1;
}

/* residential-section Css  */

/* client-section Css  */

.client-section {
	padding: 60px 0px 200px;
}

.client-section::before {
	content: "";
	position: absolute;
	background-image: url(../img/testi-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	/* background-position: center; */
	width: 1130px;
	height: 800px;
	top: 0;
	z-index: -1;
}

.client-section::after {
	content: "";
	position: absolute;
	background-image: url(../img/testi-right-img.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 510px;
	height: 710px;
	top: 0px;
	right: 0;
	z-index: -1;
}

.client-img-wrap .reviews-wrap .review-li {
	font-size: 12px;
}

.client-slider .slick-dots {
	bottom: -50px;
	left: 0;
	align-items: center;
	flex-direction: row;
	justify-content: center;
	top: unset;
	right: 0;
	row-gap: 0;
	gap: 10px;
	margin: auto;
	max-width: fit-content;
}

.client-slider .slick-dots li {
	background: var(--extra-color-2);
	border: 0;
	height: 5px;
	width: 60px;
	margin: 0 6px;
	transition: 0.4s ease;
	border-radius: 3px;
}

.client-slider .slick-dots li.slick-active {
	background: var(--extra-color-1);
	border-color: transparent;
	width: 90px;
}

.client-slider .slick-list.draggable {
	padding-top: 40px;
}

.testi-left-img {
	bottom: -75px;
	right: -18rem;
}

.testi-right-img {
	left: -250px;
}

.testi-commas {
	margin-top: -60px;
	margin-right: 190px;
}

.img-icon-span {
	background: #0097a7;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}

.review_img {
	bottom: 150px;
	right: -40px;
	z-index: 9;
}

/* client-section Css  */

/* .contact-section {
    padding: 100px 0px 68px;
} */

.contact-section::before {
	content: "";
	position: absolute;
	background-image: url(../img/contact-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 1000px;
	bottom: 0;
	z-index: -1;
}

/* footer Css  */

.site-footer {
	padding: 100px 0px 10px;
	background-position: top;
	background-image: url(../img/footer-bg.png);
}

.logo-wrap {
	position: relative;
	padding-left: 8px; /* space for fake border */
}

.logo-wrap::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	left: -40px;
	height: 100%;
	width: 2px;
	background: linear-gradient(
		to bottom,
		#e0e0e00f,
		/* light top */ #3e3c3c 70%,
		/* dark center */ #e0e0e00f /* light bottom */
	);
	border-radius: 4px;
}

.logo-wrap::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: -40px;
	height: 100%;
	width: 2px;
	background: linear-gradient(
		to bottom,
		#e0e0e00f,
		/* light top */ #3e3c3c 70%,
		/* dark center */ #e0e0e00f /* light bottom */
	);
	border-radius: 4px;
}

/* footer Css  */
