:root {
	--primary-color: #002D44;
	--secondary-color: #F0F9FF;
	--bg-color: #FFFFFF;
	--text-color: #4A5568;
	--accent-color: #12B5E5;
	--white-color: #FFFFFF;
	--divider-color: #002D441A;
	--dark-divider-color: #FFFFFF26;
	--error-color: #E53E3E;
	--default-font: "Inter", sans-serif;
	--accent-font: 'ClashGrotesk-Variable';
}

/************************************/
/*** 	   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);
}

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

header.main-header {
	position: relative;
	left: 0;
	right: 0;
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	background: var(--bg-color);
	z-index: 100;
}

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

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	transform: translateY(0);
	background: var(--white-color);
	border-bottom: 1px solid var(--divider-color);
	border-radius: 0;
}

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

.navbar-brand {
	padding: 0;
	margin: 0;
}

.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(--primary-color);
	background: transparent;
	border-radius: 0px;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-color);
}

.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 {
	content: '\f105';
	float: right;
}

.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: '\f107';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--white-color);
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

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

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

.hero {
	padding: 0;
	position: relative;
	overflow: hidden;
	background-image: none !important;
	/* Removes the diamond pattern bleeding through the slider */
}

.hero-slider {
	height: 100vh;
	min-height: 700px;
	background-image: none !important;
	background-color: var(--primary-color) !important;
}

.hero-slide-item {
	height: 100%;
	background-image: none;
	/* Will be overridden by inline styles */
	background-size: cover;
	background-position: center;
	position: relative;
	display: flex;
	align-items: center;
	z-index: 1;
	background-color: var(--primary-color) !important;
}

.hero-slide-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
	/* Black shade cover for better text readability */
	z-index: -1;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
	color: #fff;
	width: 50px;
	height: 50px;
	background: rgba(18, 181, 229, 0.2);
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, 0.2);
	transition: all 0.3s ease;
	z-index: 10;
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
	font-size: 18px;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
	background: var(--accent-color);
	border-color: var(--accent-color);
}

.hero-content {
	z-index: 2;
}

.hero-content .section-title h1 {
	color: #fff;
}

.hero-content .section-title p {
	color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 991px) {
	.hero-slider {
		height: auto;
		min-height: 500px;
	}

	.hero-content {
		padding: 80px 0;
	}
}




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

.about-us {
	padding: 120px 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: 100%;
	display: flex;
	flex-wrap: wrap;
}

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

.about-us-item-list .about-us-item:nth-child(odd) {
	margin-right: 30px;
}

.about-us-item-list .about-us-item:nth-last-child(2),
.about-us-item-list .about-us-item:last-child {
	border: none;
	padding: 0;
	margin-bottom: 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;
}

.btn-whatsapp-pill {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	background-color: #000;
	/* Black background as requested */
	color: #fff;
	padding: 12px 35px;
	border-radius: 50px;
	/* Pill shape as requested */
	text-decoration: none;
	font-weight: 600;
	font-size: 18px;
	transition: all 0.3s ease-in-out;
	border: 2px solid transparent;
}

.btn-whatsapp-pill img {
	width: 24px;
	height: 24px;
	filter: brightness(0) invert(1);
	/* Ensure the WhatsApp icon is white */
}

.btn-whatsapp-pill:hover {
	background-color: var(--accent-color);
	color: #fff;
	transform: translateY(-2px);
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-whatsapp-black-green {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: #000;
	color: #fff;
	padding: 10px 22px;
	border-radius: 50px;
	text-decoration: none;
	font-weight: 600;
	font-size: 15px;
	transition: all 0.3s ease;
}

.btn-whatsapp-black-green img {
	width: 18px;
	height: 18px;
	flex-shrink: 0;
}

.btn-whatsapp-black-green:hover {
	background-color: var(--accent-color);
	color: #fff;
	transform: translateY(-2px);
}

/************************************/
/**** 	 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: 60px 0;
}

.services-slider .swiper {
	padding-bottom: 60px;
}

.services-slider .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: var(--primary-color);
	opacity: 0.2;
	border-radius: 50%;
}

.services-slider .swiper-pagination-bullet-active {
	background: var(--accent-color);
	opacity: 1;
}

.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);
	text-shadow: 0 0 10px rgba(18, 181, 229, 0.3);
}

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

/* Matching Icon & Hover Effects Improvement */
.icon-box img {
	transition: all 0.3s ease-in-out;
}

.about-us-item:hover .icon-box img,
.service-item:hover .service-item-image .icon-box img {
	transform: scale(1.1);
}

.topbar-social-links ul li a:hover i {
	color: var(--white-color) !important;
	text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
}

.btn-default:hover {
	box-shadow: 0 10px 25px rgba(18, 181, 229, 0.4);
	transform: translateY(-2px);
}

.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: 60px 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 40px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

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

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

.why-choose-counter-item:nth-child(3n + 3):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: 100%;
	display: flex;
	flex-direction: column;
	gap: 30px;
	margin-left: 15px;
}

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

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

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

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

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

.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-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 {
	padding: 60px 0;
}

.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-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% auto;
	padding: 60px 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: 60px 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: 120px 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: 70px 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-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: var(--primary-color);
	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;
	}

	.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: 20px 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: 0px 0;
	}

	.hero-slider {
		height: auto !important;
		/* min-height: 550px !important; */
	}

	.hero-slide-item {
		height: 100% !important;
		background-position: center center !important;
		padding: 40px 0;
		background-size: cover !important;
		display: flex;
		align-items: center;
	}

	/* Specific fixes for 1st and 2nd sliders on mobile */
	.hero-slider .swiper-slide:nth-child(1) .hero-slide-item {
		background-position: center center !important;
	}

	.hero-slider .swiper-slide:nth-child(2) .hero-slide-item {
		background-position: right center !important;
	}

	.hero-content {
		padding: 40px 0 !important;
	}

	.video-play-button a span {
		width: 46px;
		height: 46px;
	}

	.hero-client-box {
		padding-top: 30px;
		margin-top: 30px;
	}

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

	.about-us-counter-box h2 {
		font-size: 38px;
	}

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

	.about-us-item {
		width: 100%;
		margin-right: 0 !important;
	}

	.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) {

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

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

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

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

	.hero-content {
		padding: 60px 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(33.33% - 13.33px);
	}

	.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-repeat: no-repeat;
	background-position: bottom -10px right;
	background-size: auto;
	padding: 60px 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;
	}
}

