/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Sunex - Solar & Renewable Energy HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. About Us css
06. Our Services css
07. Why Choose Us css
08. Intro Video css
09. Pricing Plan css
10. Our Features css
11. Our Fun Facts css
12. How It Works css
13. Our FAQs css
14. Our Testimonials css
15. Our Blog css
16. Footer css
17. About Us Page css
18. Services Page css
19. Service Single css
20. Blog Archive css
21. Blog Single css
22. Projects Page css
23. Project Single css
24. Team Page css
25. Team Single css
26. Pricing Page css
27. Testimonials Page css
28. Image Gallery css
29. Video Gallery css
30. FAQ's Page css
31. Contact Us Page css
32.	404 Error Page css
33. Responsive css
34. Home - Version 2 css
35. Home - Version 3 css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #001A29;
	--secondary-color: #F4F8FA;
	--bg-color: #FFFFFF;
	--text-color: #74787C;
	--accent-color: #17512b;
	--white-color: #FFFFFF;
	--divider-color: #001A291A;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Inter", sans-serif;
	--accent-font: 'ClashGrotesk-Variable';
}

/* Home page core principles diagram */
.core-principles {
	padding: 70px 0;
	background: linear-gradient(145deg, #f3fbfd 0%, #fff 55%, #e9f8fc 100%);
	overflow: hidden;
}

.core-principles .section-title {
	max-width: 650px;
	margin: 0 auto 25px;
}

.core-principles-diagram {
	position: relative;
	max-width: 1100px;
	height: 520px;
	margin: 0 auto;
}

.principles-connectors {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
}

.principles-connectors line {
	stroke: rgba(0, 170, 219, .42);
	stroke-width: 2;
	stroke-dasharray: 7 7;
}

.principles-hub {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 190px;
	height: 190px;
	background: linear-gradient(145deg, #00aadb, #007ea5);
	border: 10px solid rgba(0, 170, 219, .13);
	border-radius: 50%;
	box-shadow: 0 18px 45px rgba(0, 126, 165, .28);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	color: var(--white-color);
	transform: translate(-50%, -50%);
	z-index: 2;
}

.principles-hub i {
	font-size: 34px;
	margin-bottom: 10px;
}

.principles-hub strong {
	font-size: 24px;
	line-height: 1.2;
	text-transform: uppercase;
}

.principles-hub span {
	font-size: 13px;
	opacity: .85;
	margin-top: 5px;
}

.principle-node {
	position: absolute;
	width: 170px;
	min-height: 135px;
	background: var(--white-color);
	border: 1px solid rgba(0, 170, 219, .2);
	border-radius: 18px;
	box-shadow: 0 12px 30px rgba(0, 39, 58, .09);
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 18px 12px;
	transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
	z-index: 2;
}

.principle-node:hover {
	border-color: #00aadb;
	box-shadow: 0 18px 38px rgba(0, 170, 219, .18);
	transform: translateY(-7px);
}

.principle-icon {
	width: 58px;
	height: 58px;
	background: rgba(0, 170, 219, .1);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #00aadb;
	font-size: 25px;
	margin-bottom: 13px;
	transition: background .35s ease, color .35s ease;
}

.principle-node:hover .principle-icon {
	background: #00aadb;
	color: var(--white-color);
}

.principle-node h3 {
	font-size: 17px;
	text-transform: uppercase;
	letter-spacing: .4px;
}

.node-flexibility {
	top: 22px;
	left: 5%;
}

.node-improvisation {
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}

.node-improvisation:hover {
	transform: translateX(-50%) translateY(-7px);
}

.node-integrity {
	top: 22px;
	right: 5%;
}

.node-equality {
	top: 193px;
	right: 0;
}

.node-modesty {
	right: 9%;
	bottom: 0;
}

.node-freedom {
	bottom: -10px;
	left: 50%;
	transform: translateX(-50%);
}

.node-freedom:hover {
	transform: translateX(-50%) translateY(-7px);
}

.node-promptness {
	bottom: 0;
	left: 9%;
}

@media only screen and (max-width: 991px) {
	.core-principles {
		padding: 60px 0;
	}

	.core-principles-diagram {
		height: auto;
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 20px;
	}

	.principles-connectors {
		display: none;
	}

	.principles-hub,
	.principle-node,
	.node-flexibility,
	.node-improvisation,
	.node-integrity,
	.node-equality,
	.node-modesty,
	.node-freedom,
	.node-promptness {
		position: relative;
		top: auto;
		right: auto;
		bottom: auto;
		left: auto;
		width: 100%;
		height: auto;
		min-height: 150px;
		transform: none;
	}

	.principles-hub {
		grid-column: 2;
		grid-row: 2;
		border-radius: 18px;
	}

	.node-improvisation:hover,
	.node-freedom:hover {
		transform: translateY(-7px);
	}
}

@media only screen and (max-width: 767px) {
	.core-principles {
		padding: 45px 0;
	}

	.core-principles-diagram {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.principles-hub {
		grid-column: 1 / -1;
		grid-row: auto;
		min-height: 145px;
	}

	.principle-node {
		min-height: 135px;
	}

	.principle-node h3 {
		font-size: 14px;
	}
}

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

html,
body {
	width: 100%;
	overflow-x: clip;
}

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--bg-color);
}

::-webkit-scrollbar-track {
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--accent-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
}

::selection {
	color: var(--white-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--accent-font);
	font-weight: 500;
	line-height: 1.2em;
	color: var(--primary-color);
	margin: 0;
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--white-color);
	background: var(--accent-color);
	border-radius: 5px;
	padding: 17px 50px 17px 20px;
	border: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

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

.btn-default:hover::before {
	transform: translateY(-50%) rotate(45deg);
}

.btn-default::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover::after {
	right: auto;
	left: 0;
	width: 100%;
}

.btn-default.btn-highlighted:hover {
	color: var(--primary-color);
}

.btn-default.btn-highlighted:hover:before {
	filter: brightness(0) invert(0);
}

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

/* Header and home hero CTA colors */
.header-btn .btn-default,
.hero .hero-btn .btn-default {
	background: #00aadb;
}

.readmore-btn {
	position: relative;
	display: inline-block;
	font-family: var(--accent-font);
	font-weight: 500;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--primary-color);
	padding: 5px 36px 5px 0;
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 26px;
	height: 26px;
	background-color: var(--accent-color);
	border-radius: 50%;
	transform: translateY(-50%);
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 16px auto;
	transition: all 0.4s ease-in-out;
}

.readmore-btn:hover::before {
	transform: translateY(-50%) rotate(45deg);
}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

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

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

.dark-section {
	background-color: var(--primary-color);
	background-image: url('../images/dark-section-bg-image.png');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: cover;
}

.light-section {
	background-color: var(--secondary-color);
}

.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-row .section-title.section-title-center {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.section-btn {
	text-align: right;
}

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

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

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

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

.section-title .section-sub-title {
	position: relative;
	display: inline-block;
	font-family: var(--default-font);
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	line-height: 1em;
	color: var(--primary-color);
	background: var(--secondary-color);
	border-radius: 100px;
	padding: 9px 16px 9px 31px;
	margin-bottom: 15px;
}

.section-title .section-sub-title::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 5px;
	height: 5px;
}

.section-title h1 {
	font-size: 60px;
	line-height: 1.1em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 48px;
	line-height: 1.1em;
	margin-bottom: 0;
	cursor: none;
}

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

.dark-section .section-title .section-sub-title {
	border-color: var(--dark-divider-color);
}

.dark-section .section-title .section-sub-title {
	color: var(--white-color);
	background: var(--dark-divider-color);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
}

.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
	color: var(--white-color);
}

