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

.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%;
}

.head-link {
	list-style: disc;
	font-size: 10px;
	gap: 60px;
}

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

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

.head-link li {
	padding-left: 30px;
}

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

@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-inner-content {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}

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

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

.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(--extra-color-1);
}

.scroll-down-wrapper {
	bottom: 170px;
	z-index: 9999;
}

.scroll-down-wrapper .scrolldown-btn {
	background: transparent;
	border-radius: 50%;
	width: 80px;
	height: 80px;
}

/* Banner Section End Here */

/* about-section Css  */

.about-section {
	padding: 100px 0px 68px;
}

.about-section::before {
	content: "";
	position: absolute;
	background-image: url(../img/about-left-img.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 220px;
	height: 240px;
	bottom: 160px;
	left: 0;
	z-index: -1;
}

.about-section::after {
	content: "";
	position: absolute;
	background-image: url(../img/about-right-img.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 210px;
	height: 240px;
	top: 0;
	bottom: -130px;
	margin: auto;
	right: 0;
	z-index: -1;
}

.about-badge-left {
	text-align: center;
	margin-top: -30px;
}

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

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

.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-animation 2s infinite;
	text-decoration: none;
}

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

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

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

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

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

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

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

/* about-section Css  */

/* service-section Css */

.service-section .service-slide:nth-child(odd) {
	transform: translateY(40px);
}

.service-section .slick-list.draggable .slick-track {
	padding: 50px 0;
}

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

/* service-section Css */

/* remodeling-section Css  */

.remdeling-wrapper {
	background-image: url(../img/remodeling-bg.png);
	/* padding: 0px; */
	padding: 0px 20px;
}

/* 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;
	bottom: 0px;
	top: 0;
	margin: auto;
	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  */

/* video-section Css  */

.video-section::before {
	content: "";
	position: absolute;
	background-image: url(../img/video-bg.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	height: 1120px;
	top: -24rem;
	z-index: -1;
}

.video-section .video-slider .video-slide {
	margin: 0px 70px;
}

.video-section
	.video-slider
	.video-slide.slick-current.slick-active.slick-center {
	transform: scale(1.1);
}

.video-section .video-slider .video-slide figure img.img-fluid {
	border: 4px solid var(--primary-color);
	border-radius: 26px;
}

.video-section
	.video-slider
	.video-slide.slick-current.slick-active.slick-center
	.video-figure-wrap
	img.img-fluid {
	box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.lending_text {
	font-size: 226px;
	line-height: 140px;
	opacity: 0.04;
}

/* video-section Css  */

.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;
}

/* contact-section Css  */

.contact-section::before {
	content: "";
	position: absolute;
	background-image: url(../img/contact-bottom-img.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 440px;
	height: 310px;
	bottom: -150px;
	left: 50px;
	z-index: 1;
}

/* contact-section Css  */

/* footer Css  */

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

/* footer Css  */