/*----------------------------------------------------------------------------------------
    Gallery Tabs Styling
----------------------------------------------------------------------------------------*/
.gallery-nav-tabs {
	text-align: center;
	margin-bottom: 50px;
}

.nav-gallery {
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	list-style: none;
	padding: 0;
	margin: 0;
	gap: 15px;
}

.nav-gallery li a {
	display: block;
	padding: 10px 25px;
	background: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 50px;
	font-weight: 500;
	font-family: var(--accent-font);
	transition: all 0.3s ease;
	border: 1px solid var(--divider-color);
	font-size: 15px;
}

.nav-gallery li a:hover,
.nav-gallery li a.active {
	background: var(--accent-color);
	color: var(--white-color);
	border-color: var(--accent-color);
	box-shadow: 0 5px 15px rgba(10, 45, 94, 0.3);
}

@media only screen and (max-width: 767px) {
	.nav-gallery {
		gap: 10px;
	}

	.nav-gallery li a {
		padding: 8px 15px;
		font-size: 13px;
	}
}

/* Fenton Work Process CSS */
.fenton-work-process {
	padding: 60px 0;
	background-color: var(--white-color);
}

.fenton-process-row {
	position: relative;
	margin-top: 60px;
}

.fenton-process-item {
	text-align: center;
	position: relative;
	z-index: 2;
}

.fenton-process-circle {
	width: 130px;
	height: 130px;
	background: #fdfafd;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto 35px;
	position: relative;
	transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
	z-index: 2;
}

/* Reference Arc Border */
.fenton-process-circle::before {
	content: '';
	position: absolute;
	top: -10px;
	left: -10px;
	right: -10px;
	bottom: -10px;
	border-radius: 50%;
	border: 5px solid transparent;
	border-top-color: var(--accent-color);
	border-left-color: var(--accent-color);
	border-bottom-color: var(--accent-color);
	transform: rotate(15deg);
	transition: all 0.4s ease;
}

.fenton-process-item:hover .fenton-process-circle::before {
	transform: rotate(195deg);
	border-right-color: var(--accent-color);
}

.fenton-process-item:hover .fenton-process-circle {
	transform: translateY(-8px);
	box-shadow: 0 15px 40px rgba(18, 181, 229, 0.1);
}

.fenton-step-label {
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	width: 35px;
	height: 35px;
	background: var(--accent-color);
	color: #fff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	font-size: 14px;
	z-index: 3;
	border: 2px solid #fff;
}

.fenton-process-media img {
	width: 65px !important;
	height: 65px !important;
	transition: all 0.3s ease;
	display: block;
	margin: 0 auto;
	filter: brightness(0) saturate(100%) invert(13%) sepia(45%) saturate(1512%) hue-rotate(167deg) brightness(97%) contrast(101%);
	/* Oceanic Navy #002D44 Default Color */
}

.fenton-process-item:hover .fenton-process-media img {
	filter: invert(47%) sepia(91%) saturate(1633%) hue-rotate(167deg) brightness(101%) contrast(100%);
	/* Solar Aqua #12B5E5 Hover Color */
}

.fenton-process-connector {
	position: absolute;
	top: 30px;
	left: 80%;
	width: 100%;
	z-index: -1;
	pointer-events: none;
}

.fenton-process-connector img {
	width: 200px;
	opacity: 0.8;
	transition: all 0.5s ease;
}

.fenton-process-item:hover .fenton-process-connector img {
	opacity: 1;
	transform: translateX(15px) scale(1.05);
}

.fenton-process-text h3 {
	font-size: 24px;
	margin-bottom: 15px;
	color: var(--primary-color);
	font-family: var(--accent-font);
	font-weight: 500;
}

.fenton-process-text p {
	font-size: 16px;
	max-width: 300px;
	margin: 0 auto;
	color: var(--text-color);
}

@media (max-width: 991px) {
	.fenton-process-connector {
		display: none;
	}

	.fenton-process-item {
		margin-bottom: 50px;
	}
}

/* About Us Feature Grid CSS */
.about-feature-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 30px 40px;
	margin-top: 40px;
}

.about-feature-item {
	display: flex;
	align-items: center;
	gap: 20px;
}

.about-feature-icon {
	width: 70px;
	height: 70px;
	min-width: 70px;
	background: #f0f9ff;
	/* Very light Solar Aqua tint */
	border-radius: 12px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease;
}

.about-feature-item:hover .about-feature-icon {
	background: var(--accent-color);
	transform: perspective(600px) rotateY(180deg);
}

.about-feature-icon img {
	width: 35px;
	height: 35px;
	filter: brightness(0) saturate(100%) invert(47%) sepia(91%) saturate(1633%) hue-rotate(167deg) brightness(101%) contrast(100%);
	/* Solar Aqua */
}

.about-feature-item:hover .about-feature-icon img {
	filter: brightness(0) invert(1);
	/* Pure white icon on hover */
}

.about-feature-text h3 {
	font-size: 20px;
	font-weight: 500;
	color: var(--primary-color);
	margin: 0;
	line-height: 1.3;
}

@media (max-width: 767px) {
	.about-feature-grid {
		grid-template-columns: 1fr;
		gap: 25px;
	}
}

/* Business Verticals Landing Page CSS */
.verticals-hero {
	padding: 120px 0 80px;
	background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
	position: relative;
}

.verticals-hero-content h1 {
	font-size: 56px;
	font-weight: 800;
	color: var(--primary-color);
	margin-bottom: 25px;
}