.light-section .section-title .section-sub-title {
	background-color: var(--white-color);
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	    03. Header css		 ****/
/************************************/

.topbar {
	background: var(--accent-color);
	padding: 15px 0;
}

.topbar-contact-info ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px 30px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.topbar-contact-info ul li {
	display: flex;
	align-items: center;
	font-weight: 600;
	color: var(--white-color);
	line-height: normal;
}

.topbar-contact-info ul li img {
	max-width: 20px;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li span {
	margin-right: 5px;
}

.topbar-contact-info ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.topbar-contact-info ul li a:hover {
	color: var(--primary-color);
}

.topbar-social-links {
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
	align-items: center;
	gap: 15px;
}

.topbar-social-links p {
	color: var(--white-color);
	line-height: normal;
	margin: 0;
}

.topbar-social-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.topbar-social-links ul li {
	display: inline-block;
	font-size: 18px;
	line-height: 1em;
	border-right: 1px solid var(--white-color);
	margin-right: 10px;
	padding-right: 10px;
}

.topbar-social-links ul li:last-child {
	border-right: none;
	padding-right: 0;
	margin-right: 0;
}

.topbar-social-links ul li a {
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a svg {
	display: inline-block;
	width: 18px;
	height: 18px;
	fill: currentColor;
	vertical-align: middle;
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a i {
	font-size: 18px;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover i {
	color: var(--primary-color);
}

.topbar-social-links ul li a:hover svg {
	color: var(--primary-color);
}

header.main-header {
	position: absolute;
	top: 12px;
	left: 18px;
	right: 18px;
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	z-index: 100;
}

@media (min-width: 992px) {

	header.main-header .main-menu,
	header.main-header .header-btn {
		opacity: 0;
		visibility: hidden;
		transform: translateY(-10px);
		pointer-events: none;
		transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
	}

	header.main-header:hover .main-menu,
	header.main-header:hover .header-btn,
	header.main-header:focus-within .main-menu,
	header.main-header:focus-within .header-btn {
		opacity: 1;
		visibility: visible;
		transform: translateY(0);
		pointer-events: auto;
	}
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	transition: transform 0.3s ease-in-out;
}

header.main-header .header-sticky.active {
	position: relative;
	top: 0;
	left: auto;
	right: auto;
	transform: translateY(0);
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
}

.navbar {
	align-items: center;
	padding: 2px 0;
}

.navbar-brand {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	padding: 0;
	margin: 0;
}

.navbar-brand img {
	display: block;
	width: 220px;
	height: auto;
	max-height: 72px;
	object-fit: contain;
	filter: none;
	transition: filter 0.3s ease-in-out, transform 0.3s ease-in-out;
}

.navbar-brand:hover img,
.navbar-brand:focus img {
	filter: brightness(1.1) saturate(1.05);
	transform: translateY(-1px);
}

.whatsapp-float {
	position: fixed;
	right: 24px;
	bottom: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	width: 164px;
	height: 48px;
	padding: 0 14px 0 10px;
	color: #fff;
	background: #25d366;
	border: 2px solid rgba(255, 255, 255, 0.9);
	border-radius: 50px;
	box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
	font-size: 26px;
	text-decoration: none;
	z-index: 9999;
	transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
	color: #fff;
	background: #1fbd5a;
	box-shadow: 0 10px 28px rgba(37, 211, 102, 0.4);
	transform: translateY(-3px) scale(1.05);
}

.renewable-chat-icon {
	position: relative;
	display: block;
	flex: 0 0 28px;
	width: 28px;
	height: 28px;
}

.whatsapp-float-text {
	display: block;
	font-size: 13px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
}

.renewable-chat-icon .fa-leaf {
	position: absolute;
	top: 2px;
	left: 1px;
	font-size: 25px;
	transform: rotate(-12deg);
}

.renewable-chat-icon .fa-bolt {
	position: absolute;
	right: 1px;
	bottom: 0;
	font-size: 15px;
	color: #ffe45c;
	filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.25));
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 10px;
	position: relative;
}

.main-menu ul li a {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.2em;
	padding: 12px 10px !important;
	color: var(--white-color);
	background: transparent;
	border-radius: 8px;
	text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	border-right: 2px solid currentColor;
	border-bottom: 2px solid currentColor;
	margin: 0 0 3px 9px;
	transform: rotate(45deg);
	transition: transform 0.3s ease-in-out;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus,
.main-menu ul li.current-menu-item>a,
.main-menu ul li.active>a {
	color: var(--white-color);
	background: rgba(10, 171, 216, 0.22);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2), 0 6px 18px rgba(0, 0, 0, 0.12);
	transform: translateY(-1px);
}

.main-menu ul ul {
	position: absolute;
	left: 0;
	top: 100%;
	transform: scale(1, 0.8);
	transform-origin: top;
	width: 235px;
	background: var(--accent-color);
	border-radius: 5px;
	list-style: none;
	padding: 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 235px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scale(1, 1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	margin: 4px 2px 0 0;
	float: right;
	transform: rotate(-45deg);
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--white-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: var(--primary-color);
	background-color: transparent;
	padding: 8px 20px 8px 23px !important;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	position: relative;
	top: 0;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 7px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a {
	padding: 7px 20px 7px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '';
	position: absolute;
	width: 8px;
	height: 8px;
	border-right: 2px solid var(--white-color);
	border-bottom: 2px solid var(--white-color);
	right: 15px;
	top: 50%;
	transform: translateY(-70%) rotate(45deg);
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: translateY(-30%) rotate(225deg);
	border-color: var(--primary-color);
}

/************************************/
/*** 	    04. Hero css	      ***/
/************************************/

.hero {
	position: relative;
	padding: 170px 0;
	overflow: hidden;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(270deg, transparent 15.45%, rgba(0, 26, 41, 0.60) 72.29%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

.hero .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero .container {
	position: relative;
	z-index: 2;
}

.hero-content {
	margin-right: 4.167vw;
}

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

.video-play-button a {
	position: relative;
	display: inline-flex;
	align-items: center;
	cursor: none;
	gap: 10px;
}

.video-play-button a span {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.hero .video-play-button a span {
	background: #00aadb;
}

.video-play-button a span i {
	position: relative;
	font-size: 16px;
	color: var(--white-color);
	margin-left: 2px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.video-play-button a span:hover i {
	color: var(--primary-color);
}

.video-play-button p {
	font-weight: 600;
	color: var(--white-color);
	margin: 0;
}

.hero-client-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.satisfy-client-images {
	display: flex;
	align-items: center;
}

.satisfy-client-image {
	position: relative;
	display: inline-block;
	margin-left: -14px;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

.satisfy-client-image:first-child {
	margin: 0;
}

.satisfy-client-image figure {
	display: block;
}

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

.satisfy-client-image.add-more {
	width: 52px;
	height: 52px;
	background-color: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more i {
	font-size: 18px;
	color: var(--white-color);
}

.satisfy-client-image.add-more span {
	color: var(--white-color);
	font-size: 16px;
	line-height: 1em;
}

.hero-client-box .hero-client-content {
	max-width: 445px;
	border-left: 1px solid var(--dark-divider-color);
	padding-left: 30px;
	margin-left: 30px;
}

.hero-client-content p {
	color: var(--white-color);
	font-weight: 500;
	margin: 0;
}

/************************************/
/**** 	   05. About Us css		 ****/
/************************************/

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

.about-us-image-box {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-right: 15px;
}

.about-us-image-box-1 {
	width: 40%;
}

.about-us-image-box-2 {
	position: relative;
	width: 60%;
	z-index: 1;
}

.about-us-image figure {
	display: block;
	border-radius: 14px;
}

.about-us-image figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 14px;
}

.about-us-image-box-1 .about-us-image figure {
	margin-right: -168px;
}

.about-us-image-box-1 .about-us-image figure img {
	aspect-ratio: 1 / 1.1042;
}

.about-us-image-box-2 .about-us-image figure {
	border: 6px solid var(--bg-color);
}

.about-us-image-box-2 .about-us-image figure img {
	aspect-ratio: 1 / 1.2583;
	border-radius: 8px;
}

.about-us-counter-box {
	background: var(--primary-color);
	border-radius: 14px;
	text-align: center;
	padding: 30px 40px;
	margin: 20px 15px 0 0;
}

.about-us-counter-box h2 {
	font-size: 48px;
	line-height: 1em;
	color: var(--white-color);
}

.about-us-counter-box p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.about-us-image-box-2 .contact-us-circle {
	text-align: right;
	margin: 0 40px 30px 0;
}

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

.contact-us-circle a img {
	width: 100%;
	max-width: 130px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

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

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

.contact-us-circle a:hover img {
	animation-play-state: paused;
}

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

.about-us-item-list {
	width: calc(100% - 220px);
	align-content: center;
}

.about-us-item {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.about-us-item:last-child {
	border: none;
	padding: 0;
	margin: 0;
}

.about-us-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.about-us-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.about-us-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

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

.about-us-item-content h3 {
	font-size: 22px;
}

.about-us-item-content p {
	margin: 10px 0 0;
}

.about-us-body-image {
	max-width: 190px;
}

.about-us-body-image figure {
	display: block;
	height: 100%;
	border-radius: 14px;
}

.about-us-body-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.146;
	object-fit: cover;
	border-radius: 14px;
}

.about-us-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.about-us-footer .video-play-button a span {
	background: var(--primary-color);
}

.about-us-footer .video-play-button p {
	color: var(--primary-color);
}

/************************************/
/**** 	 06. Our Services css	 ****/
/************************************/

.our-services {
	background-image: url('../images/section-bg-1.png');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% auto;
	padding: 120px 0;
}

.service-item {
	background: var(--white-color);
	border-radius: 14px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 20px;
}

.service-item-image {
	position: relative;
	border-radius: 14px;
	margin-bottom: 10px;
	overflow: hidden;
}

.service-item-image a {
	display: block;
	cursor: none;
}

.service-item-image figure {
	display: block;
	border-radius: 14px;
}

.service-item-image figure img {
	width: 100%;
	aspect-ratio: 1 / 0.6578;
	object-fit: cover;
	border-radius: 14px;
	transition: all 0.6s ease-in-out;
}

.service-item:hover .service-item-image figure img {
	transform: scale(1.06);
}

.service-item-image .icon-box {
	position: absolute;
	top: 30px;
	left: 30px;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.service-item-image .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.service-item-image .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.service-item-body {
	padding: 20px 10px 10px 10px;
}

.service-item-content h2 {
	font-size: 22px;
}

.service-item-content h2 a {
	color: inherit;
}

.service-item-content p {
	margin: 10px 0 0;
}

.service-item-btn {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin-top: 20px;
}

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

.section-footer-text p {
	color: var(--primary-color);
	margin-bottom: 0;
}

.section-footer-text p span {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1em;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 20px;
	padding: 5px 10px;
	margin-right: 10px;
}

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

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

.section-footer-text ul {
	width: 100%;
	padding: 0;
	margin: 20px 0 0;
	list-style: none;
}

.section-footer-text ul li {
	display: inline-block;
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 500;
	line-height: normal;
	color: var(--primary-color);
	margin-right: 10px;
}

.section-footer-text ul li:last-child {
	margin: 0;
}

.section-footer-text ul li i {
	font-size: 16px;
	color: var(--accent-color);
}

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

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

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

.section-footer-text.section-footer-contact {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 20px;
}

.section-footer-text.section-footer-contact span {
	width: 30px;
	height: 30px;
	padding: 0;
	display: inline-flex;
	justify-content: center;
	align-items: center;
	margin-right: 10px;
}

.section-footer-text.section-footer-contact span img {
	width: 100%;
	max-width: 16px;
}

.section-footer-text.section-satisfy-img {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image {
	border-color: var(--bg-color);
}

.section-footer-text.section-satisfy-img .satisfy-client-image figure img {
	max-width: 30px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more {
	width: 32px;
	height: 32px;
	margin-left: -10px;
}

.section-footer-text.section-satisfy-img .satisfy-client-image.add-more img {
	max-width: 16px;
}

.section-footer-text.section-satisfy-img ul {
	margin: 5px 0 0;
}

.dark-section .section-footer-text.section-satisfy-img .satisfy-client-image {
	border-color: var(--primary-color);
}

/************************************/
/**** 	 07. Why Choose Us css   ****/
/************************************/

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

.why-choose-us-content {
	height: 100%;
	align-content: center;
}

.why-choose-item {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	background: var(--secondary-color);
	border-left: 4px solid var(--accent-color);
	border-radius: 14px;
	padding: 20px;
}

.why-choose-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.why-choose-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.why-choose-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

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

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

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

.why-choose-counter-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 24px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.why-choose-counter-item {
	position: relative;
	width: calc(25% - 18px);
}

.why-choose-counter-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: -12px;
	width: 1px;
	height: 100%;
	background: var(--divider-color);
}

.why-choose-counter-item:nth-child(4n + 4):before,
.why-choose-counter-item:last-child:before {
	display: none;
}

.why-choose-counter-item h2 {
	font-size: 40px;
}

.why-choose-counter-item p {
	margin: 5px 0 0;
}

.why-choose-btn {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.why-choose-us-image-box {
	height: auto;
	display: flex;
	flex-direction: column;
	gap: 30px;
	max-width: 430px;
	margin: 0 auto;
}

.why-choose-image-box-1 {
	position: relative;
	height: auto;
	overflow: hidden;
}

.why-choose-image-box-1 .why-choose-image {
	height: auto;
}

.why-choose-image figure {
	display: block;
	height: auto;
	border-radius: 14px;
}

.why-choose-image figure img {
	width: 100%;
	height: auto;
	max-height: 430px;
	object-fit: contain;
	border-radius: 14px;
}

.why-choose-image-box-1 .why-choose-image figure img {
	aspect-ratio: auto;
}

.why-choose-scrolling-ticker {
	position: absolute;
	right: 0;
	bottom: 30px;
	left: 0;
}

.scrolling-ticker-box {
	--gap: 20px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content {
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 50s linear infinite;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.scrolling-ticker-box:hover .scrolling-content {
	animation-play-state: paused;
}

.scrolling-content span {
	font-size: 14px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
	background: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 9px 14px;
	border-radius: 5px;
}

.why-choose-image-box-2 {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-image-box-2 .why-choose-image {
	width: calc(50% - 15px);
}

.why-choose-image-box-2 .why-choose-image figure img {
	aspect-ratio: 1 / 0.9809;
}

.why-choose-info-box {
	width: calc(50% - 15px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background: var(--accent-color);
	border-radius: 14px;
	padding: 30px;
}

.why-choose-info-image {
	max-width: 110px;
}

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

.why-choose-info-image figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 14px;
}

.why-choose-info-content h3 {
	font-size: 22px;
	color: var(--white-color);
}

.why-choose-info-content p {
	color: var(--white-color);
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 15px;
	margin: 15px 0 0;
}

.why-choose-us-footer {
	margin-top: 60px;
}

.why-choose-footer-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	max-width: 900px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
}

.why-choose-footer-list ul li {
	position: relative;
	border: 1px solid var(--divider-color);
	font-weight: 500;
	line-height: 1.25em;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	padding: 9px 16px 9px 32px;
	transition: all 0.4s ease-in-out;
}

.why-choose-footer-list ul li::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.why-choose-footer-list ul li:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

/************************************/
/**** 	  08. Intro Video css	 ****/
/************************************/

.intro-video-box {
	position: relative;
}

.intro-video-box .container-fluid {
	padding: 0;
}

.intro-video-image {
	position: relative;
	overflow: hidden;
}

.intro-video-image figure {
	display: block;
}

.intro-video-image figure:before {
	content: '';
	position: absolute;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	opacity: 50%;
	z-index: 1;
}

.intro-video-image img {
	width: 100%;
	aspect-ratio: 1 / 0.45;
	object-fit: cover;
	transition: all 2s ease-in-out;
}

.intro-video:hover .intro-video-image img {
	transform: scale(1.03);
}

.intro-video .video-play-button {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.intro-video .video-play-button a span {
	width: 100px;
	height: 100px;
	font-weight: 500;
	text-transform: uppercase;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	background: transparent;
	transition: all 0.4s ease-in-out;
}

.intro-video .video-play-button a span:hover {
	border-color: var(--accent-color);
	background: var(--accent-color);
}

/************************************/
/**** 	 09. Pricing Plan css	 ****/
/************************************/

.our-pricing {
	padding: 120px 0;
}

.our-pricing-swich {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 60px;
	padding: 0;
}

.our-pricing-swich .form-check-label {
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 500;
	cursor: pointer;
}

.our-pricing-swich.form-switch .form-check-input {
	width: 80px;
	height: 40px;
	--bs-form-check-bg: var(--primary-color);
	--bs-form-switch-bg: url('../images/pricing-swich-circle.svg');
	background-size: 28px auto;
	background-position: left 5px center;
	border-radius: 100px;
	border: none;
	outline: none;
	box-shadow: none;
	cursor: pointer;
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.form-switch .form-check-input:checked {
	background-color: var(--accent-color);
	background-position: right 5px center;
}

.pricing-item {
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 14px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 20px;
	z-index: 1;
}

.pricing-item-header-box {
	padding: 20px 20px 30px;
}

.pricing-item-header {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.pricing-item-header .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.pricing-item-header .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: scale(0);
	background: var(--primary-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

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

.pricing-item-header .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.pricing-item-title {
	width: calc(100% - 65px);
}

.pricing-item-title h2 {
	font-size: 22px;
}

.pricing-item-content p {
	margin: 0;
}

.pricing-item-price {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin-top: 20px;
}

.pricing-item-price h2 {
	font-size: 40px;
}

.pricing-item-price h2 sub {
	font-size: 16px;
	bottom: 0;
}

.pricing-item-btn {
	margin-top: 30px;
}

.pricing-item-list {
	background-color: var(--bg-color);
	border-radius: 14px;
	padding: 20px;
}

.pricing-item-list h3 {
	font-size: 18px;
	font-weight: 600;
}

.pricing-item-list ul {
	border-top: 1px solid var(--divider-color);
	list-style: none;
	margin: 20px 0 0;
	padding: 20px 0 0;
}

.pricing-item-list ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.pricing-item-list ul li:last-child {
	margin-bottom: 0;
}

.pricing-item-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.pricing-benefit-list {
	margin-top: 30px;
}

.pricing-benefit-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 40px;
}

.pricing-benefit-list ul li {
	display: inline-flex;
	align-items: center;
	color: var(--primary-color);
}

.pricing-benefit-list ul li img {
	width: 100%;
	max-width: 20px;
	margin-right: 15px;
}

/************************************/
/**** 	 10. Our Features css	 ****/
/************************************/

.our-core-feature {
	background-image: url('../images/section-bg-2.png');
	background-repeat: no-repeat;
	background-position: bottom -50px right;
	background-size: auto;
	padding: 120px 0;
	overflow: hidden;
}

.core-feature-image {
	height: 100%;
	align-content: end;
}

.core-feature-image figure {
	display: block;
	margin-bottom: -120px;
}

.core-feature-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.52;
	object-fit: cover;
	border-radius: 14px 14px 0 0;
}

.core-feature-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-left: 15px;
}

.core-feature-item {
	position: relative;
	width: calc(50% - 15px);
	background-color: var(--white-color);
	border-radius: 14px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	padding: 30px;
	overflow: hidden;
}

.core-feature-item::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.core-feature-item:hover:before {
	top: auto;
	height: 100%;
}

.core-feature-item-header {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	z-index: 1;
}

.core-feature-item-header .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.core-feature-item-header .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.core-feature-item-header .icon-box img {
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

.core-feature-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.core-feature-item-number h3 {
	font-size: 22px;
	transition: all 0.4s ease-in-out;
}

.core-feature-item-content {
	position: relative;
	z-index: 1;
}

.core-feature-item-content h3 {
	font-size: 22px;
	transition: all 0.4s ease-in-out;
}

.core-feature-item-content p {
	margin: 10px 0 0;
	transition: all 0.4s ease-in-out;
}

.core-feature-item:hover .core-feature-item-number h3,
.core-feature-item:hover .core-feature-item-content h3,
.core-feature-item:hover .core-feature-item-content p {
	color: var(--white-color);
}

/************************************/
/**** 	 11. Our Fun Facts css   ****/
/************************************/

.our-fun-facts {
	background-image: url('../images/section-bg-3.png');
	background-repeat: no-repeat;
	background-position: left -160px center;
	background-size: auto;
	padding: 120px 0;
}

.fun-fact-counter-list {
	background-color: var(--secondary-color);
	border-radius: 14px;
	display: flex;
	flex-wrap: wrap;
	padding: 40px;
}

.fun-fact-counter-item {
	width: 50%;
	border-right: 1px solid var(--divider-color);
	border-bottom: 1px solid var(--divider-color);
	text-align: center;
	padding: 40px;
}

.fun-fact-counter-item:nth-of-type(2n + 2) {
	border-right: none;
	padding-right: 0;
}

.fun-fact-counter-item:nth-of-type(2n + 1) {
	padding-left: 0;
}

.fun-fact-counter-item:nth-child(-n + 2) {
	padding-top: 0;
}

.fun-fact-counter-item:nth-last-child(2):nth-child(odd),
.fun-fact-counter-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
}

.fun-fact-counter-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 20px;
	overflow: hidden;
}

.fun-fact-counter-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.fun-fact-counter-item .icon-box img {
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

.fun-fact-counter-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.fun-fact-counter-item-content h3 {
	font-size: 22px;
}

.fun-fact-counter-item-content p {
	margin: 5px 0 0;
}

.fun-fact-image {
	height: 100%;
	margin-left: 15px;
}

.fun-fact-image figure {
	display: block;
	height: 100%;
	border-radius: 14px;
}

.fun-fact-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.063;
	object-fit: cover;
	border-radius: 14px;
}

.our-fun-facts .section-footer-text {
	margin-top: 60px;
}

/************************************/
/**** 	 12. How It Works css	 ****/
/************************************/

.how-it-work.dark-section {
	padding: 50px 0;
}

.how-it-work .section-row {
	margin-bottom: 30px;
}

.how-work-items-list.who-we-are-services {
	gap: 20px;
	align-items: stretch;
}

.how-work-item.who-we-are-service,
.how-work-item.who-we-are-service:nth-child(3n + 2) {
	position: relative;
	width: calc(20% - 16px);
	flex-direction: column;
	gap: 18px;
	background: rgba(255, 255, 255, 0.07);
	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 16px;
	padding: 12px 12px 20px;
	overflow: hidden;
	transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease,
		box-shadow 0.35s ease;
}

.how-work-item.who-we-are-service::before {
	content: '';
	position: absolute;
	left: 50%;
	bottom: 0;
	width: 45px;
	height: 3px;
	background: #00aadb;
	border-radius: 5px 5px 0 0;
	transform: translateX(-50%);
	transition: width 0.35s ease;
}

.how-work-item.who-we-are-service:hover {
	background: rgba(0, 170, 219, 0.13);
	border-color: rgba(0, 170, 219, 0.75);
	box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
	transform: translateY(-8px);
}

.how-work-item.who-we-are-service:hover::before {
	width: 100%;
}

.who-we-are-service .how-work-item-image {
	width: 100%;
	max-width: none;
	overflow: hidden;
	border-radius: 12px;
}

.who-we-are-service .how-work-item-image figure,
.who-we-are-service .how-work-item-image figure img {
	border-radius: 12px;
}

.who-we-are-service .how-work-item-image figure img {
	aspect-ratio: 4 / 3;
	transition: transform 0.5s ease;
}

.who-we-are-service:hover .how-work-item-image figure img {
	transform: scale(1.08);
}

.who-we-are-service .how-work-item-content h3 {
	font-size: 18px;
	line-height: 1.3em;
	min-height: 47px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
	letter-spacing: 0.3px;
}

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

	.how-work-item.who-we-are-service,
	.how-work-item.who-we-are-service:nth-child(3n + 2) {
		width: calc(33.33% - 13.34px);
	}
}

@media only screen and (max-width: 767px) {
	.how-it-work.dark-section {
		padding: 10px 0;
	}

	.how-work-item.who-we-are-service,
	.how-work-item.who-we-are-service:nth-child(3n + 2) {
		width: calc(50% - 10px);
	}


	.who-we-are-service .how-work-item-content h3 {
		font-size: 16px;
		min-height: 42px;
	}
}

.how-work-items-list {
	display: flex;
	flex-wrap: wrap;
	gap: 50px 70px;
}

.how-work-item {
	width: calc(33.33% - 46.66px);
	text-align: center;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

.how-work-item:nth-child(3n + 2) {
	flex-direction: column-reverse;
}

.how-work-item-image {
	position: relative;
	max-width: 250px;
	margin: 0 auto;
}

.how-work-item-image figure {
	display: block;
	border-radius: 50%;
}

.how-work-item-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
}

.how-work-item-image .icon-box {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transform: translate(-50%, -50%);
	transition: all 0.4s ease-in-out;
}

.how-work-item:hover .icon-box {
	transform: translate(-50%, -50%) scale(1.3);
}

.how-work-item-image .icon-box img {
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

.how-work-item-content h3 {
	font-size: 22px;
	color: var(--white-color);
}

.how-work-item-content p {
	color: var(--white-color);
	margin: 10px 0 0;
}

.how-work-item-list {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 20px;
	margin-top: 20px;
}

.how-work-item-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.how-work-item-list ul li {
	position: relative;
	display: inline-block;
	text-align: left;
	line-height: 1.4em;
	color: var(--white-color);
	padding-left: 15px;
	margin-bottom: 15px;
}

.how-work-item-list ul li:last-child {
	margin-bottom: 0;
}

.how-work-item-list ul li::before {
	content: '';
	position: absolute;
	top: 9px;
	left: 0;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 5px;
	height: 5px;
}

.how-it-work .section-footer-text {
	margin-top: 60px;
}

/************************************/
/**** 	   13. Our FAQs css		 ****/
/************************************/

.our-faqs {
	padding: 120px 0;
}

.faqs-content {
	position: sticky;
	top: 30px;
}

.our-faqs .faq-accordion {
	margin-left: 15px;
}

.faq-accordion .accordion-item {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.3em;
	color: var(--primary-color);
	padding: 2px 40px 2px 0;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%) rotate(135deg);
	height: 30px;
	width: 30px;
	background-color: var(--accent-color);
	border-radius: 50%;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 16px auto;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-item :not(.accordion-button.collapsed)::after {
	transform: translateY(-50%) rotate(-45deg);
}

.faq-accordion .accordion-item .accordion-body {
	padding: 20px 40px 0 0;
}

.faq-accordion .accordion-item .accordion-body p {
	margin: 0;
}

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

.faq-counter-item {
	position: relative;
	width: calc(33.33% - 2.778vw);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px;
}

.faq-counter-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: -2.083vw;
	width: 1px;
	height: 100%;
	background: var(--divider-color);
}

.faq-counter-item:nth-of-type(3n + 3):before,
.faq-counter-item:last-child:before {
	display: none;
}

.faq-counter-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.faq-counter-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.faq-counter-item .icon-box img {
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

.faq-counter-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.faq-counter-item-content {
	max-width: calc(100% - 65px);
}

.faq-counter-item-content h2 {
	font-size: 48px;
	line-height: 1em;
}

.faq-counter-item-content p {
	color: var(--primary-color);
	font-weight: 500;
	margin: 5px 0 0;
}

/************************************/
/****  14. Our Testimonials css  ****/
/************************************/

.our-testimonials {
	background-image: url('../images/section-bg-1.png');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% auto;
	padding: 120px 0;
}

.our-testimonials .container {
	position: relative;
	z-index: 2;
}

.testimonial-content {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	margin-right: 15px;
}

.testimonial-client-box {
	max-width: 360px;
	background-color: var(--bg-color);
	border-radius: 14px;
	padding: 30px;
}

.testimonial-client-header {
	margin-bottom: 20px;
}

.testimonial-client-header ul {
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
	padding: 0;
	margin: 0;
}

.testimonial-client-header ul li {
	font-size: 30px;
	font-weight: 500;
	line-height: 1em;
	font-family: var(--accent-font);
	color: var(--primary-color);
}

.testimonial-client-header ul li i {
	font-size: 20px;
	color: var(--accent-color);
}

.testimonial-client-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
}

.testimonial-client-body .satisfy-client-image figure img {
	max-width: 40px;
}

.testimonial-client-body .satisfy-client-image.add-more {
	width: 42px;
	height: 42px;
}

.testimonial-client-content p {
	max-width: 155px;
	font-weight: 500;
	line-height: normal;
	color: var(--primary-color);
	margin-bottom: 0;
}

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

.testimonial-item {
	min-height: 490px;
	background-color: var(--bg-color);
	border-radius: 14px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	padding: 40px;
}

.testimonial-item-rating i {
	font-size: 20px;
	color: var(--accent-color);
}

.testimonial-item-content p {
	font-size: 22px;
	font-weight: 500;
	line-height: 1.4em;
	font-family: var(--accent-font);
	color: var(--primary-color);
	margin-bottom: 0;
}

.testimonial-author-content {
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.testimonial-author-content h2 {
	font-size: 22px;
}

.testimonial-author-content p {
	margin: 5px 0 0;
}

.our-testimonials .section-footer-text {
	margin-top: 60px;
}

/************************************/
/**** 	   15. Our Blog css		 ****/
/************************************/

.our-blog {
	padding: 120px 0 90px;
}

.post-item {
	position: relative;
	border-radius: 14px;
	min-height: 470px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	overflow: hidden;
}

.post-item-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.post-item-image a {
	display: block;
	height: 100%;
	cursor: none;
}

.post-item-image a figure {
	position: relative;
	display: block;
	height: 100%;
}

.post-item-image a figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 50%, rgba(0, 26, 41, 0.90) 100%);
	z-index: 1;
}

.post-item-image a figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.post-item:hover .post-item-image a figure img {
	transform: scale(1.06);
}

.post-item-body {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}

.post-item-tag {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	z-index: 1;
}

.post-item-tag a {
	font-size: 14px;
	font-weight: 500;
	line-height: 1.3em;
	color: var(--white-color);
	background-color: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 5px;
	padding: 8px 15px;
	transition: all 0.4s ease-in-out;
}

.post-item-tag a:hover {
	background-color: var(--accent-color);
	color: var(--white-color);
}

.post-item-body-content {
	position: relative;
	z-index: 1;
}

.post-item-content h2 {
	font-size: 22px;
	color: var(--white-color);
}

.post-item-content h2 a {
	color: inherit;
}

.post-item-btn {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 20px;
	margin-top: 20px;
}

.post-item-btn .readmore-btn {
	color: var(--white-color);
}

/************************************/
/**** 	    16. Footer css		 ****/
/************************************/

.main-footer {
	padding: 20px 0 0;
}

.main-footer-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 80px;
}

.about-footer {
	max-width: 330px;
}

.footer-logo img {
	width: 100%;
	max-width: 159px;
}

.about-footer-content {
	margin-top: 20px;
}

.about-footer-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-social-links {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.footer-social-links h2 {
	font-size: 22px;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-social-links ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 15px;
	padding: 0;
	margin: 0;
}

.footer-social-links ul li a {
	width: 36px;
	height: 36px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-social-links ul li a:hover {
	background-color: var(--accent-color);
	border-color: var(--accent-color);
}

.footer-social-links ul li a i {
	position: relative;
	font-size: 18px;
	color: var(--white-color);
	z-index: 1;
}

.footer-links-box {
	width: calc(100% - 410px);
	background-color: var(--dark-divider-color);
	border-radius: 14px;
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	padding: 2.604vw;
}

.footer-links {
	max-width: 37%;
}

.footer-links h2 {
	font-size: 22px;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-links ul {
	list-style: disc;
	padding: 0 0 0 20px;
	margin: 0;
}

.footer-links ul li {
	color: var(--white-color);
	line-height: 1.5em;
	margin-bottom: 15px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li::marker {
	color: var(--accent-color);
}

.footer-links ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-links ul li a:hover {
	color: var(--accent-color);
}

.footer-newsletter-form p {
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-newsletter-form .form-group {
	position: relative;
	display: flex;
	border-bottom: 1px solid var(--dark-divider-color);
}

.footer-newsletter-form .form-group .form-control {
	width: calc(100% - 34px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.3em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 6px 20px 20px 0;
}

.footer-newsletter-form .form-group .form-control::placeholder {
	color: var(--white-color);
	opacity: 50%;
}

.footer-newsletter-form .form-group .newsletter-btn {
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: var(--accent-color);
	border: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover {
	background: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn img {
	width: 100%;
	max-width: 18px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img {
	transform: rotate(45deg);
	filter: brightness(0) invert(0);
}

.footer-contact-items-list {
	border-top: 1px solid var(--dark-divider-color);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 80px;
	padding-top: 40px;
	margin-top: 60px;
}

.footer-contact-item {
	position: relative;
	width: calc(33.33% - 53.33px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.footer-contact-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: -40px;
	background: var(--dark-divider-color);
	width: 1px;
	height: 100%;
}

.footer-contact-item:last-child:before {
	display: none;
}

.footer-contact-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.footer-contact-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.footer-contact-item .icon-box img {
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

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

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

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

.footer-contact-item-content h3 {
	font-size: 22px;
	color: var(--white-color);
}

.footer-contact-item-content h3 a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

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

.footer-copyright-text {
	border-top: 1px solid var(--dark-divider-color);
	text-align: center;
	padding: 60px 0;
	margin-top: 40px;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin-bottom: 0;
}

/************************************/
/**** 	 17. About Us Page css   ****/
/************************************/

.page-header {
	position: relative;
	background-image: url('../images/page-header-bg.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 150px 0;
	overflow: hidden;
}

.page-header:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	background: linear-gradient(270deg, transparent 27.45%, rgba(0, 26, 41, 0.90) 72.29%);
	z-index: 1;
}

.page-header-box {
	position: relative;
	text-align: center;
	z-index: 2;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 60px;
	line-height: 1.1em;
	color: var(--white-color);
	margin-bottom: 15px;
	cursor: none;
}

.page-header-box ol {
	justify-content: center;
	margin: 0;
	padding: 0;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.our-approach {
	background-image: url('../images/section-bg-1.png');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% auto;
	padding: 120px 0;
}

.our-approach-content {
	display: flex;
	flex-direction: column;
	height: calc(100% - 50px);
	margin-bottom: 50px;
}

.approach-item-list {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-right: -190px;
	z-index: 1;
}

.approach-item {
	position: relative;
	width: calc(33.33% - 20px);
	min-height: 300px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background: var(--bg-color);
	border-radius: 14px;
	padding: 30px;
	overflow: hidden;
}

.approach-item::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: var(--primary-color);
	transition: all 0.4s ease-in-out;
}

.approach-item:hover:before {
	top: auto;
	height: 100%;
	border-radius: 0;
}

.approach-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.approach-item .icon-box img {
	width: 100%;
	max-width: 24px;
}

.approach-item-content {
	position: relative;
	z-index: 1;
}

.approach-item-content h3 {
	font-size: 22px;
	transition: all 0.4s ease-in-out;
}

.approach-item-content p {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin: 20px 0 0;
	transition: all 0.4s ease-in-out;
}

.approach-item:hover .approach-item-content p,
.approach-item:hover .approach-item-content h3 {
	color: var(--white-color);
}

.approach-item:hover .approach-item-content p {
	border-color: var(--dark-divider-color);
}

.approach-image {
	height: 100%;
	margin-left: 15px;
}

.approach-image figure {
	display: block;
	height: 100%;
	border-radius: 14px;
}

.approach-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.2926;
	object-fit: cover;
	border-radius: 14px;
}

.what-we-do {
	padding: 120px 0;
}

.what-we-do-content {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.what-we-image-video-box {
	position: relative;
	height: 100%;
}

.what-we-image {
	height: 100%;
}

.what-we-image figure {
	position: relative;
	display: block;
	height: 100%;
	border-radius: 14px;
	overflow: hidden;
}

.what-we-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	border-radius: 14px;
	opacity: 40%;
	z-index: 1;
}

.what-we-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.642;
	object-fit: cover;
	border-radius: 14px;
}

.what-we-image-video-box .watch-video-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 50%;
	z-index: 2;
}

.watch-video-circle a {
	display: inline-block;
	border-radius: 50%;
	cursor: none;
}

.watch-video-circle a img {
	width: 100%;
	max-width: 110px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.watch-video-circle a img:hover {
	animation-play-state: paused;
}

.what-we-do-body {
	height: 100%;
	display: flex;
	flex-direction: column;
	margin-left: 15px;
}

.what-we-body-image {
	height: 100%;
	margin-bottom: 40px;
}

.what-we-body-image figure {
	display: block;
	height: 100%;
	border-radius: 14px;
}

.what-we-body-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.6612;
	object-fit: cover;
	border-radius: 14px;
}

.what-we-body-content {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 50px;
}

.what-we-body-item-list {
	position: relative;
	width: calc(70% - 25px);
}

.what-we-body-item-list::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -25px;
	width: 1px;
	height: 100%;
	background: var(--divider-color);
	transform: translateY(-50%);
}

.what-we-body-item {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 30px;
}

.what-we-body-item:last-child {
	margin-bottom: 0;
}

.what-we-body-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.what-we-body-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.what-we-body-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.what-we-body-item-content {
	width: calc(100% - 65px);
}

.what-we-body-item-content h3 {
	font-size: 22px;
}

.what-we-body-item-content p {
	margin: 10px 0 0;
}

.what-we-body-rating-box {
	width: calc(30% - 25px);
}

.what-we-body-rating-box h2 {
	font-size: 24px;
	font-weight: 500;
}

.what-we-body-rating-box h2 span {
	display: inline-block;
	width: 36px;
}

.what-we-body-rating-box h2 sub {
	font-size: 16px;
	bottom: 0;
}

.what-we-body-rating-box h2 i {
	color: var(--accent-color);
	margin-left: 5px;
}

.what-we-body-rating-box p {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 500;
	line-height: normal;
	border-top: 1px solid var(--divider-color);
	padding-top: 10px;
	margin: 10px 0 0;
}

.what-we-body-btn {
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.our-advantages {
	padding: 120px 0;
}

.our-advantages .section-title.section-title-center {
	max-width: 850px;
}

.our-advantages .section-title h2 img {
	width: 100px;
	height: 40px;
	border-radius: 100px;
}

.advantages-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	min-height: 390px;
	height: calc(100% - 30px);
	background: var(--secondary-color);
	border-radius: 14px;
	margin-bottom: 30px;
	padding: 40px;
}

.advantages-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.advantages-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.advantages-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.advantages-item-content h2 {
	font-size: 48px;
	font-weight: 600;
	line-height: 1em;
	margin-bottom: 10px;
}

.advantages-item-content h3 {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
}

.advantages-item-content p {
	border-top: 1px solid var(--divider-color);
	padding-top: 15px;
	margin: 15px 0 0;
}

.advantages-image-box {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.advantages-image-box figure {
	display: block;
	height: 100%;
	border-radius: 14px;
}

.advantages-image-box figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.967;
	object-fit: cover;
	border-radius: 14px;
}

.our-advantages-footer {
	margin-top: 30px;
}

.advantages-footer-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 25px;
	max-width: 900px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
}

.advantages-footer-list ul li {
	position: relative;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25em;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	padding: 9px 16px 9px 32px;
	transition: all 0.4s ease-in-out;
}

.advantages-footer-list ul li::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.advantages-footer-list ul li:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.our-team {
	padding: 120px 0;
}

.team-item {
	background: var(--secondary-color);
	border-radius: 14px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 10px;
}

.team-item-image {
	border-radius: 14px;
	overflow: hidden;
}

.team-item-image a {
	display: block;
	border-radius: 14px;
	cursor: none;
}

.team-item-image figure {
	display: block;
	border-radius: 14px;
}

.team-item-image img {
	width: 100%;
	aspect-ratio: 1 / 0.754;
	object-fit: cover;
	border-radius: 14px;
	transition: all 0.6s ease-in-out;
}

.team-item:hover .team-item-image img {
	transform: scale(1.06);
}

.team-item-body {
	padding: 30px;
	text-align: center;
}

.team-item-content h2 {
	font-size: 22px;
}

.team-item-content h2 a {
	color: inherit;
}

.team-item-content p {
	margin: 10px 0 0;
}

.team-social-list {
	border-top: 1px solid var(--divider-color);
	padding: 20px 0 0;
	margin: 20px 0 0;
}

.team-social-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-social-list ul li a {
	width: 36px;
	height: 36px;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

.team-social-list ul li a:hover {
	color: var(--white-color);
	background: var(--accent-color);
}

.team-social-list ul li i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/**** 	 18. Services Page css   ****/
/************************************/

.page-services {
	padding: 120px 0 90px;
}

.page-services .service-item {
	background-color: var(--secondary-color);
}

/************************************/
/**** 	 19. Service Single css  ****/
/************************************/

.page-service-single {
	padding: 120px 0;
}

.page-single-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 20px;
}

.page-category-list {
	background: var(--secondary-color);
	border-radius: 14px;
	margin-bottom: 30px;
	overflow: hidden;
}

.page-category-list .page-category-list-title {
	font-size: 22px;
	color: var(--white-color);
	background: var(--accent-color);
	padding: 18px 40px;
}

.page-category-list ul {
	list-style: none;
	margin: 0;
	padding: 40px;
}

.page-category-list ul li {
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	color: var(--primary-color);
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.page-category-list ul li:last-child {
	border-bottom: none;
	margin: 0;
	padding: 0;
}

.page-category-list ul li a {
	position: relative;
	display: block;
	text-transform: capitalize;
	color: inherit;
	padding-right: 20px;
	transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover {
	color: var(--accent-color);
}

.page-category-list ul li a::before {
	content: '';
	position: absolute;
	top: 5px;
	right: 0;
	background: url('../images/arrow-primary.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 18px;
	height: 18px;
	transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover::before {
	transform: rotate(45deg);
}

.sidebar-cta-box {
	background-color: var(--primary-color);
	border-radius: 14px;
	padding: 40px;
	overflow: hidden;
}

.sidebar-cta-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 20px;
	margin-bottom: 15px;
}

.sidebar-cta-header .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.sidebar-cta-header .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.sidebar-cta-box:hover .icon-box::before {
	transform: scale(1);
}

.sidebar-cta-header .icon-box img {
	width: 100%;
	max-width: 30px;
	transition: all 0.4s ease-in-out;
}

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

.sidebar-cta-image figure {
	display: block;
	border-radius: 10px;
	margin: -10px -10px 0 0;
}

.sidebar-cta-image figure img {
	width: 100%;
	max-width: 90px;
	border-radius: 10px;
	transition: all 0.6s ease-in-out;
}

.sidebar-cta-body h2 {
	font-size: 22px;
	color: var(--white-color);
}

.sidebar-cta-body p {
	color: var(--white-color);
	border-top: 1px solid var(--dark-divider-color);
	padding: 15px 0 0 0;
	margin: 15px 0 0 0;
}

.sidebar-cta-body ul {
	list-style: none;
	padding: 0;
	margin: 30px 0 0 0;
}

.sidebar-cta-body ul li {
	font-family: var(--accent-font);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.3em;
	color: var(--white-color);
	margin-bottom: 10px;
}

.sidebar-cta-body ul li:last-child {
	margin-bottom: 0;
}

.sidebar-cta-body ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.sidebar-cta-body ul li a:hover {
	color: var(--accent-color);
}

.page-single-image {
	margin-bottom: 30px;
}

.page-single-image figure {
	display: block;
	border-radius: 14px;
}

.page-single-image img {
	width: 100%;
	aspect-ratio: 1 / 0.622;
	object-fit: cover;
	border-radius: 14px;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry h2 {
	font-size: 48px;
	margin-bottom: 20px;
}

.service-entry h3 {
	font-size: 22px;
	line-height: 1.4em;
	margin-bottom: 10px;
}

.service-entry p:last-child,
.service-entry h3:last-child {
	margin: 0;
}

.service-entry ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.service-entry ul li {
	position: relative;
	color: var(--primary-color);
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.service-entry ul li:last-child {
	margin-bottom: 0;
}

.service-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

.service-offer-box,
.service-key-benefits {
	margin-top: 60px;
}

.service-offer-box-list {
	margin: 40px 0;
}

.service-offer-box-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
}

.service-offer-box-list ul li {
	width: calc(50% - 10px);
	margin-bottom: 0;
}

.service-offer-box-video-image {
	position: relative;
	border-radius: 14px;
	overflow: hidden;
}

.service-offer-box-image figure {
	position: relative;
	display: block;
}

.service-offer-box-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 40%;
	z-index: 1;
}

.service-offer-box-image figure img {
	width: 100%;
	aspect-ratio: 1 / 0.502;
	object-fit: cover;
	transition: all 1s ease-in-out;
}

.service-offer-box-video-image:hover .service-offer-box-image figure img {
	transform: scale(1.03);
}

.service-offer-box-video-image .video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.service-offer-box-video-image .video-play-button a span {
	width: 90px;
	height: 90px;
	font-family: var(--accent-font);
	font-weight: 500;
	text-transform: uppercase;
	color: var(--white-color);
	background: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
}

.service-offer-box-video-image .video-play-button a span:hover {
	background: var(--accent-color);
}

.service-key-benefits-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-benefit-image {
	width: calc(50% - 15px);
}

.service-benefit-image figure {
	display: block;
	height: 100%;
	border-radius: 14px;
}

.service-benefit-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.3;
	object-fit: cover;
	border-radius: 14px;
}

.service-benefit-item-list {
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.service-benefit-item {
	width: 100%;
	background-color: var(--secondary-color);
	border-radius: 14px;
	padding: 30px;
}

.service-benefit-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px;
	overflow: hidden;
}

.service-benefit-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.service-benefit-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

/************************************/
/**** 	 20. Blog Archive css	 ****/
/************************************/

.page-blog {
	padding: 120px 0;
}

.page-pagination {
	margin-top: 30px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	font-family: var(--accent-font);
	color: var(--primary-color);
	font-weight: 500;
	line-height: 1em;
	text-decoration: none;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	background: var(--secondary-color);
	border-radius: 4px;
	margin: 0 5px;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	color: var(--white-color);
	background: var(--accent-color);
}

/************************************/
/**** 	 21. Blog Single css	 ****/
/************************************/

.page-single-post {
	padding: 120px 0;
}

.post-single-meta {
	margin-top: 10px;
}

.post-single-meta ol li {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child {
	margin-right: 0;
}

.post-single-meta ol li i {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
	border-radius: 14px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 14px;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-family: var(--accent-font);
	font-weight: 500;
	line-height: 1.2em;
	margin: 0 0 0.417em;
}

.post-entry h1 {
	font-size: 60px;
}

.post-entry h2 {
	font-size: 48px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 20px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
	position: relative;
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: var(--secondary-color) url('../images/icon-blockquote.svg');
	background-repeat: no-repeat;
	background-position: 30px 30px;
	background-size: 45px;
	border-radius: 14px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-family: var(--accent-font);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.4em;
	color: var(--primary-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-family: var(--accent-font);
	font-size: 22px;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	line-height: 1em;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 5px;
	padding: 12px 20px;
	transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 5px;
	width: 40px;
	height: 40px;
	transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/**** 	 22. Projects Page css	 ****/
/************************************/

.page-projects {
	padding: 120px 0 90px;
}

.project-item {
	position: relative;
	height: calc(100% - 30px);
	border-radius: 14px;
	margin-bottom: 30px;
	overflow: hidden;
}

.project-item .project-item-image a {
	cursor: none;
}

.project-item-image figure {
	display: block;
	border-radius: 14px;
}

.project-item-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.191;
	object-fit: cover;
	border-radius: 14px;
	transition: all 0.6s ease-in-out;
}

.project-item:hover .project-item-image figure img {
	transform: scale(1.06);
}

.project-item-body {
	position: absolute;
	right: 10px;
	bottom: 10px;
	left: 10px;
	border: 1px solid var(--dark-divider-color);
	background-color: var(--divider-color);
	border-radius: 14px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	padding: 30px;
	overflow: hidden;
	z-index: 1;
}

.project-item-content h2 {
	font-size: 22px;
	line-height: 1.3em;
	color: var(--white-color);
}

.project-item-content h2 a {
	color: inherit;
}

.project-item-btn {
	height: 0;
	opacity: 0;
	visibility: hidden;
	border-top: 1px solid var(--dark-divider-color);
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-item-btn {
	height: 50px;
	opacity: 1;
	margin-top: 20px;
	padding-top: 20px;
	visibility: visible;
}

.project-item-btn .readmore-btn {
	color: var(--white-color);
}

/************************************/
/**** 	 23. Project Single css  ****/
/************************************/

.page-project-single {
	padding: 120px 0;
}

.project-category-list ul li {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.project-category-list ul li span {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	color: var(--text-color);
}

.project-entry {
	margin-bottom: 60px;
}

.project-entry p {
	margin-bottom: 20px;
}

.project-entry h2 {
	font-size: 48px;
	margin-bottom: 20px;
}

.project-entry h3 {
	font-size: 22px;
	line-height: 1.4em;
	margin-bottom: 10px;
}

.project-entry p:last-child,
.project-entry h2:last-child,
.project-entry h3:last-child {
	margin-bottom: 0;
}

.project-entry ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.project-entry ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.project-entry ul li:last-child {
	margin-bottom: 0;
}

.project-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
	top: 0;
	left: 0;
}

.project-challenges-box,
.project-solution-box {
	margin-top: 60px;
}

.project-challenges-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin: 40px 0;
}

.project-challenge-item {
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
}

.project-challenge-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.project-challenge-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.project-challenge-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

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

.project-challenges-image-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.project-challenge-image {
	width: calc(50% - 15px);
}

.project-challenge-image figure {
	display: block;
	border-radius: 14px;
}

.project-challenge-image figure img {
	width: 100%;
	aspect-ratio: 1 / 0.943;
	object-fit: cover;
	border-radius: 14px;
}

.project-solution-body {
	background-color: var(--secondary-color);
	border-radius: 14px;
	padding: 40px;
	margin-top: 40px;
}

.skills-progress-bar {
	margin-bottom: 30px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skills-progress-bar .skill-data {
	display: flex;
	justify-content: space-between;
	gap: 15px;
	margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 500;
	color: var(--primary-color);
}

.skills-progress-bar .skillbar .skill-progress {
	position: relative;
	width: 100%;
	height: 6px;
	background: var(--bg-color);
	border-radius: 10px;
	overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 10px;
}

.project-solution-item-list {
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.project-solution-item {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin-bottom: 30px;
}

.project-solution-item:last-child {
	margin-bottom: 0;
}

.project-solution-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.project-solution-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.project-solution-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

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

.project-solution-item-content h3 {
	margin-bottom: 5px;
}

/************************************/
/**** 	   24. Team Page css	 ****/
/************************************/

.page-team {
	padding: 120px 0 90px;
}

/************************************/
/**** 	  25. Team Single css	 ****/
/************************************/

.page-team-single {
	padding: 120px 0;
}

.team-single-image {
	margin-bottom: 40px;
}

.team-single-image figure {
	display: block;
	border-radius: 14px;
}

.team-single-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.3566;
	object-fit: cover;
	border-radius: 14px;
}

.team-member-about,
.team-member-expertise,
.team-member-achievements {
	margin-bottom: 60px;
}

.member-social-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 10px 20px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

.member-social-list h3 {
	font-size: 22px;
}

.member-social-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.member-social-list ul li a {
	width: 36px;
	height: 36px;
	border: 1px solid var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.member-social-list ul li a:hover {
	background-color: var(--accent-color);
	color: var(--white-color);
}

.member-social-list ul li a i {
	font-size: 18px;
	color: inherit;
}

.team-member-skill-list {
	background-color: var(--secondary-color);
	border-radius: 14px;
	padding: 40px;
}

.member-achievement-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.member-achievement-item {
	width: calc(50% - 15px);
	min-height: 350px;
	background-color: var(--secondary-color);
	border-radius: 14px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 30px;
}

.member-achievement-item-image figure {
	display: block;
	border-radius: 14px;
}

.member-achievement-item-image figure img {
	width: 100%;
	max-width: 120px;
	object-fit: cover;
	border-radius: 14px;
}

.member-achievement-item-content h3 {
	font-size: 22px;
}

.member-achievement-item-content p {
	border-top: 1px solid var(--divider-color);
	padding-top: 20px;
	margin: 20px 0 0;
}

.team-contact-form {
	background-color: var(--secondary-color);
	border-radius: 14px;
	padding: 3.125vw;
}


/************************************/
/**** 	 26. Pricing Page css	 ****/
/************************************/

.page-pricing {
	padding: 120px 0;
}

/************************************/
/****  27. Testimonials Page css ****/
/************************************/

.page-testimonials {
	padding: 120px 0 90px;
}

.page-testimonials .testimonial-item {
	background-color: var(--secondary-color);
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

/************************************/
/**** 	 28. Image Gallery css	 ****/
/************************************/

.page-gallery {
	padding: 120px 0 90px;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
	cursor: none;
}

.page-gallery-box .photo-gallery figure {
	display: block;
	border-radius: 14px;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.9422;
	object-fit: cover;
	border-radius: 14px;
}

/************************************/
/**** 	 29. Video Gallery css	 ****/
/************************************/

.page-video-gallery {
	padding: 120px 0 90px;
}

.video-gallery-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a {
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 14px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
	opacity: 50%;
	visibility: visible;
	transform: scale(1);
}

.video-gallery-image a::after {
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.video-gallery-image:hover a::after {
	opacity: 1;
	visibility: visible;
}

.video-gallery-image img {
	width: 100%;
	aspect-ratio: 1 / 0.9422;
	object-fit: cover;
	border-radius: 14px;
}

/************************************/
/**** 	 30. FAQ's Page css		 ****/
/************************************/

.page-faqs {
	padding: 120px 0;
}

.page-faqs .page-single-faqs {
	margin-bottom: 60px;
}

.page-faqs .page-single-faqs:last-child {
	margin-bottom: 0px;
}

/************************************/
/***   31. Contact Us Page css    ***/
/************************************/

.page-contact-us {
	padding: 120px 0 60px;
}

.contact-us-content {
	height: 100%;
	background-color: #17502b;
	border-radius: 14px;
	display: flex;
	flex-direction: column;
	gap: 40px;
	padding: 10px;
}

.contact-us-image {
	height: 100%;
}

.contact-us-image figure {
	display: block;
	height: 100%;
	border-radius: 14px;
}

.contact-us-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.76;
	object-fit: cover;
	border-radius: 14px;
}

.contact-us-body {
	padding: 0 30px 30px;
}

.contact-us-body-title {
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.contact-us-body-title h2 {
	font-size: 22px;
	color: var(--white-color);
}

.contact-info-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 30px;
}

.contact-info-item:last-child {
	margin-bottom: 0;
}

.contact-info-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.contact-info-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.contact-info-item .icon-box img {
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

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

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

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

.contact-info-item-content h3 {
	font-size: 22px;
	color: var(--white-color);
}

.contact-info-item-content h3 a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

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

.contact-us-form {
	height: 100%;
	align-content: center;
	background-color: var(--secondary-color);
	border-radius: 14px;
	padding: 3.125vw;
	margin-left: 15px;
}

.contact-form label {
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 500;
	color: var(--primary-color);
	margin-bottom: 15px;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.429em;
	color: var(--primary-color);
	background: var(--bg-color);
	border: none;
	border-radius: 10px;
	padding: 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder {
	font-size: 14px;
	color: var(--text-color);
}

.google-map {
	padding: 60px 0 120px;
}

.google-map-iframe {
	width: 100%;
	height: 600px;
	border-radius: 14px;
	overflow: hidden;
}

.google-map-iframe iframe {
	width: 100%;
	height: 100%;
}

/************************************/
/***    32. 404 Error Page css    ***/
/************************************/

.error-page {
	padding: 120px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 540px;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 15px;
}

/************************************/
/***      33. Responsive css      ***/
/************************************/

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

	.topbar-contact-info ul li span {
		display: none;
	}

	.main-menu ul li {
		margin: 0;
	}

	.section-content-btn .section-btn {
		margin-top: 20px;
	}

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

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

	.hero-content {
		margin-right: 0;
	}

	.about-us-image-box {
		max-width: 615px;
		margin: 0 auto 30px;
	}

	.why-choose-counter-item {
		text-align: center;
	}

	.why-choose-us-content {
		height: auto;
		margin-bottom: 30px;
	}

	.why-choose-us-image-box {
		height: auto;
		margin: 0 auto;
	}

	.why-choose-image-box-1,
	.why-choose-image-box-1 .why-choose-image,
	.why-choose-image-box-2 {
		height: auto;
	}

	.why-choose-image-box-2 .why-choose-image figure img {
		aspect-ratio: 1 / 0.65;
	}

	.intro-video-image img {
		aspect-ratio: 1 / 0.56;
	}

	.our-pricing-swich {
		margin-bottom: 30px;
	}

	.our-pricing-swich.form-switch .form-check-input {
		width: 60px;
		height: 32px;
		background-size: 22px auto;
	}

	.our-core-feature {
		background-position: bottom center;
		background-size: 100% auto;
	}

	.core-feature-item-list {
		margin: 0 0 30px;
	}

	.core-feature-image {
		max-width: 500px;
		height: auto;
		margin: 0 auto;
	}

	.fun-fact-content {
		margin-bottom: 30px;
	}

	.fun-fact-image {
		height: auto;
		margin: 0;
	}

	.fun-fact-image figure {
		height: auto;
	}

	.fun-fact-image figure img {
		height: auto;
		aspect-ratio: 1 / 0.8;
	}

	.how-work-items-list {
		gap: 40px 30px;
	}

	.how-work-item {
		width: calc(50% - 15px);
		gap: 20px;
	}

	.how-work-item:nth-child(3n + 2) {
		flex-direction: column;
	}

	.faqs-content {
		position: inherit;
		margin-bottom: 30px;
	}

	.our-faqs .faq-accordion {
		margin: 0;
	}

	.testimonial-content {
		height: auto;
		flex-wrap: wrap;
		flex-direction: row;
		align-items: center;
		margin: 0 0 30px;
	}

	.testimonial-content-header {
		width: calc(60% - 10px);
	}

	.testimonial-client-box {
		width: calc(40% - 10px);
		max-width: 100%;
		padding: 20px;
	}

	.testimonial-item {
		min-height: 370px;
		padding: 30px;
	}

	.about-footer {
		width: 100%;
		max-width: 100%;
	}

	.about-footer-content {
		margin-top: 15px;
	}

	.footer-social-links h2 {
		margin-bottom: 15px;
	}

	.footer-links-box {
		width: 100%;
	}

	.footer-contact-items-list {
		gap: 30px 40px;
		padding-top: 30px;
		margin-top: 30px;
	}

	.footer-contact-item {
		width: auto;
	}

	.footer-contact-item::before {
		right: -20px;
	}

	.footer-contact-item-content h3 {
		font-size: 20px;
	}

	.footer-copyright-text {
		margin-top: 30px;
		padding: 30px 0;
	}

	.our-approach-content {
		height: auto;
		margin-bottom: 30px;
	}

	.approach-item-list {
		margin-right: 0;
	}

	.approach-image {
		height: auto;
		margin: 0;
	}

	.approach-image figure {
		height: auto;
	}

	.approach-image figure img {
		height: auto;
		aspect-ratio: 1 / 0.6;
	}

	.what-we-do-content {
		height: auto;
		margin-bottom: 30px;
	}

	.what-we-image-video-box,
	.what-we-image,
	.what-we-image figure {
		height: auto;
	}

	.what-we-image figure img {
		height: auto;
		aspect-ratio: 1 / 0.5;
	}

	.what-we-do-body {
		height: auto;
		margin: 0;
	}

	.what-we-body-image,
	.what-we-body-image figure {
		height: auto;
	}

	.what-we-body-image figure img {
		height: auto;
		aspect-ratio: 1 / 0.5;
	}

	.advantages-item {
		min-height: auto;
		padding: 30px;
	}

	.advantages-image-box figure img {
		aspect-ratio: 1 / 0.7;
	}

	.page-single-sidebar {
		margin-right: 0;
	}

	.page-category-list .page-category-list-title {
		padding: 15px 20px;
	}

	.page-category-list ul {
		padding: 20px;
	}

	.page-category-list ul li {
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.sidebar-cta-box {
		padding: 20px;
	}

	.service-entry {
		margin-bottom: 40px;
	}

	.service-offer-box,
	.service-key-benefits {
		margin-top: 40px;
	}

	.service-offer-box-list {
		margin: 30px 0;
	}

	.service-key-benefits-body {
		margin-top: 30px;
	}

	.service-benefit-item {
		padding: 20px;
	}

	.service-benefit-item .icon-box {
		margin-bottom: 30px;
	}

	.project-entry {
		margin-bottom: 40px;
	}

	.project-challenges-box,
	.project-solution-box {
		margin-top: 40px;
	}

	.project-challenges-item-list {
		margin: 30px 0;
		gap: 20px;
	}

	.project-challenge-item {
		width: 100%;
	}

	.project-solution-body {
		padding: 30px;
		margin-top: 30px;
	}

	.team-member-about,
	.team-member-expertise,
	.team-member-achievements {
		margin-bottom: 40px;
	}

	.team-member-skill-list,
	.member-achievement-item {
		padding: 30px;
	}

	.contact-us-content {
		height: auto;
		margin-bottom: 30px;
	}

	.contact-us-image,
	.contact-us-image figure {
		height: auto;
	}

	.contact-us-image figure img {
		height: auto;
		aspect-ratio: 1 / 0.65;
	}

	.contact-us-form {
		height: auto;
		margin-left: 0;
	}

	.google-map-iframe {
		height: 500px;
	}
}

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

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

	.btn-default::before {
		right: 15px;
		width: 18px;
		height: 18px;
	}

	.readmore-btn {
		padding: 3px 32px 3px 0;
	}

	.readmore-btn::before {
		width: 22px;
		height: 22px;
		background-size: 12px auto;
	}

	.topbar-contact-info ul {
		gap: 20px;
	}

	.topbar-contact-info ul li {
		font-size: 16px;
	}

	.topbar-contact-info ul li img {
		max-width: 18px;
	}

	.topbar-social-links p {
		display: none;
	}

	.topbar-social-links ul li a i {
		font-size: 16px;
	}

	header.main-header .header-sticky,
	header.main-header .header-sticky.active {
		width: 100%;
	}

	.navbar {
		padding: 2px 0;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.section-row {
		margin-bottom: 40px;
	}

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

	.section-title .section-sub-title {
		padding: 7px 12px 7px 25px;
		margin-bottom: 10px;
	}

	.section-title .section-sub-title::before {
		left: 12px;
	}

	.section-title h1 {
		font-size: 44px;
	}

	.section-title h2 {
		font-size: 38px;
	}

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

	.hero {
		padding: 150px 0;
	}

	.video-play-button a span {
		width: 46px;
		height: 46px;
	}

	.hero-client-box {
		padding-top: 30px;
		margin-top: 30px;
	}

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

	.about-us-counter-box h2 {
		font-size: 38px;
	}

	.about-us-item-content h3 {
		font-size: 20px;
	}

	.about-us-footer {
		padding-top: 30px;
		margin-top: 30px;
	}

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

	.service-item {
		padding: 10px;
	}

	.service-item-image .icon-box {
		top: 20px;
		left: 20px;
	}

	.service-item-body {
		padding: 10px;
	}

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

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

	.section-footer-text ul {
		margin: 10px 0 0;
	}

	.section-footer-text ul li {
		margin-right: 5px;
	}

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

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

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

	.why-choose-counter-item h2 {
		font-size: 34px;
	}

	.why-choose-btn {
		padding-top: 30px;
		margin-top: 30px;
	}

	.why-choose-info-content h3 {
		font-size: 20px;
	}

	.why-choose-us-footer {
		margin-top: 40px;
	}

	.why-choose-footer-list ul {
		gap: 15px;
	}

	.why-choose-footer-list ul li {
		font-size: 14px;
		padding: 6px 14px 6px 30px;
	}

	.why-choose-footer-list ul li::before {
		left: 14px;
	}

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

	.intro-video .video-play-button a span {
		width: 80px;
		height: 80px;
	}

	.our-pricing {
		padding: 60px 0;
	}

	.pricing-item {
		padding: 10px;
	}

	.pricing-item-header-box {
		padding: 10px 10px 30px;
	}

	.pricing-item-title h2 {
		font-size: 20px;
	}

	.pricing-item-price h2 {
		font-size: 34px;
	}

	.pricing-item-list ul {
		margin: 15px 0 0;
		padding: 15px 0 0;
	}

	.pricing-item-list ul li {
		margin-bottom: 10px;
	}

	.pricing-item-list ul li::before {
		font-size: 16px;
	}

	.pricing-benefit-list {
		margin-top: 10px;
	}

	.pricing-benefit-list ul {
		gap: 20px 30px;
	}

	.pricing-benefit-list ul li img {
		max-width: 18px;
		margin-right: 10px;
	}

	.our-core-feature {
		padding: 60px 0;
	}

	.core-feature-image figure {
		margin-bottom: -60px;
	}

	.core-feature-item {
		gap: 30px;
		padding: 20px;
	}

	.core-feature-item-number h3,
	.core-feature-item-content h3 {
		font-size: 20px;
	}

	.core-feature-image {
		max-width: 400px;
	}

	.our-fun-facts {
		padding: 60px 0;
	}

	.fun-fact-counter-list {
		padding: 30px;
	}

	.fun-fact-counter-item {
		padding: 30px;
	}

	.fun-fact-counter-item-content h3 {
		font-size: 20px;
	}

	.our-fun-facts .section-footer-text {
		margin-top: 40px;
	}

	.how-it-work {
		padding: 60px 0;
	}

	.how-work-item-image {
		max-width: 200px;
	}

	.how-work-item-content h3 {
		font-size: 20px;
	}

	.how-it-work .section-footer-text {
		margin-top: 40px;
	}

	.our-faqs {
		padding: 60px 0;
	}

	.faq-accordion .accordion-item {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button {
		padding: 1px 35px 1px 0;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		width: 28px;
		height: 28px;
		background-size: 16px auto;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 15px 35px 0 0;
	}

	.faqs-counter-list {
		margin-top: 40px;
		padding-top: 40px;
	}

	.faq-counter-item {
		display: block;
		text-align: center;
	}

	.faq-counter-item .icon-box {
		margin: 0 auto 15px;
	}

	.faq-counter-item-content {
		max-width: 100%;
	}

	.faq-counter-item-content h2 {
		font-size: 38px;
	}

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

	.testimonial-client-header ul li {
		font-size: 26px;
	}

	.testimonial-client-header ul li i {
		font-size: 18px;
	}

	.testimonial-client-content p {
		max-width: 100%;
	}

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

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

	.testimonial-author-content {
		padding-top: 20px;
		margin-top: 20px;
	}

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

	.our-testimonials .section-footer-text {
		margin-top: 40px;
	}

	.our-blog {
		padding: 60px 0 30px;
	}

	.post-item {
		min-height: 400px;
		padding: 20px;
	}

	.post-item-content h2 {
		font-size: 20px;
	}

	.main-footer {
		padding: 60px 0 0;
	}

	.footer-social-links {
		padding-top: 20px;
		margin-top: 20px;
	}

	.footer-social-links h2 {
		font-size: 20px;
	}

	.footer-links h2 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.footer-contact-items-list {
		gap: 20px 30px;
	}

	.footer-contact-item::before {
		display: none;
	}

	.page-header {
		padding: 90px 0;
	}

	.page-header-box h1 {
		font-size: 44px;
		margin-bottom: 10px;
	}

	.our-approach {
		padding: 60px 0;
	}

	.approach-item-list {
		gap: 20px;
	}

	.approach-item {
		width: calc(33.33% - 13.33px);
		min-height: auto;
		gap: 20px;
		padding: 20px;
	}

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

	.approach-item-content p {
		padding-top: 15px;
		margin: 15px 0 0;
	}

	.what-we-do {
		padding: 60px 0;
	}

	.what-we-body-image {
		margin-bottom: 30px;
	}

	.what-we-body-item-content h3 {
		font-size: 20px;
	}

	.what-we-body-btn {
		margin-top: 30px;
		padding-top: 30px;
	}

	.our-advantages {
		padding: 60px 0;
	}

	.our-advantages .section-title h2 img {
		width: 80px;
		height: 30px;
	}

	.advantages-item-content h2 {
		font-size: 38px;
	}

	.our-advantages-footer {
		margin-top: 10px;
	}

	.advantages-footer-list ul {
		gap: 15px;
	}

	.advantages-footer-list ul li {
		font-size: 14px;
		padding: 6px 14px 6px 30px;
	}

	.advantages-footer-list ul li::before {
		left: 14px;
	}

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

	.our-team {
		padding: 60px 0;
	}

	.team-item-body {
		padding: 20px;
	}

	.team-item-content h2 {
		font-size: 20px;
	}

	.page-services {
		padding: 60px 0 30px;
	}

	.page-service-single {
		padding: 60px 0;
	}

	.page-single-sidebar {
		position: initial;
		margin-bottom: 30px;
	}

	.page-category-list .page-category-list-title {
		font-size: 20px;
	}

	.sidebar-cta-header .icon-box {
		width: 50px;
		height: 50px;
	}

	.sidebar-cta-header .icon-box img {
		max-width: 24px;
	}

	.sidebar-cta-image figure img {
		max-width: 70px;
	}

	.sidebar-cta-body h2 {
		font-size: 20px;
	}

	.sidebar-cta-body ul {
		margin-top: 20px;
	}

	.sidebar-cta-body ul li {
		font-size: 20px;
	}

	.service-entry h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

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

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-entry ul li {
		margin-bottom: 10px;
	}

	.service-entry ul li::before {
		font-size: 16px;
	}

	.page-single-image {
		margin-bottom: 20px;
	}

	.service-offer-box-list ul li {
		margin-bottom: 0;
	}

	.page-blog {
		padding: 60px 0;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 60px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry h2 {
		font-size: 38px;
	}

	.post-entry p {
		margin-bottom: 15px;
	}

	.post-entry ol li,
	.post-entry ul li {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		background-size: 40px;
		padding: 20px 20px 20px 70px;
		margin-bottom: 20px;
	}

	.post-entry blockquote p {
		font-size: 20px;
	}

	.post-tags {
		margin-bottom: 20px;
	}

	.tag-links {
		font-size: 20px;
	}

	.post-tags .tag-links a {
		padding: 12px 15px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.page-projects {
		padding: 60px 0 30px;
	}

	.project-item-body {
		padding: 20px;
	}

	.project-item-content h2 {
		font-size: 20px;
	}

	.page-project-single {
		padding: 60px 0;
	}

	.project-entry h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.project-entry h3 {
		font-size: 20px;
	}

	.project-entry p {
		margin-bottom: 15px;
	}

	.project-entry ul li {
		margin-bottom: 10px;
	}

	.project-entry ul li::before {
		font-size: 16px;
	}

	.page-team {
		padding: 60px 0 30px;
	}

	.page-team-single {
		padding: 60px 0;
	}

	.team-single-image {
		margin-bottom: 30px;
	}

	.team-single-image figure img {
		aspect-ratio: 1 / 0.6;
	}

	.member-social-list {
		padding-top: 30px;
	}

	.member-social-list h3 {
		font-size: 20px;
	}

	.member-achievement-item {
		min-height: auto;
		padding: 20px;
	}

	.member-achievement-item-content h3 {
		font-size: 20px;
	}

	.team-contact-form {
		padding: 30px;
	}

	.page-pricing {
		padding: 60px 0;
	}

	.page-testimonials {
		padding: 60px 0 30px;
	}

	.page-gallery {
		padding: 60px 0 30px;
	}

	.page-video-gallery {
		padding: 60px 0 30px;
	}

	.page-faqs {
		padding: 60px 0;
	}

	.page-faqs .page-single-faqs {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 60px 0 30px;
	}

	.contact-us-content {
		gap: 30px;
	}

	.contact-us-body {
		padding: 0 20px 20px;
	}

	.contact-us-body-title {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.contact-us-body-title h2 {
		font-size: 20px;
	}

	.contact-info-item {
		margin-bottom: 20px;
	}

	.contact-info-item-content h3 {
		font-size: 20px;
	}

	.contact-us-form {
		padding: 30px;
	}

	.contact-form .form-control {
		padding: 15px;
	}

	.google-map {
		padding: 30px 0 60px;
	}

	.error-page {
		padding: 60px 0px;
	}

	.error-page-image {
		margin-bottom: 20px;
	}
}

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

	.navbar-brand img {
		width: 165px;
		max-height: 66px;
	}

	.topbar {
		padding: 10px 0;
	}

	.topbar-contact-info ul {
		justify-content: center;
		gap: 10px 15px;
	}

	.topbar-contact-info ul li {
		font-size: 14px;
	}

	.topbar-contact-info ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.topbar-social-links {
		display: flex;
		justify-content: center;
		margin-top: 10px;
	}

	.section-row {
		margin-bottom: 30px;
	}

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

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

	.hero {
		padding: 100px 0;
	}

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

	.satisfy-client-image figure img {
		max-width: 40px;
	}

	.satisfy-client-image.add-more {
		width: 42px;
		height: 42px;
	}

	.hero-client-box .hero-client-content {
		max-width: 100%;
		border: none;
		padding: 0;
		margin: 10px 0 0;
	}

	.about-us-image-box-1 .about-us-image figure {
		margin-right: -80px;
	}

	.about-us-counter-box {
		padding: 15px;
		margin: 10px 4px 0 0;
	}

	.about-us-counter-box h2 {
		font-size: 26px;
	}

	.about-us-counter-box p {
		font-size: 14px;
		margin: 5px 0 0;
	}

	.about-us-image-box-2 .contact-us-circle {
		margin: 0 20px 10px 0;
	}

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

	.about-us-item-list {
		width: 100%;
	}

	.about-us-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.about-us-item-content h3 {
		font-size: 18px;
	}

	.about-us-item-content p {
		margin: 5px 0 0;
	}

	.about-us-body-image {
		width: 100%;
		max-width: 100%;
	}

	.about-us-body-image figure,
	.about-us-body-image figure img {
		height: auto;
	}

	.about-us-body-image figure img {
		aspect-ratio: 1 / 0.9;
	}

	.about-us-footer {
		gap: 20px;
	}

	.video-play-button p {
		font-size: 14px;
	}

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

	.service-item-content p {
		margin: 5px 0 0;
	}

	.service-item-btn {
		padding-top: 15px;
		margin-top: 15px;
	}

	.section-footer-text ul li {
		font-size: 18px;
	}

	.why-choose-item {
		padding: 15px;
	}

	.why-choose-item-content {
		width: 100%;
	}

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

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

	.why-choose-counter-list {
		gap: 20px;
	}

	.why-choose-counter-item {
		min-width: auto;
		width: calc(50% - 10px);
	}

	.why-choose-counter-item:nth-child(2n + 2)::before {
		display: none;
	}

	.why-choose-counter-item::before {
		right: -10px;
	}

	.why-choose-counter-item h2 {
		font-size: 28px;
	}

	.why-choose-counter-item p {
		font-size: 14px;
	}

	.why-choose-us-image-box {
		gap: 20px;
	}

	.why-choose-scrolling-ticker {
		bottom: 20px;
	}

	.scrolling-ticker-box {
		--gap: 15px;
	}

	.scrolling-content span {
		padding: 6px 12px;
	}

	.why-choose-image-box-2 .why-choose-image {
		width: calc(45% - 10px);
	}

	.why-choose-image-box-2 {
		gap: 20px;
	}

	.why-choose-info-box {
		width: calc(55% - 10px);
		gap: 15px;
		padding: 15px;
	}

	.why-choose-info-image {
		max-width: 80px;
	}

	.why-choose-info-content h3 {
		font-size: 16px;
	}

	.why-choose-info-content p {
		font-size: 14px;
		padding-top: 10px;
		margin: 10px 0 0;
	}

	.why-choose-footer-list ul {
		gap: 10px;
	}

	.why-choose-footer-list ul li {
		padding: 5px 10px 5px 22px;
	}

	.why-choose-footer-list ul li::before {
		left: 10px;
	}

	.intro-video-image img {
		aspect-ratio: 1 / 0.7;
	}

	.our-pricing-swich .form-check-label {
		font-size: 18px;
	}

	.pricing-item-title h2 {
		font-size: 18px;
	}

	.pricing-item-price {
		padding-top: 15px;
		margin-top: 15px;
	}

	.pricing-item-price h2 {
		font-size: 24px;
	}

	.pricing-item-list {
		padding: 15px;
	}

	.pricing-benefit-list ul {
		gap: 10px;
	}

	.pricing-benefit-list ul li {
		font-size: 14px;
	}

	.pricing-benefit-list ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.core-feature-item-list {
		gap: 20px;
	}

	.core-feature-item {
		width: 100%;
		padding: 20px;
	}

	.core-feature-item-number h3,
	.core-feature-item-content h3 {
		font-size: 18px;
	}

	.core-feature-item-content p {
		margin: 5px 0 0;
	}

	.core-feature-image {
		max-width: 280px;
	}

	.fun-fact-counter-list {
		padding: 20px;
	}

	.fun-fact-counter-item {
		padding: 20px;
	}

	.fun-fact-counter-item-content h3 {
		font-size: 18px;
	}

	.fun-fact-counter-item-content p {
		font-size: 14px;
		margin: 5px 0 0;
	}

	.fun-fact-image figure img {
		aspect-ratio: 1 / 1.063;
	}

	.how-work-item {
		width: 100%;
	}

	.how-work-item-content h3 {
		font-size: 18px;
	}

	.how-work-item-list {
		margin-top: 15px;
		padding-top: 15px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding-right: 0;
	}

	.faqs-counter-list {
		gap: 20px;
		padding-top: 30px;
		margin-top: 30px;
	}

	.faq-counter-item {
		width: calc(50% - 10px);
	}

	.faq-counter-item::before {
		right: -10px;
	}

	.faq-counter-item:nth-of-type(3n + 3):before {
		display: block;
	}

	.faq-counter-item:nth-of-type(2n + 2):before,
	.faq-counter-item:last-child:before {
		display: none;
	}

	.faq-counter-item-content h2 {
		font-size: 26px;
	}

	.faq-counter-item-content p {
		font-size: 14px;
	}

	.testimonial-content-header {
		width: 100%;
	}

	.testimonial-client-box {
		width: 100%;
		padding: 20px;
	}

	.testimonial-client-header ul li {
		font-size: 22px;
	}

	.testimonial-client-header ul li i {
		font-size: 16px;
	}

	.testimonial-item {
		min-height: 300px;
		padding: 20px;
	}

	.testimonial-item-content p,
	.testimonial-author-content h2 {
		font-size: 18px;
	}

	.post-item-content h2 {
		font-size: 18px;
	}

	.footer-links-box {
		padding: 20px;
	}

	.footer-links {
		max-width: 100%;
	}

	.footer-social-links h2,
	.footer-links h2 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links ul li {
		margin-bottom: 10px;
	}

	.footer-newsletter-form p {
		margin-bottom: 15px;
	}

	.footer-contact-item {
		width: 100%;
	}

	.footer-contact-item-content h3 {
		font-size: 18px;
	}

	.footer-copyright-text {
		padding: 15px 0;
	}

	.page-header-box h1 {
		font-size: 28px;
	}

	.approach-item {
		width: 100%;
	}

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

	.approach-image figure img {
		aspect-ratio: 1 / 1;
	}

	.what-we-image figure img {
		aspect-ratio: 1 / 0.642;
	}

	.watch-video-circle a img {
		max-width: 90px;
	}

	.what-we-body-image figure img {
		aspect-ratio: 1 / 0.642;
	}

	.what-we-body-item-list {
		width: 100%;
	}

	.what-we-body-item-content h3 {
		font-size: 18px;
	}

	.what-we-body-item-content p {
		margin: 5px 0 0;
	}

	.what-we-body-item-list::before {
		display: none;
	}

	.what-we-body-rating-box {
		width: 100%;
		flex-direction: initial;
		align-items: center;
		gap: 10px;
	}

	.what-we-body-rating-box h2 i {
		font-size: 18px;
	}

	.what-we-body-rating-box p {
		font-size: 18px;
		border: none;
		padding-top: 0;
		margin-top: 5px;
	}

	.our-advantages .section-title h2 img {
		width: 60px;
		height: 24px;
	}

	.advantages-item {
		gap: 20px;
		padding: 20px;
	}

	.advantages-item-content h2 {
		font-size: 26px;
	}

	.advantages-footer-list ul {
		gap: 10px;
	}

	.advantages-footer-list ul li {
		padding: 5px 10px 5px 22px;
	}

	.advantages-footer-list ul li::before {
		left: 10px;
	}

	.team-item-body {
		padding: 20px 10px 10px;
	}

	.team-item-content p {
		margin: 5px 0 0;
	}

	.page-category-list .page-category-list-title {
		font-size: 18px;
	}

	.sidebar-cta-body h2 {
		font-size: 18px;
	}

	.sidebar-cta-body ul li {
		font-size: 18px;
	}

	.service-entry h2 {
		font-size: 26px;
	}

	.service-entry h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.service-offer-box-list ul {
		gap: 10px;
	}

	.service-offer-box-list ul li {
		width: 100%;
	}

	.service-offer-box-image figure img {
		aspect-ratio: 1 / 0.7;
	}

	.service-offer-box-video-image .video-play-button a span {
		width: 70px;
		height: 70px;
	}

	.service-key-benefits-body {
		height: auto;
	}

	.service-benefit-image,
	.service-benefit-item-list {
		width: 100%;
	}

	.service-benefit-image figure {
		height: auto;
	}

	.service-benefit-image figure img {
		height: auto;
		aspect-ratio: 1 / 1;
	}

	.service-benefit-item-list {
		gap: 20px;
	}

	.service-benefit-item .icon-box {
		margin-bottom: 20px;
	}

	.post-single-meta {
		margin-top: 5px;
	}

	.post-single-meta ol li,
	.post-single-meta ol li i {
		font-size: 16px;
	}

	.post-image img {
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote {
		padding: 65px 20px 20px 20px;
	}

	.post-entry blockquote p {
		font-size: 18px;
	}

	.post-entry h2 {
		font-size: 26px;
	}

	.tag-links {
		font-size: 18px;
	}

	.project-item-body {
		padding: 15px;
	}

	.project-item-content h2 {
		font-size: 18px;
	}

	.project-item:hover .project-item-btn {
		height: 40px;
		margin-top: 15px;
		padding-top: 15px;
	}

	.project-entry h2 {
		font-size: 26px;
	}

	.project-entry h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.project-challenges-image-box {
		gap: 20px;
	}

	.project-challenge-image {
		width: calc(50% - 10px);
	}

	.project-solution-body {
		padding: 20px;
	}

	.skills-progress-bar .skill-data .skill-title,
	.skills-progress-bar .skill-data .skill-no {
		font-size: 16px;
	}

	.project-solution-item-content {
		width: 100%;
	}

	.team-single-image figure img {
		aspect-ratio: 1 / 1.2;
	}

	.member-social-list h3 {
		font-size: 18px;
	}

	.team-member-skill-list {
		padding: 20px;
	}

	.member-achievement-item {
		width: 100%;
		gap: 20px;
		padding: 20px;
	}

	.member-achievement-item-image figure img {
		max-width: 80px;
	}

	.member-achievement-item-content h3 {
		font-size: 18px;
	}

	.member-achievement-item-content p {
		padding-top: 15px;
		margin: 15px 0 0;
	}

	.team-contact-form {
		padding: 20px;
	}

	.contact-us-body {
		padding: 0 10px 10px;
	}

	.contact-us-body-title h2 {
		font-size: 18px;
	}

	.contact-info-item-content h3 {
		font-size: 18px;
	}

	.contact-us-form {
		padding: 20px;
	}

	.google-map-iframe {
		height: 350px;
	}
}

/************************************/
/***   34. Home - Version 2 css   ***/
/************************************/

.main-header.main-header-royal {
	position: absolute;
	top: 40px;
	left: 15px;
	right: 15px;
}

.main-header.main-header-royal .header-sticky {
	position: relative;
	max-width: 1300px;
	border-radius: 14px;
	margin: 0 auto;
	z-index: 100;
}

.main-header.main-header-royal .header-sticky.active {
	top: 15px;
	left: 15px;
	right: 15px;
	border: 1px solid var(--divider-color);
	border-radius: 14px;
}

.main-header.main-header-royal .navbar {
	padding: 15px 0;
	align-items: center;
}

.hero-royal {
	position: relative;
	height: 100vh;
	min-height: 970px;
	align-content: end;
	padding: 220px 0 100px;
	overflow: hidden;
}

.hero-royal::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 0%, rgba(0, 26, 41, 0.90) 89.53%);
	z-index: 1;
}

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

.hero-royal .hero-bg-video-royal video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero-royal .container {
	position: relative;
	z-index: 2;
}

.hero-content-royal {
	margin-right: 2.604vw;
}

.hero-content-royal .section-title h1 {
	font-size: 66px;
}

.hero-content-body-royal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 40px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 40px;
}

.hero-contact-info-royal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.hero-contact-info-royal .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.dark-section .hero-contact-info-royal .icon-box::before {
	background-color: var(--white-color);
}

.hero-contact-info-royal .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.dark-section .hero-contact-info-royal .icon-box::before {
	background: var(--white-color);
}

.hero-contact-info-royal:hover .icon-box::before {
	transform: scale(1);
}

.hero-contact-info-royal .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.dark-section .hero-contact-info-royal:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.hero-contact-info-content-royal p {
	margin-bottom: 5px;
}

.dark-section .hero-contact-info-content-royal p {
	color: var(--white-color);
}

.hero-contact-info-content-royal h2 {
	font-size: 20px;
}

.dark-section .hero-contact-info-content-royal h2 {
	color: var(--white-color);
}

.hero-contact-info-content-royal h2 a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.hero-contact-info-content-royal h2 a:hover {
	color: var(--accent-color);
}

.hero-info-box-royal {
	display: flex;
	flex-wrap: wrap;
	border: 1px solid var(--dark-divider-color);
	background-color: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 14px;
	padding: 10px;
}

.hero-info-box-image-royal {
	width: 49%;
}

.hero-info-box-image-royal figure {
	display: block;
	height: 100%;
	border-radius: 14px;
}

.hero-info-box-image-royal figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.163;
	object-fit: cover;
	border-radius: 14px;
}

.hero-info-box-body-royal {
	width: 51%;
	align-content: center;
	padding: 20px 20px 20px 30px;
}

.hero-info-box-body-royal .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 50px;
	overflow: hidden;
}

.hero-info-box-body-royal .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--white-color);
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.hero-info-box-royal:hover .icon-box::before {
	transform: scale(1);
}

.hero-info-box-body-royal .icon-box img {
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

.hero-info-box-royal:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.hero-info-box-content-royal h3 {
	font-size: 22px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.hero-info-box-content-royal p {
	color: var(--white-color);
	margin-bottom: 0;
}

.hero-info-box-content-royal ul {
	list-style: disc;
	border-top: 1px solid var(--dark-divider-color);
	padding: 20px 0 0 20px;
	margin: 20px 0 0;
}

.hero-info-box-content-royal ul li {
	line-height: 1.5em;
	color: var(--white-color);
	margin-bottom: 10px;
}

.hero-info-box-content-royal ul li:last-child {
	margin-bottom: 0;
}

.hero-info-box-content-royal ul li::marker {
	color: var(--accent-color);
}

.about-us-royal {
	padding: 120px 0;
}

.about-us-image-box-royal {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	margin-right: 15px;
}

.about-us-image-box-1-royal {
	position: relative;
	width: 42%;
	margin-bottom: 140px;
}

.about-us-image-royal figure,
.about-us-image-2-royal figure {
	display: block;
	border-radius: 14px;
}

.about-us-image-royal figure img,
.about-us-image-2-royal figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 14px;
}

.about-us-image-box-1-royal .about-us-image-royal figure {
	margin-right: -159px;
}

.about-us-image-box-1-royal .about-us-image-royal figure img {
	aspect-ratio: 1 / 1.155;
}

.contact-us-circle-royal {
	position: absolute;
	left: 60px;
	bottom: 0;
	transform: translateY(50%);
	margin-right: 20px;
	z-index: 1;
}

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

.contact-us-circle-royal a img {
	width: 100%;
	max-width: 130px;
	aspect-ratio: 1 / 1;
	border-radius: 50%;
	animation: infiniterotateroyal 20s infinite linear;
}

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

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

.contact-us-circle-royal a:hover img {
	animation-play-state: paused;
}

.about-us-image-box-2-royal {
	position: relative;
	width: 58%;
	z-index: 1;
}

.about-us-image-box-2-royal .about-us-image-2-royal {
	max-width: 315px;
	margin-left: auto;
}

.about-us-image-box-2-royal .about-us-image-2-royal figure {
	margin-bottom: -10px;
}

.about-us-image-box-2-royal .about-us-image-2-royal figure img {
	aspect-ratio: 1 / 0.985;
}

.about-us-image-box-2-royal .about-us-image-royal figure img {
	aspect-ratio: 1 / 0.912;
}

.about-us-body-royal {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

.about-us-body-content-royal {
	width: calc(100% - 280px);
}

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

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

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

.about-us-list-royal ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.about-us-btn-royal {
	margin-top: 40px;
}

.about-us-counter-box-royal {
	max-width: 250px;
	background-color: var(--secondary-color);
	border-radius: 14px;
	align-content: center;
	text-align: center;
	padding: 30px;
}

.about-us-counter-box-royal h2 {
	font-size: 48px;
	color: var(--accent-color);
}

.about-us-counter-box-royal p {
	margin: 10px 0 0;
}

.our-services-royal {
	background-image: url('../images/section-bg-1.png');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% auto;
	padding: 120px 0;
}

.service-item-royal {
	position: relative;
	height: calc(100% - 30px);
	min-height: 460px;
	border-radius: 14px;
	align-content: end;
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.service-item-image-royal {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.service-item-image-royal a {
	cursor: none;
}

.service-item-image-royal a figure {
	position: relative;
	display: block;
	height: 100%;
}

.service-item-image-royal a figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 20.5%, rgba(0, 26, 41, 0.80) 88.72%);
	z-index: 1;
}

.service-item-image-royal a figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.service-item-royal:hover .service-item-image-royal a figure img {
	transform: scale(1.06);
}

.service-item-body-royal {
	position: relative;
	z-index: 1;
}

.service-item-body-royal .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
	overflow: hidden;
}

.service-item-body-royal .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.service-item-body-royal .icon-box img {
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

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

.service-item-content-royal h2 {
	font-size: 22px;
	color: var(--white-color);
}

.service-item-content-royal h2 a {
	color: inherit;
}

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

.our-core-feature-royal {
	padding: 120px 0;
}

.core-feature-content-royal {
	height: 100%;
	align-content: center;
}

.core-feature-list-royal {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.core-feature-item-royal {
	width: calc(50% - 15px);
	background-color: var(--secondary-color);
	border-radius: 14px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	padding: 20px;
	transition: all 0.4s ease-in-out;
}

.core-feature-item-royal:hover {
	background-color: var(--accent-color);
}

.core-feature-item-royal .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.core-feature-item-royal .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.core-feature-item-royal .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.core-feature-item-content-royal {
	width: calc(100% - 65px);
}

.core-feature-item-content-royal h3 {
	font-size: 22px;
	line-height: 1.3em;
	transition: all 0.4s ease-in-out;
}

.core-feature-item-royal:hover .core-feature-item-content-royal h3 {
	color: var(--white-color);
}

.core-feature-content-body-royal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 40px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.core-feature-image-box-royal {
	position: relative;
	height: 100%;
	border-radius: 14px;
	margin-left: 15px;
	overflow: hidden;
}

.core-feature-image-royal {
	height: 100%;
}

.core-feature-image-royal figure {
	display: block;
	height: 100%;
	border-radius: 14px;
}

.core-feature-image-royal figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.987;
	object-fit: cover;
	border-radius: 14px;
}

.core-feature-client-box-royal {
	position: absolute;
	left: 20px;
	bottom: 20px;
	right: 20px;
	max-width: 220px;
	background-color: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 14px;
	padding: 20px;
	z-index: 1;
}

.core-feature-client-content-royal p {
	font-weight: 500;
	color: var(--white-color);
	margin: 15px 0 0;
}

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

.why-choose-us-image-royal {
	margin-right: 20px;
}

.why-choose-us-image-royal figure {
	display: block;
	border-radius: 50%;
}

.why-choose-us-image-royal figure img {
	width: 100%;
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
	border-radius: 50%;
}

.why-choose-items-list-royal {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-item-royal {
	width: calc(50% - 15px);
}

.why-choose-item-header-royal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.why-choose-item-header-royal .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.why-choose-item-header-royal .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.why-choose-item-header-royal .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.why-choose-item-royal:hover .why-choose-item-header-royal .icon-box img {
	filter: brightness(0) invert(0);
}

.why-choose-item-title-royal {
	width: calc(100% - 65px);
}

.why-choose-item-title-royal h3 {
	font-size: 22px;
	color: var(--white-color);
}

.why-choose-item-content-royal {
	margin-top: 15px;
}

.why-choose-item-content-royal p {
	color: var(--white-color);
	margin-bottom: 0;
}

.why-choose-content-body-royal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 40px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.what-we-do-royal {
	padding: 120px 0;
}

.what-we-item-royal {
	position: relative;
	border-radius: 14px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.what-we-item-royal.box-1 {
	background: var(--primary-color) url('../images/what-we-do-item-bg-royal.png') no-repeat;
	background-position: top right;
	background-size: 100% auto;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
}

.what-we-item-content-royal p {
	color: var(--white-color);
	margin-bottom: 0;
}

.what-we-item-royal.box-1 .what-we-item-image-royal {
	margin-right: auto;
}

.what-we-item-royal.box-1 .what-we-item-image-royal figure {
	display: block;
	border-radius: 0 14px 0 0;
	margin: 0 0 -130px -115px;
}

.what-we-item-royal.box-1 .what-we-item-image-royal figure img {
	width: 100%;
	aspect-ratio: 1 / 0.95;
	object-fit: cover;
	border-radius: 0 14px 0 0;
}

.what-we-item-royal.box-2 {
	align-content: end;
	min-height: 450px;
}

.what-we-item-royal.box-2 .what-we-item-image-royal {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.what-we-item-royal.box-2 .what-we-item-image-royal figure {
	position: relative;
	display: block;
	height: 100%;
	border-radius: 14px;
}

.what-we-item-royal.box-2 .what-we-item-image-royal figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, transparent 46.33%, rgba(0, 26, 41, 0.80) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.what-we-item-royal.box-2 .what-we-item-image-royal figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 14px;
}

.what-we-item-body-royal {
	position: relative;
	z-index: 1;
}

.what-we-item-logo-royal img {
	width: 100%;
	max-width: 159px;
}

.what-we-item-content-royal {
	margin-top: 20px;
}

.what-we-item-content-royal p {
	color: var(--white-color);
	margin-bottom: 0;
}

.what-we-item-royal.box-3 {
	background-color: var(--secondary-color);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}

.what-we-counter-box-royal .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
	overflow: hidden;
}

.what-we-counter-box-royal .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.what-we-item-royal.box-3:hover .icon-box::before {
	transform: scale(1);
}

.what-we-counter-box-royal .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.what-we-counter-content-royal h2 {
	font-size: 48px;
	font-weight: 600;
}

.what-we-counter-content-royal p {
	margin: 5px 0 0;
}

.what-we-client-box-royal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

.what-we-client-box-royal .satisfy-client-image figure img {
	max-width: 40px;
}

.what-we-client-box-royal .satisfy-client-image.add-more {
	width: 42px;
	height: 42px;
}

.what-we-client-content-royal {
	max-width: 45%;
}

.what-we-client-content-royal p {
	font-weight: 500;
	line-height: 1.4em;
	color: var(--primary-color);
	margin-bottom: 0;
}

.how-it-work-royal {
	overflow: hidden;
}

.how-it-work-royal .container-fluid {
	padding: 0;
}

.how-work-content-royal {
	height: 100%;
	align-content: center;
	padding: 5.208vw;
}

.how-work-items-list-royal {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-work-item-royal {
	position: relative;
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	background-color: var(--bg-color);
	border-radius: 14px;
	padding: 30px;
	overflow: hidden;
}

.how-work-item-royal::before {
	content: '';
	position: absolute;
	top: 0;
	right: auto;
	bottom: 0;
	left: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	transition: all 0.4s ease-in-out;
}

.how-work-item-royal:hover:before {
	width: 100%;
}

.how-work-item-number-royal {
	position: relative;
	z-index: 1;
}

.how-work-item-number-royal h2 {
	width: 55px;
	font-size: 40px;
	color: var(--accent-color);
}

.how-work-item-content-royal {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.how-work-item-content-royal h3 {
	font-size: 22px;
	transition: all 0.4s ease-in-out;
}

.how-work-item-content-royal p {
	margin: 10px 0 0;
	transition: all 0.4s ease-in-out;
}

.how-work-item-royal:hover .how-work-item-content-royal h3,
.how-work-item-royal:hover .how-work-item-content-royal p {
	color: var(--white-color);
}

.how-work-info-box-royal {
	height: 100%;
	display: flex;
	flex-direction: column;
}

.how-work-info-item-royal {
	height: 100%;
	background-color: var(--primary-color);
	display: flex;
	flex-wrap: wrap;
}

.how-work-info-item-royal:nth-of-type(even) {
	flex-direction: row-reverse;
}

.how-work-info-item-image-royal {
	width: 50%;
	height: 100%;
}

.how-work-info-item-image-royal figure {
	display: block;
	height: 100%;
}

.how-work-info-item-image-royal figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.779;
	object-fit: cover;
}

.how-work-info-item-body-royal {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 30px;
}

.how-work-info-counter-box-royal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.how-work-info-counter-content-royal {
	width: calc(100% - 70px);
}

.how-work-info-counter-content-royal h2 {
	font-size: 48px;
	font-weight: 600;
	color: var(--white-color);
}

.how-work-info-counter-content-royal p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.how-work-info-counter-box-royal .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.how-work-info-counter-box-royal .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.how-work-info-item-body-royal:hover .how-work-info-counter-box-royal .icon-box::before {
	transform: scale(1);
}

.how-work-info-counter-box-royal .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.how-work-info-item-body-royal:hover .how-work-info-counter-box-royal .icon-box img {
	filter: brightness(0) invert(0);
}

.how-work-info-item-royal.box-1 .how-work-info-item-content-royal {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
}

.how-work-info-item-royal.box-1 .how-work-info-item-content-royal p {
	color: var(--white-color);
	margin-bottom: 0;
}

.how-work-info-item-royal.box-2 {
	text-align: center;
}

.how-work-info-item-royal.box-2 .how-work-info-item-content-royal {
	padding: 0 20px;
	margin: 0 auto;
}

.how-work-info-item-royal.box-2 .how-work-info-item-content-royal p {
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: 0;
}

.how-work-info-item-body-image-royal figure {
	display: block;
	border-radius: 14px 14px 0 0;
	margin-bottom: -30px;
}

.how-work-info-item-body-image-royal figure img {
	width: 100%;
	aspect-ratio: 1 / 0.48;
	object-fit: cover;
	border-radius: 14px 14px 0 0;
}

.our-projects-royal {
	padding: 120px 0;
}

.our-pricing-royal {
	background-image: url('../images/section-bg-2.png');
	background-repeat: no-repeat;
	background-position: bottom -10px right;
	background-size: auto;
	padding: 120px 0;
}

.pricing-item-royal {
	height: calc(100% - 30px);
	background-color: var(--bg-color);
	border-radius: 14px;
	margin-bottom: 30px;
	overflow: hidden;
}

.pricing-item-header-royal {
	position: relative;
	padding: 100px 30px 30px;
	overflow: hidden;
}

.pricing-item-header-image-royal {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pricing-item-header-image-royal figure {
	position: relative;
	display: block;
	height: 100%;
	overflow: hidden;
}

.pricing-item-header-image-royal figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, transparent 30.68%, rgba(0, 26, 41, 0.80) 86.31%);
	z-index: 1;
}

.pricing-item-header-image-royal figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.pricing-item-royal:hover .pricing-item-header-image-royal figure img {
	transform: scale(1.06);
}

.pricing-item-header-content-royal {
	position: relative;
	z-index: 2;
}

.pricing-item-header-content-royal p {
	font-family: var(--accent-font);
	font-size: 22px;
	font-weight: 500;
	line-height: 1.4em;
	color: var(--white-color);
	margin-bottom: 5px;
}

.pricing-item-header-content-royal h2 {
	font-size: 48px;
	line-height: 1em;
	color: var(--accent-color);
}

.pricing-item-header-content-royal h2 sub {
	font-family: var(--default-font);
	font-size: 16px;
	color: var(--white-color);
	bottom: 0;
}

.pricing-body-royal {
	padding: 40px;
}

.pricing-list-royal h3 {
	font-size: 20px;
}

.pricing-list-royal ul {
	list-style: none;
	border-top: 1px solid var(--divider-color);
	padding: 20px 0 0;
	margin: 20px 0 0;
}

.pricing-list-royal ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.pricing-list-royal ul li:last-child {
	margin-bottom: 0;
}

.pricing-list-royal ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.pricing-btn-royal {
	margin-top: 40px;
}

.pricing-benefit-list-royal {
	margin-top: 30px;
}

.pricing-benefit-list-royal ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.pricing-benefit-list-royal ul li {
	display: inline-flex;
	align-items: center;
}

.pricing-benefit-list-royal ul li img {
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

.our-faqs-royal {
	padding: 120px 0;
}

.faqs-content-royal {
	position: sticky;
	top: 30px;
	margin-right: 15px;
}

.faqs-content-royal .section-title {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
}

.faqs-cta-box-royal {
	max-width: 500px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	background-color: var(--secondary-color);
	border-radius: 14px;
	padding: 30px;
}

.faqs-cta-rating-content-royal {
	position: relative;
	width: calc(35% - 15px);
	align-content: center;
}

.faqs-cta-rating-content-royal::before {
	content: '';
	position: absolute;
	top: 0;
	right: -15px;
	width: 1px;
	height: 100%;
	background: var(--divider-color);
}

.faqs-cta-rating-content-royal h2 {
	display: flex;
	align-items: center;
	width: 80px;
	font-family: var(--accent-font);
	font-size: 50px;
	font-weight: 600;
	line-height: 1em;
	color: var(--primary-color);
}

.faqs-cta-rating-content-royal h2 .counter {
	min-width: 80px;
}

.faqs-cta-rating-content-royal h2 i {
	font-size: 30px;
	color: var(--accent-color);
}

.faqs-cta-body-royal {
	width: calc(65% - 15px);
}

.faqs-cta-body-royal .satisfy-client-image figure img {
	max-width: 40px;
}

.faqs-cta-body-royal .satisfy-client-image.add-more {
	width: 42px;
	height: 42px;
}

.faqs-cta-body-content-royal {
	margin-top: 10px;
}

.faqs-cta-body-content-royal p {
	margin-bottom: 0;
}

.faq-accordion-royal .accordion-item {
	background-color: var(--secondary-color);
	border-radius: 14px;
	margin-bottom: 25px;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.faq-accordion-royal .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion-royal .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.4em;
	color: var(--primary-color);
	padding: 20px 60px 20px 20px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion-royal .accordion-item .accordion-button::after,
.faq-accordion-royal .accordion-item .accordion-button.collapsed::after {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	height: 34px;
	width: 34px;
	background-color: var(--accent-color);
	border-radius: 50%;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 18px auto;
	transition: all 0.3s ease-in-out;
}

.faq-accordion-royal .accordion-item :not(.accordion-button.collapsed)::after {
	transform: translateY(-50%) rotate(135deg);
}

.faq-accordion-royal .accordion-item .accordion-body {
	border-top: 1px solid var(--divider-color);
	padding: 20px;
}

.faq-accordion-royal .accordion-item .accordion-body p {
	margin: 0;
}

.our-testimonials-royal {
	position: relative;
	background-image: url('../images/our-testimonials-bg-image-royal.jpg');
	background-position: center center;
	padding: 120px 0;
}

.our-testimonials-royal::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(270deg, transparent 16.25%, rgba(0, 26, 41, 0.50) 100%);
	z-index: 1;
}

.our-testimonials-royal .container {
	position: relative;
	z-index: 2;
}

.testimonials-content-royal {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	margin-right: 4.167vw;
}

.testimonials-content-footer-royal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 40px;
}

.testimonials-content-footer-royal .satisfy-client-image figure img {
	max-width: 40px;
}

.testimonials-content-footer-royal .satisfy-client-image.add-more {
	width: 42px;
	height: 42px;
}

.testimonials-footer-content-royal {
	max-width: 230px;
}

.testimonials-footer-content-royal p {
	color: var(--white-color);
	margin-bottom: 0;
}

.testimonial-slider-royal {
	position: relative;
	max-width: 540px;
	background-color: var(--white-color);
	border-radius: 14px;
	padding: 50px;
	margin-left: auto;
}

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

.testimonial-item-royal {
	position: relative;
	min-height: 490px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
}

.testimonial-quote-royal {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

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

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

.testimonial-item-rating-royal i {
	color: var(--accent-color);
}

.testimonial-item-content-royal h2 {
	font-size: 22px;
}

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

.testimonial-author-royal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

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

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

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

.testimonial-author-content-royal h2 {
	font-size: 20px;
}

.testimonial-author-content-royal p {
	line-height: normal;
	margin: 5px 0 0;
}

.testimonial-btn-royal {
	position: absolute;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	gap: 10px;
	z-index: 2;
}

.testimonial-slider-royal .testimonial-button-next-royal,
.testimonial-slider-royal .testimonial-button-prev-royal {
	position: relative;
	width: 44px;
	height: 44px;
	background: var(--secondary-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider-royal .testimonial-button-next-royal:hover,
.testimonial-slider-royal .testimonial-button-prev-royal:hover {
	background: var(--accent-color);
}

.testimonial-slider-royal .testimonial-button-next-royal::before,
.testimonial-slider-royal .testimonial-button-prev-royal::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 18px auto;
	transform: rotate(45deg);
	transition: all 0.4s ease-in-out;
}

.testimonial-slider-royal .testimonial-button-prev-royal::before {
	transform: rotate(225deg);
}

.testimonial-slider-royal .testimonial-button-next-royal:hover:before,
.testimonial-slider-royal .testimonial-button-prev-royal:hover:before {
	filter: brightness(0) invert(1);
}

.main-footer-royal {
	padding: 120px 0 0;
}

.footer-logo-royal img {
	width: 100%;
	max-width: 159px;
}

.about-footer-content-royal {
	margin-top: 40px;
}

.about-footer-content-royal p {
	color: var(--white-color);
	margin-bottom: 0;
}

.footer-contact-info-list-royal {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 20px;
	margin-top: 20px;
}

.footer-contact-info-royal {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.footer-contact-info-royal:last-child {
	margin-bottom: 0;
}

.footer-contact-info-royal .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.footer-contact-info-royal .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.footer-contact-info-royal:hover .icon-box::before {
	transform: scale(1);
}

.footer-contact-info-royal .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

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

.footer-contact-info-content-royal {
	width: calc(100% - 65px);
}

.footer-contact-info-content-royal p {
	color: var(--white-color);
	margin-bottom: 5px;
}

.footer-contact-info-content-royal h2 {
	font-size: 22px;
	color: var(--white-color);
}

.footer-contact-info-content-royal h2 a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-contact-info-content-royal h2 a:hover {
	color: var(--accent-color);
}

.footer-links-box-royal {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-left: 5.208vw;
}

.footer-links-royal {
	max-width: 35%;
}

.footer-links-royal h2 {
	font-size: 22px;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-links-royal ul {
	list-style: disc;
	padding: 0 0 0 20px;
	margin: 0;
}

.footer-links-royal ul li {
	color: var(--white-color);
	line-height: 1.5em;
	margin-bottom: 15px;
}

.footer-links-royal ul li:last-child {
	margin-bottom: 0;
}

.footer-links-royal ul li::marker {
	color: var(--accent-color);
}

.footer-links-royal ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-links-royal ul li a:hover {
	color: var(--accent-color);
}

.footer-links-royal.footer-newsletter-box-royal {
	width: 100%;
	max-width: 42%;
}

.footer-newsletter-form-royal .form-group .form-control {
	width: 100%;
	background: var(--dark-divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 5px;
	font-size: 16px;
	color: var(--white-color);
	text-align: center;
	border: none;
	box-shadow: none;
	outline: none;
	padding: 13px;
}

.footer-newsletter-form-royal .form-group .form-control::placeholder {
	color: var(--white-color);
	opacity: 50%;
}

.footer-newsletter-form-royal .form-group .btn-default {
	width: 100%;
	padding: 17px;
	text-align: center;
	margin-top: 20px;
}

.footer-newsletter-form-royal .form-group .btn-default::before {
	display: none;
}

.footer-copyright-royal {
	text-align: center;
	border-top: 1px solid var(--dark-divider-color);
	padding: 60px 0;
	margin-top: 60px;
}

.footer-copyright-text-royal p {
	color: var(--white-color);
	margin-bottom: 0;
}

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

	.how-work-content-royal {
		padding: 60px 30px;
	}

	.how-work-item-royal {
		padding: 20px;
	}

	.how-work-info-item-royal.box-2 .how-work-info-item-content-royal {
		padding: 0;
	}
}

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

	.hero-royal {
		height: auto;
		min-height: auto;
	}

	.hero-content-royal {
		margin: 0 0 30px;
	}

	.hero-content-body-royal {
		border: none;
		padding: 0;
	}

	.hero-info-box-image-royal figure img {
		aspect-ratio: 1 / 0.7;
		object-position: bottom center;
	}

	.about-us-image-box-royal {
		max-width: 600px;
		margin: 0 auto 30px;
	}

	.core-feature-content-royal {
		height: auto;
		margin-bottom: 30px;
	}

	.core-feature-image-box-royal,
	.core-feature-image-royal,
	.core-feature-image-royal figure {
		height: auto;
		margin: 0;
	}

	.core-feature-image-royal figure img {
		height: auto;
		aspect-ratio: 1 / 0.7;
	}

	.why-choose-us-content-royal {
		margin-bottom: 30px;
	}

	.why-choose-us-image-royal {
		max-width: 600px;
		margin: 0 auto;
	}

	.how-work-content-royal {
		padding: 60px 15px;
	}

	.our-pricing-royal {
		background-position: bottom -10px center;
		background-size: 100% auto;
	}

	.faqs-content-royal {
		position: initial;
		margin: 0 0 30px;
	}

	.testimonials-content-royal {
		margin-right: 0;
	}

	.testimonial-slider-royal {
		padding: 30px;
	}

	.about-footer-royal {
		margin-bottom: 30px;
	}

	.about-footer-content-royal {
		margin-top: 20px;
	}

	.footer-links-box-royal {
		margin-left: 0;
	}

	.footer-links-royal h2 {
		margin-bottom: 20px;
	}

	.footer-copyright-royal {
		margin-top: 30px;
		padding: 30px 0;
	}
}

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

	.main-header.main-header-royal {
		top: 0;
		right: 0;
		left: 0;
	}

	.main-header.main-header-royal .header-sticky {
		border-radius: 0;
	}

	.main-header.main-header-royal .header-sticky.active {
		top: 0;
		left: 0;
		right: 0;
		border-top: none;
		border-right: none;
		border-left: none;
		border-radius: 0;
	}

	.hero-royal {
		padding: 160px 0 80px;
	}

	.hero-content-royal .section-title h1 {
		font-size: 48px;
	}

	.hero-contact-info-royal .icon-box {
		width: 46px;
		height: 46px;
	}

	.hero-contact-info-royal .icon-box img {
		max-width: 20px;
	}

	.hero-info-box-body-royal {
		padding: 10px 10px 10px 20px;
	}

	.hero-info-box-body-royal .icon-box {
		margin-bottom: 30px;
	}

	.hero-info-box-content-royal h3 {
		font-size: 20px;
	}

	.about-us-royal {
		padding: 60px 0;
	}

	.about-us-body-royal {
		padding-top: 30px;
	}

	.about-us-list-royal ul li {
		margin-bottom: 10px;
	}

	.about-us-list-royal ul li::before {
		font-size: 16px;
	}

	.about-us-btn-royal {
		margin-top: 30px;
	}

	.about-us-counter-box-royal h2 {
		font-size: 38px;
	}

	.our-services-royal {
		padding: 60px 0;
	}

	.service-item-royal {
		padding: 30px;
		min-height: 400px;
	}

	.service-item-content-royal h2 {
		font-size: 20px;
	}

	.our-core-feature-royal {
		padding: 60px 0;
	}

	.core-feature-item-content-royal h3 {
		font-size: 20px;
	}

	.core-feature-content-body-royal {
		padding-top: 30px;
		margin-top: 30px;
	}

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

	.why-choose-item-title-royal h3 {
		font-size: 20px;
	}

	.why-choose-content-body-royal {
		padding-top: 30px;
		margin-top: 30px;
	}

	.what-we-do-royal {
		padding: 60px 0;
	}

	.what-we-item-royal {
		gap: 30px;
		padding: 30px;
	}

	.what-we-item-royal.box-1 .what-we-item-image-royal {
		max-width: 250px;
	}

	.what-we-item-royal.box-1 .what-we-item-image-royal figure {
		margin: 0 0 -100px -100px;
	}

	.what-we-item-royal.box-2 {
		min-height: 400px;
	}

	.what-we-counter-box-royal .icon-box {
		margin-bottom: 20px;
	}

	.what-we-counter-content-royal h2 {
		font-size: 38px;
	}

	.what-we-client-box-royal {
		padding-top: 30px;
	}

	.how-work-item-number-royal h2 {
		width: 45px;
		font-size: 34px;
	}

	.how-work-item-content-royal {
		width: calc(100% - 60px);
	}

	.how-work-item-content-royal h3 {
		font-size: 20px;
	}

	.how-work-info-counter-content-royal h2 {
		font-size: 38px;
	}

	.how-work-info-item-royal.box-1 .how-work-info-item-content-royal {
		padding-top: 30px;
	}

	.our-projects-royal {
		padding: 60px 0;
	}

	.our-pricing-royal {
		padding: 60px 0;
	}

	.pricing-item-header-royal {
		padding: 70px 20px 20px;
	}

	.pricing-item-header-content-royal p {
		font-size: 20px;
	}

	.pricing-item-header-content-royal h2 {
		font-size: 38px;
	}

	.pricing-body-royal {
		padding: 30px;
	}

	.pricing-list-royal ul {
		padding: 15px 0 0;
		margin: 15px 0 0;
	}

	.pricing-list-royal ul li {
		margin-bottom: 10px;
	}

	.pricing-list-royal ul li::before {
		font-size: 16px;
	}

	.pricing-btn-royal {
		margin-top: 30px;
	}

	.pricing-benefit-list-royal {
		margin-top: 10px;
	}

	.pricing-benefit-list-royal ul {
		gap: 20px 30px;
	}

	.pricing-benefit-list-royal ul li img {
		max-width: 18px;
		margin-right: 10px;
	}

	.our-faqs-royal {
		padding: 60px 0;
	}

	.faqs-content-royal .section-title {
		padding-bottom: 30px;
	}

	.faqs-cta-box-royal {
		padding: 20px;
	}

	.faqs-cta-rating-content-royal {
		width: calc(26% - 15px);
	}

	.faqs-cta-rating-content-royal h2 {
		width: 60px;
		font-size: 38px;
	}

	.faqs-cta-rating-content-royal h2 .counter {
		min-width: 65px;
	}

	.faqs-cta-rating-content-royal h2 i {
		font-size: 26px;
	}

	.faqs-cta-body-royal {
		width: calc(74% - 15px);
	}

	.faq-accordion-royal .accordion-item {
		margin-bottom: 20px;
	}

	.faq-accordion-royal .accordion-header .accordion-button {
		padding: 15px 50px 15px 15px;
	}

	.faq-accordion-royal .accordion-item .accordion-button::after,
	.faq-accordion-royal .accordion-item .accordion-button.collapsed::after {
		right: 15px;
		width: 30px;
		height: 30px;
		background-size: 16px auto;
	}

	.faq-accordion-royal .accordion-item .accordion-body {
		padding: 15px;
	}

	.our-testimonials-royal {
		padding: 60px 0;
	}

	.testimonials-content-royal {
		height: auto;
		gap: 30px;
		margin: 0 0 30px;
	}

	.testimonials-content-footer-royal {
		padding-top: 30px;
	}

	.testimonial-slider-royal {
		max-width: 100%;
	}

	.testimonial-item-royal {
		gap: 30px;
		min-height: 330px;
	}

	.testimonial-item-content-royal h2 {
		font-size: 20px;
	}

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

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

	.testimonial-author-royal {
		padding-top: 30px;
	}

	.main-footer-royal {
		padding: 60px 0 0;
	}

	.footer-contact-info-content-royal h2 {
		font-size: 20px;
	}

	.footer-links-royal h2 {
		font-size: 20px;
	}

	.footer-newsletter-form-royal .form-group .form-control {
		padding: 11px;
	}

	.footer-newsletter-form-royal .form-group .btn-default {
		padding: 15px;
	}
}

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

	.hero-content-royal .section-title h1 {
		font-size: 28px;
	}

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

	.hero-contact-info-content-royal h2 {
		font-size: 18px;
	}

	.hero-info-box-image-royal {
		width: 100%;
	}

	.hero-info-box-image-royal figure,
	.hero-info-box-image-royal figure img {
		height: auto;
	}

	.hero-info-box-body-royal {
		width: 100%;
		padding: 20px 10px 10px;
	}

	.hero-info-box-body-royal .icon-box {
		margin-bottom: 20px;
	}

	.hero-info-box-content-royal h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.hero-info-box-content-royal ul {
		padding-top: 15px;
		margin-top: 15px;
	}

	.about-us-image-box-1-royal {
		margin-bottom: 80px;
	}

	.about-us-image-box-1-royal .about-us-image-royal figure {
		margin-right: -90px;
	}

	.contact-us-circle-royal {
		left: 20px;
	}

	.contact-us-circle-royal a img {
		max-width: 90px;
	}

	.about-us-image-box-2-royal .about-us-image-2-royal {
		max-width: 180px;
	}

	.about-us-body-content-royal {
		width: 100%;
	}

	.about-us-counter-box-royal {
		width: 100%;
		max-width: 100%;
		padding: 20px;
	}

	.about-us-counter-box-royal h2 {
		font-size: 26px;
	}

	.about-us-counter-box-royal p {
		margin: 5px 0 0;
	}

	.service-item-royal {
		padding: 20px;
	}

	.service-item-body-royal .icon-box {
		margin-bottom: 20px;
	}

	.service-item-content-royal h2 {
		font-size: 18px;
	}

	.core-feature-list-royal {
		gap: 20px;
	}

	.core-feature-item-royal {
		width: calc(50% - 10px);
		padding: 15px;
	}

	.core-feature-item-content-royal {
		width: 100%;
	}

	.core-feature-item-content-royal h3 {
		font-size: 18px;
	}

	.core-feature-content-body-royal {
		gap: 20px;
	}

	.core-feature-image-royal figure img {
		aspect-ratio: 1 / 0.987;
	}

	.core-feature-client-box-royal {
		left: 10px;
		bottom: 10px;
		max-width: 160px;
		padding: 15px;
	}

	.core-feature-client-content-royal p {
		margin-top: 10px;
	}

	.why-choose-item-royal {
		width: 100%;
	}

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

	.why-choose-item-content-royal {
		margin-top: 10px;
	}

	.why-choose-content-body-royal {
		gap: 20px;
	}

	.what-we-item-royal {
		padding: 20px;
	}

	.what-we-item-content-royal {
		margin-top: 10px;
	}

	.what-we-item-royal.box-3 {
		gap: 20px;
	}

	.what-we-counter-content-royal h2 {
		font-size: 26px;
	}

	.what-we-client-box-royal {
		padding-top: 20px;
	}

	.how-work-items-list-royal {
		gap: 20px;
	}

	.how-work-item-royal {
		width: 100%;
		gap: 10px;
	}

	.how-work-item-number-royal h2 {
		width: 35px;
		font-size: 24px;
	}

	.how-work-item-content-royal {
		width: calc(100% - 45px);
	}

	.how-work-item-content-royal h3 {
		font-size: 18px;
	}

	.how-work-item-content-royal p {
		margin: 5px 0 0;
	}

	.how-work-info-box-royal,
	.how-work-info-item-royal {
		height: auto;
	}

	.how-work-info-item-image-royal {
		width: 100%;
		height: auto;
	}

	.how-work-info-item-image-royal figure,
	.how-work-info-item-image-royal figure img {
		height: auto;
	}

	.how-work-info-item-body-royal {
		width: 100%;
		padding: 20px;
	}

	.how-work-info-counter-content-royal h2 {
		font-size: 26px;
	}

	.how-work-info-item-royal.box-2 .how-work-info-item-content-royal p {
		font-size: 18px;
	}

	.pricing-item-header-content-royal p {
		font-size: 18px;
	}

	.pricing-item-header-content-royal h2 {
		font-size: 26px;
	}

	.pricing-item-header-content-royal h2 sub {
		font-size: 14px;
	}

	.pricing-body-royal {
		padding: 20px;
	}

	.pricing-list-royal h3 {
		font-size: 18px;
	}

	.pricing-list-royal ul {
		padding: 15px 0 0;
		margin: 15px 0 0;
	}

	.pricing-benefit-list-royal ul {
		gap: 10px 20px;
	}

	.pricing-benefit-list-royal ul li {
		font-size: 14px;
	}

	.pricing-benefit-list-royal ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.faqs-cta-box-royal {
		gap: 20px;
		padding: 15px;
	}

	.faqs-cta-rating-content-royal {
		width: calc(30% - 10px);
	}

	.faqs-cta-rating-content-royal::before {
		right: -10px;
	}

	.faqs-cta-rating-content-royal h2 {
		width: 45px;
		font-size: 26px;
	}

	.faqs-cta-rating-content-royal h2 .counter {
		min-width: 45px;
	}

	.faqs-cta-rating-content-royal h2 i {
		font-size: 22px;
	}

	.faqs-cta-body-royal {
		width: calc(70% - 10px);
	}

	.faq-accordion-royal .accordion-header .accordion-button {
		font-size: 18px;
		padding: 12px 45px 12px 15px;
	}

	.faq-accordion-royal .accordion-item .accordion-button::after,
	.faq-accordion-royal .accordion-item .accordion-button.collapsed::after {
		width: 24px;
		height: 24px;
		background-size: 14px auto;
	}

	.faq-accordion-royal .accordion-item .accordion-body {
		padding: 12px 15px;
	}

	.testimonials-footer-content-royal {
		max-width: 200px;
	}

	.testimonial-slider-royal {
		padding: 20px;
	}

	.testimonial-item-royal {
		min-height: auto;
		gap: 20px;
	}

	.testimonial-item-content-royal h2 {
		font-size: 18px;
	}

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

	.testimonial-author-royal {
		padding-top: 20px;
	}

	.testimonial-author-royal .testimonial-author-content-royal h2 {
		font-size: 18px;
	}

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

	.testimonial-btn-royal {
		position: initial;
		justify-content: center;
		margin-top: 20px;
	}

	.testimonial-slider-royal .testimonial-button-next-royal,
	.testimonial-slider-royal .testimonial-button-prev-royal {
		width: 38px;
		height: 38px;
	}

	.testimonial-slider-royal .testimonial-button-next-royal::before,
	.testimonial-slider-royal .testimonial-button-prev-royal::before {
		background-size: 16px auto;
	}

	.about-footer-content-royal {
		margin-top: 15px;
	}

	.footer-contact-info-content-royal h2 {
		font-size: 18px;
	}

	.footer-links-royal {
		max-width: 100%;
	}

	.footer-links-royal h2 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links-royal ul li {
		margin-bottom: 10px;
	}

	.footer-links-royal.footer-newsletter-box-royal {
		max-width: 100%;
	}

	.footer-newsletter-form-royal .form-group .btn-default {
		margin-top: 10px;
	}

	.footer-copyright-royal {
		padding: 15px 0;
	}
}

/************************************/
/***   35. Home - Version 3 css   ***/
/************************************/

.main-header.main-header-prime {
	position: absolute;
}

.main-header.main-header-prime .header-sticky {
	background: transparent;
	border-bottom: 1px solid var(--divider-color);
}

.main-header.main-header-prime .navbar {
	padding: 30px 0;
}

.hero-prime {
	position: relative;
	background: url('../images/hero-bg-image-prime.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 200px 0 0;
	overflow: hidden;
}

.hero-prime::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, var(--bg-color) 15%, transparent 100%);
	z-index: 1;
}

.hero-prime .container {
	position: relative;
	z-index: 2;
}

.hero-content-prime {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.hero-content-prime .section-title .section-sub-title {
	background: var(--divider-color);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
}

.hero-content-prime .section-title h1 .hero-title-img-1 img {
	width: 70px;
	height: 50px;
}

.hero-content-prime .section-title h1 .hero-title-img-2 img {
	width: 50px;
	height: 50px;
}

.hero-content-prime .section-title p {
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
}

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

.video-play-button-prime a {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	cursor: none;
}

.video-play-button-prime a span {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.video-play-button-prime a span i {
	position: relative;
	font-size: 16px;
	color: var(--white-color);
	margin-left: 2px;
	z-index: 1;
}

.video-play-button-prime p {
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
}

.hero-image-prime {
	margin-top: 30px;
}

.hero-image-prime figure {
	display: block;
	border-radius: 14px;
}

.hero-image-prime figure img {
	width: 100%;
	max-width: 635px;
	aspect-ratio: 1 / 0.9119;
	object-fit: cover;
	border-radius: 14px;
}

.about-us-prime {
	padding: 120px 0;
}

.about-us-prime .section-title.section-sub-heading .section-sub-title {
	margin-bottom: 0;
}

.about-us-boxes-prime {
	height: 100%;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.about-us-client-box-prime {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	background: var(--secondary-color);
	border-radius: 14px;
	padding: 30px;
}

.about-satisfied-client-box .satisfy-client-images {
	margin-bottom: 10px;
}

.about-satisfied-client-box .satisfy-client-image {
	margin-left: -15px;
}

.about-satisfied-client-box .satisfy-client-image:first-child {
	margin-left: 0;
}

.about-satisfied-client-box .satisfy-client-image figure img {
	max-width: 30px;
}

.about-satisfied-client-box .satisfy-client-content-prime p {
	margin: 0;
}

.about-client-counter-header-prime {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.about-client-counter-header-prime .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.about-client-counter-header-prime .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-us-client-box-prime:hover .about-client-counter-header-prime .icon-box::before {
	transform: scale(1);
}

.about-client-counter-header-prime .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.about-client-counter-title-prime {
	width: calc(100% - 65px);
}

.about-client-counter-title-prime h2 {
	font-size: 46px;
	line-height: 1em;
}

.about-client-counter-content-prime {
	margin-top: 15px;
}

.about-client-counter-content-prime p {
	margin: 0;
}

.about-us-award-box-prime {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background: var(--primary-color);
	border-radius: 14px;
	padding: 30px;
}

.about-award-box-header-prime {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.about-award-box-header-prime .icon-box img {
	width: 100%;
	max-width: 40px;
}

.about-award-box-title-prime h3 {
	font-size: 20px;
	color: var(--white-color);
}

.about-award-box-content-prime ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-award-box-content-prime ul li {
	font-size: 14px;
	font-weight: 500;
	line-height: 1em;
	color: var(--white-color);
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 100px;
	padding: 9px 15px;
}

.about-award-box-content-prime p {
	font-family: var(--accent-font);
	color: var(--white-color);
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 20px;
	margin: 20px 0 0;
}

.about-us-body-prime {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	margin-left: 30px;
}

.about-us-image-prime {
	width: calc(52% - 30px);
}

.about-us-image-prime figure {
	display: block;
	height: 100%;
	border-radius: 14px;
}

.about-us-image-prime figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.1552;
	object-fit: cover;
	border-radius: 14px;
}

.about-us-body-content-prime {
	width: calc(48% - 30px);
	display: flex;
	flex-direction: column;
	align-content: center;
	gap: 30px;
}

.about-us-content-prime {
	margin-bottom: 40px;
}

.about-us-content-prime p {
	margin: 0;
}

.about-us-btn-prime {
	margin-bottom: 40px;
}

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

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

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

.about-us-list-prime ul li:before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.about-us-item-prime {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background: var(--secondary-color);
	border-radius: 14px;
	padding: 30px;
}

.about-us-item-header-prime {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.about-us-item-header-prime .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.about-us-item-header-prime .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-us-item-prime:hover .about-us-item-header-prime .icon-box::before {
	transform: scale(1);
}

.about-us-item-header-prime .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.about-us-item-title-prime {
	width: calc(100% - 65px);
}

.about-us-item-title-prime h3 {
	font-size: 22px;
}

.about-us-item-content-prime p {
	margin: 0;
}

.about-us-footer-prime {
	margin-top: 60px;
}

.about-footer-list-prime ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 25px;
	max-width: 900px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
}

.about-footer-list-prime ul li {
	position: relative;
	border: 1px solid var(--divider-color);
	font-size: 16px;
	font-weight: 500;
	line-height: 1.25em;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 100px;
	padding: 9px 16px 9px 32px;
	transition: all 0.4s ease-in-out;
}

.about-footer-list-prime ul li::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
}

.about-footer-list-prime ul li:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

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

.our-service-prime {
	background-image: url('../images/section-bg-1.png');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% auto;
	padding: 120px 0;
}

.service-item-prime {
	background: var(--bg-color);
	border-radius: 14px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 10px;
}

.service-item-image-prime {
	border-radius: 14px;
	overflow: hidden;
}

.service-item-image-prime a {
	display: block;
	cursor: none;
}

.service-item-image-prime figure {
	display: block;
	border-radius: 14px;
}

.service-item-image-prime figure img {
	width: 100%;
	aspect-ratio: 1 / 0.647;
	object-fit: cover;
	border-radius: 14px;
	transition: all 0.6s ease-in-out;
}

.service-item-prime:hover .service-item-image-prime figure img {
	transform: scale(1.06);
}

.service-item-body-prime {
	padding: 0 20px 20px;
}

.service-item-body-prime .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--accent-color);
	border: 5px solid var(--white-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: -30px 0 30px;
	overflow: hidden;
	z-index: 1;
}

.service-item-body-prime .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.service-item-body-prime .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.service-item-content-prime h2 {
	font-size: 22px;
}

.service-item-content-prime h2 a {
	color: inherit;
}

.service-item-content-prime p {
	margin: 10px 0 0;
}

.service-item-btn-prime {
	margin-top: 30px;
}

.what-we-do-prime {
	padding: 120px 0;
}

.what-we-item-list-prime {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	gap: 30px;
}

.what-we-item-prime {
	position: relative;
	width: calc(50% - 15px);
	background: var(--secondary-color);
	border-radius: 14px;
	padding: 30px;
	overflow: hidden;
}

.what-we-item-prime::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background-color: var(--primary-color);
	transition: all 0.4s ease-in-out;
}

.what-we-item-prime:hover:before {
	top: auto;
	height: 100%;
}

.what-we-item-prime .icon-box {
	position: relative;
	width: 40px;
	height: 40px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 20px;
	z-index: 1;
}

.what-we-item-prime .icon-box img {
	width: 100%;
	max-width: 20px;
}

.what-we-item-content-prime {
	position: relative;
	z-index: 1;
}

.what-we-item-content-prime h3 {
	font-size: 22px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
	transition: all 0.4s ease-in-out;
}

.what-we-item-content-prime h2 {
	font-size: 46px;
	transition: all 0.4s ease-in-out;
}

.what-we-item-content-prime p {
	margin: 5px 0 0;
	transition: all 0.2s ease-in-out;
}

.what-we-item-prime:hover .what-we-item-content-prime h3 {
	border-color: var(--dark-divider-color);
}

.what-we-item-prime:hover .what-we-item-content-prime p,
.what-we-item-prime:hover .what-we-item-content-prime h2,
.what-we-item-prime:hover .what-we-item-content-prime h3 {
	color: var(--white-color);
}

.what-we-do-image-prime {
	height: 100%;
	margin-left: 15px;
}

.what-we-do-image-prime figure {
	display: block;
	height: 100%;
	border-radius: 14px;
}

.what-we-do-image-prime figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.9653;
	object-fit: cover;
	border-radius: 14px;
}

.what-we-do-prime .section-footer-text {
	margin-top: 60px;
}

.how-it-work-prime {
	background-image: url('../images/section-bg-2.png');
	background-repeat: no-repeat;
	background-position: bottom -10px right;
	background-size: auto;
	padding: 120px 0;
	overflow: hidden;
}

.how-it-work-prime .section-title p {
	max-width: 600px;
	margin-left: auto;
	margin-right: auto;
}

.how-work-item-list-prime {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.how-work-item-prime {
	width: calc(25% - 22.5px);
	display: flex;
	flex-direction: column;
	text-align: center;
}

.how-work-item-image-prime {
	position: relative;
	padding-bottom: 50px;
	margin-bottom: 40px;
}

.how-work-item-image-prime::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: calc(100% + 30px);
	height: 10px;
	background: var(--accent-color);
}

.how-work-item-prime:first-child .how-work-item-image-prime::before {
	border-radius: 10px 0 0 10px;
}

.how-work-item-prime:last-child .how-work-item-image-prime::before {
	border-radius: 0 10px 10px 0;
}

.how-work-item-image-prime figure {
	display: block;
	mask-repeat: no-repeat;
	mask-position: center center;
	mask-size: cover;
	width: 228px;
	height: 228px;
	margin: 0 auto;
	overflow: hidden;
}

.how-work-item-prime.item-1 .how-work-item-image-prime figure {
	background-image: url('../images/how-works-item-1-image-shape-prime.svg');
	mask-image: url('../images/how-works-item-1-image-shape-prime.svg');
}

.how-work-item-prime.item-2 .how-work-item-image-prime figure {
	background-image: url('../images/how-works-item-2-image-shape-prime.svg');
	mask-image: url('../images/how-works-item-2-image-shape-prime.svg');
}

.how-work-item-prime.item-3 .how-work-item-image-prime figure {
	background-image: url('../images/how-works-item-3-image-shape-prime.svg');
	mask-image: url('../images/how-works-item-3-image-shape-prime.svg');
}

.how-work-item-prime.item-4 .how-work-item-image-prime figure {
	background-image: url('../images/how-works-item-4-image-shape-prime.svg');
	mask-image: url('../images/how-works-item-4-image-shape-prime.svg');
}

.how-work-item-image-prime figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.how-work-item-prime .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 30px;
	overflow: hidden;
}

.how-work-item-prime .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.how-work-item-prime .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.how-work-item-content-prime span {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1em;
	color: var(--primary-color);
	background: var(--white-color);
	border-radius: 100px;
	padding: 9px 16px;
	margin-bottom: 30px;
}

.how-work-item-content-prime h3 {
	font-size: 20px;
}

.how-work-item-content-prime p {
	margin: 10px 0 0;
}

.how-work-item-prime:nth-child(4n + 2),
.how-work-item-prime:nth-child(4n) {
	flex-direction: column-reverse;
}

.how-work-item-prime:nth-child(4n + 2) .how-work-item-image-prime,
.how-work-item-prime:nth-child(4n) .how-work-item-image-prime {
	padding: 50px 0 0;
	margin: 40px 0 0;
}

.how-work-item-prime:nth-child(4n + 2) .how-work-item-image-prime::before,
.how-work-item-prime:nth-child(4n) .how-work-item-image-prime::before {
	top: 0;
	bottom: auto;
}

.how-work-item-prime:nth-child(4n) .how-work-item-image-prime::before {
	width: 100%;
}

.how-work-item-prime:nth-child(4n + 2) .icon-box,
.how-work-item-prime:nth-child(4n) .icon-box {
	margin: 30px auto 0;
}

.our-impact-prime {
	padding: 120px 0;
}

.our-impact-skills-list-prime .skills-progress-bar .skill-data {
	margin-bottom: 20px;
}

.our-impact-skills-list-prime .skills-progress-bar .skill-data .skill-title,
.our-impact-skills-list-prime .skills-progress-bar .skill-data .skill-no {
	font-size: 20px;
}

.our-impact-skills-list-prime .skills-progress-bar .skillbar .skill-progress {
	height: 10px;
	background: var(--secondary-color);
}

.our-impact-btn-prime {
	margin-top: 40px;
}

.impact-image-box-prime {
	position: relative;
}

.impact-world-map-image-prime figure {
	display: block;
	border-radius: 14px;
}

.impact-world-map-image-prime img {
	width: 100%;
	aspect-ratio: 1 / 0.65;
	object-fit: cover;
	border-radius: 14px;
}

.world-map-cards-box-prime {
	position: absolute;
	top: 50%;
	transform: translateY(-48%);
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 10px 0;
}

.world-map-card-item-prime {
	position: relative;
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	transition: all 0.5s ease-in-out;
}

.world-map-card-item-prime.card-1 {
	width: 100%;
	margin-right: 120px;
}

.world-map-card-item-prime.card-3 {
	top: -45px;
	left: 20px;
}

.world-map-card-item-prime.card-4 {
	left: 40px;
	top: 10px;
}

.world-map-card-item-prime.card-5 {
	top: -40px;
	right: 20px;
}

.world-map-card-btn-prime {
	border: none;
	background: transparent;
	padding: 0;
	margin: 0 auto 15px;
}

.world-map-card-btn-prime i {
	width: 24px;
	color: var(--accent-color);
	border: 4px solid var(--white-color);
	border-radius: 50%;
}

.world-map-card-body-prime {
	position: relative;
	width: 205px;
	background: var(--white-color);
	border-radius: 10px;
	filter: drop-shadow(0 0 20px rgba(0, 0, 0, 0.05));
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	padding: 10px;
	opacity: 0;
	margin: 0 auto;
	transform: scaleY(0.7);
	transform-origin: top;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.world-map-card-item-prime.active .world-map-card-body-prime {
	transform: scaleY(1);
	opacity: 1;
}

.world-map-card-body-prime::before {
	content: '';
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -75%);
	border-left: 20px solid transparent;
	border-right: 20px solid transparent;
	border-bottom: 24px solid var(--white-color);
	width: 0;
	height: 0;
}

.world-map-card-body-prime .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.world-map-card-body-prime .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.world-map-card-body-prime:hover .icon-box::before {
	transform: scale(1);
}

.world-map-card-body-prime .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.world-map-card-content-prime {
	position: relative;
	width: calc(100% - 65px);
	z-index: 1;
}

.world-map-card-content-prime h2 {
	font-size: 30px;
}

.world-map-card-content-prime p {
	line-height: normal;
	margin: 5px 0 0;
}

.our-pricing-prime {
	background-image: url('../images/section-bg-1.png');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% auto;
	padding: 120px 0;
}

.pricing-item-prime {
	background: var(--bg-color);
	border-radius: 14px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.pricing-item-header-prime {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.pricing-item-header-prime .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 30px;
	overflow: hidden;
}

.pricing-item-header-prime .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.pricing-item-header-prime .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.pricing-item-header-content-prime span {
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1em;
	color: var(--primary-color);
	background: var(--secondary-color);
	border-radius: 100px;
	padding: 9px 14px;
	margin-bottom: 20px;
}

.pricing-item-header-content-prime h2 {
	font-size: 40px;
	line-height: 1em;
}

.pricing-item-header-content-prime h2 sub {
	bottom: 0;
	font-size: 16px;
	font-weight: 400;
}

.pricing-item-header-content-prime p {
	margin: 10px 0 0;
}

.pricing-item-list-prime h3 {
	font-size: 22px;
	margin-bottom: 20px;
}

.pricing-item-list-prime ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.pricing-item-list-prime ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.pricing-item-list-prime ul li:last-child {
	margin-bottom: 0;
}

.pricing-item-list-prime ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.pricing-item-btn-prime {
	margin-top: 30px;
}

.pricing-item-btn-prime .btn-default {
	width: 100%;
	padding: 17px 24px;
	text-align: center;
}

.pricing-item-btn-prime .btn-default::before {
	display: none;
}

.pricing-benefit-list-prime {
	margin-top: 30px;
}

.pricing-benefit-list-prime ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.pricing-benefit-list-prime ul li {
	display: inline-flex;
	color: var(--primary-color);
	align-items: center;
}

.pricing-benefit-list-prime ul li img {
	width: 100%;
	max-width: 20px;
	margin-right: 15px;
}

.our-testimonials-prime {
	padding: 120px 0;
}

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

.testimonial-item-prime {
	background: var(--secondary-color);
	border-radius: 14px;
	min-height: 480px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	padding: 40px;
}

.testimonial-slider-prime .swiper-wrapper .swiper-slide .testimonial-item-prime {
	transform: scale(0.95);
	transition: all 0.6s ease-in-out;
}

.testimonial-slider-prime .swiper-wrapper .swiper-slide.swiper-slide-next .testimonial-item-prime {
	transform: scale(1);
}

.testimonial-item-rating-prime {
	margin-bottom: 40px;
}

.testimonial-item-rating-prime i {
	font-size: 18px;
	color: var(--accent-color);
}

.testimonial-item-content-prime h2 {
	font-size: 22px;
	margin-bottom: 20px;
}

.testimonial-item-content-prime p {
	font-size: 18px;
	font-weight: 500;
	margin: 0;
}

.testimonial-author-prime {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

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

.testimonial-author-image-prime figure img {
	width: 100%;
	max-width: 50px;
}

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

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

.testimonial-author-content-prime p {
	margin: 5px 0 0;
}

.our-testimonials-prime .section-footer-text {
	margin-top: 60px;
}

.our-faqs-prime {
	background-image: url('../images/section-bg-2.png');
	background-repeat: no-repeat;
	background-position: bottom -10px right;
	background-size: auto;
	padding: 120px 0;
}

.faq-cta-box-prime {
	position: relative;
	background: var(--primary-color);
	border-radius: 14px;
	padding: 30px;
	overflow: hidden;
}

.faq-cta-header-prime {
	max-width: 70%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.faq-cta-header-prime .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.faq-cta-header-prime .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.faq-cta-box-prime:hover .faq-cta-header-prime .icon-box::before {
	transform: scale(1);
}

.faq-cta-header-prime .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.faq-cta-box-prime:hover .faq-cta-header-prime .icon-box img {
	filter: brightness(0) invert(0);
}

.faq-cta-title-prime {
	width: calc(100% - 65px);
}

.faq-cta-title-prime h3 {
	font-size: 22px;
	color: var(--white-color);
}

.faq-cta-content-prime {
	max-width: 72%;
}

.faq-cta-content-prime p {
	color: var(--white-color);
	margin: 0;
}

.faq-cta-footer-prime {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	gap: 20px;
}

.faq-cta-btn-prime {
	width: calc(100% - 215px);
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.faq-cta-btn-prime .readmore-btn {
	color: var(--white-color);
}

.faq-cta-image-prime {
	width: 100%;
	max-width: 195px;
}

.faq-cta-image-prime figure {
	display: block;
	border-radius: 14px;
	margin: 0 -55px -55px 0;
}

.faq-cta-image-prime figure img {
	width: 100%;
	aspect-ratio: 1 / 0.6236;
	object-fit: cover;
	border-radius: 14px;
}

.our-faqs-prime .faq-accordion-prime {
	margin-left: 15px;
}

.faq-accordion-prime .accordion-item {
	background-color: var(--white-color);
	border-radius: 10px;
	margin-bottom: 30px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}

.faq-accordion-prime .accordion-item:last-child {
	margin-bottom: 0;
}

.faq-accordion-prime .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 500;
	line-height: 1.1em;
	color: var(--primary-color);
	padding: 20px 50px 20px 20px;
	transition: all 0.4s ease-in-out;
}

.faq-accordion-prime .accordion-item .accordion-button::after,
.faq-accordion-prime .accordion-item .accordion-button.collapsed::after {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	height: 26px;
	width: 26px;
	background-color: var(--accent-color);
	border-radius: 50%;
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 16px auto;
	transition: all 0.4s ease-in-out;
}

.faq-accordion-prime .accordion-item :not(.accordion-button.collapsed)::after {
	transform: translateY(-50%) rotate(135deg);
}

.faq-accordion-prime .accordion-item .accordion-body {
	border-top: 1px solid var(--divider-color);
	padding: 20px;
}

.faq-accordion-prime .accordion-item .accordion-body p {
	margin: 0;
}

.main-footer-prime {
	position: relative;
	background-image: url('../images/footer-bg-image-prime.jpg');
	background-position: center center;
	padding: 120px 15px;
}

.main-footer-prime::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: var(--primary-color);
	opacity: 80%;
	z-index: 1;
}

.footer-box-prime {
	position: relative;
	max-width: 1580px;
	border: 1px solid var(--dark-divider-color);
	background: var(--divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border-radius: 30px;
	padding: 100px 7.292vw 0;
	margin: 0 auto;
	z-index: 2;
}

.footer-header-prime {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 30px;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 60px;
	margin-bottom: 60px;
}

.footer-logo-prime img {
	width: 100%;
	max-width: 159px;
}

.footer-contact-info-prime {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 30px;
}

.footer-contact-item-prime {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.footer-contact-item-prime .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}

.footer-contact-item-prime .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--white-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

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

.footer-contact-item-prime .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

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

.footer-contact-item-content-prime {
	width: calc(100% - 65px);
}

.footer-contact-item-content-prime p {
	color: var(--white-color);
	margin-bottom: 5px;
}

.footer-contact-item-content-prime h2 {
	font-size: 22px;
	color: var(--white-color);
}

.footer-contact-item-content-prime h2 a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.footer-contact-item-content-prime h2 a:hover {
	color: var(--accent-color);
}

.about-footer-prime {
	max-width: 350px;
}

.about-footer-content-prime h3 {
	font-size: 22px;
	color: var(--white-color);
}

.about-footer-content-prime p {
	color: var(--white-color);
	margin: 20px 0 0;
}

.footer-social-links-prime {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.footer-social-links-prime h3 {
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-social-links-prime ul {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 0;
	padding: 0;
}

.footer-social-links-prime ul li a {
	width: 36px;
	height: 36px;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	color: var(--white-color);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-social-links-prime ul li a:hover {
	background-color: var(--accent-color);
}

.footer-social-links-prime ul li a i {
	font-size: 18px;
	color: inherit;
}

.footer-links-box-prime {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-left: 1.563vw;
}

.footer-links-prime {
	max-width: 38%;
}

.footer-links-prime h2 {
	font-size: 22px;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-links-prime ul {
	list-style: disc;
	padding: 0 0 0 20px;
	margin: 0;
}

.footer-links-prime ul li {
	line-height: 1.5em;
	color: var(--white-color);
	margin-bottom: 15px;
}

.footer-links-prime ul li:last-child {
	margin-bottom: 0;
}

.footer-links-prime ul li::marker {
	color: var(--accent-color);
}

.footer-links-prime ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-links-prime ul li a:hover {
	color: var(--accent-color);
}

.footer-newsletter-form-prime p {
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-newsletter-form-prime .form-group {
	position: relative;
	display: flex;
	border-bottom: 1px solid var(--dark-divider-color);
}

.footer-newsletter-form-prime .form-group .form-control {
	width: calc(100% - 34px);
	font-size: 16px;
	line-height: 1.286em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 6px 20px 25px 0;
}

.footer-newsletter-form-prime .form-group .form-control::placeholder {
	font-size: 14px;
	color: var(--white-color);
	opacity: 50%;
}

.footer-newsletter-form-prime .form-group .newsletter-btn {
	width: 34px;
	height: 34px;
	background: var(--accent-color);
	border-radius: 50%;
	border: none;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.footer-newsletter-form-prime .form-group .newsletter-btn:hover {
	background: var(--white-color);
}

.footer-newsletter-form-prime .form-group .newsletter-btn img {
	width: 100%;
	max-width: 18px;
	transition: all 0.4s ease-in-out;
}

.footer-newsletter-form-prime .form-group .newsletter-btn:hover img {
	transform: rotate(45deg);
	filter: brightness(0) invert(0);
}

.footer-copyright-text-prime {
	border-top: 1px solid var(--dark-divider-color);
	text-align: center;
	padding: 60px 0;
	margin-top: 60px;
}

.footer-copyright-text-prime p {
	color: var(--white-color);
	margin-bottom: 0;
}

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

	.hero-image-prime figure img {
		max-width: 500px;
	}

	.about-us-prime .section-title.section-sub-heading .section-sub-title {
		margin-bottom: 10px;
	}

	.about-us-boxes-prime {
		height: auto;
		flex-direction: initial;
		flex-wrap: wrap;
		margin-bottom: 30px;
	}

	.about-us-client-box-prime,
	.about-us-award-box-prime {
		height: auto;
		width: calc(50% - 15px);
	}

	.about-us-body-prime {
		height: auto;
		gap: 30px;
		margin: 0;
	}

	.about-us-image-prime,
	.about-us-body-content-prime {
		width: calc(50% - 15px);
	}

	.what-we-item-list-prime {
		height: auto;
		margin-bottom: 30px;
	}

	.what-we-do-image-prime {
		height: auto;
		margin: 0;
	}

	.what-we-do-image-prime figure {
		height: auto;
	}

	.what-we-do-image-prime figure img {
		height: auto;
		aspect-ratio: 1 / 0.6;
	}

	.how-it-work-prime {
		background-position: bottom -10px center;
		background-size: 100% auto;
	}

	.how-work-item-prime {
		width: calc(50% - 15px);
	}

	.how-work-item-image-prime {
		padding-bottom: 40px;
		margin-bottom: 30px;
	}

	.how-work-item-prime .icon-box {
		margin: 0 auto 20px;
	}

	.how-work-item-content-prime span {
		margin-bottom: 20px;
	}

	.how-work-item-prime:nth-child(4n + 2),
	.how-work-item-prime:nth-child(4n) {
		flex-direction: column;
	}

	.how-work-item-prime:nth-child(4n + 2) .how-work-item-image-prime,
	.how-work-item-prime:nth-child(4n) .how-work-item-image-prime {
		padding: 0 0 40px;
		margin: 0 0 30px;
	}

	.how-work-item-prime:nth-child(4n + 2) .how-work-item-image-prime::before,
	.how-work-item-prime:nth-child(4n) .how-work-item-image-prime::before {
		top: auto;
		bottom: 0;
	}

	.how-work-item-prime:nth-of-type(odd) .how-work-item-image-prime::before {
		border-radius: 10px 0 0 10px;
	}

	.how-work-item-prime:nth-child(4n + 2) .how-work-item-image-prime::before,
	.how-work-item-prime:nth-child(4n) .how-work-item-image-prime::before {
		width: 100%;
		border-radius: 0 10px 10px 0;
	}

	.how-work-item-prime:nth-child(4n + 2) .icon-box,
	.how-work-item-prime:nth-child(4n) .icon-box {
		margin: 0 auto 20px;
	}

	.impact-content-box-prime {
		margin-bottom: 30px;
	}

	.world-map-cards-box-prime {
		gap: 30px 0;
	}

	.testimonial-slider-prime .swiper-wrapper .swiper-slide .testimonial-item-prime {
		transform: scale(1);
	}

	.our-faqs-prime {
		background-position: bottom -10px center;
		background-size: 100% auto;
	}

	.our-faq-content-prime {
		margin-bottom: 30px;
	}

	.our-faqs-prime .faq-accordion-prime {
		margin: 0;
	}

	.footer-box-prime {
		padding: 60px 15px 0;
	}

	.footer-header-prime {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.about-footer-prime {
		max-width: 100%;
		margin-bottom: 30px;
	}

	.footer-links-box-prime {
		margin: 0;
	}

	.footer-copyright-text-prime {
		margin-top: 30px;
		padding: 30px 0;
	}
}

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

	.main-header.main-header-prime .navbar {
		padding: 20px 0;
	}

	.hero-prime {
		padding: 150px 0 0;
	}

	.hero-content-prime .section-title h1 .hero-title-img-1 img {
		width: 55px;
		height: 40px;
	}

	.hero-content-prime .section-title h1 .hero-title-img-2 img {
		width: 40px;
		height: 40px;
	}

	.video-play-button-prime a span {
		width: 46px;
		height: 46px;
	}

	.about-us-prime {
		padding: 60px 0;
	}

	.about-client-counter-title-prime h2 {
		font-size: 36px;
	}

	.about-us-btn-prime,
	.about-us-content-prime {
		margin-bottom: 30px;
	}

	.about-us-list-prime ul li {
		margin-bottom: 10px;
	}

	.about-us-list-prime ul li:before {
		font-size: 16px;
	}

	.about-us-item-prime {
		gap: 10px;
		padding: 20px;
	}

	.about-us-item-title-prime h3 {
		font-size: 20px;
	}

	.about-us-footer-prime {
		margin-top: 40px;
	}

	.about-footer-list-prime ul {
		gap: 15px;
	}

	.about-footer-list-prime ul li {
		font-size: 14px;
		padding: 6px 14px 6px 30px;
	}

	.about-footer-list-prime ul li::before {
		left: 14px;
	}

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

	.our-service-prime {
		padding: 60px 0;
	}

	.service-item-body-prime .icon-box {
		margin-bottom: 20px;
	}

	.service-item-content-prime h2 {
		font-size: 20px;
	}

	.service-item-btn-prime {
		margin-top: 20px;
	}

	.what-we-do-prime {
		padding: 60px 0;
	}

	.what-we-item-prime {
		padding: 20px;
	}

	.what-we-item-content-prime h3 {
		font-size: 20px;
	}

	.what-we-item-content-prime h2 {
		font-size: 36px;
	}

	.what-we-do-prime .section-footer-text {
		margin-top: 40px;
	}

	.how-it-work-prime {
		padding: 60px 0;
	}

	.how-work-item-image-prime figure {
		width: 203px;
		height: 203px;
	}

	.how-work-item-content-prime span {
		padding: 7px 14px;
	}

	.our-impact-prime {
		padding: 60px 0;
	}

	.our-impact-skills-list-prime .skills-progress-bar .skill-data {
		margin-bottom: 15px;
	}

	.our-impact-btn-prime {
		margin-top: 30px;
	}

	.world-map-card-content-prime h2 {
		font-size: 26px;
	}

	.our-pricing-prime {
		padding: 60px 0;
	}

	.pricing-item-prime {
		padding: 30px;
	}

	.pricing-item-header-prime .icon-box {
		margin-bottom: 20px;
	}

	.pricing-item-header-content-prime h2 {
		font-size: 34px;
	}

	.pricing-item-list-prime h3 {
		font-size: 20px;
		margin-bottom: 15px;
	}

	.pricing-item-list-prime ul li {
		margin-bottom: 10px;
	}

	.pricing-item-list-prime ul li::before {
		font-size: 16px;
	}

	.pricing-item-btn-prime .btn-default {
		padding: 15px 20px;
	}

	.pricing-benefit-list-prime {
		margin-top: 10px;
	}

	.pricing-benefit-list-prime ul {
		gap: 20px 30px;
	}

	.pricing-benefit-list-prime ul li img {
		max-width: 18px;
		margin-right: 10px;
	}

	.our-testimonials-prime {
		padding: 60px 0;
	}

	.testimonial-item-prime {
		min-height: auto;
		gap: 30px;
		padding: 30px;
	}

	.testimonial-item-rating-prime {
		margin-bottom: 30px;
	}

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

	.testimonial-item-content-prime h2 {
		font-size: 20px;
		margin-bottom: 15px;
	}

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

	.testimonial-author-prime {
		padding-top: 30px;
	}

	.our-testimonials-prime .section-footer-text {
		margin-top: 40px;
	}

	.our-faqs-prime {
		padding: 60px 0;
	}

	.faq-cta-title-prime h3 {
		font-size: 20px;
	}

	.faq-cta-btn-prime {
		padding-top: 20px;
		margin-top: 20px;
	}

	.faq-accordion-prime .accordion-item {
		margin-bottom: 20px;
	}

	.faq-accordion-prime .accordion-header .accordion-button {
		padding: 15px 45px 15px 15px;
	}

	.faq-accordion-prime .accordion-item .accordion-button::after,
	.faq-accordion-prime .accordion-item .accordion-button.collapsed::after {
		right: 15px;
	}

	.faq-accordion-prime .accordion-item .accordion-body {
		padding: 15px;
	}

	.main-footer-prime {
		padding: 60px 15px;
	}

	.footer-box-prime {
		border-radius: 14px;
		padding: 30px 0 0;
	}

	.footer-contact-item-content-prime h2 {
		font-size: 20px;
	}

	.about-footer-content-prime h3 {
		font-size: 20px;
	}

	.about-footer-content-prime p {
		margin: 15px 0 0;
	}

	.footer-social-links-prime h3 {
		margin-bottom: 15px;
	}

	.footer-newsletter-form-prime p {
		margin-bottom: 20px;
	}
}

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

	.hero-content-prime .section-title h1 .hero-title-img-1 img {
		width: 45px;
		height: 30px;
	}

	.hero-content-prime .section-title h1 .hero-title-img-2 img {
		width: 30px;
		height: 30px;
	}

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

	.hero-image-prime figure img {
		max-width: 280px;
	}

	.about-us-client-box-prime {
		width: 100%;
		padding: 20px;
	}

	.about-client-counter-title-prime h2 {
		font-size: 26px;
	}

	.about-client-counter-content-prime {
		margin-top: 10px;
	}

	.about-us-award-box-prime {
		width: 100%;
		gap: 20px;
		padding: 20px;
	}

	.about-award-box-content-prime p {
		padding-top: 15px;
		margin-top: 15px;
	}

	.about-us-image-prime {
		width: 100%;
	}

	.about-us-image-prime figure,
	.about-us-image-prime figure img {
		height: auto;
	}

	.about-us-body-content-prime {
		width: 100%;
	}

	.about-us-item-prime {
		height: auto;
	}

	.about-us-item-title-prime h3 {
		font-size: 18px;
	}

	.about-footer-list-prime ul {
		gap: 10px;
	}

	.about-footer-list-prime ul li {
		padding: 5px 10px 5px 22px;
	}

	.about-footer-list-prime ul li::before {
		left: 10px;
	}

	.service-item-body-prime {
		padding: 0 10px 10px;
	}

	.service-item-body-prime .icon-box {
		margin-bottom: 15px;
	}

	.service-item-content-prime h2 {
		font-size: 18px;
	}

	.service-item-content-prime p {
		margin: 5px 0 0;
	}

	.service-item-btn-prime {
		margin-top: 15px;
	}

	.what-we-item-prime {
		width: 100%;
		padding: 20px;
	}

	.what-we-item-prime .icon-box {
		margin-bottom: 15px;
	}

	.what-we-item-content-prime h3 {
		font-size: 18px;
		padding-bottom: 15px;
		margin-bottom: 15px;
	}

	.what-we-item-content-prime h2 {
		font-size: 26px;
	}

	.what-we-do-image-prime figure img {
		aspect-ratio: 1 / 0.9653;
	}

	.how-work-item-prime {
		width: 100%;
	}

	.how-work-item-image-prime {
		padding-bottom: 30px;
		margin-bottom: 20px;
	}

	.how-work-item-image-prime::before {
		width: 100%;
	}

	.how-work-item-image-prime figure {
		width: 170px;
		height: 170px;
	}

	.how-work-item-content-prime h3 {
		font-size: 18px;
	}

	.how-work-item-content-prime p {
		margin: 5px 0 0;
	}

	.how-work-item-prime:nth-child(4n + 2) .how-work-item-image-prime,
	.how-work-item-prime:nth-child(4n) .how-work-item-image-prime {
		padding: 0 0 30px;
		margin: 0 0 20px;
	}

	.how-work-item-prime:nth-of-type(odd) .how-work-item-image-prime::before {
		border-radius: 10px;
	}

	.how-work-item-prime:nth-child(4n + 2) .how-work-item-image-prime::before,
	.how-work-item-prime:nth-child(4n) .how-work-item-image-prime::before {
		border-radius: 10px;
	}

	.our-impact-skills-list-prime .skills-progress-bar .skill-data .skill-title,
	.our-impact-skills-list-prime .skills-progress-bar .skill-data .skill-no {
		font-size: 18px;
	}

	.world-map-cards-box-prime {
		position: initial;
		gap: 20px;
		transform: none;
		margin-top: 20px;
	}

	.world-map-card-item-prime,
	.world-map-card-item-prime.card-1 {
		width: calc(50% - 10px);
		margin: 0;
	}

	.world-map-card-item-prime.card-3,
	.world-map-card-item-prime.card-4 {
		top: auto;
		left: auto;
	}

	.world-map-card-item-prime.card-5 {
		top: auto;
		right: auto;
	}

	.world-map-card-btn-prime,
	.world-map-card-body-prime::before {
		display: none;
	}

	.world-map-card-body-prime {
		width: auto;
		gap: 10px;
		transform: scaleY(1);
		padding: 15px;
		opacity: 1;
	}

	.world-map-card-body-prime .icon-box {
		width: 40px;
		height: 40px;
	}

	.world-map-card-body-prime .icon-box img {
		max-width: 20px;
	}

	.world-map-card-content-prime {
		width: 100%;
	}

	.world-map-card-content-prime h2 {
		font-size: 22px;
	}

	.pricing-item-prime {
		padding: 20px;
	}

	.pricing-item-header-prime {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.pricing-item-header-content-prime h2 {
		font-size: 28px;
	}

	.pricing-item-list-prime h3 {
		font-size: 18px;
	}

	.pricing-benefit-list-prime ul {
		gap: 10px;
	}

	.pricing-benefit-list-prime ul li {
		font-size: 14px;
	}

	.pricing-benefit-list-prime ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.testimonial-item-prime {
		gap: 20px;
		padding: 20px;
	}

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

	.testimonial-item-content-prime h2 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.testimonial-author-prime {
		padding-top: 20px;
	}

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

	.our-faqs-prime {
		background-size: 400px auto;
	}

	.faq-cta-box-prime {
		padding: 20px;
	}

	.faq-cta-header-prime {
		max-width: 100%;
		margin-bottom: 15px;
	}

	.faq-cta-title-prime h3 {
		font-size: 18px;
	}

	.faq-cta-content-prime {
		max-width: 100%;
	}

	.faq-cta-btn-prime {
		width: calc(100% - 150px);
		padding-top: 15px;
		margin-top: 15px;
	}

	.faq-cta-image-prime {
		max-width: 130px;
	}

	.faq-cta-image-prime figure {
		margin: 0 -40px -40px 0;
	}

	.faq-accordion-prime .accordion-header .accordion-button {
		font-size: 18px;
		padding: 12px 45px 12px 15px;
	}

	.faq-accordion-prime .accordion-item .accordion-body {
		padding: 12px 15px;
	}

	.footer-header-prime {
		gap: 20px;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.footer-contact-item-content-prime h2 {
		font-size: 18px;
	}

	.about-footer-content-prime h3 {
		font-size: 18px;
	}

	.about-footer-content-prime p {
		margin-top: 10px;
	}

	.footer-social-links-prime {
		margin-top: 20px;
		padding-top: 20px;
	}

	.footer-social-links-prime h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links-prime {
		max-width: 100%;
	}

	.footer-links-prime h2 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links-prime ul li {
		margin-bottom: 10px;
	}

	.footer-newsletter-form-prime .form-group .form-control {
		padding: 6px 20px 20px 0;
	}

	.footer-copyright-text-prime {
		padding: 15px 0;
	}
}

/* Compact Core Principles layout */
.core-principles {
	padding: 45px 0;
	background: #f5fafc;
}

.core-principles .section-title {
	margin-bottom: 22px;
}

.core-principles-diagram {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 22px 35px;
	max-width: 1050px;
	height: auto;
	background: linear-gradient(135deg, #073447 0%, #0a4a60 100%);
	border-radius: 18px;
	padding: 30px 38px;
	box-shadow: 0 15px 35px rgba(0, 39, 58, 0.16);
	overflow: hidden;
}

.core-principles-diagram::before,
.core-principles-diagram::after {
	content: '';
	position: absolute;
	width: 90px;
	height: 90px;
	background: #00aadb;
	transform: rotate(45deg);
	opacity: 0.9;
}

.core-principles-diagram::before {
	left: -62px;
	bottom: -62px;
}

.core-principles-diagram::after {
	right: -62px;
	top: -62px;
}

.core-principles-diagram .principles-connectors,
.core-principles-diagram .principles-hub {
	display: none;
}

.core-principles-diagram .principle-node,
.core-principles-diagram .node-flexibility,
.core-principles-diagram .node-improvisation,
.core-principles-diagram .node-integrity,
.core-principles-diagram .node-equality,
.core-principles-diagram .node-modesty,
.core-principles-diagram .node-freedom,
.core-principles-diagram .node-promptness {
	position: relative;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	width: calc(25% - 27px);
	min-height: 105px;
	background: transparent;
	border: 0;
	border-radius: 12px;
	box-shadow: none;
	padding: 8px;
	transform: none;
}

.core-principles-diagram .principle-node:hover,
.core-principles-diagram .node-improvisation:hover,
.core-principles-diagram .node-freedom:hover {
	background: rgba(255, 255, 255, 0.08);
	box-shadow: none;
	transform: translateY(-4px);
}

.core-principles-diagram .principle-icon {
	width: 52px;
	height: 52px;
	background: transparent;
	border: 2px solid rgba(255, 255, 255, 0.75);
	color: #00aadb;
	font-size: 23px;
	margin-bottom: 10px;
}

.core-principles-diagram .principle-node:hover .principle-icon {
	background: #00aadb;
	border-color: #00aadb;
	color: #fff;
}

.core-principles-diagram .principle-node h3 {
	font-size: 16px;
	color: #fff;
	letter-spacing: 0.6px;
}

@media only screen and (max-width: 991px) {
	.core-principles-diagram {
		display: flex;
		gap: 20px;
		padding: 28px 25px;
	}

	.core-principles-diagram .principle-node {
		width: calc(33.33% - 14px);
		min-height: 105px;
	}
}

@media only screen and (max-width: 767px) {
	.core-principles {
		padding: 40px 0;
	}

	.core-principles-diagram {
		gap: 14px;
		padding: 24px 14px;
	}

	.core-principles-diagram .principle-node {
		width: calc(50% - 7px);
		min-height: 100px;
	}

	.core-principles-diagram .principle-node:last-child {
		width: 100%;
	}

	.core-principles-diagram .principle-node h3 {
		font-size: 13px;
	}
}

/* Core Principles: CREPL logo colors and motion */
.core-principles {
	background: linear-gradient(145deg, #f5faf3 0%, #ffffff 55%, #eef7eb 100%);
}

.core-principles .section-title h2::after {
	content: '';
	display: block;
	width: 64px;
	height: 4px;
	background: #4aab3d;
	border-radius: 10px;
	margin: 14px auto 0;
}

.core-principles-diagram {
	background:
		radial-gradient(circle at 12% 15%, rgba(74, 171, 61, 0.22), transparent 28%),
		radial-gradient(circle at 88% 85%, rgba(74, 171, 61, 0.16), transparent 30%),
		linear-gradient(135deg, #001a29 0%, #073548 100%);
	border: 1px solid rgba(74, 171, 61, 0.38);
	box-shadow: 0 16px 38px rgba(0, 26, 41, 0.2);
}

.core-principles-diagram::before,
.core-principles-diagram::after {
	background: #4aab3d;
	animation: principles-corner-pulse 3.5s ease-in-out infinite;
}

.core-principles-diagram .principle-node {
	transition: background 0.35s ease, transform 0.35s ease;
}

.core-principles-diagram .principle-node:hover {
	background: rgba(74, 171, 61, 0.12);
}

.core-principles-diagram .principle-icon {
	position: relative;
	color: #4aab3d;
	border-color: rgba(255, 255, 255, 0.72);
	box-shadow: 0 0 0 0 rgba(74, 171, 61, 0.28);
	animation: principle-icon-float 3.2s ease-in-out infinite,
		principle-icon-pulse 2.8s ease-out infinite;
}

.core-principles-diagram .principle-node:nth-child(2) .principle-icon {
	animation-delay: 0.2s;
}

.core-principles-diagram .principle-node:nth-child(3) .principle-icon {
	animation-delay: 0.4s;
}

.core-principles-diagram .principle-node:nth-child(4) .principle-icon {
	animation-delay: 0.6s;
}

.core-principles-diagram .principle-node:nth-child(5) .principle-icon {
	animation-delay: 0.8s;
}

.core-principles-diagram .principle-node:nth-child(6) .principle-icon {
	animation-delay: 1s;
}

.core-principles-diagram .principle-node:nth-child(7) .principle-icon {
	animation-delay: 1.2s;
}

.core-principles-diagram .principle-node:hover .principle-icon {
	background: #4aab3d;
	border-color: #4aab3d;
	color: #ffffff;
	animation-play-state: paused;
	transform: scale(1.1) rotate(5deg);
}

.core-principles-diagram .principle-node h3 {
	position: relative;
	transition: color 0.3s ease, letter-spacing 0.3s ease;
}

.core-principles-diagram .principle-node:hover h3 {
	color: #8ed584;
	letter-spacing: 1px;
}

@keyframes principle-icon-float {

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

	50% {
		transform: translateY(-6px);
	}
}

@keyframes principle-icon-pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(74, 171, 61, 0.3);
	}

	70%,
	100% {
		box-shadow: 0 0 0 10px rgba(74, 171, 61, 0);
	}
}

@keyframes principles-corner-pulse {

	0%,
	100% {
		opacity: 0.65;
	}

	50% {
		opacity: 1;
	}
}

@media (prefers-reduced-motion: reduce) {

	.core-principles-diagram::before,
	.core-principles-diagram::after,
	.core-principles-diagram .principle-icon {
		animation: none;
	}
}

/* About page: Mission and Vision */
.mission-vision-section {
	position: relative;
	overflow: hidden;
	padding: 55px 0 60px;
	background: #082f2c;
}

.mission-vision-section::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
	background-size: 42px 42px;
	mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 80%, transparent);
}

.mission-vision-glow {
	position: absolute;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: rgba(126, 196, 54, 0.13);
	filter: blur(80px);
	pointer-events: none;
}

.mission-vision-glow-one {
	left: -170px;
	top: -120px;
}

.mission-vision-glow-two {
	right: -180px;
	bottom: -170px;
}

.mission-vision-section .container {
	position: relative;
	z-index: 2;
}

.mission-vision-title {
	margin-bottom: 30px;
}

.mission-vision-title .section-sub-title,
.mission-vision-title h2,
.mission-vision-title p {
	color: #fff;
}

.mission-vision-title h2 span {
	color: var(--accent-color);
}

.mission-vision-title p {
	max-width: 700px;
	margin: 10px auto 0;
	opacity: 0.72;
}

.mission-vision-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 28px;
	max-width: 1100px;
	margin: 0 auto;
}

.purpose-card {
	position: relative;
	min-height: 330px;
	overflow: hidden;
	padding: 28px 30px;
	border: 1px solid rgba(255, 255, 255, 0.13);
	border-radius: 24px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
	backdrop-filter: blur(8px);
	transition: transform 0.45s ease, border-color 0.45s ease, background 0.45s ease;
}

.purpose-card:hover {
	transform: translateY(-10px);
	border-color: rgba(126, 196, 54, 0.65);
	background: linear-gradient(145deg, rgba(126, 196, 54, 0.16), rgba(255, 255, 255, 0.055));
}

.purpose-card::before {
	content: '';
	position: absolute;
	right: -80px;
	top: -80px;
	width: 190px;
	height: 190px;
	border: 1px solid rgba(126, 196, 54, 0.2);
	border-radius: 50%;
	box-shadow: 0 0 0 30px rgba(126, 196, 54, 0.025), 0 0 0 60px rgba(126, 196, 54, 0.02);
	transition: transform 0.8s ease;
}

.purpose-card:hover::before {
	transform: scale(1.25) rotate(25deg);
}

.purpose-card-number {
	position: absolute;
	right: 24px;
	top: 15px;
	font-size: 74px;
	font-weight: 700;
	line-height: 1;
	color: rgba(255, 255, 255, 0.045);
}

.purpose-icon {
	position: relative;
	display: grid;
	place-items: center;
	width: 58px;
	height: 58px;
	margin-bottom: 19px;
	border-radius: 18px;
	background: var(--accent-color);
	box-shadow: 0 12px 28px rgba(126, 196, 54, 0.25);
	transition: transform 0.5s cubic-bezier(.2, .8, .2, 1);
}

.purpose-card:hover .purpose-icon {
	transform: rotate(-7deg) scale(1.08);
}

.purpose-icon svg {
	width: 32px;
	height: 32px;
	fill: none;
	stroke: #fff;
	stroke-width: 2.4;
	stroke-linecap: round;
	stroke-linejoin: round;
}

.purpose-label {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.7px;
	text-transform: uppercase;
	color: #fff;
}

.purpose-card-content h3 {
	max-width: 390px;
	margin-bottom: 10px;
	font-size: 25px;
	line-height: 1.25;
	color: #fff;
}

.purpose-card-content p {
	margin-bottom: 0;
	line-height: 1.55;
	color: rgba(255, 255, 255, 0.7);
}

.purpose-points {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 16px 0 0;
	padding: 0;
	list-style: none;
}

.purpose-points li {
	padding: 7px 11px;
	border: 1px solid rgba(126, 196, 54, 0.25);
	border-radius: 30px;
	font-size: 12px;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.82);
	background: rgba(126, 196, 54, 0.08);
}

.purpose-card-line {
	position: absolute;
	left: 38px;
	bottom: 0;
	width: 0;
	height: 3px;
	border-radius: 5px;
	background: var(--accent-color);
	transition: width 0.6s ease;
}

.purpose-card:hover .purpose-card-line {
	width: calc(100% - 76px);
}

.purpose-energy-mark {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 4;
	display: grid;
	place-items: center;
	width: 62px;
	height: 62px;
	border: 7px solid #082f2c;
	border-radius: 50%;
	background: #fff;
	transform: translate(-50%, -50%);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.energy-bolt {
	position: relative;
	z-index: 2;
	font-size: 25px;
	color: var(--primary-color);
}

.energy-ring {
	position: absolute;
	inset: -9px;
	border: 1px dashed var(--accent-color);
	border-radius: 50%;
	animation: infiniterotate 12s linear infinite;
}

@media only screen and (max-width: 991px) {
	.mission-vision-section {
		padding: 50px 0 55px;
	}

	.mission-vision-grid {
		grid-template-columns: 1fr;
		max-width: 650px;
	}

	.purpose-card {
		min-height: auto;
	}

	.purpose-energy-mark {
		display: none;
	}
}

@media only screen and (max-width: 767px) {
	.mission-vision-section {
		padding: 40px 0 45px;
	}

	.mission-vision-title {
		margin-bottom: 24px;
	}

	.mission-vision-grid {
		gap: 16px;
	}

	.purpose-card {
		min-height: auto;
		padding: 23px 20px;
		border-radius: 19px;
	}

	.purpose-icon {
		width: 52px;
		height: 52px;
		margin-bottom: 17px;
	}

	.purpose-icon svg {
		width: 29px;
		height: 29px;
	}

	.purpose-card-content h3 {
		font-size: 22px;
	}

	.purpose-card-content p {
		font-size: 14px;
	}

	.purpose-card-number {
		font-size: 56px;
	}

	.purpose-card:hover {
		transform: translateY(-5px);
	}
}

@media (prefers-reduced-motion: reduce) {

	.mission-vision-section *,
	.mission-vision-section *::before,
	.mission-vision-section *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Home page responsive refinements */
@media only screen and (max-width: 767px) {
	.hero {
		min-height: auto;
		padding: 80px 0 65px;
	}

	.hero .hero-bg-video video {
		object-position: center center;
	}

	.hero-content .section-title p {
		font-size: 15px;
		margin-bottom: 0;
	}

	.hero-content-body {
		align-items: flex-start;
		gap: 16px;
	}

	.hero .hero-btn,
	.hero .hero-btn .btn-default {
		width: 100%;
	}

	.hero .hero-btn .btn-default {
		text-align: center;
	}

	.hero .video-play-button a {
		cursor: pointer;
	}

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

	.why-choose-us-content {
		margin-bottom: 25px;
	}

	.why-choose-us-content .section-title p {
		font-size: 15px;
		text-align: left;
	}

	.why-choose-counter-list {
		gap: 22px 16px;
		padding-top: 25px;
		margin-top: 25px;
	}

	.why-choose-counter-item {
		width: calc(50% - 8px);
		padding: 0 5px;
	}

	.why-choose-counter-item::before {
		right: -8px;
	}

	.why-choose-counter-item h2 {
		font-size: 26px;
	}

	.why-choose-counter-item p {
		font-size: 13px;
		line-height: 1.4em;
	}

	.why-choose-btn {
		padding-top: 25px;
		margin-top: 25px;
	}

	.why-choose-us-image-box {
		width: 100%;
		max-width: 360px;
	}

	.why-choose-image figure img {
		max-height: 360px;
	}

	.how-it-work .section-row {
		margin-bottom: 22px;
	}

	.how-work-items-list.who-we-are-services {
		gap: 15px;
	}

	.how-work-item.who-we-are-service,
	.how-work-item.who-we-are-service:nth-child(3n + 2) {
		width: calc(50% - 7.5px);
		padding: 10px 10px 16px;
	}

	.core-principles .section-title {
		margin-bottom: 20px;
	}

	.core-principles-diagram {
		width: 100%;
		border-radius: 14px;
	}
}

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

	.container,
	.container-fluid,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		padding-right: 18px;
		padding-left: 18px;
	}

	.hero {
		padding: 70px 0 55px;
	}

	.hero-content-body {
		flex-direction: column;
	}

	.hero .video-play-button p {
		font-size: 15px;
	}

	.why-choose-counter-item h2 {
		font-size: 23px;
	}

	.how-work-item.who-we-are-service,
	.how-work-item.who-we-are-service:nth-child(3n + 2) {
		width: calc(50% - 7.5px);
		max-width: none;
		margin: 0;
	}

	.who-we-are-service .how-work-item-image figure img {
		aspect-ratio: 4 / 3;
	}

	.who-we-are-service .how-work-item-content h3 {
		min-height: auto;
	}

	.core-principles-diagram {
		padding: 20px 10px;
	}

	.core-principles-diagram .principle-icon {
		width: 46px;
		height: 46px;
		font-size: 20px;
	}

	.core-principles-diagram .principle-node {
		padding: 6px 3px;
	}
}

/* Keep the About section in the desktop two-column composition on every device */
@media only screen and (max-width: 1199px) {
	.why-choose-us>.container>.row {
		display: flex;
		flex-wrap: nowrap;
		align-items: center;
	}

	.why-choose-us>.container>.row>.col-xl-7 {
		flex: 0 0 58.333%;
		width: 58.333%;
	}

	.why-choose-us>.container>.row>.col-xl-5 {
		flex: 0 0 41.667%;
		width: 41.667%;
	}

	.why-choose-us-content {
		height: 100%;
		margin-bottom: 0;
	}

	.why-choose-us-image-box {
		margin: 0 auto;
	}
}

@media only screen and (max-width: 767px) {
	.why-choose-us {
		padding: 42px 0;
	}

	.why-choose-us>.container>.row>* {
		padding-right: 8px;
		padding-left: 8px;
	}

	.why-choose-us-content .section-title .section-sub-title {
		font-size: 11px;
	}

	.why-choose-us-content .section-title h2 {
		font-size: clamp(19px, 5vw, 26px);
	}

	.why-choose-us-content .section-title p {
		font-size: 12px;
		line-height: 1.45em;
	}

	.why-choose-counter-list {
		gap: 14px 8px;
		padding-top: 18px;
		margin-top: 18px;
	}

	.why-choose-counter-item {
		width: calc(50% - 4px);
		padding: 0;
	}

	.why-choose-counter-item::before {
		right: -4px;
	}

	.why-choose-counter-item h2 {
		font-size: clamp(18px, 4.7vw, 25px);
	}

	.why-choose-counter-item p {
		font-size: 10px;
		line-height: 1.3em;
	}

	.why-choose-btn {
		padding-top: 18px;
		margin-top: 18px;
	}

	.why-choose-btn .btn-default {
		font-size: 12px;
		padding: 13px 42px 13px 14px;
	}

	.why-choose-us-image-box,
	.why-choose-image figure img {
		width: 100%;
		max-height: 330px;
	}
}

@media only screen and (max-width: 480px) {
	.why-choose-us>.container>.row>.col-xl-7 {
		flex-basis: 62%;
		width: 62%;
	}

	.why-choose-us>.container>.row>.col-xl-5 {
		flex-basis: 38%;
		width: 38%;
	}

	.why-choose-counter-item h2 {
		font-size: 17px;
	}

	.why-choose-btn .btn-default::before {
		right: 13px;
		width: 16px;
		height: 16px;
	}
}

/* Mobile About: image parallel to intro, statistics below */
@media only screen and (max-width: 767px) {
	.why-choose-us>.container>.row {
		display: grid;
		grid-template-columns: minmax(0, 1.55fr) minmax(105px, 0.85fr);
		grid-template-rows: auto auto auto;
		align-items: center;
		column-gap: 18px;
		row-gap: 0;
		margin: 0;
	}

	.why-choose-us>.container>.row>.col-xl-7,
	.why-choose-us>.container>.row>.col-xl-5,
	.why-choose-us-content {
		display: contents;
	}

	.why-choose-us-content>.section-title {
		grid-column: 1;
		grid-row: 1;
		margin: 0;
	}

	.why-choose-us-image-box {
		grid-column: 2;
		grid-row: 1;
		align-self: center;
		width: 100%;
		max-width: 210px;
		margin: 0;
	}

	.why-choose-image figure,
	.why-choose-image figure img {
		width: 100%;
		height: auto;
		max-height: 230px;
		border-radius: 14px;
	}

	.why-choose-counter-list {
		grid-column: 1 / -1;
		grid-row: 2;
		width: 100%;
		gap: 18px 0;
		padding-top: 24px;
		margin-top: 28px;
	}

	.why-choose-counter-item {
		width: 50%;
		padding: 0 8px;
	}

	.why-choose-counter-item::before {
		right: 0;
	}

	.why-choose-counter-item:nth-child(2n + 2)::before {
		display: none;
	}

	.why-choose-counter-item h2 {
		font-size: 22px;
	}

	.why-choose-counter-item p {
		font-size: 12px;
		line-height: 1.35em;
	}

	.why-choose-btn {
		grid-column: 1 / -1;
		grid-row: 3;
		width: 100%;
		padding-top: 22px;
		margin-top: 22px;
	}
}

@media only screen and (max-width: 420px) {
	.why-choose-us>.container>.row {
		grid-template-columns: minmax(0, 1.6fr) minmax(100px, 0.8fr);
		column-gap: 12px;
	}

	.why-choose-us-content>.section-title p {
		font-size: 11px;
	}

	.why-choose-counter-item h2 {
		font-size: 20px;
	}

	.why-choose-counter-item p {
		font-size: 11px;
	}
}

/* Our Journey timeline */
.our-journey {
	position: relative;
	padding: 42px 0 46px;
	background:
		radial-gradient(circle at 8% 88%, rgba(25, 91, 52, 0.18) 0, rgba(25, 91, 52, 0) 32%),
		radial-gradient(circle at 92% 12%, rgba(65, 172, 202, 0.2) 0, rgba(20, 169, 211, 0) 34%),
		linear-gradient(135deg, #e8f7ec 0%, #f7fbf8 48%, #e5f6fb 100%);
	overflow: hidden;
}

.our-journey::before,
.our-journey::after {
	content: '';
	position: absolute;
	width: 130px;
	height: 130px;
	transform: rotate(45deg);
	z-index: 0;
}

.our-journey::before {
	left: -88px;
	bottom: -88px;
	background: #195b34;
}

.our-journey::after {
	right: -88px;
	top: -88px;
	background: #14a9d3;
}

.our-journey .container {
	position: relative;
	z-index: 1;
}

.our-journey .section-title {
	margin-bottom: 12px;
}

.our-journey .section-title h2 {
	color: #195b34;
	text-transform: uppercase;
}

.journey-timeline {
	position: relative;
	height: 350px;
	max-width: 1200px;
	margin: 0 auto;
}

.journey-wave {
	position: absolute;
	top: 28px;
	left: 0;
	width: 100%;
	height: 300px;
}

.journey-wave path {
	fill: none;
	stroke: #e6ecef;
	stroke-width: 42;
	stroke-linecap: round;
	filter: drop-shadow(0 10px 10px rgba(0, 26, 41, 0.08));
}

.journey-milestone {
	position: absolute;
	left: var(--x);
	top: var(--y);
	width: 155px;
	text-align: center;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.journey-year {
	width: 92px;
	height: 92px;
	background: #00aadb;
	border: 6px solid #ffffff;
	border-radius: 50%;
	box-shadow: 0 12px 24px rgba(0, 26, 41, 0.18);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: 700;
	color: #ffffff;
	margin: 0 auto;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
	animation: journey-year-float 3.4s ease-in-out infinite;
}

.journey-milestone:nth-of-type(even) .journey-year {
	background: #279c12;
}

.journey-milestone:nth-of-type(2) .journey-year {
	animation-delay: .3s;
}

.journey-milestone:nth-of-type(3) .journey-year {
	animation-delay: .6s;
}

.journey-milestone:nth-of-type(4) .journey-year {
	animation-delay: .9s;
}

.journey-milestone:nth-of-type(5) .journey-year {
	animation-delay: 1.2s;
}

.journey-milestone:nth-of-type(6) .journey-year {
	animation-delay: 1.5s;
}

.journey-milestone:nth-of-type(7) .journey-year {
	animation-delay: 1.8s;
}

.journey-milestone:hover .journey-year {
	transform: scale(1.1);
	box-shadow: 0 16px 30px rgba(74, 171, 61, 0.28);
	animation-play-state: paused;
}

.journey-milestone p {
	position: absolute;
	left: 50%;
	width: 190px;
	font-size: 13px;
	line-height: 1.35em;
	color: #326f29;
	margin: 0;
	transform: translateX(-50%);
}

.journey-milestone.milestone-top p {
	bottom: calc(100% + 18px);
}

.journey-milestone.milestone-bottom p {
	top: calc(100% + 18px);
}

@keyframes journey-year-float {

	0%,
	100% {
		translate: 0 0;
	}

	50% {
		translate: 0 -7px;
	}
}

@media only screen and (max-width: 991px) {
	.our-journey {
		padding: 38px 0;
	}

	.journey-timeline {
		height: auto;
		max-width: 700px;
		padding: 10px 0;
	}

	.journey-wave {
		display: none;
	}

	.journey-timeline::before {
		content: '';
		position: absolute;
		top: 25px;
		bottom: 25px;
		left: 50%;
		width: 3px;
		background: linear-gradient(#00aadb, #4aab3d);
		border-radius: 5px;
		transform: translateX(-50%);
	}

	.journey-milestone {
		position: relative;
		left: auto;
		top: auto;
		width: 50%;
		min-height: 100px;
		display: flex;
		align-items: center;
		gap: 15px;
		text-align: left;
		transform: none;
		padding: 12px 35px 12px 0;
	}

	.journey-milestone:nth-of-type(even) {
		margin-left: 50%;
		flex-direction: row-reverse;
		text-align: right;
		padding: 12px 0 12px 35px;
	}

	.journey-year {
		flex: 0 0 76px;
		width: 76px;
		height: 76px;
		font-size: 20px;
		margin: 0;
	}

	.journey-milestone p,
	.journey-milestone.milestone-top p,
	.journey-milestone.milestone-bottom p {
		position: static;
		width: auto;
		font-size: 13px;
		transform: none;
	}
}

@media only screen and (max-width: 575px) {
	.our-journey {
		padding: 32px 0;
	}

	.our-journey .section-title {
		margin-bottom: 16px;
	}

	.journey-timeline::before {
		left: 36px;
		transform: none;
	}

	.journey-milestone,
	.journey-milestone:nth-of-type(even) {
		width: 100%;
		min-height: 90px;
		margin-left: 0;
		flex-direction: row;
		text-align: left;
		padding: 10px 0;
		gap: 16px;
	}

	.journey-year {
		flex-basis: 72px;
		width: 72px;
		height: 72px;
		font-size: 18px;
		border-width: 5px;
	}

	.journey-milestone p,
	.journey-milestone.milestone-top p,
	.journey-milestone.milestone-bottom p {
		font-size: 12px;
		line-height: 1.45em;
	}
}

@media (prefers-reduced-motion: reduce) {
	.journey-year {
		animation: none;
	}
}

/* Final site-wide responsive safeguards */
html,
body {
	max-width: 100%;
	overflow-x: hidden;
}

img,
svg,
video,
canvas,
iframe {
	max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
a {
	overflow-wrap: break-word;
}

@media only screen and (max-width: 991px) {
	header.main-header {
		top: 8px;
		left: 8px;
		right: 8px;
	}

	.navbar-brand img {
		width: 155px;
		max-height: 70px;
	}

	.header-sticky,
	.navbar,
	.navbar .container {
		min-width: 0;
	}

	.navbar-toggle {
		margin-left: auto;
		z-index: 1001;
	}

	.responsive-menu {
		position: relative;
		width: 100%;
		z-index: 1000;
	}

	.slicknav_menu {
		max-height: calc(100vh - 70px);
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	.main-footer-box {
		align-items: stretch;
		gap: 30px;
	}

	.about-footer,
	.footer-links-box {
		width: 100%;
		max-width: 100%;
	}

	.footer-links-box {
		gap: 25px;
	}

	.footer-map,
	.footer-map-container,
	.footer-map iframe {
		width: 100%;
	}
}

@media only screen and (max-width: 767px) {
	body {
		font-size: 15px;
	}

	.topbar .row {
		gap: 8px;
	}

	.topbar .col-md-7,
	.topbar .col-md-5 {
		width: 100%;
	}

	.topbar-contact-info ul {
		flex-wrap: wrap;
		justify-content: center;
		gap: 8px 14px;
	}

	.topbar-contact-info ul li,
	.topbar-contact-info ul li a {
		font-size: 12px;
		word-break: break-word;
	}

	.topbar-social-links {
		margin-top: 0;
	}

	.navbar-brand img {
		width: 138px;
		max-height: 62px;
	}

	.section-title h1,
	.section-title h2 {
		word-break: normal;
	}

	.btn-default {
		max-width: 100%;
		white-space: normal;
	}

	.video-play-button a {
		cursor: pointer;
	}

	.footer-links-box {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 28px 20px;
		padding: 22px;
	}

	.footer-links {
		width: 100%;
		max-width: 100%;
	}

	.footer-map {
		grid-column: 1 / -1;
	}

	.footer-map iframe {
		height: 180px;
	}

	.footer-contact-items-list {
		align-items: flex-start;
		gap: 22px;
	}

	.footer-contact-item {
		width: 100%;
		min-width: 0;
	}

	.footer-contact-item-content {
		min-width: 0;
		width: calc(100% - 65px);
	}

	.footer-contact-item-content h3,
	.footer-contact-item-content h3 a {
		font-size: 15px;
		line-height: 1.5em;
		word-break: break-word;
	}

	.footer-copyright-text p {
		font-size: 13px;
		line-height: 1.6em;
	}
}

@media only screen and (max-width: 575px) {
	.topbar-social-links p {
		display: none;
	}

	.navbar-brand img {
		width: 122px;
	}

	.slicknav_nav .slicknav_row,
	.slicknav_nav li a {
		font-size: 14px;
		padding-top: 9px;
		padding-bottom: 9px;
	}

	.section-title h1 {
		font-size: clamp(27px, 9vw, 38px);
	}

	.section-title h2 {
		font-size: clamp(24px, 8vw, 32px);
	}

	.footer-links-box {
		grid-template-columns: 1fr;
		padding: 20px 18px;
	}

	.footer-map {
		grid-column: auto;
	}

	.footer-map iframe {
		height: 165px;
	}

	.about-footer-content p {
		font-size: 14px;
	}
}

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

	.container,
	.container-fluid,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		padding-right: 12px;
		padding-left: 12px;
	}

	.navbar-brand img {
		width: 110px;
	}

	.topbar-contact-info ul {
		flex-direction: column;
		align-items: center;
	}

	.hero .video-play-button a {
		gap: 8px;
	}

	.hero .video-play-button a span {
		width: 44px;
		height: 44px;
	}

	.core-principles-diagram .principle-node h3 {
		font-size: 12px;
		letter-spacing: 0;
	}
}

/* Our Journey visual enhancements */
.our-journey .section-title h2::after {
	content: '';
	display: block;
	width: 74px;
	height: 4px;
	background: linear-gradient(90deg, #4aab3d, #00aadb);
	border-radius: 10px;
	margin: 14px auto 0;
}

/* Keep the Journey heading and top milestones separated on laptop screens */
@media only screen and (min-width: 992px) and (max-width: 1440px) {
	.our-journey {
		padding-top: 30px;
	}

	.our-journey .section-title {
		margin-bottom: 52px;
	}

	.our-journey .section-title .section-sub-title {
		margin-bottom: 8px;
	}

	.our-journey .section-title h2 {
		font-size: 42px;
		line-height: 1em;
	}

	.our-journey .section-title h2::after {
		margin-top: 10px;
	}

	.journey-timeline {
		height: 330px;
	}
}

.journey-wave path:first-of-type {
	stroke: rgba(0, 26, 41, 0.07);
	stroke-width: 54;
	filter: drop-shadow(0 14px 12px rgba(0, 26, 41, 0.1));
}

.journey-wave .journey-wave-accent {
	stroke: url(#journeyWaveGradient);
	stroke-width: 5;
	stroke-linecap: round;
	stroke-dasharray: 14 12;
	filter: drop-shadow(0 0 6px rgba(74, 171, 61, 0.35));
	animation: journey-wave-flow 18s linear infinite;
}

.journey-milestone::before {
	content: '';
	position: absolute;
	left: 50%;
	width: 2px;
	height: 18px;
	background: linear-gradient(#4aab3d, #00aadb);
	transform: translateX(-50%);
}

.journey-milestone.milestone-top::before {
	bottom: calc(100% + 1px);
}

.journey-milestone.milestone-bottom::before {
	top: calc(100% + 1px);
}

.journey-year {
	position: relative;
	border-color: #ffffff;
	box-shadow: 0 12px 28px rgba(0, 170, 219, 0.25), 0 0 0 5px rgba(0, 170, 219, 0.1);
}

.journey-milestone:nth-of-type(even) .journey-year {
	box-shadow: 0 12px 28px rgba(74, 171, 61, 0.24), 0 0 0 5px rgba(74, 171, 61, 0.1);
}

.journey-year::after {
	content: '';
	position: absolute;
	inset: -12px;
	border: 1px solid currentColor;
	border-radius: 50%;
	opacity: 0.22;
	animation: journey-ring-pulse 2.8s ease-out infinite;
}

.journey-milestone p {
	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(74, 171, 61, 0.18);
	border-radius: 10px;
	box-shadow: 0 8px 22px rgba(0, 26, 41, 0.08);
	padding: 9px 11px;
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.journey-milestone:hover p {
	border-color: rgba(0, 170, 219, 0.55);
	box-shadow: 0 12px 28px rgba(0, 170, 219, 0.14);
	transform: translateX(-50%) translateY(-3px);
}

.journey-milestone.milestone-bottom:hover p {
	transform: translateX(-50%) translateY(3px);
}

@keyframes journey-wave-flow {
	to {
		stroke-dashoffset: -520;
	}
}

@keyframes journey-ring-pulse {
	0% {
		transform: scale(0.88);
		opacity: 0.35;
	}

	75%,
	100% {
		transform: scale(1.16);
		opacity: 0;
	}
}

@media only screen and (max-width: 991px) {
	.journey-milestone::before {
		display: none;
	}

	.journey-milestone p,
	.journey-milestone:hover p,
	.journey-milestone.milestone-bottom:hover p {
		background: #ffffff;
		border-color: rgba(74, 171, 61, 0.2);
		padding: 12px 14px;
		transform: none;
	}
}

@media (prefers-reduced-motion: reduce) {

	.journey-wave .journey-wave-accent,
	.journey-year::after {
		animation: none;
	}
}

/* Compact mobile topbar contact row */
@media only screen and (max-width: 767px) {
	.topbar {
		padding: 9px 0;
	}

	.topbar .row {
		display: block;
	}

	.topbar .col-md-7 {
		width: 100%;
		padding: 0 10px;
	}

	.topbar .col-md-5,
	.topbar-social-links {
		display: none;
	}

	.topbar-contact-info ul {
		display: flex;
		flex-direction: row;
		flex-wrap: nowrap;
		align-items: center;
		justify-content: center;
		gap: 10px 22px;
		margin: 0;
	}

	.topbar-contact-info ul li {
		display: flex;
		align-items: center;
		min-width: 0;
		margin: 0;
		white-space: nowrap;
	}

	.topbar-contact-info ul li img {
		flex: 0 0 15px;
		width: 15px;
		height: 15px;
		margin-right: 6px;
	}

	.topbar-contact-info ul li a {
		font-size: 12px;
		line-height: 1.2em;
		white-space: nowrap;
	}
}

@media only screen and (max-width: 380px) {
	.topbar-contact-info ul {
		gap: 8px 12px;
	}

	.topbar-contact-info ul li img {
		flex-basis: 13px;
		width: 13px;
		height: 13px;
		margin-right: 4px;
	}

	.topbar-contact-info ul li a {
		font-size: 10.5px;
	}
}

/* About page: simple leadership statement */
.leadership-statement {
	padding: 38px 0;
	background: linear-gradient(110deg, #f4f7f1 0%, #edf3eb 100%);
}

.leadership-statement-grid {
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(300px, .65fr);
	align-items: center;
	gap: clamp(32px, 5vw, 64px);
	padding: 26px;
	background: #fff;
	border: 1px solid #dce7dc;
	border-radius: 18px;
	box-shadow: 0 16px 42px rgba(23, 59, 34, .08);
}

.leadership-statement-content {
	position: relative;
	max-width: 650px;
	padding-left: 24px;
}

.leadership-statement-content::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 4px;
	background: linear-gradient(#4aab3d, #17512b);
	border-radius: 4px;
}

.leadership-statement-label {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: #4aab3d;
}

.leadership-statement-content h2 {
	margin-bottom: 12px;
	font-size: clamp(27px, 3vw, 40px);
	font-weight: 600;
	line-height: 1.12;
	letter-spacing: -.035em;
	color: #173b22;
}

.leadership-statement-content>p {
	margin-bottom: 8px;
	font-size: 13px;
	line-height: 1.55;
	color: #59635d;
}

.leadership-statement-signature {
	margin-top: 14px;
	padding-left: 12px;
	border-left: 3px solid #4aab3d;
}

.leadership-statement-signature strong,
.leadership-statement-signature span {
	display: block;
}

.leadership-statement-signature strong {
	font-size: 14px;
	color: #173b22;
}

.leadership-statement-signature span {
	margin-top: 2px;
	font-size: 11px;
	color: #768078;
}

.leadership-statement-image figure {
	position: relative;
	margin: 0;
	overflow: hidden;
	border-radius: 14px;
	background: #eee7da;
	box-shadow: 0 14px 32px rgba(23, 59, 34, .16);
}

.leadership-statement-image figure::after {
	content: '';
	position: absolute;
	inset: 0;
	border: 1px solid rgba(255, 255, 255, .35);
	border-radius: inherit;
	pointer-events: none;
}

.leadership-statement-image img {
	display: block;
	width: 100%;
	height: 315px;
	object-fit: cover;
	object-position: center 30%;
}

@media only screen and (max-width: 991px) {
	.leadership-statement {
		padding: 28px 0;
	}

	.leadership-statement-grid {
		grid-template-columns: 1fr 1fr;
		gap: 24px;
		padding: 20px;
	}

	.leadership-statement-content h2 {
		font-size: clamp(25px, 4vw, 34px);
	}

	.leadership-statement-content>p {
		font-size: 12px;
		line-height: 1.5;
	}

	.leadership-statement-image img {
		height: 280px;
	}
}

@media only screen and (max-width: 767px) {
	.leadership-statement {
		padding: 24px 0;
	}

	.leadership-statement-grid {
		grid-template-columns: 1fr;
		gap: 20px;
		padding: 18px;
	}

	.leadership-statement-content {
		max-width: none;
		padding-left: 16px;
	}

	.leadership-statement-image {
		width: 100%;
		max-width: 340px;
		margin: 0 auto;
	}

	.leadership-statement-image img {
		height: clamp(240px, 72vw, 320px);
		object-position: center 25%;
	}
}

/* About page: modern visual treatment */
.about-page-header {
	position: relative;
	min-height: auto;
	padding: 98px 0;
	background-image: url('../images/page-header-bg.jpg') !important;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	background-color: var(--primary-color);
	overflow: hidden;
}

.about-page-header::before {
	z-index: 1;
	background: linear-gradient(270deg, transparent 27.45%, rgba(0, 26, 41, 0.90) 72.29%);
}

.about-page-header>.container {
	position: relative;
	z-index: 2;
}

.about-page-header-video {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.about-page-header .page-header-box h1 {
	font-size: 46px;
	margin-bottom: 8px;
}

.about-us-modern {
	position: relative;
	overflow: hidden;
	padding: 55px 0;
	background:
		radial-gradient(circle at 8% 18%, rgba(126, 196, 54, 0.11), transparent 25%),
		linear-gradient(180deg, #ffffff 0%, #f7faf5 100%);
}

.about-us-modern::before {
	content: '';
	position: absolute;
	right: -130px;
	top: 70px;
	width: 310px;
	height: 310px;
	border: 1px solid rgba(126, 196, 54, 0.18);
	border-radius: 50%;
	box-shadow: 0 0 0 55px rgba(126, 196, 54, 0.035), 0 0 0 110px rgba(126, 196, 54, 0.025);
}

.about-modern-visual {
	position: relative;
	max-width: 520px;
	padding: 20px 20px 16px 0;
}

.about-modern-visual::before {
	content: '';
	position: absolute;
	inset: 0 0 42px 34px;
	border-radius: 30px;
	background: linear-gradient(145deg, rgba(126, 196, 54, 0.13), rgba(15, 66, 55, 0.04));
	transform: rotate(-2deg);
}

.about-modern-visual .about-us-image-box {
	position: relative;
	z-index: 2;
}

.about-modern-visual .about-single-image-box {
	display: block;
	margin-right: 0;
	padding: 0 24px 24px 0;
}

.about-single-image-box>.about-us-image figure {
	margin: 0;
	border: 7px solid #fff;
	border-radius: 24px;
}

.about-single-image-box>.about-us-image figure img {
	display: block;
	width: 100%;
	height: 465px;
	aspect-ratio: auto;
	object-fit: cover;
	object-position: center;
	border-radius: 17px;
}

.about-single-image-box .about-us-counter-box {
	position: absolute;
	left: -22px;
	bottom: 0;
	width: 165px;
	margin: 0;
	padding: 18px 15px;
	z-index: 3;
}

.about-modern-visual .about-us-image figure {
	overflow: hidden;
	box-shadow: 0 24px 55px rgba(16, 57, 47, 0.16);
}

.about-modern-visual .about-us-image img {
	transition: transform 0.8s cubic-bezier(.2, .7, .2, 1);
}

.about-modern-visual .about-us-image:hover img {
	transform: scale(1.06);
}

.about-modern-visual .about-us-counter-box {
	position: relative;
	overflow: hidden;
	box-shadow: 0 18px 35px rgba(126, 196, 54, 0.28);
	animation: aboutFloat 4.5s ease-in-out infinite;
}

.about-modern-visual .about-us-counter-box::after {
	content: '';
	position: absolute;
	top: -70%;
	left: -45%;
	width: 45%;
	height: 240%;
	background: rgba(255, 255, 255, 0.18);
	transform: rotate(25deg);
	animation: aboutShine 5s ease-in-out infinite;
}

.about-counter-icon {
	display: inline-grid;
	place-items: center;
	width: 34px;
	height: 34px;
	margin-bottom: 9px;
	border-radius: 50%;
	color: var(--primary-color);
	background: var(--white-color);
}

.about-modern-visual .about-us-counter-box p {
	font-size: 14px;
	line-height: 1.45;
}

.about-clean-badge {
	position: absolute;
	right: -20px;
	top: 42px;
	display: grid;
	grid-template-columns: 12px 1fr;
	align-items: center;
	column-gap: 9px;
	min-width: 172px;
	padding: 13px 16px;
	border: 1px solid rgba(255, 255, 255, 0.75);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.9);
	box-shadow: 0 14px 35px rgba(16, 57, 47, 0.18);
	backdrop-filter: blur(10px);
	animation: aboutFloat 4.5s ease-in-out 1s infinite;
}

.about-clean-badge-dot {
	grid-row: span 2;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--accent-color);
	box-shadow: 0 0 0 6px rgba(126, 196, 54, 0.15);
	animation: aboutPulse 2s ease-out infinite;
}

.about-clean-badge strong,
.about-clean-badge small {
	line-height: 1.2;
}

.about-clean-badge small {
	margin-top: 3px;
	color: var(--text-color);
}

.about-modern-orbit {
	position: absolute;
	left: -22px;
	top: 2px;
	width: 112px;
	height: 112px;
	border: 1px dashed rgba(126, 196, 54, 0.55);
	border-radius: 50%;
	animation: infiniterotate 18s linear infinite;
}

.about-modern-orbit span {
	position: absolute;
	width: 9px;
	height: 9px;
	border-radius: 50%;
	background: var(--accent-color);
}

.about-modern-orbit span:nth-child(1) {
	left: 10px;
	top: 14px;
}

.about-modern-orbit span:nth-child(2) {
	right: -4px;
	top: 52px;
}

.about-modern-orbit span:nth-child(3) {
	left: 41px;
	bottom: -4px;
}

.about-modern-content {
	padding-left: 25px;
}

.about-modern-content .section-title h2 span {
	color: var(--primary-color);
}

.about-modern-content .section-title p {
	max-width: 650px;
	line-height: 1.8;
}

.about-modern-stats {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 12px;
	margin: 22px 0;
}

.about-stat-card {
	position: relative;
	padding: 14px 12px;
	border: 1px solid rgba(15, 66, 55, 0.1);
	border-radius: 14px;
	background: rgba(255, 255, 255, 0.82);
	box-shadow: 0 8px 25px rgba(16, 57, 47, 0.06);
	transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.about-stat-card:hover {
	transform: translateY(-7px);
	border-color: var(--accent-color);
	box-shadow: 0 16px 34px rgba(16, 57, 47, 0.12);
}

.about-stat-card strong,
.about-stat-card>span {
	display: block;
}

.about-stat-card strong {
	margin-bottom: 5px;
	font-size: 28px;
	line-height: 1;
	color: var(--primary-color);
}

.about-stat-card>span {
	font-size: 13px;
	line-height: 1.35;
	color: var(--text-color);
}

.about-us-modern .about-us-item-list {
	width: 100%;
}

.about-us-modern .about-us-item {
	padding: 13px 15px;
	margin-bottom: 12px;
	border: 1px solid rgba(15, 66, 55, 0.08);
	border-radius: 14px;
	background: #fff;
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.about-us-modern .about-us-item:last-child {
	padding: 13px 15px;
}

.about-us-modern .about-us-item:hover {
	transform: translateX(8px);
	box-shadow: 0 12px 28px rgba(16, 57, 47, 0.09);
}

.about-us-modern .about-us-item-content p {
	font-size: 14px;
}

@keyframes aboutFloat {

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

	50% {
		transform: translateY(-10px);
	}
}

@keyframes aboutPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(126, 196, 54, 0.45);
	}

	70%,
	100% {
		box-shadow: 0 0 0 10px rgba(126, 196, 54, 0);
	}
}

@keyframes aboutShine {

	0%,
	55% {
		left: -55%;
	}

	85%,
	100% {
		left: 130%;
	}
}

@media only screen and (max-width: 1199px) {
	.about-modern-visual {
		max-width: 520px;
		margin: 0 auto 40px;
	}

	.about-modern-content {
		padding-left: 0;
	}
}

@media only screen and (max-width: 767px) {
	.about-page-header {
		padding: 92px 0;
	}

	.about-page-header .page-header-box h1 {
		font-size: 32px;
	}

	.about-us-modern {
		padding: 42px 0;
	}

	.about-modern-visual {
		padding: 12px 8px 8px 0;
		margin-bottom: 28px;
	}

	.about-clean-badge {
		right: 0;
		top: 25px;
		min-width: 150px;
		padding: 10px 12px;
	}

	.about-modern-orbit {
		width: 80px;
		height: 80px;
		left: -10px;
	}

	.about-modern-stats {
		grid-template-columns: 1fr;
		gap: 9px;
	}

	.about-stat-card {
		display: flex;
		align-items: center;
		gap: 14px;
		padding: 14px 16px;
	}

	.about-stat-card strong {
		min-width: 65px;
		margin: 0;
		font-size: 25px;
	}

	.about-us-modern .about-us-item:hover {
		transform: translateY(-4px);
	}

	.about-modern-visual .about-single-image-box {
		padding: 0 8px 30px 12px;
	}

	.about-single-image-box>.about-us-image figure img {
		height: 350px;
	}

	.about-single-image-box .about-us-counter-box {
		left: 0;
		width: 150px;
		padding: 17px 12px;
	}

	.about-single-image-box .about-us-counter-box h2 {
		font-size: 34px;
	}
}

@media only screen and (max-width: 480px) {
	.about-single-image-box>.about-us-image figure img {
		height: 300px;
	}

	.about-clean-badge {
		top: 18px;
		right: -2px;
	}
}

@media (prefers-reduced-motion: reduce) {

	.about-us-modern *,
	.about-us-modern *::before,
	.about-us-modern *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		scroll-behavior: auto !important;
	}
}

/* Contact page: Get In Touch form only */
.contact-us-form-modern {
	position: relative;
	overflow: hidden;
	border: 1px solid rgba(15, 66, 55, 0.18);
	border-radius: 24px;
	background: radial-gradient(circle at 100% 0, rgba(126, 196, 54, 0.14), transparent 31%), linear-gradient(145deg, #fff, #f5f9f2);
	box-shadow: 0 8px 20px rgba(15, 66, 55, 0.08), 0 28px 65px rgba(15, 66, 55, 0.16), 0 0 0 4px rgba(126, 196, 54, 0.05);
}

.contact-us-form-modern::before {
	content: '';
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 5px;
	background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.contact-us-form-modern .section-title,
.contact-us-form-modern .contact-form {
	position: relative;
	z-index: 2;
}

.contact-form-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-bottom: 13px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
	color: var(--primary-color);
}

.contact-form-status-dot {
	width: 8px;
	height: 8px;
	border-radius: 50%;
	background: var(--accent-color);
	animation: contactStatusPulse 2s ease-out infinite;
}

.contact-us-form-modern .section-title h2 {
	margin-bottom: 10px;
}

.contact-us-form-modern .section-title p {
	max-width: 650px;
	line-height: 1.7;
}

.contact-us-form-modern form {
	margin-top: 26px;
}

.contact-us-form-modern .form-group {
	position: relative;
}

.contact-us-form-modern .contact-form label {
	margin: 0 0 9px 3px;
	font-size: 14px;
	font-weight: 600;
}

.contact-us-form-modern .contact-form .form-control {
	min-height: 58px;
	border: 1px solid rgba(15, 66, 55, 0.11);
	border-radius: 12px;
	background: rgba(255, 255, 255, 0.9);
	padding: 16px 18px;
	box-shadow: 0 7px 18px rgba(15, 66, 55, 0.035);
	transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease, background .3s ease;
}

.contact-us-form-modern .contact-form textarea.form-control {
	min-height: 140px;
	resize: vertical;
}

.contact-us-form-modern .contact-form .form-control:hover {
	border-color: rgba(126, 196, 54, 0.55);
}

.contact-us-form-modern .contact-form .form-control:focus {
	border-color: var(--accent-color);
	background: #fff;
	box-shadow: 0 0 0 4px rgba(126, 196, 54, 0.13), 0 12px 25px rgba(15, 66, 55, 0.07);
	transform: translateY(-2px);
}

.contact-us-form-modern .contact-form .form-control::placeholder {
	color: #89968e;
	opacity: 1;
}

.contact-submit-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-width: 205px;
	box-shadow: 0 13px 28px rgba(15, 66, 55, 0.2);
}

.contact-submit-arrow {
	display: grid;
	place-items: center;
	width: 27px;
	height: 27px;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.18);
	transition: transform .35s ease, background .35s ease;
}

.contact-submit-btn:hover .contact-submit-arrow {
	transform: rotate(45deg);
	background: rgba(255, 255, 255, 0.28);
}

.contact-form-note {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	margin: 0 0 0 17px;
	font-size: 12px;
	color: var(--text-color);
}

.contact-form-note span {
	display: grid;
	place-items: center;
	width: 18px;
	height: 18px;
	border-radius: 50%;
	font-size: 10px;
	color: #fff;
	background: var(--accent-color);
}

.contact-form-decoration {
	position: absolute;
	right: 27px;
	top: 24px;
	width: 62px;
	height: 62px;
	border: 1px dashed rgba(126, 196, 54, 0.4);
	border-radius: 50%;
	animation: infiniterotate 18s linear infinite;
}

.contact-form-decoration span {
	position: absolute;
	width: 7px;
	height: 7px;
	border-radius: 50%;
	background: var(--accent-color);
}

.contact-form-decoration span:nth-child(1) {
	left: 5px;
	top: 8px;
}

.contact-form-decoration span:nth-child(2) {
	right: -3px;
	top: 29px;
}

.contact-form-decoration span:nth-child(3) {
	left: 24px;
	bottom: -3px;
}

@keyframes contactStatusPulse {
	0% {
		box-shadow: 0 0 0 0 rgba(126, 196, 54, 0.5);
	}

	70%,
	100% {
		box-shadow: 0 0 0 8px rgba(126, 196, 54, 0);
	}
}

@media only screen and (max-width: 767px) {
	.contact-us-form-modern {
		padding: 28px 20px;
		border-radius: 19px;
	}

	.contact-form-decoration {
		right: 16px;
		top: 17px;
		width: 48px;
		height: 48px;
		opacity: .65;
	}

	.contact-us-form-modern form {
		margin-top: 20px;
	}

	.contact-us-form-modern .form-group {
		margin-bottom: 16px !important;
	}

	.contact-form-note {
		display: flex;
		margin: 14px 0 0;
	}

	.contact-submit-btn {
		width: 100%;
	}
}

@media (prefers-reduced-motion: reduce) {

	.contact-us-form-modern *,
	.contact-us-form-modern *::before,
	.contact-us-form-modern *::after {
		animation-duration: .01ms !important;
		animation-iteration-count: 1 !important;
	}
}

/* Projects page: sidebar filter and two-column cards only */
.project-filter-sidebar ul li {
	padding: 0;
}

.project-filter-btn {
	position: relative;
	display: block;
	width: 100%;
	border: 0;
	background: transparent;
	padding: 0 27px 0 0;
	font: inherit;
	line-height: inherit;
	text-align: left;
	text-transform: capitalize;
	color: inherit;
	cursor: pointer;
	transition: color .35s ease, transform .35s ease;
}

.project-filter-btn::before {
	content: '';
	position: absolute;
	right: 0;
	top: 4px;
	width: 18px;
	height: 18px;
	background: url('../images/arrow-primary.svg') center/cover no-repeat;
	transition: transform .35s ease;
}

.project-filter-btn:hover,
.project-filter-btn.active {
	color: var(--accent-color);
	transform: translateX(4px);
}

.project-filter-btn:hover::before,
.project-filter-btn.active::before {
	transform: rotate(45deg);
}

.project-listing-heading {
	margin-bottom: 25px;
}

.project-listing-heading>span {
	display: block;
	margin-bottom: 7px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	color: var(--accent-color);
}

.project-listing-heading h2 {
	margin: 0;
	font-size: 34px;
}

.project-filter-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 24px;
}

.project-filter-card {
	overflow: hidden;
	border: 1px solid rgba(15, 66, 55, 0.1);
	border-radius: 17px;
	background: #fff;
	box-shadow: 0 12px 34px rgba(15, 66, 55, 0.08);
	transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}

.project-filter-card:hover {
	transform: translateY(-7px);
	border-color: rgba(126, 196, 54, 0.5);
	box-shadow: 0 22px 42px rgba(15, 66, 55, 0.14);
}

.project-filter-card.is-hidden {
	display: none;
}

.project-filter-image {
	position: relative;
	height: 230px;
	overflow: hidden;
	background: var(--bg-color);
}

.project-filter-image::after {
	content: '';
	position: absolute;
	inset: 45% 0 0;
	background: linear-gradient(transparent, rgba(0, 26, 41, .55));
	pointer-events: none;
}

.project-filter-image img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}

.project-filter-card:hover .project-filter-image img {
	transform: scale(1.07);
}

.project-filter-image>span {
	position: absolute;
	left: 17px;
	bottom: 15px;
	z-index: 2;
	padding: 7px 11px;
	border-radius: 30px;
	font-size: 11px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: .5px;
	text-transform: uppercase;
	color: #fff;
	background: var(--accent-color);
}

.project-filter-body {
	padding: 20px;
}

.project-filter-body h3 {
	margin-bottom: 9px;
	font-size: 21px;
	line-height: 1.3;
}

.project-filter-body p {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
}

.project-card-enter {
	animation: projectCardEnter .45s ease both;
}

@keyframes projectCardEnter {
	from {
		opacity: 0;
		transform: translateY(18px) scale(.98);
	}

	to {
		opacity: 1;
		transform: translateY(0) scale(1);
	}
}

@media only screen and (max-width: 991px) {
	.project-filter-sidebar ul {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 0 25px;
	}

	.project-listing-content {
		margin-top: 35px;
	}
}

@media only screen and (max-width: 767px) {
	.project-filter-sidebar ul {
		display: block;
	}

	.project-filter-grid {
		grid-template-columns: 1fr;
		gap: 18px;
	}

	.project-filter-image {
		height: 225px;
	}

	.project-listing-heading h2 {
		font-size: 28px;
	}

	.project-filter-card:hover {
		transform: translateY(-4px);
	}
}

@media (prefers-reduced-motion: reduce) {

	.project-filter-card,
	.project-filter-image img {
		animation: none !important;
		transition: none !important;
	}
}

/* Home hero typography across mobile screen sizes */
@media only screen and (max-width: 767px) {
	.hero {
		padding: 175px 0 100px;
	}

	.hero .hero-content .section-title h1 {
		font-size: clamp(25px, 7vw, 31px);
		line-height: 1.18;
	}

	.hero .hero-content .section-title p {
		font-size: clamp(13px, 3.8vw, 15px);
		line-height: 1.55;
	}

	.hero .video-play-button p {
		font-size: clamp(13px, 3.6vw, 15px);
	}
}

@media only screen and (max-width: 480px) {
	.hero .hero-content .section-title h1 {
		font-size: clamp(23px, 7.2vw, 27px);
	}

	.hero .hero-content .section-title p {
		font-size: 13px;
	}
}

/* Homepage Who We Are: rising renewable-energy showcase */
.who-we-are-showcase {
	position: relative;
	padding: 42px 0 52px;
	background:
		radial-gradient(circle at 83% 18%, rgba(74, 171, 61, 0.34), transparent 30%),
		radial-gradient(circle at 8% 88%, rgba(126, 196, 54, 0.24), transparent 34%),
		linear-gradient(135deg, #17512b 0%, #0d3f22 56%, #4aab3d 145%);
	overflow: hidden;
}

.who-we-are-showcase::before {
	content: '';
	position: absolute;
	left: -5%;
	right: -5%;
	bottom: 118px;
	height: 165px;
	border-top: 5px solid rgba(211, 174, 42, 0.82);
	border-radius: 50% 50% 0 0;
	box-shadow: 0 -3px 18px rgba(211, 174, 42, 0.55), 0 -10px 40px rgba(83, 151, 48, 0.28);
	transform: rotate(-7deg);
	pointer-events: none;
}

.who-we-are-showcase::after {
	content: '';
	position: absolute;
	inset: 0;
	background-image: repeating-radial-gradient(circle at 100% 100%, transparent 0 27px, rgba(172, 211, 87, 0.055) 28px 29px);
	pointer-events: none;
}

.who-we-are-showcase .container {
	position: relative;
	z-index: 2;
}

.who-we-are-showcase .section-row {
	margin-bottom: 10px;
}

.who-we-are-showcase .section-title {
	margin: 0;
}

.who-we-are-showcase .section-title .section-sub-title {
	padding: 0;
	margin-bottom: 8px;
	background: transparent;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 4px;
	text-transform: uppercase;
	color: #cfe63e;
}

.who-we-are-showcase .section-title .section-sub-title::before {
	display: none;
}

.who-we-are-showcase .section-title h2 {
	max-width: 820px;
	font-size: clamp(46px, 5.2vw, 76px);
	font-weight: 500;
	line-height: 1.02;
	letter-spacing: -0.035em;
	color: #f5f0e5;
}

.who-we-are-showcase .section-title p {
	max-width: 650px;
	margin-top: 10px;
	font-size: 16px;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.78);
}

.who-we-are-showcase .how-work-items-list.who-we-are-services {
	position: relative;
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	align-items: end;
	gap: 18px;
	width: 100%;
	max-width: 950px;
	margin: 0 auto;
	padding-top: 38px;
	counter-reset: service-step;
}

.who-we-are-showcase .who-we-are-service,
.who-we-are-showcase .who-we-are-service:nth-child(3n + 2) {
	position: relative;
	display: block;
	width: 100%;
	max-width: none;
	padding: 0;
	margin: 0;
	background: transparent;
	border: 0;
	box-shadow: none;
	counter-increment: service-step;
}

.who-we-are-showcase .who-we-are-service:nth-child(1) {
	transform: translateY(0);
}

.who-we-are-showcase .who-we-are-service:nth-child(2) {
	transform: translateY(-20px);
}

.who-we-are-showcase .who-we-are-service:nth-child(3) {
	transform: translateY(-40px);
}

.who-we-are-showcase .who-we-are-service:nth-child(4) {
	transform: translateY(-60px);
}

.who-we-are-showcase .who-we-are-service:nth-child(5) {
	transform: translateY(-80px);
}

.who-we-are-showcase .how-work-item-image {
	position: relative;
	margin-bottom: 22px;
}

.who-we-are-showcase .how-work-item-image figure {
	height: 185px;
	overflow: hidden;
	border: 2px solid rgba(205, 228, 61, 0.78);
	border-radius: 70px 70px 34px 34px;
	box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
}

.who-we-are-showcase .how-work-item-image figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.6s ease;
}

.who-we-are-showcase .who-we-are-service:hover .how-work-item-image figure img {
	transform: scale(1.07);
}

.who-we-are-showcase .how-work-item-content {
	position: relative;
	padding: 18px 5px 0;
	text-align: center;
}

.who-we-are-showcase .how-work-item-content::before {
	content: counter(service-step, decimal-leading-zero);
	position: absolute;
	top: -24px;
	left: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 32px;
	height: 32px;
	background: #d8ec42;
	border-radius: 50%;
	box-shadow: 0 0 0 5px rgba(213, 231, 62, 0.13), 0 0 17px rgba(213, 231, 62, 0.75);
	font-size: 11px;
	font-weight: 800;
	color: #073222;
	transform: translateX(-50%);
}

.who-we-are-showcase .how-work-item-content h3 {
	min-height: auto;
	margin-bottom: 9px;
	font-size: 19px;
	line-height: 1.25;
	color: #d8ec42;
}

.who-we-are-showcase .how-work-item-content p {
	margin: 0;
	font-size: 12px;
	line-height: 1.5;
	color: rgba(255, 255, 255, 0.72);
}

@media only screen and (max-width: 991px) {
	.who-we-are-showcase {
		padding: 62px 0;
	}

	.who-we-are-showcase::before {
		display: none;
	}

	.who-we-are-showcase .how-work-items-list.who-we-are-services {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 26px 20px;
		padding-top: 10px;
	}

	.who-we-are-showcase .who-we-are-service:nth-child(n) {
		transform: none;
	}
}

@media only screen and (max-width: 575px) {
	.who-we-are-showcase .section-title h2 {
		font-size: 38px;
	}

	.who-we-are-showcase .section-title p {
		font-size: 15px;
	}

	.who-we-are-showcase .how-work-items-list.who-we-are-services {
		grid-template-columns: 1fr;
	}

	.who-we-are-showcase .how-work-item-image figure,
	.who-we-are-showcase .who-we-are-service:nth-child(even) .how-work-item-image figure {
		height: 310px;
	}
}

/* Homepage Our Journey: ascending renewable-energy milestones */
.journey-showcase {
	--journey-lime: #c8d96b;
	position: relative;
	padding: 20px 0 10px;
	background: #0b4935;
	overflow: hidden;
}

.journey-showcase::before {
	display: none;
}

.journey-showcase .container {
	position: relative;
	z-index: 1;
}

.journey-showcase-heading {
	margin: 0 0 4px 18px;
}

.journey-showcase-heading span {
	display: block;
	font-size: clamp(30px, 3.5vw, 46px);
	font-weight: 800;
	line-height: .95;
	letter-spacing: -1px;
	text-transform: uppercase;
	color: #fff9e9;
}

.journey-showcase-heading p {
	margin: 9px 0 0;
	font-size: clamp(13px, 1.3vw, 18px);
	color: var(--journey-lime);
}

.journey-showcase-track {
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	align-items: end;
	gap: 9px;
	min-height: 270px;
	padding: 0 8px;
}

.journey-step {
	position: relative;
	height: calc(190px + var(--step-rise, 0px));
	color: #082c22;
	background: #fff9e9;
	clip-path: polygon(0 9%, 100% 0, 100% 100%, 0 100%);
	filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .2));
	transition: transform .3s ease, filter .3s ease;
}

.journey-step:nth-child(1) {
	--step-rise: 0px;
}

.journey-step:nth-child(2) {
	--step-rise: 13px;
}

.journey-step:nth-child(3) {
	--step-rise: 26px;
}

.journey-step:nth-child(4) {
	--step-rise: 39px;
}

.journey-step:nth-child(5) {
	--step-rise: 52px;
}

.journey-step:nth-child(6) {
	--step-rise: 65px;
}

.journey-step:nth-child(7) {
	--step-rise: 78px;
}

.journey-step-light {
	background: linear-gradient(145deg, #fffdf4, #f3e8c7);
}

.journey-step-green {
	background: linear-gradient(145deg, #168258, #075b3b);
	color: #fffdf2;
}

.journey-step:hover {
	transform: translateY(-9px);
	filter: drop-shadow(0 18px 24px rgba(215, 239, 66, .18));
}

.journey-step-inner {
	display: flex;
	height: 100%;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	padding: 30px 9px 12px;
	text-align: left;
}

.journey-step-year {
	font-size: clamp(25px, 2.1vw, 34px);
	font-weight: 800;
	line-height: 1;
	letter-spacing: -1px;
}

.journey-step-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	margin: 10px auto 8px;
	font-size: 27px;
	color: #dcb900;
}

.journey-step p {
	width: 100%;
	margin: 0;
	font-size: 9.5px;
	line-height: 1.3;
	color: inherit;
}

.journey-step p strong {
	display: block;
	font-size: 12px;
}

.journey-step-future::before {
	content: '';
	position: absolute;
	top: -30px;
	left: 50%;
	width: 72px;
	height: 72px;
	border-top: 5px solid var(--journey-lime);
	border-right: 5px solid var(--journey-lime);
	transform: translateX(-50%) rotate(-45deg);
	filter: drop-shadow(0 0 8px rgba(215, 239, 66, .75));
}

.journey-showcase-footer {
	position: relative;
	height: 28px;
	margin: 0 8px;
	border-top: 1px solid rgba(200, 217, 107, .7);
	text-align: center;
}

.journey-showcase-footer span {
	position: relative;
	top: -12px;
	padding: 0 22px;
	background: #0b4935;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 8px;
	text-transform: uppercase;
	color: var(--journey-lime);
}

@media only screen and (max-width: 991px) {
	.journey-showcase {
		padding: 20px 0 12px;
	}

	.journey-showcase-heading {
		margin: 0 0 4px 8px;
	}

	.journey-showcase-track {
		display: flex;
		align-items: flex-end;
		min-height: 285px;
		overflow-x: auto;
		padding: 8px;
		scroll-snap-type: x mandatory;
	}

	.journey-step {
		flex: 0 0 145px;
		height: calc(190px + var(--step-rise-mobile, 0px));
		scroll-snap-align: start;
	}

	.journey-step:nth-child(1) {
		--step-rise-mobile: 0px;
	}

	.journey-step:nth-child(2) {
		--step-rise-mobile: 14px;
	}

	.journey-step:nth-child(3) {
		--step-rise-mobile: 28px;
	}

	.journey-step:nth-child(4) {
		--step-rise-mobile: 42px;
	}

	.journey-step:nth-child(5) {
		--step-rise-mobile: 56px;
	}

	.journey-step:nth-child(6) {
		--step-rise-mobile: 70px;
	}

	.journey-step:nth-child(7) {
		--step-rise-mobile: 84px;
	}

	.journey-step-inner {
		padding: 30px 11px 12px;
	}

	.journey-step-year {
		font-size: 29px;
	}

	.journey-showcase-footer span {
		letter-spacing: 4px;
	}
}

@media only screen and (max-width: 575px) {
	.journey-showcase::before {
		inset: 10px;
	}

	.journey-showcase-heading span {
		font-size: 32px;
	}

	.journey-showcase-heading p {
		max-width: 310px;
		font-size: 14px;
	}

	.journey-showcase-track {
		min-height: 260px;
	}

	.journey-step {
		flex-basis: 138px;
		height: calc(170px + var(--step-rise-phone, 0px));
	}

	.journey-step:nth-child(1) {
		--step-rise-phone: 0px;
	}

	.journey-step:nth-child(2) {
		--step-rise-phone: 12px;
	}

	.journey-step:nth-child(3) {
		--step-rise-phone: 24px;
	}

	.journey-step:nth-child(4) {
		--step-rise-phone: 36px;
	}

	.journey-step:nth-child(5) {
		--step-rise-phone: 48px;
	}

	.journey-step:nth-child(6) {
		--step-rise-phone: 60px;
	}

	.journey-step:nth-child(7) {
		--step-rise-phone: 72px;
	}

	.journey-step-icon {
		width: 36px;
		height: 36px;
		margin: 9px auto 7px;
		font-size: 24px;
	}

	.journey-step p {
		font-size: 9px;
	}

	.journey-step p strong {
		font-size: 11.5px;
	}

	.journey-showcase-footer span {
		padding: 0 12px;
		font-size: 10px;
		letter-spacing: 3px;
	}
}

/* Homepage Core Principles: renewable service capsules */
.core-principles {
	position: relative;
	padding: 58px 0 72px;
	background-color: #17512b;
	background-image: linear-gradient(180deg, #f2f8ef 0%, #dcefd5 34%, #69b84c 72%, #17512b 100%);
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

.core-principles::after {
	display: none;
}

.core-principles>.container {
	position: relative;
	z-index: 2;
}

.core-principles .section-title {
	max-width: none;
	margin: 0 0 30px;
	text-align: left !important;
}

.core-principles .section-title .section-sub-title {
	display: none;
}

.core-principles .section-title h2 {
	font-size: 34px;
	font-weight: 600;
	color: #173b22;
}

.core-principles .section-title h2::after {
	display: none;
}

.core-principles .core-principles-diagram {
	position: relative;
	display: grid;
	grid-template-columns: repeat(7, minmax(0, 1fr));
	align-items: stretch;
	gap: 18px;
	width: 100%;
	max-width: 1180px;
	height: auto;
	margin: 0;
	padding: 0;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	overflow: visible;
}

.core-principles .core-principles-diagram::before,
.core-principles .core-principles-diagram::after {
	display: none;
}

.core-principles .core-principles-diagram .principle-node,
.core-principles .core-principles-diagram .node-flexibility,
.core-principles .core-principles-diagram .node-improvisation,
.core-principles .core-principles-diagram .node-integrity,
.core-principles .core-principles-diagram .node-equality,
.core-principles .core-principles-diagram .node-modesty,
.core-principles .core-principles-diagram .node-freedom,
.core-principles .core-principles-diagram .node-promptness {
	position: relative;
	top: auto;
	right: auto;
	bottom: auto;
	left: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 172px;
	padding: 20px 10px;
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(246, 252, 241, 0.94));
	border: 1px solid rgba(35, 116, 41, 0.24);
	border-radius: 70px;
	box-shadow: 0 9px 18px rgba(28, 105, 38, 0.16), inset 0 0 0 4px rgba(255, 255, 255, 0.55);
	transform: none;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.core-principles .core-principles-diagram .principle-node:hover,
.core-principles .core-principles-diagram .node-improvisation:hover,
.core-principles .core-principles-diagram .node-freedom:hover {
	background: #fff;
	border-color: #369c36;
	box-shadow: 0 14px 25px rgba(22, 104, 35, 0.24), inset 0 0 0 4px rgba(111, 201, 72, 0.12);
	transform: translateY(-7px);
}

.core-principles .core-principles-diagram .principle-icon {
	width: 58px;
	height: 58px;
	margin-bottom: 15px;
	background: rgba(83, 174, 50, 0.1);
	border: 0;
	color: #3a9c35;
	font-size: 27px;
	box-shadow: none;
	animation: none;
}

.core-principles .core-principles-diagram .principle-node:hover .principle-icon {
	background: #4aaa3d;
	border-color: #4aaa3d;
	color: #fff;
	transform: scale(1.07);
}

.core-principles .core-principles-diagram .principle-node h3 {
	max-width: 120px;
	font-size: 13px;
	font-weight: 700;
	line-height: 1.35;
	letter-spacing: 0;
	text-align: center;
	text-transform: capitalize;
	color: #173b22;
}

.core-principles .core-principles-diagram .principle-node:hover h3 {
	color: #287d2d;
	letter-spacing: 0;
}

@media only screen and (max-width: 991px) {
	.core-principles .core-principles-diagram {
		grid-template-columns: repeat(4, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 575px) {
	.core-principles {
		padding: 42px 0 52px;
	}

	.core-principles .section-title h2 {
		font-size: 28px;
	}

	.core-principles .core-principles-diagram {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 14px;
	}

	.core-principles .core-principles-diagram .principle-node {
		min-height: 150px;
	}

	.core-principles .core-principles-diagram .principle-node:last-child {
		grid-column: 1 / -1;
		width: calc(50% - 7px);
		justify-self: center;
	}
}

/* Homepage satisfied clients logo marquee */
.satisfied-clients {
	padding: 46px 0 50px;
	background: #f7f9f5;
	overflow: hidden;
}

.satisfied-clients-heading {
	margin-bottom: 28px;
	text-align: center;
}

.satisfied-clients-heading>span {
	display: block;
	margin-bottom: 7px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 3px;
	text-transform: uppercase;
	color: #4aab3d;
}

.satisfied-clients-heading h2 {
	margin-bottom: 8px;
	font-size: clamp(28px, 3vw, 40px);
	font-weight: 600;
	color: #173b22;
}

.satisfied-clients-heading p {
	margin: 0;
	font-size: 14px;
	color: #6a746d;
}

.client-logo-marquee {
	position: relative;
	width: 100%;
	overflow: hidden;
}

.client-logo-marquee::before,
.client-logo-marquee::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	width: clamp(40px, 9vw, 140px);
	z-index: 2;
	pointer-events: none;
}

.client-logo-marquee::before {
	left: 0;
	background: linear-gradient(90deg, #f7f9f5, transparent);
}

.client-logo-marquee::after {
	right: 0;
	background: linear-gradient(-90deg, #f7f9f5, transparent);
}

.client-logo-track {
	display: flex;
	width: max-content;
	gap: 18px;
	padding: 5px 0 12px;
	animation: client-logo-scroll 130s linear infinite;
}

.client-logo-marquee-reverse {
	margin-top: 10px;
}

.client-logo-marquee-reverse .client-logo-track {
	animation-direction: reverse;
	animation-duration: 140s;
}

.client-logo-set-copy {
	display: flex;
	gap: 18px;
}

.client-logo-card {
	display: grid;
	place-items: center;
	flex: 0 0 190px;
	width: 190px;
	height: 92px;
	padding: 16px;
	background: #fff;
	border: 1px solid #e1e9df;
	border-radius: 12px;
	box-shadow: 0 8px 22px rgba(23, 59, 34, .06);
	transition: border-color .3s ease, transform .3s ease;
}

.client-logo-card:hover {
	border-color: #85bc68;
	transform: translateY(-3px);
}

.client-logo-marquee:hover .client-logo-track {
	animation-play-state: paused;
}

.client-logo-card img {
	display: block;
	max-width: 150px;
	max-height: 58px;
	width: auto;
	height: auto;
	object-fit: contain;
}

.client-logo-placeholder {
	display: flex;
	align-items: center;
	gap: 9px;
	color: #8a958c;
}

.client-logo-placeholder i {
	font-size: 22px;
	color: #77ad61;
}

.client-logo-placeholder span {
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .5px;
	text-transform: uppercase;
}

@keyframes client-logo-scroll {
	to {
		transform: translateX(calc(-50% - 9px));
	}
}

@media only screen and (max-width: 767px) {
	.satisfied-clients {
		padding: 34px 0 38px;
	}

	.satisfied-clients-heading {
		margin-bottom: 22px;
		padding: 0 18px;
	}

	.satisfied-clients-heading p {
		font-size: 12px;
	}

	.client-logo-track,
	.client-logo-set-copy {
		gap: 12px;
	}

	.client-logo-card {
		flex-basis: 150px;
		width: 150px;
		height: 76px;
		padding: 12px;
	}

	.client-logo-card img {
		max-width: 120px;
		max-height: 46px;
	}

	.client-logo-placeholder span {
		font-size: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.client-logo-track {
		animation-play-state: paused;
	}
}

/* Homepage Mission & Vision split showcase */
.home-purpose-section {
	position: relative;
	min-height: 400px;
	padding: 36px 0 26px;
	overflow: hidden;
	background: #f4f0dc;
}

.home-purpose-section::before {
	content: '';
	position: absolute;
	top: -8%;
	bottom: -8%;
	left: 49.5%;
	width: 4px;
	background: linear-gradient(180deg, rgba(255, 231, 149, 0.2), #e6bd4a 18%, #f5d570 82%, rgba(255, 231, 149, 0.15));
	box-shadow: 0 0 14px rgba(230, 189, 74, 0.82), 0 0 34px rgba(230, 189, 74, 0.45);
	transform: rotate(17deg);
	transform-origin: center;
	z-index: 1;
	pointer-events: none;
}

.home-purpose-panel {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 58%;
	height: 100%;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.home-purpose-mission-bg {
	left: 0;
	background-position: center center;
	clip-path: polygon(0 0, 100% 0, 73% 100%, 0 100%);
}

.home-purpose-vision-bg {
	right: 0;
	background-position: center center;
	clip-path: polygon(27% 0, 100% 0, 100% 100%, 0 100%);
}

.home-purpose-section>.container {
	position: relative;
	z-index: 2;
}

.home-purpose-eyebrow {
	margin-bottom: 16px;
	font-size: 14px;
	font-weight: 800;
	letter-spacing: 5px;
	text-transform: uppercase;
	color: #f1c653;
}

.home-purpose-grid {
	position: relative;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 150px;
}

.home-purpose-content {
	max-width: 480px;
}

.home-purpose-vision {
	justify-self: end;
}

.home-purpose-icon {
	display: grid;
	place-items: center;
	width: 50px;
	height: 50px;
	margin-bottom: 10px;
	border: 2px solid #e0b742;
	border-radius: 50%;
	font-size: 22px;
	color: #e0b742;
}

.home-purpose-content h2 {
	margin-bottom: 14px;
	font-size: clamp(38px, 3.5vw, 50px);
	font-weight: 500;
	line-height: 1;
	letter-spacing: -0.035em;
}

.home-purpose-content p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
}

.home-purpose-mission h2,
.home-purpose-mission p {
	color: #f6f1e7;
}

.home-purpose-vision h2,
.home-purpose-vision p {
	color: #123b28;
}

.home-purpose-connector {
	position: absolute;
	top: 135px;
	left: 42%;
	width: 16%;
	height: 2px;
	background: #e0b742;
}

.home-purpose-connector::before {
	content: '';
	position: absolute;
	left: -5px;
	top: -4px;
	width: 10px;
	height: 10px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 0 12px #e0b742;
}

.home-purpose-connector::after {
	content: '';
	position: absolute;
	right: -1px;
	top: -5px;
	width: 11px;
	height: 11px;
	border-top: 2px solid #e0b742;
	border-right: 2px solid #e0b742;
	transform: rotate(45deg);
}

.home-purpose-footer {
	margin-top: 18px;
	text-align: center;
}

.home-purpose-footer p {
	margin-bottom: 13px;
	font-size: 17px;
	letter-spacing: 2px;
	color: #f5f0e5;
}

.home-purpose-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 12px;
	min-width: 225px;
	padding: 13px 20px;
	background: linear-gradient(135deg, #f0c650, #dca62f);
	border-radius: 7px;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
	font-size: 16px;
	font-weight: 700;
	color: #173b22;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-purpose-btn:hover {
	color: #173b22;
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
	transform: translateY(-3px);
}

@media only screen and (max-width: 991px) {
	.home-purpose-section {
		min-height: auto;
		padding: 60px 0;
		background: linear-gradient(180deg, #0d442c 0 50%, #eef1db 50% 100%);
	}

	.home-purpose-section::before {
		display: none;
	}

	.home-purpose-panel {
		width: 100%;
		height: 50%;
		clip-path: none;
	}

	.home-purpose-mission-bg {
		top: 0;
		bottom: auto;
	}

	.home-purpose-vision-bg {
		top: 50%;
		bottom: auto;
	}

	.home-purpose-grid {
		grid-template-columns: 1fr;
		gap: 95px;
	}

	.home-purpose-content,
	.home-purpose-vision {
		max-width: 620px;
		justify-self: start;
	}

	.home-purpose-connector {
		display: none;
	}

	.home-purpose-footer p {
		color: #173b22;
	}
}

@media only screen and (max-width: 575px) {
	.home-purpose-eyebrow {
		margin-bottom: 28px;
		font-size: 12px;
	}

	.home-purpose-content h2 {
		font-size: 42px;
	}

	.home-purpose-content p {
		font-size: 15px;
	}

	.home-purpose-icon {
		width: 56px;
		height: 56px;
		font-size: 24px;
	}
}

/* Homepage About showcase */
.about-showcase {
	padding: 90px 0;
	background: var(--white-color);
}

.about-showcase>.container>.row {
	display: flex;
	flex-wrap: nowrap;
	align-items: center;
	gap: 60px;
}

.about-showcase>.container>.row>.col-xl-5 {
	order: 1;
	flex: 0 0 calc(50% - 30px);
	width: calc(50% - 30px);
}

.about-showcase>.container>.row>.col-xl-7 {
	order: 2;
	flex: 0 0 calc(50% - 30px);
	width: calc(50% - 30px);
}

.about-showcase .why-choose-us-image-box {
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
}

.about-showcase .why-choose-image-box-1,
.about-showcase .why-choose-image,
.about-showcase .why-choose-image figure {
	width: 100%;
	height: auto;
	margin: 0;
	overflow: visible;
}

.about-showcase .why-choose-image figure img {
	display: block;
	width: 100%;
	/* height: 460px; */
	max-height: 460px;
	object-fit: contain;
	border-radius: 0;
}

.about-showcase .why-choose-us-content {
	height: auto;
	margin: 0;
}

.about-showcase .section-title {
	margin: 0;
}

.about-showcase .section-title h2 {
	margin-bottom: 15px;
	font-size: clamp(34px, 3vw, 48px);
	font-weight: 600;
	line-height: 1.08em;
	letter-spacing: -0.035em;
	color: #202326;
}

.about-showcase .section-title p {
	max-width: 680px;
	font-size: 19px;
	line-height: 1.65em;
	color: #55595c;
}

.about-showcase .why-choose-counter-list {
	display: none;
}

.about-showcase .why-choose-btn {
	padding-top: 24px;
}

@media only screen and (max-width: 991px) {
	.about-showcase {
		padding: 65px 0;
	}

	.about-showcase>.container>.row {
		gap: 38px;
	}

	.about-showcase .section-title h2 {
		font-size: clamp(30px, 4vw, 40px);
	}

	.about-showcase .section-title p {
		font-size: 16px;
	}

	.about-showcase .why-choose-image figure img {
		height: 390px;
		max-height: 390px;
	}
}

@media only screen and (max-width: 767px) {
	.about-showcase {
		padding: 48px 0;
	}

	.about-showcase>.container>.row {
		display: flex;
		flex-direction: column;
		gap: 30px;
	}

	.about-showcase>.container>.row>.col-xl-5,
	.about-showcase>.container>.row>.col-xl-7,
	.about-showcase .why-choose-us-content {
		display: block;
		flex: 0 0 100%;
		width: 100%;
	}

	.about-showcase .why-choose-us-image-box {
		max-width: 360px;
		margin: 0 auto;
	}

	.about-showcase .why-choose-image figure img {
		height: 320px;
		max-height: 320px;
	}

	.about-showcase .section-title h2 {
		font-size: clamp(27px, 8vw, 36px);
	}

	.about-showcase .section-title p {
		font-size: 15px;
		line-height: 1.6em;
	}
}

/* Responsive hardening for customized homepage sections */
@media only screen and (min-width: 992px) and (max-width: 1199px) {
	.who-we-are-showcase .section-title h2 {
		font-size: 58px;
	}

	.who-we-are-showcase .how-work-items-list.who-we-are-services {
		gap: 14px;
		padding-top: 70px;
	}

	.who-we-are-showcase .how-work-item-image figure {
		height: 185px;
	}

	.who-we-are-showcase .how-work-item-content h3 {
		font-size: 16px;
	}

	.who-we-are-showcase .how-work-item-content p {
		font-size: 11px;
	}

	.home-purpose-grid {
		gap: 110px;
	}

	.home-purpose-content {
		max-width: 430px;
	}
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
	.who-we-are-showcase .section-title h2 {
		font-size: 50px;
	}

	.who-we-are-showcase .how-work-item-image figure {
		height: 200px;
	}

	.core-principles .core-principles-diagram {
		grid-template-columns: repeat(4, minmax(0, 1fr));
		gap: 16px;
	}

	.core-principles .core-principles-diagram .principle-node {
		min-height: 158px;
	}

	.home-purpose-mission-bg {
		height: 58%;
	}

	.home-purpose-vision-bg {
		top: 58%;
		height: 42%;
	}

	.about-showcase>.container>.row {
		gap: 34px;
	}

	.about-showcase .why-choose-image figure img {
		height: 350px;
		max-height: 350px;
	}
}

@media only screen and (max-width: 767px) {
	.whatsapp-float {
		right: 12px;
		bottom: 16px;
		width: 154px;
		height: 44px;
		gap: 8px;
		padding: 0 12px 0 9px;
	}

	.whatsapp-float-text {
		font-size: 12px;
	}

	.renewable-chat-icon {
		flex-basis: 25px;
		width: 25px;
		height: 25px;
	}

	.renewable-chat-icon .fa-leaf {
		font-size: 22px;
	}

	.renewable-chat-icon .fa-bolt {
		font-size: 13px;
	}

	.who-we-are-showcase {
		padding: 34px 0 38px;
	}

	.who-we-are-showcase .section-row {
		margin-bottom: 14px;
	}

	.who-we-are-showcase .section-title h2 {
		font-size: clamp(36px, 8vw, 46px);
	}

	.who-we-are-showcase .how-work-items-list.who-we-are-services {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 24px 14px;
		padding-top: 0;
	}

	.who-we-are-showcase .who-we-are-service:nth-child(n) {
		transform: none;
	}

	.who-we-are-showcase .how-work-item-image figure {
		height: 190px;
		border-radius: 42px 42px 24px 24px;
	}

	.who-we-are-showcase .how-work-item-content h3 {
		font-size: 16px;
	}

	.core-principles {
		padding: 42px 0 50px;
	}

	.core-principles .core-principles-diagram .principle-node {
		min-height: 145px;
	}

	.home-purpose-section {
		padding: 42px 0 34px;
	}

	.home-purpose-mission-bg {
		height: 58%;
	}

	.home-purpose-vision-bg {
		top: 58%;
		height: 42%;
	}

	.home-purpose-grid {
		gap: 78px;
	}

	.home-purpose-footer {
		margin-top: 28px;
	}
}

@media only screen and (max-width: 575px) {
	.who-we-are-showcase .how-work-items-list.who-we-are-services {
		display: flex;
		align-items: stretch;
		justify-content: flex-start;
		gap: 14px;
		overflow-x: auto;
		overflow-y: hidden;
		padding: 4px 18px 18px 0;
		scroll-snap-type: x mandatory;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: thin;
	}

	.who-we-are-showcase .who-we-are-service,
	.who-we-are-showcase .who-we-are-service:nth-child(3n + 2),
	.who-we-are-showcase .who-we-are-service:nth-child(n) {
		flex: 0 0 min(72vw, 285px);
		width: min(72vw, 285px);
		transform: none;
		scroll-snap-align: start;
	}

	.who-we-are-showcase .how-work-item-image figure,
	.who-we-are-showcase .who-we-are-service:nth-child(even) .how-work-item-image figure {
		height: 225px;
	}

	.who-we-are-showcase .how-work-item-content p {
		max-width: 330px;
		margin: 0 auto;
	}

	.core-principles .core-principles-diagram {
		grid-template-columns: repeat(2, minmax(0, 1fr));
		gap: 12px;
	}

	.core-principles .core-principles-diagram .principle-node {
		min-height: 138px;
		padding: 14px 6px;
	}

	.home-purpose-content h2 {
		font-size: clamp(36px, 11vw, 42px);
	}

	.home-purpose-btn {
		width: 100%;
		min-width: 0;
		max-width: 280px;
	}

	.about-showcase .why-choose-us-image-box {
		max-width: 320px;
	}

	.about-showcase .why-choose-image figure img {
		height: 285px;
		max-height: 285px;
	}
}

@media only screen and (max-width: 380px) {
	.whatsapp-float {
		width: 144px;
		right: 8px;
		bottom: 12px;
	}

	.whatsapp-float-text {
		font-size: 11px;
	}

	.who-we-are-showcase .section-title h2 {
		font-size: 33px;
	}

	.core-principles .core-principles-diagram .principle-node h3 {
		font-size: 11px;
	}

	.home-purpose-content p {
		font-size: 13px;
	}
}

@media (hover: none),
(pointer: coarse) {

	.who-we-are-showcase .who-we-are-service:hover,
	.core-principles .principle-node:hover,
	.home-purpose-btn:hover {
		transform: none;
	}
}

/* Keep the desktop Who We Are composition on mobile, scaled to fit */
@media only screen and (max-width: 575px) {
	.who-we-are-showcase {
		padding: 24px 0 30px;
	}

	.who-we-are-showcase>.container {
		width: 1180px;
		max-width: none;
		padding-right: 0;
		padding-left: 0;
		zoom: calc((100vw - 36px) / 1180);
	}

	.who-we-are-showcase .section-row {
		margin-bottom: 20px;
	}

	.who-we-are-showcase .section-title h2 {
		font-size: 76px;
	}

	.who-we-are-showcase .section-title p {
		max-width: 650px;
		font-size: 18px;
	}

	.who-we-are-showcase .how-work-items-list.who-we-are-services {
		display: grid;
		grid-template-columns: repeat(5, minmax(0, 1fr));
		align-items: end;
		gap: 18px;
		overflow: visible;
		padding: 172px 0 0;
		scroll-snap-type: none;
	}

	.who-we-are-showcase .who-we-are-service,
	.who-we-are-showcase .who-we-are-service:nth-child(3n + 2) {
		width: 100%;
		max-width: none;
	}

	.who-we-are-showcase .who-we-are-service:nth-child(1) {
		transform: translateY(0);
	}

	.who-we-are-showcase .who-we-are-service:nth-child(2) {
		transform: translateY(-40px);
	}

	.who-we-are-showcase .who-we-are-service:nth-child(3) {
		transform: translateY(-80px);
	}

	.who-we-are-showcase .who-we-are-service:nth-child(4) {
		transform: translateY(-120px);
	}

	.who-we-are-showcase .who-we-are-service:nth-child(5) {
		transform: translateY(-160px);
	}

	.who-we-are-showcase .how-work-item-image figure,
	.who-we-are-showcase .who-we-are-service:nth-child(even) .how-work-item-image figure {
		height: 285px;
		border-radius: 70px 70px 34px 34px;
	}

	.who-we-are-showcase .how-work-item-content h3 {
		font-size: 19px;
	}

	.who-we-are-showcase .how-work-item-content p {
		max-width: none;
		font-size: 12px;
	}
}

/* Consistent Continual logo across Android, Oppo, iOS and tablet viewports */
@media only screen and (max-width: 991px) {
	header.main-header .navbar-brand {
		display: flex !important;
		align-items: center;
		flex: 0 0 auto;
		width: auto;
		max-width: calc(100vw - 90px);
		opacity: 1 !important;
		visibility: visible !important;
	}

	header.main-header .navbar-brand img {
		display: block !important;
		width: clamp(140px, 36vw, 180px) !important;
		height: auto !important;
		max-width: 100%;
		max-height: none !important;
		object-fit: contain;
		object-position: left center;
		filter: none;
		opacity: 1 !important;
		visibility: visible !important;
	}
}

@media only screen and (max-width: 380px) {
	header.main-header .navbar-brand img {
		width: clamp(125px, 39vw, 145px) !important;
	}
}

/* Keep all Core Principles in one visible row on mobile */
@media only screen and (max-width: 767px) {
	.core-principles {
		padding: 32px 0 40px;
	}

	.core-principles .section-title {
		margin-bottom: 20px;
	}

	.core-principles .section-title h2 {
		font-size: clamp(24px, 7vw, 30px);
	}

	.core-principles .core-principles-diagram {
		display: grid;
		grid-template-columns: repeat(8, minmax(0, 1fr));
		align-items: stretch;
		gap: 10px 8px;
		width: 100%;
		overflow: visible;
		padding: 2px;
	}

	.core-principles .core-principles-diagram .principle-node,
	.core-principles .core-principles-diagram .principle-node:last-child {
		grid-column: span 2;
		width: 100%;
		min-width: 0;
		min-height: 132px;
		padding: 12px 5px;
		border-radius: 44px;
	}

	.core-principles .core-principles-diagram .principle-node:nth-child(5) {
		grid-column: 2 / span 2;
	}

	.core-principles .core-principles-diagram .principle-icon {
		width: 36px;
		height: 36px;
		margin-bottom: 9px;
		font-size: 16px;
	}

	.core-principles .core-principles-diagram .principle-node h3 {
		max-width: 100%;
		font-size: clamp(8px, 2.5vw, 10px);
		line-height: 1.3;
		letter-spacing: 0;
		overflow-wrap: normal;
	}
}

/* Compact mobile Who We Are grid: all services visible without clipping */
@media only screen and (max-width: 575px) {
	.who-we-are-showcase {
		padding: 24px 0 28px;
	}

	.who-we-are-showcase>.container {
		width: 100%;
		max-width: 100%;
		padding-right: 15px;
		padding-left: 15px;
		zoom: 1;
	}

	.who-we-are-showcase .section-row {
		margin-bottom: 14px;
	}

	.who-we-are-showcase .section-title h2 {
		font-size: clamp(30px, 9vw, 38px);
		line-height: 1.08;
	}

	.who-we-are-showcase .section-title p {
		max-width: 100%;
		font-size: 14px;
		line-height: 1.5;
	}

	.who-we-are-showcase .how-work-items-list.who-we-are-services {
		display: grid;
		grid-template-columns: repeat(2, minmax(0, 1fr));
		align-items: start;
		gap: 24px 12px;
		overflow: visible;
		padding: 0;
	}

	.who-we-are-showcase .who-we-are-service,
	.who-we-are-showcase .who-we-are-service:nth-child(3n + 2),
	.who-we-are-showcase .who-we-are-service:nth-child(n) {
		width: 100%;
		max-width: none;
		transform: none;
	}

	.who-we-are-showcase .who-we-are-service:last-child {
		grid-column: 1 / -1;
		width: calc(50% - 6px);
		justify-self: center;
	}

	.who-we-are-showcase .how-work-item-image {
		margin-bottom: 15px;
	}

	.who-we-are-showcase .how-work-item-image figure,
	.who-we-are-showcase .who-we-are-service:nth-child(even) .how-work-item-image figure {
		height: clamp(135px, 43vw, 175px);
		border-radius: 30px 30px 18px 18px;
	}

	.who-we-are-showcase .how-work-item-content {
		padding: 14px 2px 0;
	}

	.who-we-are-showcase .how-work-item-content::before {
		top: -18px;
		width: 27px;
		height: 27px;
		font-size: 9px;
	}

	.who-we-are-showcase .how-work-item-content h3 {
		margin-bottom: 6px;
		font-size: 14px;
	}

	.who-we-are-showcase .how-work-item-content p {
		max-width: 170px;
		font-size: 10px;
		line-height: 1.4;
	}
}

/* Site-wide responsive safety layer */
html,
body {
	width: 100%;
	max-width: 100%;
	overflow-x: clip;
}

img,
video,
svg,
canvas {
	max-width: 100%;
}

.row>* ,
[class*="-grid"]>* ,
[class*="-content"] {
	min-width: 0;
}

iframe,
table {
	max-width: 100%;
}

@media only screen and (max-width: 991px) {
	.container,
	.container-fluid,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		width: 100%;
		max-width: 100%;
		padding-right: clamp(16px, 3.5vw, 28px);
		padding-left: clamp(16px, 3.5vw, 28px);
	}

	.page-header,
	.about-page-header {
		min-height: 0;
		padding-top: clamp(72px, 12vw, 100px);
		padding-bottom: clamp(54px, 9vw, 82px);
	}

	.page-header-box h1,
	.about-page-header .page-header-box h1 {
		font-size: clamp(30px, 7vw, 44px);
		line-height: 1.1;
	}

	.navbar,
	.navbar>.container,
	.navbar-collapse,
	.responsive-menu {
		max-width: 100%;
	}

	.project-filter-grid,
	.mission-vision-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.about-page-header-video,
	.hero-bg-video video {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
}

@media only screen and (max-width: 767px) {
	section,
	.page-header,
	.about-page-header,
	.hero,
	.about-showcase,
	.leadership-statement,
	.satisfied-clients {
		background-position: center;
	}

	.project-filter-grid,
	.mission-vision-grid,
	.leadership-statement-grid {
		grid-template-columns: minmax(0, 1fr);
	}

	.table-responsive,
	table {
		display: block;
		width: 100%;
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
	}

	h1 { font-size: clamp(32px, 10vw, 48px); }
	h2 { font-size: clamp(26px, 8vw, 38px); }
	h3 { font-size: clamp(19px, 5.5vw, 26px); }

	.section-title,
	.section-title-content,
	.section-title p {
		max-width: 100%;
	}
}

@media only screen and (max-width: 380px) {
	.container,
	.container-fluid,
	.container-lg,
	.container-md,
	.container-sm,
	.container-xl,
	.container-xxl {
		padding-right: 14px;
		padding-left: 14px;
	}

	.btn-default,
	.readmore-btn,
	.home-purpose-btn {
		max-width: 100%;
		white-space: normal;
	}
}
