/************************************/
/*** 	   02. General css		  ***/
/************************************/


#scrollBtn {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 70px;
	height: 70px;
	border: none;
	border-radius: 50%;
	background-color: var(--white);
	color: var(--black);
	font-size: 14px;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: opacity 0.3s ease;
	opacity: 0;
	pointer-events: none;
	z-index: 9999;
}

#scrollBtn.show {
	opacity: 1;
	pointer-events: auto;
}

.progress-ring {
	position: absolute;
	width: 70px;
	height: 70px;
	transform: rotate(-90deg);
}

.progress-ring circle {
	fill: none;
	stroke-width: 6;
}

.progress-ring__bg {
	stroke: #ccc;
}

.progress-ring__progress {
	stroke: var(--button);
	stroke-linecap: round;
	transition: stroke-dashoffset 0.3s ease;
}

#scrollPercent {
	position: absolute;
	font-size: 13px;
}

.btn-default {
	position: relative;
	display: inline-block;
	background: var(--button);
	border-radius: 24px;
	font-size: 16px;
	font-weight: 500;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	border: none;
	padding: 17px 54px 17px 20px;
	transition: all 0.5s ease-in-out;
	overflow: hidden;
	z-index: 0;
}

.btn-default:hover {
	background: transparent;
}

.btn.-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 24px;
	height: 24px;
	background-image: url('../images/arrow-white.svg') !important;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translate(-20px, -50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	transform: translate(-17px, -50%);
}

.btn-default::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -15%;
	right: 0;
	width: 0;
	height: 106%;
	background: var(--primary-color);
	transform: skew(45deg);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover:after {
	width: 100%;
	transform: skew(0deg);
	left: 0;
}

.btn-default.btn-highlighted {
	background: var(--button);
	color: var(--white-color);
	font-weight: 700;
}

.btn-default.btn-highlighted:hover {
	background: transparent;
	color: var(--white-color) !important;
}

.btn-default.btn-highlighted::before {
	background: url('../images/arrow-accent.svg');
	filter: brightness(0) invert(1);
}

.btn-default.btn-highlighted::after {
	background: var(--second-colour);
	color: var(--white-color) !important;
}

.main-hero {
	background: var(--secondary-color) !important;
}

.hero {
	width: 100%;
	max-width: 1820px;
	margin: 0 auto;
	border-radius: 50px;
}

.hero .dark-section {
	position: relative;
	background: url('../images/hero-bg-gradiant-shape.png'), var(--accent-secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.hero-slider-layout .bg-section.dark-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: radial-gradient(38.51% 48.25% at 50.45% 50.9%, rgba(1, 78, 78, 0) 0.01%, #014E4E 100%);
	border-radius: 50px;
	height: 100%;
	width: 100%;
	z-index: 0;
}

.hero-slider-layout .bg-section.dark-section .container {
	position: relative;
	z-index: 1;
}

.hero-slider-layout .section-title-content p {
	margin-bottom: 20px;
}

.hero-slider-layout .section-title-content p:last-child {
	margin-bottom: 0;
}


.hero-slider-layout .section-title {
	margin-bottom: 40px;
}

.hero-slider-layout .section-title h3 {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--accent-secondary-color);
	background: url('../images/icon-sub-heading.svg') no-repeat;
	background-position: left top;
	background-size: 22px auto;
	display: inline-block;
	padding-left: 30px;
	margin-bottom: 10px;
}

.hero-slider-layout .section-title h1 {
	font-size: 74px;
	font-weight: 700;
	margin-bottom: 0;
	cursor: none;
}

.hero-slider-layout .section-title h2 {
	font-size: 46px;
	font-weight: 700;
	margin-bottom: 0;
	cursor: none;
}

.hero-slider-layout .section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.hero-slider-layout .bg-section.dark-section .section-title-content p,
.bg-section.dark-section .section-title p,
.bg-section.dark-section .section-title h3,
.bg-section.dark-section .section-title h2,
.bg-section.dark-section .section-title h1 {
	color: var(--white-color);
}


/************************************/
/***        Hero css	      ***/
/************************************/

.hero {
	position: relative;
	padding: 155px 0 0;
}

.hero::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: url('../images/hero-bg-leaf.png') no-repeat;
	background-position: center center;
	background-size: 100% auto;
	width: 100%;
	height: 100%;
}