.verticals-hero-content h1 span {
	color: var(--accent-color);
	font-style: italic;
}

.verticals-hero-image img {
	border-radius: 20px;
	box-shadow: 0 30px 60px rgba(0, 45, 68, 0.1);
}

/* Division Grid Refinements */
.division-card {
	background: #ffffff;
	padding: 50px 40px;
	border-radius: 12px;
	height: 100%;
	position: relative;
	transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
	border: 1px solid #f1f5f9;
	box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.division-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 20px 40px rgba(18, 181, 229, 0.08);
	border-color: rgba(18, 181, 229, 0.2);
}

.division-number {
	position: absolute;
	top: 40px;
	right: 40px;
	font-size: 52px;
	font-weight: 800;
	letter-spacing: -2px;
	color: #f1f5f9;
	line-height: 1;
	transition: 0.4s ease;
}

.division-card:hover .division-number {
	color: rgba(18, 181, 229, 0.12);
}

.division-tag {
	display: inline-flex;
	align-items: center;
	padding: 6px 14px;
	background: #f0fdfa;
	color: #0d9488;
	border-radius: 100px;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.division-card h3 {
	font-size: 26px;
	font-weight: 700;
	margin-bottom: 20px;
	color: #002d44;
	line-height: 1.3;
}

.division-links {
	margin-top: 25px;
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
}

.division-links a {
	font-size: 13px;
	font-weight: 600;
	color: #64748b;
	text-decoration: underline;
	text-decoration-color: #e2e8f0;
	text-underline-offset: 6px;
	transition: all 0.3s ease;
}

.division-links a:hover {
	color: var(--accent-color);
	text-decoration-color: var(--accent-color);
}

/* Updated CTA Section with Dark Teal Gradient */
.cta-section.dark-section {
	background: linear-gradient(135deg, #002d44 0%, #004d66 100%) !important;
	position: relative;
	overflow: hidden;
}

.cta-section.dark-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 86c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm66-3c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm-46-43c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zm13-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM58 89c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM28 6c0 1.105-.895 2-2 2s-2-.895-2-2 .895-2 2-2 2 .895 2 2zM23 48c0 1.105-.895 2-2 2s-2-.895-2-2 .895-2 2-2 2 .895 2 2zm54 24c0 1.105-.895 2-2 2s-2-.895-2-2 .895-2 2-2 2 .895 2 2zM46 69c0 1.105-.895 2-2 2s-2-.895-2-2 .895-2 2-2 2 .895 2 2zm35-51c0 1.105-.895 2-2 2s-2-.895-2-2 .895-2 2-2 2 .895 2 2zM9 27c0 1.105-.895 2-2 2s-2-.895-2-2 .895-2 2-2 2 .895 2 2zm81 35c0 1.105-.895 2-2 2s-2-.895-2-2 .895-2 2-2 2 .895 2 2zM24 75c0 1.105-.895 2-2 2s-2-.895-2-2 .895-2 2-2 2 .895 2 2zm47-40c0 1.105-.895 2-2 2s-2-.895-2-2 .895-2 2-2 2 .895 2 2zM80 43c0 1.105-.895 2-2 2s-2-.895-2-2 .895-2 2-2 2 .895 2 2zM51 22c0 1.105-.895 2-2 2s-2-.895-2-2 .895-2 2-2 2 .895 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
	opacity: 0.3;
}

/* Advantage Strip Refinements */
.advantage-card {
	background: #ffffff;
	padding: 40px 30px;
	border-radius: 8px;
	border-top: 4px solid #14b8a6;
	/* Teal */
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
	height: 100%;
	transition: all 0.3s ease;
}

.advantage-card:hover {
	transform: scale(1.02);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.advantage-card.card-alt-1 {
	border-top-color: #0d9488;
}

.advantage-card.card-alt-2 {
	border-top-color: #0f766e;
}

.advantage-card.card-alt-3 {
	border-top-color: #115e59;
}

.advantage-card h4 {
	font-size: 19px;
	font-weight: 700;
	color: #002d44;
	margin-bottom: 15px;
}

/* Tabs & Deliverables Refinements */
.deliver-tabs-nav {
	display: inline-flex;
	background: #f1f5f9;
	padding: 6px;
	border-radius: 100px;
	gap: 5px;
	margin-bottom: 50px;
}

.deliver-tabs-nav .tab-btn {
	padding: 12px 28px;
	border: none;
	background: transparent;
	font-size: 14px;
	font-weight: 700;
	color: #64748b;
	border-radius: 100px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.deliver-tabs-nav .tab-btn.active {
	background: #ffffff;
	color: #0d9488;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.deliver-item {
	background: #ffffff;
	padding: 35px;
	border-radius: 12px;
	border: 1px solid #f1f5f9;
	transition: all 0.3s ease;
}

.deliver-item:hover {
	background: #fdfafd;
	border-color: #0d9488;
}

.deliver-item h5 {
	font-size: 18px;
	font-weight: 700;
	margin: 15px 0 10px;
	color: #002d44;
}

.deliver-item p {
	font-size: 14px;
	line-height: 1.6;
	color: #64748b;
}

/* =========================================
   AERO-INDUSTRIAL THEME (FENTON TECH)
   ========================================= */
:root {
	--pi-primary: var(--primary-color);
	/* #002D44 */
	--pi-accent: #0D9488;
	--pi-accent-light: rgba(13, 148, 136, 0.08);
	--pi-text: #64748B;
	--pi-heading: var(--primary-color);
	--pi-gradient: linear-gradient(135deg, var(--primary-color) 0%, #0D9488 100%);
	--pi-glass-border: rgba(255, 255, 255, 0.4);
	--pi-card-radius: 32px;
	--pi-btn-radius: 100px;
}

.pi-master-container {
	font-family: "Inter", sans-serif;
	background: #fff;
	overflow: hidden;
}

/* Background Texture */
.pi-dot-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
	background-size: 32px 32px;
	opacity: 0.4;
	pointer-events: none;
	z-index: 0;
}

.pi-section {
	padding: 160px 0;
	position: relative;
	background: #fff;
	z-index: 1;
}

.pi-section-grey {
	padding: 160px 0;
	position: relative;
	background: #F8FAFC;
	z-index: 1;
}

/* Typography Perfection */
.pi-master-container h1,
.pi-master-container h2,
.pi-master-container h3,
.pi-master-container h4,
.pi-master-container h5,
.pi-master-container h6 {
	font-family: var(--accent-font) !important;
	/* Clash Grotesk */
	color: var(--pi-heading);
	font-weight: 700;
	letter-spacing: -0.04em;
	line-height: 1.1;
}

.pi-badge {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 10px 24px;
	background: var(--pi-accent-light);
	color: var(--pi-accent);
	border-radius: 100px;
	font-size: 13px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.12em;
	margin-bottom: 32px;
	border: 1px solid rgba(13, 148, 136, 0.1);
}

.pi-badge::before {
	content: '';
	width: 6px;
	height: 6px;
	background: var(--pi-accent);
	border-radius: 50%;
}

/* Hero Evolution */
.pi-hero {
	padding: 220px 0 160px;
	background: radial-gradient(circle at top right, rgba(13, 148, 136, 0.1), transparent 40%),
		radial-gradient(circle at bottom left, rgba(0, 45, 68, 0.08), transparent 30%);
	position: relative;
	overflow: hidden;
}

.pi-hero h1 {
	font-size: 84px;
	margin-bottom: 40px;
}

.pi-hero h1 span {
	background: var(--pi-gradient);
	-webkit-background-clip: text;
	background-clip: text;
	-webkit-text-fill-color: transparent;
	font-style: italic;
	font-weight: 500;
}

.pi-hero p {
	font-size: 20px;
	line-height: 1.8;
	color: var(--pi-text);
	max-width: 600px;
	margin-bottom: 56px;
}

/* Branded Button System */
.pi-btn-main {
	padding: 20px 48px;
	background: var(--pi-primary);
	color: #fff;
	border-radius: var(--pi-btn-radius);
	font-weight: 800;
	transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
	border: none;
	display: inline-flex;
	align-items: center;
	gap: 12px;
	font-size: 15px;
	box-shadow: 0 10px 30px rgba(0, 45, 68, 0.1);
}

.pi-btn-main:hover {
	background: var(--pi-accent);
	color: #fff;
	transform: scale(1.05) translateY(-5px);
	box-shadow: 0 20px 40px rgba(13, 148, 136, 0.2);
}

/* Aero-Glass Cards */
.pi-glass-card {
	background: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(24px);
	border: 1px solid var(--pi-glass-border);
	border-radius: var(--pi-card-radius);
	padding: 56px;
	position: relative;
	transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
	box-shadow: 0 40px 100px -20px rgba(0, 45, 68, 0.05);
}

.pi-glass-card:hover {
	transform: perspective(1000px) rotateX(2deg) translateY(-10px);
	box-shadow: 0 60px 120px -30px rgba(0, 45, 68, 0.12);
	border-color: var(--pi-accent);
}

/* Division Grid (Refined 2-Col) */
.pi-grid-container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	margin-top: 80px;
}

.pi-division-card {
	background: #fff;
	padding: 60px;
	border-radius: var(--pi-card-radius);
	border: 1px solid #f1f5f9;
	transition: all 0.7s cubic-bezier(0.19, 1, 0.22, 1);
	display: flex;
	flex-direction: column;
	height: 100%;
}

.pi-division-card:hover {
	border-color: var(--pi-accent);
	transform: translateY(-16px);
	box-shadow: 0 50px 100px -20px rgba(0, 45, 68, 0.08);
}

.pi-icon-box {
	width: 80px;
	height: 80px;
	background: #f0fdfa;
	border-radius: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 40px;
	transition: 0.5s ease;
	position: relative;
}

.pi-division-card:hover .pi-icon-box {
	background: var(--pi-accent);
	color: #fff;
	transform: rotate(-10deg) scale(1.1);
	box-shadow: 0 20px 40px rgba(13, 148, 136, 0.2);
}

.pi-division-card h3 {
	font-size: 28px;
	margin-bottom: 20px;
}

.pi-division-card p {
	font-size: 15px;
	color: var(--pi-text);
	line-height: 1.8;
	margin-bottom: 32px;
	flex-grow: 1;
}

/* Delivery Tabs Perfection */
.pi-tabs-wrapper {
	max-width: 1100px;
	margin: 0 auto;
}

.pi-tabs-header {
	display: flex;
	justify-content: center;
	gap: 16px;
	background: #f1f5f9;
	padding: 12px;
	border-radius: 100px;
	margin-bottom: 80px;
}

.pi-tab-trigger {
	padding: 16px 40px;
	border-radius: 100px;
	border: none;
	background: transparent;
	font-weight: 800;
	color: #64748b;
	transition: 0.4s ease;
	font-size: 14px;
	text-transform: uppercase;
	letter-spacing: 0.1em;
}

.pi-tab-trigger.active {
	background: #fff;
	color: var(--pi-accent);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Deliver Item Glass */
.pi-deliver-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 24px;
}

.pi-deliver-item {
	background: #fff;
	padding: 40px 32px;
	border-radius: 24px;
	border: 1px solid #f1f5f9;
	transition: all 0.4s ease;
	text-align: left;
}

.pi-deliver-item:hover {
	border-color: var(--pi-accent);
	background: #fdfafd;
	transform: translateY(-8px);
}

/* CTA Dashboard */
.pi-brand-cta {
	background: var(--pi-primary);
	border-radius: 48px;
	padding: 120px 80px;
	position: relative;
	overflow: hidden;
	color: #fff;
}

.pi-brand-cta h2 {
	font-size: 64px;
	color: #fff;
	margin-bottom: 24px;
}

.pi-brand-cta p {
	font-size: 18px;
	opacity: 0.8;
	margin-bottom: 56px;
	max-width: 700px;
	margin-left: auto;
	margin-right: auto;
}

/* Global WOW Delays */
.wow {
	visibility: hidden;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
	.pi-hero h1 {
		font-size: 64px;
	}

	.pi-deliver-grid {
		grid-template-columns: repeat(2, 1fr);
	}
}

@media (max-width: 991px) {
	.pi-grid-container {
		grid-template-columns: 1fr;
	}

	.pi-brand-cta {
		padding: 80px 40px;
	}

	.pi-brand-cta h2 {
		font-size: 42px;
	}
}

@media (max-width: 767px) {
	.pi-hero h1 {
		font-size: 42px;
	}

	.pi-tabs-header {
		flex-direction: column;
		border-radius: 32px;
	}
}

/* ─── BUSINESS VERTICALS PAGE STYLES ─── */
:root {
	--navy: #0b2545;
	--teal: #0e7c86;
	--teal2: #14a3b0;
	--green: #2a7d4f;
	--sky: #e8f6f8;
	--white: #ffffff;
	--gray50: #f9fafb;
	--gray100: #f3f4f6;
	--gray200: #e5e7eb;
	--gray400: #9ca3af;
	--gray600: #4b5563;
	--gray800: #1f2937;
	--gold: #c8922a;
	--shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
	--shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
	--shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.10);
	--shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.13);
}

