/* 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%;
	/* max-width: 210px; */
}

.head-link {
	gap: 60px;
}

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

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

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

/* Laptop Responsive  */
@media (max-width: 1200px) {
	.head-link {
		gap: 40px;
	}

	.header-logo .logo-here {
		max-width: 220px;
	}
}

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

	.banner .banner-inner-content {
		padding-left: 0px;
	}
}

/* Mobile Responsive  */

@media (max-width: 576px) {
	.header-logo .logo-here {
		max-width: 160px;
	}
}

/* Mobile Responsive  */

/* Header Css  */

/* banner Css  */
.banner {
	margin-top: -40px;
}
.banner-inner-content {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}

.heading-bg {
	font-family: var(--secondary-regular-font);
}

.banner::after {
	content: "";
	position: absolute;
	background-image: url(../img/banner-bottom.png);
	background-repeat: no-repeat;
	width: 100%;
	height: 90px;
	bottom: -16px;
	background-size: cover;
	z-index: 9;
}

.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: 56px;
	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: 30px;
	bottom: 3rem;
	transform: rotate(90deg);
	z-index: 99;
}

.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(--secondary-color);
	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;
	padding-bottom: 20px;
}

.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: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	border-radius: 50%;
	position: relative;
	opacity: 0.2;
}

.banner-icon::after {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0px;
	left: 0px;
	border: 1px solid var(--extra-color-1);
	border-radius: 50%;
	width: 100%;
	z-index: 1;
	height: 100%;
	transform: rotate(311deg);
	clip-path: inset(0 50% 0 0);
	display: none;
}

.banner-icon:hover {
	background: #ebf4fe1c;
	color: var(--body-color);
	opacity: 1;
}

.banner-icon:hover::after {
	display: block;
}

.heading-bg:before {
	content: "";
	position: absolute;
	background: linear-gradient(45deg, #b22234, transparent);
	width: 60%;
	height: 85px;
	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;
}

.experience-sign-img {
	top: 0;
	z-index: 99;
	width: fit-content;
}

.scroll-down-wrapper {
	bottom: 90px;
	z-index: 9999;
	left: 110px;
}

.scroll-down-wrapper .scrolldown-btn {
	background: #ffffff50;
	border-radius: 50%;
	width: 80px;
	height: 80px;
	color: var(--body-color);
	font-size: 20px;
}

/* Banner Section End Here */

/* about-section Css  */

.about-section {
	background-image: url(../img/about-bg.png);
}

.about-section::before {
	content: "";
	position: absolute;
	background-image: url(../img/about-left-img.png);
	background-repeat: no-repeat;
	background-size: cover;
	width: 520px;
	height: 610px;
	bottom: 50px;
	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: 220px;
	height: 370px;
	bottom: 40px;
	right: 0;
	z-index: -1;
}

.about-dots-wrap {
	top: 0;
	bottom: 0;
	left: -10px;
	height: fit-content;
	margin: auto;
}

.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-image: url(../img/about-dashed-img.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	width: 290px;
	height: 180px;
	bottom: 0;
	margin: auto;
	right: 0;
	z-index: 99;
}

.contact-icon {
	background: var(--extra-color-1);
	color: var(--body-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);
	}
}

/* about-section Css  */

/* service-section Css  */
.service-section {
	padding: 100px 0px 68px;
	/* background-color: var(--extra-color-3); */
	z-index: 1;
}

.service-slider .service-slide {
	margin: 20px 20px 0px;
	border-radius: 20px;
}

.service-slider.slider-sec .slick-prev {
	left: unset;
	right: 8rem;
	top: -40px;
	bottom: unset;
	background-color: #eceef0;
}

.service-slider.slider-sec .slick-prev:before {
	color: var(--secondary-color);
}

.service-slider.slider-sec .slick-next {
	top: -40px;
	bottom: unset;
	right: 4.5rem;
	background: var(--extra-color-1);
}

.service-slider.slider-sec .slick-next:hover::before {
	color: var(--body-color);
}

.service-slide:hover {
	background: var(--extra-color-1);
}

.service-slide:hover .service_hover {
	color: var(--body-color);
}

.service-slide:hover .service-btn-wrap figure img.img-fluid {
	filter: invert(1);
}

.service-slide:hover .btn {
	background: var(--body-color);
	color: var(--primary-color);
	-webkit-text-fill-color: unset;
}

/* Laptop Resposnive  */
@media (max-width: 1200px) {
	.service-section {
		padding: 100px 0px 90px;
		margin-top: -220px;
	}

	.service-section::after {
		height: 1320px;
	}
}

/* Tablet Responsvie  */
@media (max-width: 991px) {
	.service-section::after {
		height: 1120px;
	}
}

/* Tablet Responsvie  */

/* Mobile Responsive  */
@media (max-width: 575px) {
	.service-section::after {
		height: 660px;
	}

	.service-slider .service-slide:nth-child(even) {
		transform: translateY(0px);
	}

	.service-section {
		padding: 100px 0px 40px;
		margin-top: -80px;
	}

	.service-slider .slick-list.draggable {
		padding-bottom: 0;
	}
}

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

/* service-section Css  */

/* testi-section Css  */

.testi-slide {
	margin: 0px 20px;
	border-radius: 16px;
	border: 1px solid transparent;
}

.testi-slide:nth-child(even) {
	transform: translateY(-40px);
}

.testi-slide:hover {
	border-color: var(--secondary-color);
	box-shadow: 24px 30px 51px 0 rgba(0, 0, 0, 0.1);
}

.test-commas {
	margin-top: -20px;
}

.testi-slider .slick-list.draggable {
	padding-top: 70px;
}

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

.testi-slider .slick-dots li {
	background: #c0c0c0;
	height: 10px;
	width: 10px;
	margin: 0 6px;
	transition: 0.4s ease;
	border-radius: 50%;
}

.testi-slider .slick-dots li.slick-active {
	background: #ada191;
	width: 10px;
	height: 10px;
}

/* testi-section Css  */

/* covered-section Css  */

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

.units-img figure {
	background: var(--extra-color-1);
	background-size: cover;
	width: 230px;
	height: 230px;
	border-radius: 50%;
}

.units-img figure::before {
	content: "";
	position: absolute;
	background-color: #1c5da914;
	background-size: cover;
	width: 250px;
	height: 250px;
	top: -10px;
	left: -10px;
	z-index: -1;
	border-radius: 50%;
	box-shadow: rgb(28 93 169) 0px 3px 8px;
}

.units-bottom::after,
.units-top::after {
	content: "";
	position: absolute;
	width: 120px;
	height: 70px;
	top: 50px;
	right: -50px;
	background-repeat: no-repeat;
	background-size: contain;
}

.units-bottom::after {
	background-image: url(../img/units-bottom.png);
}

.units-top::after {
	background-image: url(../img/units-top.png);
	top: 0;
	bottom: 0;
	margin: auto;
}

/* units-section Css  */

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

/* contact-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;
	background-position: center;
	width: 100%;
	height: 1160px;
	top: -80px;
	right: 0;
	left: 0;
	margin: auto;
	z-index: -1;
}

/* contact-section Css  */

/* footer Css  */

.site-footer {
	padding: 80px 0px 0px;
}

.footer-lists-heading {
	position: relative;
}

.footer-lists-heading::before {
	content: "";
	position: absolute;
	background-color: var(--body-color);
	width: 40px;
	height: 1px;
	bottom: -10px;
	left: 0;
	background-size: cover;
}

/* footer Css  */