.hero.hero-bg-image {
	overflow: hidden;
}

.hero.hero-bg-image.bg-section.dark-section::before {
	background: var(--primary-color);
	opacity: 70%;
	border-radius: 0;
	z-index: 1;
}

.hero.hero-bg-image::after {
	display: none;
}

.hero.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}


.hero.hero-bg-image.hero-slider-layout {
	background: red;
	padding: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide {
	position: relative;
	background: url('../images/hero-bg.webp');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 150px 0 150px;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide.slide-2 {
	background: url('../images/hero-bg-2.webp');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 50px;
	text-align: center;
	z-index: 2;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--button);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background: var(--white);
}

.hero.hero-bg-image .hero-content {
	width: 100%;
	max-width: 900px;
	margin: 0 auto;
	text-align: center;
}

.hero.hero-bg-image .hero-content .section-title p {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	margin-top: 10px;
}

.hero-content-body {
	display: flex;
	align-items: center;
	gap: 20px 30px;
}

.hero.hero-bg-image .hero-content .hero-content-body {
	justify-content: center;
}

.contact-now-box {
	display: inline-flex;
	align-items: center;
	text-align: left;
}

.contact-now-box:hover .icon-box {
	background-color: var(--accent-color);
}

.contact-now-box .icon-box img {
	max-width: 24px;
	transition: all 0.3s ease-in-out;
}

.contact-now-box:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.contact-now-box-content p {
	color: var(--white-color);
	margin-bottom: 5px;
}

.contact-now-box-content h3 {
	font-size: 20px;
	color: var(--white-color);
}

.contact-now-box-content h3 a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-now-box-content h3 a:hover {
	color: var(--accent-color);
}

.hero-content-footer {
	display: flex;
	align-items: center;
	gap: 20px;
	margin-top: 40px;
}

.hero-image {
	position: relative;
}

.hero-image figure {
	display: block;
}

.hero-image img {
	width: 100%;
	aspect-ratio: 1 / 1.375;
	object-fit: cover;
}

/************************************/
/***      Responsive css      ***/
/************************************/

@media only screen and (max-width: 1820px) {

	.bg-section {
		width: calc(100% - 100px);
		margin-left: 50px;
		margin-right: 50px;
		max-width: 100%;
	}
}

@media only screen and (max-width: 1560px) {

	.bg-section {
		width: calc(100% - 30px);
		margin-left: 15px;
		margin-right: 15px;
		border-radius: 30px;
	}
}

@media only screen and (max-width: 991px) {
	.bg-section {
		width: 100%;
		margin-left: 0px;
		margin-right: 0px;
		border-radius: 0;
	}

	.bg-section.dark-section::before {
		border-radius: 0;
	}

	.hero-slider-layout .section-title {
		margin-bottom: 30px;
	}

	.hero-slider-layout .section-title h3 {
		background-size: 18px auto;
		padding-left: 25px;
	}

	.hero-slider-layout .section-title h1 {
		font-size: 52px;
	}

	.hero-slider-layout .section-title h2 {
		font-size: 36px;
	}

	.hero-slider-layout .section-title p {
		margin-top: 10px;
	}

	.hero-slider-layout .section-title-content {
		margin-top: 10px;
	}

	.section-btn {
		text-align: left;
		margin-top: 10px;
	}

	.hero {
		padding: 130px 0 0;
		margin: 0;
	}

	.hero.hero-bg-image {
		padding: 180px 0 100px;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-slide {
		padding: 150px 0 150px;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-pagination {
		bottom: 30px;
	}

	.hero-content {
		margin-bottom: 30px;
	}

	.hero-content-footer {
		margin-top: 30px;
	}

	.hero-image {
		width: 100%;
		margin: 0 auto;
		max-width: 55%;
	}

	.contact-now-circle img {
		max-width: 114px;
	}

	.hero-slider-layout .section-title {
		margin-bottom: 15px;
	}
}

@media only screen and (max-width: 767px) {

	.hero-slider-layout .section-title h1 {
		font-size: 28px;
	}

	.hero-slider-layout .section-title h2 {
		font-size: 26px;
	}

	.hero-content-body {
		gap: 20px;
	}

	.contact-now-box-content h3 {
		font-size: 18px;
	}

	.hero-image {
		max-width: 100%;
	}

	.hero.hero-bg-image.hero-slider-layout .hero-slide {
		padding: 100px 0 100px;
	}

}

@media only screen and (max-width: 991.5px) {

	.btn-default {
		padding: 15px 46px 15px 15px;
	}

	.btn-default::before {
		transform: translate(-15px, -50%);
	}

	.btn-default:hover::before {
		transform: translate(-12px, -50%);
	}
}

/************************************/
/***       About Us css	      ***/
/************************************/

.about-us {
	padding: 100px 0;
}

.about-us .section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: var(--button);
	border-radius: 50%;
	width: 8px;
	height: 8px;
}

.about-us-image {
	position: relative;
	padding: 0 162px 58px 0;
	margin-right: 30px;
}

.about-img-1 figure,
.about-img-2 figure {
	display: block;
}

.about-img-1 img,
.about-img-2 img {
	width: 100%;
	object-fit: cover;
}

.about-img-1 figure {
	border-radius: 30px;
}

.about-img-1 img {
	aspect-ratio: 1 / 1.23;
	border-radius: 30px;
}

.about-img-2 {
	position: absolute;
	right: 0;
	bottom: 0;
	max-width: 433px;
	border: 10px solid var(--accent-secondary-color);
	border-radius: 30px;
	overflow: hidden;
	z-index: 1;
}

.about-img-2 img {
	aspect-ratio: 1 / 0.59;
}

.contact-us-circle {
	position: absolute;
	top: 90px;
	right: 90px;
	z-index: 1;
}

.contact-us-circle a {
	display: block;
	border-radius: 50%;
}

.contact-us-circle img {
	width: 100%;
	max-width: 140px;
	border-radius: 50%;
	animation: infiniterotate 25s infinite linear;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.about-us-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.about-us-body .about-body-content {
	width: calc(66% - 15px);
}

.about-body-list {
	margin-bottom: 60px;
}

.about-body-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.about-body-list ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.about-body-list ul li::before {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	font-weight: 400;
	font-size: 20px;
	color: var(--primary-color);
	display: inline-block;
	line-height: normal;
	position: absolute;
	top: 2px;
	left: 0;
}

.about-body-list ul li:last-child {
	margin-bottom: 0;
}

.about-team-member {
	width: calc(34% - 15px);
}

.about-body-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
}

.about-team-member {
	background-color: var(--second-colour);
	border-radius: 30px;
	text-align: center;
	padding: 40px 30px;
}

.about-team-member img {
	width: 100%;
	max-width: 50px;
	margin-bottom: 20px;
}

.about-team-member h2 {
	color: var(--white-color);
	font-size: 50px;
	margin-bottom: 5px;
}

.about-team-member p {
	color: var(--white-color);
	font-weight: 500;
	text-transform: capitalize;
	margin: 0;
}

.about-counter-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	border-top: 1px solid var(--divider-color);
	margin-top: 60px;
	padding-top: 60px;
}

.about-counter-item {
	width: calc(25% - 22.5px);
	display: flex;
	align-items: center;
}

.about-counter-item .icon-box {
	margin-right: 20px;
}

.about-counter-item .icon-box img {
	width: 100%;
	max-width: 50px;
}

.about-counter-content {
	width: calc(100% - 70px);
}

.about-counter-content h2 {
	color: var(--button);
	font-size: 40px;
	margin-bottom: 5px;
}

.about-counter-content p {
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/***     Our Services css	  ***/
/************************************/

.our-services {
	position: relative;
	padding: 100px 0;
}

.our-services::before {
	content: '';
	position: absolute;
	right: 0;
	top: 20px;
	background: url('../images/shape/section-bg-leaf-3.webp');
	background-repeat: no-repeat;
	background-position: right top;
	background-size: cover;
	width: 148px;
	height: 154px;
	transition: all 0.5s ease-in-out;
	animation: leafimg-3 3s infinite alternate;
	z-index: 0;
}

@keyframes leafimg-3 {
	0% {
		transform: translateY(0) rotate(180deg);
	}

	100% {
		transform: translateY(10px) rotate(180deg);
	}
}

.our-services::after {
	content: '';
	position: absolute;
	left: 0;
	bottom: 50px;
	background: url('../images/shape/section-bg-leaf-4.webp');
	background-repeat: no-repeat;
	background-position: left bottom;
	background-size: cover;
	width: 240px;
	height: 194px;
	transition: all 0.5s ease-in-out;
	animation: leafimg-1 3s infinite alternate;
	z-index: 0;
}

.our-services .section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: var(--button);
	border-radius: 50%;
	width: 8px;
	height: 8px;
}

.service-box {
	position: relative;
}

.service-image a {
	display: block;
	cursor: none;
	border-radius: 30px;
	overflow: hidden;
}

.service-image figure {
	display: block;
}

.service-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(rgba(0, 0, 0, 0) 52.13%, rgba(80, 219, 220, 0.9) 81.58%);
	width: 100%;
	height: 100%;
	z-index: 1;
}