/* ─── HERO ─── */
.hero-bv {
	min-height: 100vh;
	background: linear-gradient(135deg, #ffffff 0%, #f0f9fa 45%, #e4f4f6 100%);
	position: relative;
	overflow: hidden;
	display: flex;
	align-items: center;
	padding-top: 68px;
}

/* geometric background shapes */
.hero-bv::before {
	content: '';
	position: absolute;
	top: -120px;
	right: -80px;
	width: 600px;
	height: 600px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(14, 124, 134, 0.08) 0%, transparent 70%);
	pointer-events: none;
}

.hero-bv::after {
	content: '';
	position: absolute;
	bottom: -80px;
	left: -60px;
	width: 400px;
	height: 400px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(42, 125, 79, 0.07) 0%, transparent 70%);
	pointer-events: none;
}

.hero-grid {
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image:
		linear-gradient(rgba(14, 124, 134, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(14, 124, 134, 0.04) 1px, transparent 1px);
	background-size: 56px 56px;
}

.hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0px 40px;
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: rgba(14, 124, 134, 0.08);
	border: 1px solid rgba(14, 124, 134, 0.18);
	color: var(--teal);
	font-size: 0.75rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 6px 14px;
	border-radius: 100px;
	margin-bottom: 24px;
}

.hero-badge::before {
	content: '';
	width: 6px;
	height: 6px;
	border-radius: 50%;
	background: var(--teal);
}

.hero-bv h1 {
	font-family: 'ClashGrotesk-Variable', sans-serif;
	font-size: 60px;
	font-variation-settings: 'wght' 700;
	color: var(--navy);
	margin-bottom: 20px;
}

.hero-bv h1 em {
	font-style: italic;
	color: var(--teal);
}

.hero-sub {
	font-size: 1.05rem;
	line-height: 1.8;
	color: var(--gray600);
	margin-bottom: 40px;
	max-width: 500px;
}

.hero-actions {
	display: flex;
	gap: 14px;
	flex-wrap: wrap;
}

.btn-fill {
	background: var(--teal);
	color: #fff;
	padding: 14px 30px;
	border-radius: 6px;
	font-size: 0.88rem;
	font-weight: 600;
	text-decoration: none;
	letter-spacing: 0.02em;
	transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 16px rgba(14, 124, 134, 0.3);
}

.btn-fill:hover {
	background: var(--navy);
	transform: translateY(-2px);
	box-shadow: 0 8px 24px rgba(11, 37, 69, 0.25);
}

.btn-stroke {
	border: 1.5px solid var(--gray200);
	color: var(--navy);
	padding: 14px 30px;
	border-radius: 6px;
	font-size: 0.88rem;
	font-weight: 500;
	text-decoration: none;
	letter-spacing: 0.02em;
	transition: border-color 0.2s, background 0.2s;
	background: transparent;
}

.btn-stroke:hover {
	border-color: var(--teal);
	background: rgba(14, 124, 134, 0.04);
}

.hero-stats {
	display: flex;
	gap: 32px;
	margin-top: 52px;
	padding-top: 36px;
	border-top: 1px solid var(--gray200);
}

.hstat-num {
	font-family: 'ClashGrotesk-Bold', sans-serif;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--navy);
	line-height: 1;
}

.hstat-num span {
	color: var(--teal);
}

.hstat-label {
	font-size: 0.78rem;
	color: var(--gray400);
	margin-top: 4px;
	font-weight: 500;
}

.hero-visual {
	position: relative;
}

.hero-card-main {
	background: #fff;
	border-radius: 16px;
	padding: 36px;
	box-shadow: var(--shadow-xl);
	border: 1px solid var(--gray200);
}

.hc-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 28px;
}

.hc-icon {
	width: 48px;
	height: 48px;
	border-radius: 12px;
	background: linear-gradient(135deg, var(--teal), var(--teal2));
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.4rem;
}

.hc-title {
	font-family: 'ClashGrotesk-Semibold', sans-serif;
	font-size: 1.1rem;
	font-weight: 600;
	color: var(--navy);
}

.hc-sub {
	font-size: 0.8rem;
	color: var(--gray400);
	margin-top: 2px;
}

.hc-divs {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.hc-div {
	display: block;
	text-decoration: none !important;
	background: var(--gray50);
	border-radius: 10px;
	padding: 16px;
	border: 1px solid var(--gray100);
	transition: box-shadow 0.2s, transform 0.2s;
}

.hc-div:hover {
	transform: translateY(-2px);
	box-shadow: var(--shadow-md);
}

.hc-div-icon {
	font-size: 1.3rem;
	margin-bottom: 8px;
}

.hc-div-name {
	font-size: 0.78rem;
	font-weight: 600;
	color: var(--navy);
	line-height: 1.3;
}

.hero-card-float {
	position: absolute;
	bottom: -24px;
	left: -28px;
	background: #fff;
	border-radius: 12px;
	padding: 16px 20px;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--gray100);
	display: flex;
	align-items: center;
	gap: 12px;
	animation: floatCard 4s ease-in-out infinite;
}