.image-ser figure::before {
		content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.13%, rgba(28, 73, 66, 0.9) 81.58%);
	width: 100%;
	height: 100%;
	z-index: 1;
}
.service-image img {
	width: 100%;
	aspect-ratio: 1 / 1.042;
	object-fit: cover;
	border-radius: 30px;
	transition: all 0.4s ease-in-out;
}

.service-box:hover .service-image img {
	transform: scale(1.05);
}

.service-item {
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

.service-item .icon-box {
	position: relative;
	background: var(--secondary-color);
	border-radius: 10px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.service-item .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--button);
	border-radius: 10px;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-item:hover .icon-box::before {
	transform: scale(1);
}

.service-item .icon-box i {
	position: relative;
	max-width: 30px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
	font-size: 30px;
	/* adjust size */
	color: #0ac9c9;
}

.service-item:hover .icon-box i {
	filter: brightness(0) invert(1);
}

.service-content h3 {
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.service-content h3 a {
	color: inherit;
}

.service-content p {
	color: var(--white-color);
	margin: 0;
}

.services-pagination {
	position: relative;
	text-align: center;
	margin-top: 60px;
}

.services-pagination .swiper-pagination-bullet {
	height: 10px;
	width: 10px;
	background: var(--text-color);
	opacity: 1;
	margin: 0 3px;
	transition: all 0.4s ease-in-out;
}

.services-pagination .swiper-pagination-bullet-active {
	width: 30px;
	background: var(--button);
	border-radius: 10px;
}

.section-footer-text {
	margin-top: 40px;
	text-align: center;
}

.section-footer-text p {
	margin: 0;
}

.dark-section .section-footer-text p {
	color: var(--white-color);
}

.section-footer-text p span {
	font-size: 16px;
	font-weight: 600;
	color: var(--primary-color);
	background: var(--accent-color);
	border-radius: 4px;
	padding: 4px 10px;
	margin-right: 5px;
}

.section-footer-text p a {
	color: var(--primary-color);
	font-weight: 600;
	text-transform: capitalize;
	text-decoration: underline;
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
	color: var(--text-color);
}

.dark-section .section-footer-text p a {
	color: var(--white-color);
}

.dark-section .section-footer-text p a:hover {
	color: var(--text-color);
}

/************************************/
/***     Why Choose Us css	  ***/
/************************************/

.why-choose-us {
	padding: 100px 0;
}

.why-choose-us .section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: var(--button);
	border-radius: 50%;
	width: 8px;
	height: 8px;
}

.why-choose-content {
	margin-right: 30px;
}

.why-choose-list-item {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.why-choose-list-item .icon-box {
	position: relative;
	width: 80px;
	height: 80px;
	background-color: var(--secondary-color);
	border-radius: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 30px;
}

.why-choose-list-item .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--button);
	border-radius: 10px;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.why-choose-list-item:hover .icon-box::before {
	transform: scale(1);
}

.why-choose-list-item .icon-box i {
	width: 100%;
	max-width: 40px;
	transition: all 0.3s ease-in-out;
	color: var(--second-colour);
}

.why-choose-list-item:hover .icon-box i {
	filter: brightness(0) invert(1);
}

.why-choose-item-content {
	width: calc(100% - 110px);
}

.why-choose-item-content h3 {
	font-size: 22px;
	margin-bottom: 10px;
}

.why-choose-item-content p {
	margin-bottom: 0;
}

.why-choose-image figure {
	display: block;
	border-radius: 30px;
}

.why-choose-image img {
	width: 100%;
	aspect-ratio: 1 / 1.236;
	object-fit: cover;
	border-radius: 30px;
}

/************************************/
/***      Our Benefit css	  ***/
/************************************/

.our-benefit {
	background-color: var(--main-colour) !important;
	position: relative;
	padding: 100px 0;
}

.our-benefit .section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: var(--second-colour);
	border-radius: 50%;
	width: 8px;
	height: 8px;
}