@keyframes floatCard {

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

	50% {
		transform: translateY(-6px);
	}
}

.hcf-icon {
	width: 36px;
	height: 36px;
	border-radius: 8px;
	background: linear-gradient(135deg, var(--green), #3ea06a);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1rem;
	flex-shrink: 0;
}

.hcf-label {
	font-size: 0.72rem;
	color: var(--gray400);
}

.hcf-value {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--navy);
}

.hero-card-badge {
	position: absolute;
	top: -16px;
	right: -16px;
	background: var(--gold);
	color: #fff;
	border-radius: 50%;
	width: 80px;
	height: 80px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	font-size: 0.62rem;
	font-weight: 700;
	text-align: center;
	line-height: 1.2;
	letter-spacing: 0.03em;
	box-shadow: var(--shadow-md);
}

.hero-card-badge strong {
	font-size: 1.3rem;
	display: block;
}

/* wave divider */
.wave-div-bv {
	line-height: 0;
}

.wave-div-bv svg {
	display: block;
	width: 100%;
}

/* ─── SECTION COMMONS ─── */
.section-wrap-bv {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 40px;
}

.section-eyebrow-bv {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--teal);
	margin-bottom: 12px;
}

.section-eyebrow-bv::before {
	content: '';
	width: 24px;
	height: 2px;
	background: var(--teal);
	border-radius: 2px;
}

.section-title-bv {
	font-family: 'ClashGrotesk-Variable', sans-serif;
	font-size: 48px;
	font-variation-settings: 'wght' 700;
	color: var(--navy);
	line-height: 1.1;
}

.section-title-bv em {
	font-style: italic;
	color: var(--teal);
}

.section-desc-bv {
	font-size: 0.97rem;
	color: var(--gray600);
	line-height: 1.8;
	margin-top: 12px;
	max-width: 520px;
}

/* ─── ABOUT ─── */
.about-bv {
	padding: 60px 0;
	background: #fff;
}

.about-inner {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: center;
}

.about-visual {
	position: relative;
}

.about-img-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 12px;
	width: 100%;
	aspect-ratio: 4/5;
	background: var(--gray100);
	border-radius: 4px 80px 4px 4px;
	overflow: hidden;
}

.aig-item {
	position: relative;
	overflow: hidden;
}

.aig-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.aig-item:hover img {
	transform: scale(1.1);
}

.aig-item span {
	position: absolute;
	bottom: 8px;
	left: 8px;
	right: 8px;
	background: rgba(11, 37, 69, 0.8);
	color: #fff;
	font-size: 0.65rem;
	font-weight: 600;
	padding: 4px 8px;
	border-radius: 4px;
	text-transform: uppercase;
	letter-spacing: 0.05em;
	opacity: 0;
	transform: translateY(10px);
	transition: opacity 0.3s, transform 0.3s;
}

.aig-item:hover span {
	opacity: 1;
	transform: translateY(0);
}

.about-badge-circle {
	position: absolute;
	bottom: -16px;
	right: -16px;
	width: 120px;
	height: 120px;
	border-radius: 50%;
	background: var(--gold);
	color: #fff;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-shadow: var(--shadow-lg);
	text-align: center;
}

.about-badge-circle strong {
	font-family: 'ClashGrotesk-Bold', sans-serif;
	font-size: 2rem;
	font-weight: 700;
	line-height: 1;
}

.about-badge-circle span {
	font-size: 0.62rem;
	font-weight: 600;
	opacity: 0.85;
	letter-spacing: 0.06em;
}

.about-float-card {
	position: absolute;
	top: 24px;
	left: -24px;
	background: #fff;
	border-radius: 10px;
	padding: 14px 18px;
	box-shadow: var(--shadow-lg);
	border: 1px solid var(--gray100);
	display: flex;
	align-items: center;
	gap: 10px;
}

.afc-dot {
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: var(--teal);
	flex-shrink: 0;
	box-shadow: 0 0 0 3px rgba(14, 124, 134, 0.18);
}

.afc-text {
	font-size: 0.78rem;
	color: var(--gray800);
}

.afc-text strong {
	display: block;
	font-size: 0.85rem;
}

.about-features {
	display: flex;
	flex-direction: column;
	gap: 18px;
	margin-top: 32px;
}

.feat-row {
	display: flex;
	gap: 14px;
	align-items: flex-start;
}

.feat-dot {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	border-radius: 8px;
	background: rgba(14, 124, 134, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
	margin-top: 2px;
}

.feat-text strong {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--navy);
}

.feat-text p {
	font-size: 0.83rem;
	color: var(--gray600);
	line-height: 1.6;
	margin-top: 2px;
}

/* ─── VERTICALS ─── */
.verticals-bv {
	padding: 60px 0;
	background: var(--gray50);
}

.vert-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-top: 52px;
}

.vert-card {
	background: #fff;
	border-radius: 12px;
	border: 1px solid var(--gray200);
	padding: 40px 36px;
	text-decoration: none;
	display: block;
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s;
}

.vert-card::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 3px;
	opacity: 0;
	transition: opacity 0.3s;
}

.vc1::after {
	background: linear-gradient(90deg, var(--teal), var(--teal2));
}

.vc2::after {
	background: linear-gradient(90deg, #0a6e8a, #1ab5cc);
}

.vc3::after {
	background: linear-gradient(90deg, #0e7085, #4ecdc4);
}

.vc4::after {
	background: linear-gradient(90deg, var(--green), #4aad74);
}

.vert-card:hover {
	transform: translateY(-5px);
	box-shadow: var(--shadow-xl);
	border-color: transparent;
}

.vert-card:hover::after {
	opacity: 1;
}

.vert-num {
	position: absolute;
	top: 16px;
	right: 24px;
	font-family: 'ClashGrotesk-Semibold', sans-serif;
	font-size: 4rem;
	font-weight: 700;
	color: var(--gray100);
	line-height: 1;
	transition: color 0.3s;
}

.vert-card:hover .vert-num {
	color: var(--gray200);
}

.vert-icon {
	font-size: 2.2rem;
	margin-bottom: 18px;
}

.vert-badge {
	display: inline-block;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 3px 10px;
	border-radius: 100px;
	margin-bottom: 10px;
}

.vc1 .vert-badge {
	background: rgba(14, 124, 134, 0.1);
	color: var(--teal);
}

.vc2 .vert-badge {
	background: rgba(10, 110, 138, 0.1);
	color: #0a6e8a;
}

.vc3 .vert-badge {
	background: rgba(14, 112, 133, 0.1);
	color: #0e7085;
}

.vc4 .vert-badge {
	background: rgba(42, 125, 79, 0.1);
	color: var(--green);
}

.vert-title {
	font-family: 'ClashGrotesk-Variable', sans-serif;
	font-size: 24px;
	font-variation-settings: 'wght' 600;
	color: var(--navy);
	line-height: 1.2;
	margin-bottom: 12px;
}

.vert-desc {
	font-size: 0.85rem;
	line-height: 1.7;
	color: var(--gray600);
	margin-bottom: 24px;
}

.vert-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 24px;
}

.vert-tag {
	font-size: 0.7rem;
	padding: 3px 10px;
	border-radius: 4px;
	background: var(--gray100);
	color: var(--gray600);
	font-weight: 500;
}

.vert-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 0.8rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	transition: gap 0.2s;
}

.vc1 .vert-link {
	color: var(--teal);
}

.vc2 .vert-link {
	color: #0a6e8a;
}

.vc3 .vert-link {
	color: #0e7085;
}

.vc4 .vert-link {
	color: var(--green);
}

.vert-card:hover .vert-link {
	gap: 12px;
}

/* ─── PRODUCTS ─── */
.products-bv {
	padding: 60px 0;
	background: #fff;
}

.prod-tabs {
	display: flex;
	gap: 0;
	border-bottom: 1px solid var(--gray200);
	margin: 48px 0 40px;
	overflow-x: auto;
}

.prod-tab {
	background: none;
	border: none;
	cursor: pointer;
	padding: 12px 28px;
	font-family: 'Inter', sans-serif;
	font-size: 0.84rem;
	font-weight: 500;
	color: var(--gray400);
	border-bottom: 2px solid transparent;
	margin-bottom: -1px;
	white-space: nowrap;
	transition: color 0.2s, border-color 0.2s;
	letter-spacing: 0.02em;
}

.prod-tab:hover {
	color: var(--navy);
}

.prod-tab.on {
	color: var(--teal);
	border-bottom-color: var(--teal);
}

.prod-panel {
	display: none;
}

.prod-panel.on {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}

.prod-card {
	background: var(--gray50);
	border-radius: 10px;
	padding: 28px 24px;
	border: 1px solid var(--gray100);
	transition: box-shadow 0.25s, transform 0.25s, background 0.25s;
}

.prod-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-3px);
	background: #fff;
}

.prod-card-icon {
	width: 46px;
	height: 46px;
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	margin-bottom: 16px;
}

.pci-a {
	background: rgba(14, 124, 134, 0.1);
}

.pci-b {
	background: rgba(42, 125, 79, 0.1);
}

.pci-c {
	background: rgba(200, 146, 42, 0.1);
}

.prod-card h4 {
	font-size: 0.92rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 8px;
}

.prod-card p {
	font-size: 0.82rem;
	line-height: 1.65;
	color: var(--gray600);
}

/* ─── TESTIMONIALS ─── */
.testimonials-bv {
	padding: 100px 0;
	background: var(--gray50);
	overflow: hidden;
}

.testi-scroll-wrap {
	position: relative;
	margin-top: 52px;
}

.testi-track {
	display: flex;
	gap: 20px;
	width: max-content;
	animation: tickerScroll 38s linear infinite;
}

.testi-track:hover {
	animation-play-state: paused;
}

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

	to {
		transform: translateX(-50%);
	}
}

.testi-card {
	background: #fff;
	border-radius: 12px;
	border: 1px solid var(--gray200);
	padding: 32px 28px;
	min-width: 360px;
	max-width: 360px;
	box-shadow: var(--shadow-sm);
	transition: box-shadow 0.25s, transform 0.25s;
}

.testi-card:hover {
	box-shadow: var(--shadow-lg);
	transform: translateY(-3px);
}

.testi-stars {
	color: var(--gold);
	letter-spacing: 2px;
	font-size: 0.85rem;
	margin-bottom: 14px;
}

.testi-text {
	font-family: 'ClashGrotesk-Medium', sans-serif;
	font-size: 1.05rem;
	font-style: italic;
	color: var(--navy);
	line-height: 1.65;
	margin-bottom: 22px;
}

.testi-author {
	display: flex;
	align-items: center;
	gap: 12px;
}

.testi-av {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	flex-shrink: 0;
	background: linear-gradient(135deg, var(--teal), var(--green));
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 700;
	color: #fff;
	font-size: 0.82rem;
}

.testi-name {
	font-size: 0.86rem;
	font-weight: 600;
	color: var(--navy);
}

.testi-role {
	font-size: 0.75rem;
	color: var(--gray400);
	margin-top: 2px;
}

.testi-div {
	margin-top: 12px;
	font-size: 0.68rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--teal);
}

.testi-fade-l,
.testi-fade-r {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 90px;
	z-index: 2;
	pointer-events: none;
}

.testi-fade-l {
	left: 0;
	background: linear-gradient(to right, var(--gray50), transparent);
}

.testi-fade-r {
	right: 0;
	background: linear-gradient(to left, var(--gray50), transparent);
}