.our-benefit::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50px;
	background: url('../images/shape/section-bg-leaf-1.webp');
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	width: 194px;
	height: 224px;
	transition: all 0.5s ease-in-out;
	animation: leafimg-4 3s infinite alternate;
	z-index: 0;
}

@keyframes leafimg-4 {
	0% {
		transform: translateY(0) rotateX(180deg);
	}

	100% {
		transform: translateY(10px) rotateX(155deg);
	}
}

.our-benefit::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 50px;
	background: url('../images/shape/section-bg-leaf-5.webp');
	background-repeat: no-repeat;
	background-position: right bottom;
	background-size: cover;
	width: 223px;
	height: 153px;
	transition: all 0.5s ease-in-out;
	animation: leafimg-2 3s infinite alternate;
	z-index: 0;
}

.our-benefit-item {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.our-benefit-item:last-child {
	margin-bottom: 0;
}

.our-benefit-item .icon-box {
	background: var(--white-color);
	border-radius: 10px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.our-benefit-item .icon-box i {
	font-size: 30px;
	/* width: 100%; */
	/* max-width: 30px; */
	transition: all 0.4s ease-in-out;
}

.our-benefit-item:hover .icon-box i {
	transform: rotateY(180deg);
}

.our-benefit-item-content {
	width: calc(100% - 80px);
}

.our-benefit-item-content h3 {
	font-size: 22px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
}

.our-benefit-item-content p {
	color: var(--white-color);
	margin: 0;
}

.our-benefit-image {
	margin: 0 30px;
}

.our-benefit-image figure {
	display: block;
	border-radius: 200px;
}

.our-benefit-image img {
	width: 100%;
	aspect-ratio: 1 / 1.48;
	object-fit: cover;
	border-radius: 200px;
}

.our-benefit-box-1 .our-benefit-item {
	flex-direction: row-reverse;
}

.our-benefit-box-1 .our-benefit-item .icon-box {
	margin: 0 0 0 20px;
}

.our-benefit-box-1 .our-benefit-item-content {
	text-align: right;
}




/************************************/
/***    Our Testimonials css  ***/
/************************************/

.our-testimonials{
    padding: 100px 0;
    background: url('../images/shape/testimonial-bg.webp') no-repeat;
    background-position: center center;
    background-size: auto;
}

.our-testimonials .section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: var(--button);
	border-radius: 50%;
	width: 8px;
	height: 8px;
}

.testimonial-slider .swiper-wrapper{
	cursor: none;
}

.testimonial-item{
    background: var(--secondary-color);
    border-radius: 30px;
    padding: 30px;
    display: flex;
}

.testimonial-quote{
    margin-right: 20px;
}

.testimonial-quote img{
    width: 100%;
    max-width: 60px;
}

.testimonial-body{
    width: calc(100% - 80px);
}

.testimonial-rating{
    margin-bottom: 20px;
}

.testimonial-rating i{
    color: var(--main-colour);
    font-size: 18px;
}

.testimonial-content{
    margin-bottom: 30px;
}

.testimonial-content p{
	font-size: 20px;
    margin: 0;
}

.author-info{
	display: flex;
	align-items: center;
}

.author-image{
	margin-right: 15px;
}

.author-image figure{
	display: block;
	border-radius: 50%;
}

.author-image img{
	width: 100%;
	max-width: 50px;
	border-radius: 50%;
}

.author-content{
	width: calc(100% - 65px);
}

.author-content h3{
	font-size: 22px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.author-content p{
	text-transform: capitalize;
	margin: 0;
}

.testimonial-pagination{
	text-align: center;
	margin-top: 60px;
}

.testimonial-pagination .swiper-pagination-bullet{
    height: 10px;
    width: 10px;
    background: var(--divider-color);
    opacity: 1;
    margin: 0 3px;
    transition: all 0.4s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active{
    position: relative;
    width: 20px;
    border-radius: 100px;
    background-color: var(--button);
}

.trusted-client-box{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
    margin-top: 60px;
}

.trusted-client-title h3{
	font-size: 22px;
	line-height: 1.4em;
	text-transform: capitalize;
	max-width: 270px;
}

.trusted-client-box .testimonial-company-slider{
	width: calc(100% - 300px);
}

.trusted-client-logo{
	text-align: center;
}

.trusted-client-logo img{
	width: 100%;
	height: 40px;
	transition: all 0.3s ease-in-out;
}

@media(max-width:991.5px) {

	.about-us {
		padding: 50px 0;
	}

	.about-us-image {
		max-width: 80%;
		margin: 0 auto;
		margin-bottom: 30px;
	}

	.about-img-1 figure,
	.about-img-1 img {
		border-radius: 20px;
	}

	.about-img-2 {
		border-radius: 20px;
	}

	.contact-us-circle img {
		max-width: 110px;
	}

	.about-body-list {
		margin-bottom: 30px;
	}

	.about-body-list ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.about-body-list ul li::before {
		font-size: 18px;
		top: 3px;
	}

	.about-video-button a {
		padding: 13px 20px;
	}

	.about-team-member {
		border-radius: 20px;
		padding: 30px 20px;
	}

	.about-team-member img {
		max-width: 40px;
		margin-bottom: 15px;
	}

	.about-team-member h2 {
		font-size: 34px;
	}

	.about-counter-list {
		margin-top: 30px;
		padding-top: 30px;
	}

	.about-counter-item {
		width: calc(50% - 15px);
	}

	.about-counter-item .icon-box {
		margin-right: 15px;
	}

	.about-counter-item .icon-box img {
		max-width: 40px;
	}

	.about-counter-content {
		width: calc(100% - 55px);
	}

	.about-counter-content h2 {
		font-size: 34px;
	}

	.our-services {
		padding: 50px 0;
	}

	.our-services::before {
		width: 118px;
		height: 124px;
		opacity: 50%;
	}

	.our-services::after {
		width: 160px;
		height: 120px;
		opacity: 50%;
	}

	.service-image a {
		border-radius: 20px;
	}

	.service-image img {
		aspect-ratio: 1 / 0.95;
		border-radius: 20px;
	}

	.service-item {
		bottom: 30px;
		left: 30px;
		right: 30px;
	}

	.service-item .icon-box {
		width: 50px;
		height: 50px;
		margin-bottom: 15px;
	}

	.service-item .icon-box img {
		max-width: 26px;
	}

	.service-content h3 {
		font-size: 20px;
	}

	.services-pagination {
		margin-top: 40px;
	}

	.section-footer-text {
		margin-top: 30px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-content {
		margin: 0 0 30px 0;
	}

	.why-choose-content .section-title {
		margin-bottom: 20px;
	}

	.why-choose-list-item {
		margin-top: 20px;
		padding-top: 20px;
	}

	.why-choose-list-item .icon-box {
		width: 60px;
		height: 60px;
		margin-right: 15px;
	}

	.why-choose-list-item .icon-box img {
		max-width: 34px;
	}

	.why-choose-item-content {
		width: calc(100% - 75px);
	}

	.why-choose-item-content h3 {
		font-size: 20px;
		margin-bottom: 5px;
	}

	.why-choose-image figure {
		border-radius: 20px;
	}

	.why-choose-image img {
		aspect-ratio: 1 / 0.78;
		border-radius: 20px;
	}

	.our-benefit .section-title h2 br {
		display: none !important;
	}

	.our-benefit {
		padding: 50px 0;
	}

	.our-benefit::before {
		width: 130px;
		height: 150px;
		opacity: 50%;
	}

	.our-benefit::after {
		width: 150px;
		height: 105px;
		opacity: 50%;
	}

	.our-benefit-item {
		margin-bottom: 30px;
	}

	.our-benefit-item .icon-box {
		width: 50px;
		height: 50px;
		margin-left: 15px;
	}

	.our-benefit-box-2 .our-benefit-item .icon-box {
		margin: 0 15px 0 0;
	}

	.our-benefit-item .icon-box img {
		max-width: 26px;
	}

	.our-benefit-item-content {
		width: calc(100% - 65px);
	}

	.our-benefit-item-content h3 {
		font-size: 20px;
	}

	.our-benefit-image {
		max-width: 55%;
		margin: 0 auto;
		margin-top: 30px;
	}

	
	.our-testimonials{
        padding: 50px 0;
    }

    .testimonial-item{
        padding: 20px;
        border-radius: 20px;
    }

    .testimonial-quote{
        margin-right: 10px;
    }

    .testimonial-quote img{
        max-width: 40px;
    }

    .testimonial-body{
        width: calc(100% - 50px);
    }

    .testimonial-rating{
        margin-bottom: 10px;
    }

    .testimonial-rating i{
        font-size: 16px;
    }

    .testimonial-content{
        margin-bottom: 20px;
    }

	.testimonial-content p{
		font-size: 18px;
	}

    .author-content h3{
        font-size: 20px;
    }

    .testimonial-pagination{
        margin-top: 30px;
    }


}

@media(max-width:767.5px) {
	.about-us-image {
		max-width: 100%;
		padding: 0px 80px 38px 0;
	}

	.about-img-2 {
		max-width: 250px;
		border-width: 5px;
	}

	.contact-us-circle {
		top: 40px;
		right: 40px;
	}

	.contact-us-circle img {
		max-width: 80px;
	}

	.about-us-body .about-body-content,
	.about-team-member {
		width: 100%;
	}

	.about-body-footer {
		gap: 15px;
	}

	.about-team-member {
		padding: 20px;
	}

	.about-team-member h2 {
		font-size: 26px;
	}

	.about-counter-item {
		width: 100%;
	}

	.about-counter-content h2 {
		font-size: 28px;
	}

	.service-item {
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.service-content h3 {
		font-size: 18px;
	}

	.services-pagination {
		margin-top: 30px;
	}

	.section-footer-text {
		margin-top: 20px;
	}

	.our-services .section-title h2 br {
		display: none !important;
	}


	.why-choose-list-item {
		align-items: start;
	}

	.why-choose-list-item .icon-box {
		width: 45px;
		height: 45px;
		margin-right: 10px;
	}

	.why-choose-list-item .icon-box img {
		max-width: 25px;
	}

	.why-choose-item-content {
		width: calc(100% - 55px);
	}

	.why-choose-item-content h3 {
		font-size: 18px;
	}

	.why-choose-image img {
		aspect-ratio: 1 / 0.95;
	}


	.our-benefit-box-1 .our-benefit-item {
		flex-direction: row;
	}

	.our-benefit-box-1 .our-benefit-item .icon-box {
		margin: 0 15px 0 0;
	}

	.our-benefit-item-content {
		width: calc(100% - 55px);
	}

	.our-benefit-box-1 .our-benefit-item-content {
		text-align: left;
	}

	.our-benefit-item-content h3 {
		font-size: 18px;
	}

	.our-benefit-image {
		max-width: 100%;
		margin: 30px 0;
	}

	.testimonial-item{
		display: block;
	}

	.testimonial-quote{
        margin-right: 10px;
		margin-bottom: 10px;
    }

    .testimonial-body{
        width: 100%;
    }

	.testimonial-content p{
        font-size: 16px;
    }

    .author-content h3{
        font-size: 18px;
    }

}


@media(max-width:480px){
	.footer-copyright-text p{
		font-size: 14px;
	}
}
@media(max-width:380px){
	.footer-copyright-text p{
		font-size: 13px;
	}
}