/* ─── PARTNERS ─── */
.partners-bv {
	padding: 80px 0;
	background: #f4f7f9;
	border-top: 1px solid var(--gray100);
	border-bottom: 1px solid var(--gray100);
}

.partners-label {
	text-align: center;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--gray400);
	margin-bottom: 36px;
}

.partners-scroll {
	overflow: hidden;
	position: relative;
}

.partners-track {
	display: flex;
	align-items: center;
	animation: tickerScroll 22s linear infinite;
	width: max-content;
}

.partners-track:hover {
	animation-play-state: paused;
}

.partner-item {
	padding: 10px 32px;
	margin-right: 24px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 280px;
	height: 150px;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
	border: 1px solid rgba(0, 0, 0, 0.03);
}

.partner-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 14px 32px rgba(0, 0, 0, 0.1);
}

.partner-logo-img {
	max-height: 100px;
	max-width: 220px;
	width: auto;
	opacity: 1;
	filter: none;
	transition: transform 0.4s ease;
}

.partner-item:hover .partner-logo-img {
	transform: scale(1.15);
}

.partner-logo-bv {
	font-family: 'ClashGrotesk-Semibold', sans-serif;
	font-size: 0.95rem;
	font-weight: 700;
	color: var(--gray400);
	letter-spacing: 0.08em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: color 0.2s;
	cursor: default;
	padding: 8px 0;
}

.partner-item:hover .partner-logo-bv {
	color: var(--teal);
}

.partners-fade-l,
.partners-fade-r {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 80px;
	z-index: 2;
	pointer-events: none;
}

.partners-fade-l {
	left: 0;
	background: linear-gradient(to right, #fff, transparent);
}

.partners-fade-r {
	right: 0;
	background: linear-gradient(to left, #fff, transparent);
}

/* ─── WHY US ─── */
.why-bv {
	padding: 100px 0;
	background: #fff;
}

.why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 52px;
}

.why-card-bv {
	background: var(--gray50);
	border-radius: 10px;
	padding: 32px 24px;
	border-top: 3px solid transparent;
	transition: transform 0.25s, box-shadow 0.25s;
}

.why-card-bv:nth-child(1) {
	border-top-color: var(--teal);
}

.why-card-bv:nth-child(2) {
	border-top-color: var(--teal2);
}

.why-card-bv:nth-child(3) {
	border-top-color: var(--green);
}

.why-card-bv:nth-child(4) {
	border-top-color: var(--gold);
}

.why-card-bv:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.why-n {
	font-family: 'ClashGrotesk-Semibold', sans-serif;
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--gray200);
	margin-bottom: 12px;
}

.why-card-bv h4 {
	font-size: 0.9rem;
	font-weight: 600;
	color: var(--navy);
	margin-bottom: 8px;
}

.why-card-bv p {
	font-size: 0.82rem;
	line-height: 1.65;
	color: var(--gray600);
}

/* ─── CTA STRIP ─── */
.cta-strip-bv {
	padding: 80px 0;
	background: linear-gradient(135deg, var(--navy) 0%, #0d3a58 50%, #0b4a52 100%);
	text-align: center;
	position: relative;
	overflow: hidden;
}

.cta-strip-bv::before {
	content: '';
	position: absolute;
	inset: 0;
	background-image:
		linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
		linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
	background-size: 48px 48px;
}

.cta-strip-bv h2 {
	font-family: 'ClashGrotesk-Variable', sans-serif;
	font-size: 48px;
	font-variation-settings: 'wght' 700;
	color: #fff;
	margin-bottom: 14px;
	position: relative;
}

.cta-strip-bv p {
	color: rgba(255, 255, 255, 0.65);
	margin-bottom: 36px;
	position: relative;
	font-size: 1rem;
}

.cta-btns {
	display: flex;
	gap: 14px;
	justify-content: center;
	position: relative;
	flex-wrap: wrap;
}

.cta-white {
	background: #fff;
	color: var(--navy);
	padding: 14px 32px;
	border-radius: 6px;
	font-weight: 700;
	font-size: 0.88rem;
	text-decoration: none;
	transition: transform 0.2s, box-shadow 0.2s;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

.cta-white:hover {
	transform: translateY(-2px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.cta-border-bv {
	border: 1.5px solid rgba(255, 255, 255, 0.4);
	color: #fff;
	padding: 14px 32px;
	border-radius: 6px;
	font-size: 0.88rem;
	font-weight: 500;
	text-decoration: none;
	transition: background 0.2s, border-color 0.2s;
}

.cta-border-bv:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: #fff;
}

/* ─── SCROLL REVEAL ─── */
.reveal-bv {
	opacity: 0;
	transform: translateY(28px);
	transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal-bv.in {
	opacity: 1;
	transform: translateY(0);
}

@keyframes fadeUp-bv {
	from {
		opacity: 0;
		transform: translateY(20px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
	.hero-inner {
		grid-template-columns: 1fr;
		gap: 48px;
		padding: 60px 24px;
	}

	.section-wrap-bv {
		padding: 0 24px;
	}

	.about-inner {
		grid-template-columns: 1fr;
		gap: 40px;
	}

	.vert-grid {
		grid-template-columns: 1fr;
	}

	.prod-panel.on {
		grid-template-columns: 1fr;
	}

	.why-grid {
		grid-template-columns: repeat(2, 1fr);
	}

	.hero-stats {
		flex-wrap: wrap;
		gap: 20px;
	}

	.about-bv {
		padding: 72px 0;
	}

	.verticals-bv,
	.products-bv,
	.testimonials-bv,
	.why-bv {
		padding: 72px 0;
	}
}

@media (max-width: 560px) {
	.hero-bv h1 {
		font-size: 2.2rem;
	}

	.why-grid {
		grid-template-columns: 1fr;
	}

	.cta-btns {
		flex-direction: column;
		align-items: center;
	}

	.testi-card {
		min-width: 300px;
	}
}