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

/* Other services cards */
.other-services-section {
	padding: 30px 0;
	background: linear-gradient(180deg, #f7faf8 0%, #eef6f1 100%);
}

.other-services-heading {
	max-width: 680px;
	margin: 0 auto 42px;
}

.other-services-heading>span {
	display: inline-block;
	margin-bottom: 8px;
	font-size: 14px;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1.5px;
	color: var(--accent-color);
}

.other-services-heading h2 {
	margin-bottom: 12px;
	font-size: 42px;
}

.other-services-heading p {
	margin: 0;
}

.other-service-card {
	position: relative;
	display: block;
	height: 100%;
	overflow: hidden;
	background: #fff;
	border: 1px solid rgba(18, 73, 51, 0.1);
	border-radius: 18px;
	box-shadow: 0 12px 35px rgba(20, 65, 48, 0.08);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.other-service-card:hover,
.other-service-card:focus {
	transform: translateY(-7px);
	box-shadow: 0 20px 45px rgba(20, 65, 48, 0.16);
}

.other-service-image {
	display: block;
	height: 245px;
	overflow: hidden;
}

.other-service-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.5s ease;
}

.other-service-card:hover .other-service-image img,
.other-service-card:focus .other-service-image img {
	transform: scale(1.06);
}

.other-service-content {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	/* min-height: 170px; */
	padding: 28px 30px;
}

.other-service-number {
	position: absolute;
	top: -24px;
	right: 25px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: var(--accent-color);
	color: #fff;
	font-weight: 700;
	box-shadow: 0 8px 18px rgba(22, 118, 70, 0.25);
}

.other-service-title {
	max-width: calc(100% - 35px);
	margin-bottom: 22px;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.3;
	color: var(--primary-color);
}

.other-service-link {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	margin-top: auto;
	font-size: 15px;
	font-weight: 700;
	color: var(--accent-color);
}

.other-service-link i {
	transition: transform 0.3s ease;
}

.other-service-card:hover .other-service-link i,
.other-service-card:focus .other-service-link i {
	transform: translateX(5px);
}

@media only screen and (max-width: 767px) {
	.other-services-section {
		padding: 60px 0;
	}

	.other-services-heading {
		margin-bottom: 30px;
	}

	.other-services-heading h2 {
		font-size: 32px;
	}

	.other-service-image {
		height: 210px;
	}

	.other-service-content {
		min-height: 150px;
		padding: 24px;
	}

	.other-service-title {
		font-size: 21px;
	}
}

/************************************/
/*** 	   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);
	border-radius: 10px;
}

::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: 15px;
	height: 15px;
	background-image: url('../images/arrow.png');
	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/arrow2.png');
	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: 19px;
	font-weight: 700;
	text-transform: capitalize;
	letter-spacing: 0.06em;
	line-height: 1.2em;
	color: var(--primary-color);
	background: transparent;
	padding: 0 56px;
	margin-bottom: 15px;
	overflow: visible;
	animation: sectionLabelReveal 0.8s ease both;
}

.section-title .section-sub-title::before,
.section-title .section-sub-title::after {
	content: '';
	position: absolute;
	top: 50%;
	width: 42px;
	height: 3px;
	border-radius: 20px;
	background: linear-gradient(90deg, var(--accent-color), #f6bd27, var(--accent-color));
	background-size: 200% 100%;
	transform: translateY(-50%);
	animation: sectionLabelLine 2.8s ease-in-out infinite;
}

.section-title .section-sub-title::before {
	left: 0;
	transform-origin: right center;
}

.section-title .section-sub-title::after {
	right: 0;
	transform-origin: left center;
	animation-delay: 0.25s;
}

@keyframes sectionLabelReveal {
	from {
		opacity: 0;
		transform: translateY(10px);
	}

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

@keyframes sectionLabelLine {

	0%,
	100% {
		background-position: 0% 50%;
		transform: translateY(-50%) scaleX(0.72);
	}

	50% {
		background-position: 100% 50%;
		transform: translateY(-50%) scaleX(1);
	}
}

@media (prefers-reduced-motion: reduce) {

	.section-title .section-sub-title,
	.section-title .section-sub-title::before,
	.section-title .section-sub-title::after {
		animation: none;
	}
}

.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: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

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

.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: absolute;
	left: 0;
	right: 0;
	z-index: 100;
	background-color: white;
}

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;
	border-bottom: 1px dashed #ffffff1f;
}

.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 {
	position: relative;
	/* padding: 100px 0; */
	overflow: hidden;
}

/* .hero::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
     background: linear-gradient(270deg, rgb(0 0 0 / 54%) 10.45%, rgb(0 0 0 / 72%) 72.29%);
    width: 100%;
    height: 100%;
    z-index: 1;
} */

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

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

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

.hero-content {
	text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Hero to About circular scroll reveal */
.hero-circle-transition {
	min-height: 100vh;
}

.hero-circle-transition .hero-circle-reveal {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 3;
	background: var(--white-color);
	clip-path: circle(0% at 50% 50%);
	-webkit-clip-path: circle(0% at 50% 50%);
	pointer-events: none;
	overflow: hidden;
	will-change: clip-path;
}

.hero-circle-transition .hero-circle-reveal .about-us-prime {
	height: 100%;
	padding: 50px 0;
	overflow: hidden;
	margin-bottom: 50px;
	/* display: flex;
	justify-content: center;
	align-items: center; */
}

.hero-circle-transition .hero-circle-reveal .about-us-prime .container {
	position: relative;
	z-index: 1;
}

.hero-circle-transition .hero-circle-reveal .wow {
	visibility: visible !important;
	animation: none !important;
}

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

.about-us {
	padding: 50px 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;
}

.product-count {
	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 500;

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.why-choose-us {
	padding: 50px 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: 50px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.our-core-feature {
	background-image: url('../images/section-bg-2.png');
	background-repeat: no-repeat;
	background-position: bottom -50px right;
	background-size: auto;
	padding: 50px 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: 50px 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: 50px 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: 50px 0;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.main-footer {
	padding: 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;
}

h1.sitehderone {
	font-size: 38px;
}

/************************************/
/**** 	 17. About Us Page css   ****/
/************************************/
p.text-anime-style-3.heiglidtod {
	font-size: 35px;
	color: white;
	padding-bottom: 10px;
	margin: 0;
	font-weight: 700;
}

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

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

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

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

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

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

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

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

.our-approach {
	background-image: url('../images/section-bg-1.png');
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: 100% auto;
	padding: 50px 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;
}

.suravi-values-infographic {
	position: relative;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
	margin-top: 10px;
}

.suravi-values-infographic::before {
	content: '';
	position: absolute;
	top: 54px;
	left: 16%;
	right: 16%;
	height: 2px;
	background: linear-gradient(90deg, transparent, var(--accent-color), var(--primary-color), transparent);
	opacity: 0.35;
}

.suravi-value-card {
	position: relative;
	display: flex;
	flex-direction: column;
	gap: 25px;
	height: 100%;
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 14px;
	padding: 30px;
	box-shadow: 0 18px 50px rgba(0, 0, 0, 0.06);
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.suravi-value-card::before {
	content: '';
	position: absolute;
	right: -45px;
	top: -45px;
	width: 140px;
	height: 140px;
	background: var(--accent-color);
	border-radius: 50%;
	opacity: 0.1;
	transition: all 0.4s ease-in-out;
}

.suravi-value-card:hover {
	transform: translateY(-8px);
	border-color: var(--accent-color);
	box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
}

.suravi-value-card:hover::before {
	transform: scale(1.35);
	opacity: 0.16;
}

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

.suravi-value-icon::after {
	content: '';
	position: absolute;
	inset: -8px;
	border: 1px dashed var(--accent-color);
	border-radius: 50%;
	opacity: 0.45;
}

.suravi-value-icon img {
	width: 36px;
	height: 36px;
	object-fit: contain;
}

.suravi-value-content {
	position: relative;
	z-index: 1;
}

.suravi-value-content span {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	color: var(--primary-color);
	background: var(--bg-color);
	border-radius: 30px;
	padding: 8px 14px;
	margin-bottom: 16px;
}

.suravi-value-content h3 {
	font-size: 24px;
	margin-bottom: 15px;
}

.suravi-value-content p {
	margin: 0;
}

.suravi-value-content ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.suravi-value-content ul li {
	position: relative;
	color: var(--text-color);
	padding-left: 28px;
	margin-bottom: 12px;
}

.suravi-value-content ul li:last-child {
	margin-bottom: 0;
}

.suravi-value-content ul li::before {
	content: '';
	position: absolute;
	top: 4px;
	left: 2px;
	width: 8px;
	height: 14px;
	border-right: 2px solid var(--accent-color);
	border-bottom: 2px solid var(--accent-color);
	transform: rotate(45deg);
}

.suravi-value-content ul.corpero {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.suravi-value-content ul.corpero li {
	display: flex;
	align-items: center;
	min-height: 48px;
	color: var(--primary-color);
	font-weight: 600;
	background: var(--bg-color);
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	padding: 12px 15px 12px 50px;
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.suravi-value-content ul.corpero li::before {
	top: 50%;
	left: 15px;
	width: 28px;
	height: 28px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	transform: translateY(-50%);
}

.suravi-value-content ul.corpero li::after {
	content: '';
	position: absolute;
	top: 50%;
	left: 25px;
	width: 7px;
	height: 12px;
	border-right: 2px solid var(--white-color);
	border-bottom: 2px solid var(--white-color);
	transform: translateY(-60%) rotate(45deg);
}

.suravi-value-content ul.corpero li:hover {
	border-color: var(--accent-color);
	background: var(--white-color);
	transform: translateX(5px);
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.what-we-do {
	padding: 50px 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: 50px 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: 50px 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: 50px 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: 28px;
	margin-bottom: 10px;
}

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

img.locandop {
	position: absolute;
	bottom: 0;
	width: 26%;
	right: 0;
	border-radius: 10%;
}

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

.cistebtnd {
	display: flex;
	gap: 10px;
}

.core-feature-btn-royal.whatspps a {
	background-color: #008f10;
}

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

.ev-feature-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}

.ev-feature-card {
	min-height: 150px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: #edfff2;
	border: 1px solid rgba(28, 83, 86, 0.08);
	border-radius: 8px;
	padding: 20px;
	transition: all 0.3s ease-in-out;
}

.ev-feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
}

.ev-feature-icon {
	min-height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #243f41;
	font-size: 38px;
	line-height: 1;
	margin-bottom: 18px;
}

.ev-feature-badge {
	width: 72px;
	height: 42px;
	color: var(--white-color);
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 0;
	background: #243f41;
	border-radius: 50%;
}

.ev-feature-card p {
	color: var(--primary-color);
	font-size: 16px;
	line-height: 1.45;
	margin: 0;
}

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

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

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

	.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 {
		font-size: 17px;
		padding: 0 46px;
		margin-bottom: 10px;
	}

	.section-title .section-sub-title::before,
	.section-title .section-sub-title::after {
		width: 34px;
	}

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

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

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

	.hero {
		padding: 150px 0;
	}

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

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

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

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

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

	.about-us-footer {
		padding-top: 30px;
		margin-top: 30px;
	}

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

	.service-item {
		padding: 10px;
	}

	.service-item-image .icon-box {
		top: 20px;
		left: 20px;
	}

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

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

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

	.section-footer-text ul {
		margin: 10px 0 0;
	}

	.section-footer-text ul li {
		margin-right: 5px;
	}

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

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

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

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

	.why-choose-btn {
		padding-top: 30px;
		margin-top: 30px;
	}

	.why-choose-info-content h3 {
		font-size: 20px;
	}

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

	.why-choose-footer-list ul {
		gap: 15px;
	}

	.why-choose-footer-list ul li {
		font-size: 14px;
		padding: 6px 14px 6px 30px;
	}

	.why-choose-footer-list ul li::before {
		left: 14px;
	}

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

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

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

	.pricing-item {
		padding: 10px;
	}

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

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

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

	.pricing-item-list ul {
		margin: 15px 0 0;
		padding: 15px 0 0;
	}

	.pricing-item-list ul li {
		margin-bottom: 10px;
	}

	.pricing-item-list ul li::before {
		font-size: 16px;
	}

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

	.pricing-benefit-list ul {
		gap: 20px 30px;
	}

	.pricing-benefit-list ul li img {
		max-width: 18px;
		margin-right: 10px;
	}

	.our-core-feature {
		padding: 60px 0;
	}

	.core-feature-image figure {
		margin-bottom: -60px;
	}

	.core-feature-item {
		gap: 30px;
		padding: 20px;
	}

	.core-feature-item-number h3,
	.core-feature-item-content h3 {
		font-size: 20px;
	}

	.core-feature-image {
		max-width: 400px;
	}

	.our-fun-facts {
		padding: 60px 0;
	}

	.fun-fact-counter-list {
		padding: 30px;
	}

	.fun-fact-counter-item {
		padding: 30px;
	}

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

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

	.how-it-work {
		padding: 60px 0;
	}

	.how-work-item-image {
		max-width: 200px;
	}

	.how-work-item-content h3 {
		font-size: 20px;
	}

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

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

	.faq-accordion .accordion-item {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.faq-accordion .accordion-header .accordion-button {
		padding: 1px 35px 1px 0;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		width: 28px;
		height: 28px;
		background-size: 16px auto;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 15px 35px 0 0;
	}

	.faqs-counter-list {
		margin-top: 40px;
		padding-top: 40px;
	}

	.faq-counter-item {
		display: block;
		text-align: center;
	}

	.faq-counter-item .icon-box {
		margin: 0 auto 15px;
	}

	.faq-counter-item-content {
		max-width: 100%;
	}

	.faq-counter-item-content h2 {
		font-size: 38px;
	}

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

	.testimonial-client-header ul li {
		font-size: 26px;
	}

	.testimonial-client-header ul li i {
		font-size: 18px;
	}

	.testimonial-client-content p {
		max-width: 100%;
	}

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

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

	.testimonial-author-content {
		padding-top: 20px;
		margin-top: 20px;
	}

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

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

	.our-blog {
		padding: 60px 0 30px;
	}

	.post-item {
		min-height: 400px;
		padding: 20px;
	}

	.post-item-content h2 {
		font-size: 20px;
	}

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

	.footer-social-links {
		padding-top: 20px;
		margin-top: 20px;
	}

	.footer-social-links h2 {
		font-size: 20px;
	}

	.footer-links h2 {
		font-size: 20px;
		margin-bottom: 20px;
	}

	.footer-contact-items-list {
		gap: 20px 30px;
	}

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

	.page-header {
		padding: 90px 0;
	}

	.page-header-box h1 {
		font-size: 44px;
		margin-bottom: 10px;
	}

	.our-approach {
		padding: 60px 0;
	}

	.approach-item-list {
		gap: 20px;
	}

	.approach-item {
		width: calc(33.33% - 13.33px);
		min-height: auto;
		gap: 20px;
		padding: 20px;
	}

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

	.approach-item-content p {
		padding-top: 15px;
		margin: 15px 0 0;
	}

	.suravi-values-infographic {
		grid-template-columns: repeat(2, 1fr);
		gap: 24px;
	}

	.suravi-values-infographic::before {
		display: none;
	}

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

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

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

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

	.hero-client-box .hero-client-content {
		max-width: 100%;
		border: none;
		padding: 0;
		margin: 10px 0 0;
	}

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

	.about-us-counter-box {
		padding: 15px;
		margin: 10px 4px 0 0;
	}

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

	.about-us-counter-box p {
		font-size: 14px;
		margin: 5px 0 0;
	}

	.about-us-image-box-2 .contact-us-circle {
		margin: 0 20px 10px 0;
	}

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

	.about-us-item-list {
		width: 100%;
	}

	.about-us-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

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

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

	.about-us-body-image {
		width: 100%;
		max-width: 100%;
	}

	.about-us-body-image figure,
	.about-us-body-image figure img {
		height: auto;
	}

	.about-us-body-image figure img {
		aspect-ratio: 1 / 0.9;
	}

	.about-us-footer {
		gap: 20px;
	}

	.video-play-button p {
		font-size: 14px;
	}

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

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

	.service-item-btn {
		padding-top: 15px;
		margin-top: 15px;
	}

	.section-footer-text ul li {
		font-size: 18px;
	}

	.why-choose-item {
		padding: 15px;
	}

	.why-choose-item-content {
		width: 100%;
	}

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

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

	.why-choose-counter-list {
		gap: 20px;
	}

	.why-choose-counter-item {
		min-width: auto;
		width: calc(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;
	}

	.suravi-values-infographic {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.suravi-value-card {
		padding: 25px;
	}

	.suravi-value-icon {
		width: 68px;
		height: 68px;
	}

	.suravi-value-icon img {
		width: 32px;
		height: 32px;
	}

	.suravi-value-content h3 {
		font-size: 22px;
	}

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

	.ev-feature-grid {
		grid-template-columns: 1fr;
		gap: 14px;
	}

	.ev-feature-card {
		min-height: 130px;
		padding: 22px 16px;
	}

	.ev-feature-icon {
		font-size: 34px;
		margin-bottom: 14px;
	}

	.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: 50px 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: 50px 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: 50px 0;
	background-color: #ededed;
	position: relative;
	margin-top: -100px;

}

@media (max-width: 768px) {
	.our-core-feature-royal {

		margin-top: 0px;

	}
	h1.sitehderone {
    font-size: 27px;
    padding-bottom: 10px!important;
}
p.text-anime-style-3.heiglidtod {
    font-size: 25px;
    color: white;
    padding-bottom: 10px;
    margin: 0;
    font-weight: 700;
}
}

.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: 50px 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: 50px 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: 50px 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: 50px 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: 50px 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: 50px 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: 5px 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: transparent;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
}

.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: 50px 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: 10px;
	/* background: var(--primary-color); */
	border-radius: 14px;
	/* padding: 30px; */
}

h2.corevlaues {
	font-size: 35px;
}

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

h1.solvp {
	font-size: 30px;
	padding-bottom: 10px;
}

.about-award-box-content-prime ul li {
	font-size: 17px;
	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: 0;
}

.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; */
	/* font-size: 19px; */
}

.about-award-box-content-prime {
	position: relative;
	overflow: hidden;
	background: linear-gradient(135deg, #173d4b 0%, #0b2835 100%);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 14px;
	padding: 40px 15px 30px;
	box-shadow: 0 12px 30px rgba(4, 24, 33, 0.2);
}

.about-award-box-content-prime::before {
	content: '';
	position: absolute;
	top: -55px;
	right: -45px;
	width: 135px;
	height: 135px;
	border-radius: 50%;
	background: rgba(73, 180, 66, 0.12);
}

.about-award-box-content-prime .about-award-service-text {
	position: relative;
	margin: 0 0 18px;
	padding-bottom: 18px;
	font-size: 16px;
	line-height: 1.55;
	border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.about-award-phone-prime {
	position: relative;
	display: flex;
	align-items: center;
	gap: 14px;
	color: var(--white-color);
}

.about-award-phone-prime:hover,
.about-award-phone-prime:focus {
	color: var(--white-color);
}

.about-award-phone-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	border-radius: 50%;
	background: #49b442;
	font-size: 22px;
	box-shadow: 0 8px 18px rgba(73, 180, 66, 0.3);
	transition: transform 0.3s ease, background-color 0.3s ease;
}

.about-award-phone-prime:hover .about-award-phone-icon,
.about-award-phone-prime:focus .about-award-phone-icon {
	transform: rotate(-8deg) scale(1.06);
	background: #5acb52;
}

.about-award-phone-details {
	display: flex;
	flex-direction: column;
	gap: 3px;
	min-width: 0;
}

.about-award-phone-label {
	font-size: 14px;
	font-weight: 600;
	line-height: 1.2;
	color: rgba(255, 255, 255, 0.78);
}

.about-award-phone-number {
	font-size: 21px;
	font-weight: 700;
	line-height: 1.25;
	letter-spacing: -0.3px;
	white-space: nowrap;
}

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

.about-us-content-prime p {
	margin: 0;
}

.about-us-btn-prime {
	margin-bottom: 20px;
}

.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;
	/* visibility: hidden; */
}

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

.what-we-item-list-prime {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	gap: 30px;
}

.what-we-item-prime {
	position: relative;
	width: calc(50% - 15px);
	background: var(--secondary-color);
	border-radius: 14px;
	padding: 30px;
	overflow: hidden;
}

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

.what-we-item-prime:hover:before {
	top: auto;
	height: 100%;
}

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

.what-we-item-prime .icon-box img {
	width: 100%;
	max-width: 20px;
}

.what-we-item-content-prime {
	position: relative;
	z-index: 1;
}

.what-we-item-content-prime h3 {
	font-size: 22px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
	transition: all 0.4s ease-in-out;
}

.what-we-item-content-prime h2 {
	font-size: 46px;
	transition: all 0.4s ease-in-out;
}

.what-we-item-content-prime p {
	margin: 5px 0 0;
	transition: all 0.2s ease-in-out;
}

.what-we-item-prime:hover .what-we-item-content-prime h3 {
	border-color: var(--dark-divider-color);
}

.what-we-item-prime:hover .what-we-item-content-prime p,
.what-we-item-prime:hover .what-we-item-content-prime h2,
.what-we-item-prime:hover .what-we-item-content-prime h3 {
	color: var(--white-color);
}

.what-we-do-image-prime {
	height: 100%;
	margin-left: 15px;
}

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

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

.what-we-do-prime .section-footer-text {
	margin-top: 60px;
}

.how-it-work-prime {
	background-image: url('../images/section-bg-2.png');
	background-repeat: no-repeat;
	background-position: bottom -10px right;
	background-size: auto;
	padding: 50px 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: 50px 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: 50px 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: 50px 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: 20px;
}

.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: 15px;
	font-weight: 400;
	margin: 0;
}

.testimonial-author-prime {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-top: 1px solid var(--divider-color);
	padding-top: 15px;
}

.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: 50px 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;
	overflow: hidden;
	background-color: var(--primary-color);
	padding: 0;
}

.main-footer-prime .main-footer-video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	pointer-events: none;
	z-index: 0;
}

/* .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;
} */
.pulse {
	animation: pulse-animation 2s infinite;
}

.circle1 {
	border-radius: 50%;
	box-shadow: 0px 0px 2px 2px #23c76473;
	position: fixed;
	right: 2.2%;
	bottom: 4%;
	z-index: 9999;
}

@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 0px #23c76473;
	}

	100% {
		box-shadow: 0 0 0 20px #23c76473;
	}
}

@media (max-width: 991px) {
	.circle1 {
		right: 22px;
		bottom: 21px;

	}

}

.footer-box-prime {
	position: relative;
	max-width: 1580px;
	border: 1px solid var(--dark-divider-color);
	background: #001a2900;
	/* backdrop-filter: blur(2px); */
	-webkit-backdrop-filter: blur(10px);
	/* border-radius: 30px; */
	padding: 50px 0 0 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: 20px;
}

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

.row.compdof {
	margin-top: 30px;
	border-top: 1px solid #ffffff24;
	padding-top: 10px;
}

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

.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: 20px 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: 10px;
		/* padding: 20px; */
	}

	.about-award-box-content-prime p {
		padding-top: 15px;
		margin-top: 15px;
	}

	.about-award-box-content-prime {
		padding: 18px;
	}

	.about-award-box-content-prime .about-award-service-text {
		margin: 0 0 16px;
		padding: 0 0 16px;
	}

	.about-award-phone-number {
		font-size: 19px;
	}

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

a.navbar-brand img {
	width: 95px;
}

.hero-circle-transition {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100vh;
	height: 100dvh;
	min-height: 0;
}

.hero-circle-transition .hero-bg-video,
.hero-circle-transition .hero-bg-video video {
	position: absolute;
	inset: 0;
	display: block;
	width: 100%;
	height: 100%;
}


.hero-circle-transition .hero-bg-video .hero-youtube-video {
	position: absolute;
	top: auto;
	bottom: 0;
	left: 50%;
	width: 100vw;
	height: 56.25vw;
	min-width: 177.78vh;
	min-height: 100vh;
	border: 0;
	display: block;
	transform: translateX(-50%);
	pointer-events: none;
}

@media (max-width: 991px) {
	.hero-circle-transition .hero-bg-video .hero-youtube-video {
		position: absolute;
		top: auto;
		bottom: 0;
		left: 50%;
		width: 177.78vh;
		height: 100vh;
		min-width: 100vw;
		min-height: 56.25vw;
		transform: translateX(-50%);
	}
}


.hero-circle-transition .hero-bg-video video {
	object-fit: cover;
	object-position: bottom;
}

@media (max-width: 991px) {
	.hero-circle-transition {
		height: auto;
		min-height: 0;
		padding: 0;
	}

	.hero-circle-transition .hero-bg-video {
		position: relative;
		inset: auto;
		width: 100%;
		height: auto;
	}

	.hero-circle-transition .hero-bg-video .hero-youtube-video {
		position: relative;
		inset: auto;
		left: auto;
		bottom: auto;
		width: 100%;
		height: auto;
		aspect-ratio: 16 / 9;
		min-width: 0;
		min-height: 0;
		transform: none;
	}

	.hero-circle-transition .hero-bg-video video {
		position: relative;
		inset: auto;
		display: block;
		width: 100%;
		height: auto;
		object-fit: contain;
		object-position: center;
	}
}

.circle-reveal-overlay {
	position: absolute;
	inset: 0;
	background: #fff;
	z-index: 10;
	pointer-events: none;
	overflow: hidden;
	clip-path: circle(0% at 50% 50%);
	-webkit-clip-path: circle(0% at 50% 50%);

	display: flex;
	align-items: center;
	justify-content: center;
}

.circle-reveal-overlay .about-award-phone-number {
	pointer-events: auto;
	color: inherit;
	text-decoration: none;
}

.circle-reveal-overlay .about-award-phone-number:hover,
.circle-reveal-overlay .about-award-phone-number:focus {
	color: inherit;
}

.circle-reveal-stage {
	width: min(1120px, 88vw);
	height: min(680px, 74vh);
	overflow: hidden;
	position: relative;
}

.circle-reveal-track {
	width: 100%;
	height: 100%;
	will-change: transform;
}

.circle-reveal-panel {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 100%;
}

.circle-reveal-track .circle-reveal-panel+.circle-reveal-panel {
	margin-top: 24px;
}

.circle-reveal-content {
	text-align: center;
	opacity: 0;
	transform: translateY(40px);
}

.circle-reveal-content img {
	max-width: 180px;
	width: 100%;
	margin-bottom: 20px;
}

.circle-reveal-content h2 {
	font-size: 52px;
	line-height: 1.2;
	color: #111;
	margin: 0;
	font-weight: 700;
}

.circle-reveal-overlay .circle-reveal-inner-about {
	visibility: visible;
	opacity: 1;
}

.circle-reveal-overlay .circle-reveal-inner-about .image-anime.reveal,
.circle-reveal-overlay .circle-reveal-inner-about .reveal {
	visibility: visible !important;
	transform: none !important;
}

.circle-reveal-overlay .circle-reveal-inner-about img {
	transform: none !important;
}

.circle-reveal-overlay .circle-reveal-inner-service {
	visibility: visible;
	opacity: 1;
	background: transparent;
}

.circle-reveal-overlay .circle-reveal-inner-service img {
	transform: none !important;
}


@media (max-width: 767px) {
	.circle-reveal-content img {
		max-width: 120px;
	}

	.circle-reveal-content h2 {
		font-size: 32px;
	}
}

.ourpeoducts {
	position: relative;
	padding: 34px 0 38px;
	background:
		radial-gradient(circle at 8% 15%, rgba(74, 171, 61, 0.14), transparent 28%),
		radial-gradient(circle at 92% 82%, rgba(246, 189, 39, 0.13), transparent 24%),
		linear-gradient(135deg, #f7fbf5 0%, #ffffff 48%, #f3f8f1 100%);
	overflow: hidden;
}

.ourpeoducts::before {
	content: '';
	position: absolute;
	inset: 0;
	pointer-events: none;
	background-image: radial-gradient(rgba(0, 26, 41, 0.08) 1px, transparent 1px);
	background-size: 24px 24px;
	mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 36%, transparent 64%, rgba(0, 0, 0, 0.7));
	-webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 36%, transparent 64%, rgba(0, 0, 0, 0.7));
}

.ourpeoducts .container {
	position: relative;
	z-index: 1;
}

.product-scroll-wrapper {
	position: relative;
	margin-top: 22px;
}

.slider-productsd {
	width: 100%;
	height: calc(100vh - 190px);
	min-height: 470px;
	max-height: 620px;
	overflow: hidden;
	border-radius: 30px;
}

.solar-product-item {
	position: relative;
	display: grid;
	grid-template-columns: minmax(0, 43%) minmax(0, 57%);
	align-items: center;
	gap: 30px;
	height: 100%;
	background: rgba(255, 255, 255, 0.94);
	border: 1px solid rgba(0, 26, 41, 0.09);
	border-radius: 30px;
	padding: 22px;
	/* box-shadow: 0 24px 70px rgba(0, 26, 41, 0.10); */
	overflow: hidden;
}

.solar-product-item::before {
	content: '';
	position: absolute;
	left: -90px;
	bottom: -120px;
	width: 280px;
	height: 280px;
	border: 55px solid rgba(74, 171, 61, 0.055);
	border-radius: 50%;
	pointer-events: none;
}

.solar-product-item .content-box {
	position: relative;
	z-index: 2;
	padding: 20px 8px 20px 26px;
}

.solar-product-item .product-count {
	display: block;
	margin-bottom: 13px;
	font-family: var(--accent-font);
	font-size: 52px;
	font-weight: 700;
	line-height: 0.9;
	color: transparent;
	-webkit-text-stroke: 1.5px rgba(74, 171, 61, 0.55);
}

.solar-product-item .product-category {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 13px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent-color);
}

.solar-product-item .product-category::before {
	content: '';
	width: 24px;
	height: 2px;
	background: linear-gradient(90deg, var(--accent-color), #f6bd27);
	border-radius: 10px;
}

.solar-product-item .content-box h3 {
	font-size: clamp(32px, 3vw, 46px);
	line-height: 1.08;
	margin-bottom: 18px;
}

.solar-product-item .content-box p {
	max-width: 520px;
	font-size: 17px;
	line-height: 1.7;
	margin-bottom: 27px;
}

.solar-product-item .image-box {
	position: relative;
	width: 100%;
	height: 100%;
	min-height: 420px;
	border-radius: 25px;
	overflow: hidden;
}

.solar-product-item .image-box::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, transparent 58%, rgba(0, 26, 41, 0.34));
	pointer-events: none;
}

.solar-product-item .image-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.035);
	transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.slider-productsd .swiper-slide-active .image-box img {
	transform: scale(1);
}

.slider-productsd .swiper-slide {
	height: 100%;
	will-change: transform;
}

@media (min-width: 992px) {
	.slider-productsd.is-stack-slider {
		isolation: isolate;
		perspective: 1400px;
	}

	.slider-productsd.is-stack-slider .swiper-wrapper {
		position: relative;
		display: block;
		width: 100%;
		height: 100%;
		transform: none !important;
	}

	.slider-productsd.is-stack-slider .swiper-slide {
		position: absolute;
		inset: 0;
		width: 100%;
		height: 100%;
		backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		will-change: transform, filter;
	}

	.slider-productsd.is-stack-slider .solar-product-item {
		transform: translateZ(0);
		transition: box-shadow 0.5s ease, border-color 0.5s ease;
	}

	.slider-productsd.is-stack-slider .swiper-slide.is-current .solar-product-item {
		border-color: rgba(74, 171, 61, 0.22);
		box-shadow: 0 28px 80px rgba(0, 26, 41, 0.16);
		background-color: white;
	}

	.slider-productsd.is-stack-slider .swiper-slide.is-current .image-box img {
		transform: scale(1);
	}
}

.slider-productsd>.swiper-pagination {
	right: 38px;
	left: auto;
	width: 5px;
}

.slider-productsd>.swiper-pagination .swiper-pagination-bullet {
	display: block;
	width: 5px;
	height: 28px;
	margin: 8px 0;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.75);
	box-shadow: 0 2px 8px rgba(0, 26, 41, 0.18);
	opacity: 1;
	transition: height 0.35s ease, background-color 0.35s ease;
}

.slider-productsd>.swiper-pagination .swiper-pagination-bullet-active {
	height: 46px;
	background: var(--accent-color);
}

@media (max-width: 991px) {
	.ourpeoducts {
		padding: 65px 0;
	}

	.slider-productsd {
		height: auto;
		min-height: unset;
		max-height: none;
		overflow: visible;
		border-radius: 24px;
	}

	.slider-productsd .swiper-wrapper {
		display: block;
		transform: none !important;
	}

	.slider-productsd .swiper-slide {
		width: 100% !important;
		height: auto;
		margin: 0 0 24px !important;
	}

	.slider-productsd .swiper-slide:last-child {
		margin-bottom: 0 !important;
	}

	.solar-product-item {
		grid-template-columns: 1fr;
		height: auto;
		padding: 28px;
		gap: 25px;
	}

	.solar-product-item .content-box {
		padding: 5px 4px 0;
	}

	.solar-product-item .content-box h3 {
		font-size: 30px;
	}

	.solar-product-item .image-box {
		order: -1;
		height: 300px;
		min-height: 0;
	}

	.slider-productsd>.swiper-pagination {
		display: none;
	}
}

@media (max-width: 575px) {
	.solar-product-item {
		padding: 22px;
		border-radius: 20px;
	}

	.solar-product-item .product-count {
		font-size: 42px;
	}

	.solar-product-item .content-box h3 {
		font-size: 25px;
	}

	.solar-product-item .content-box p {
		font-size: 15px;
	}

	.solar-product-item .image-box {
		height: 230px;
	}
}

.swiper-pagination-bullet-active {
	opacity: var(--swiper-pagination-bullet-opacity, 1);
	background: #198754;
}

@media (min-width: 1900px) {
	.hero-circle-transition {
		position: relative;
		overflow: hidden;
		height: 100vh;
		height: 100dvh;
		min-height: 0;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.our-service-prime {
		position: relative;
	}

	.solar-product-item {
		height: auto;
	}
}


@media (max-width: 768px) {
	header.main-header {
		position: relative;
	}
}

.projectlist {
	padding: 100px 0 70px;
	background:
		linear-gradient(180deg, rgba(244, 248, 250, 0.78) 0%, rgba(255, 255, 255, 1) 48%),
		var(--bg-color);
}

.projectlist .section-title {
	margin-bottom: 35px;
}

.projectlist .project-grid {
	row-gap: 0;
}

.projectlist .project-block {
	height: calc(100% - 34px);
	margin-bottom: 34px;
	transform: perspective(900px) translateX(0) rotateY(0deg) rotateZ(0deg);
	transform-origin: center center;
	transition: transform 0.55s ease;
	will-change: transform;
}

.projectlist .project-grid>div:nth-child(odd) .project-block.project-tilt-active {
	transform: perspective(900px) translateX(-10px) rotateY(3deg) rotateZ(-1.5deg);
}

.projectlist .project-grid>div:nth-child(even) .project-block.project-tilt-active {
	transform: perspective(900px) translateX(10px) rotateY(-3deg) rotateZ(1.5deg);
}

.projectlist .inner-box {
	position: relative;
	height: 100%;
	min-height: 460px;
	border-radius: 8px;
	overflow: hidden;
	background: var(--primary-color);
	box-shadow: 0 18px 45px rgba(0, 26, 41, 0.13);
	transition: all 0.4s ease-in-out;
}

.projectlist .inner-box:hover {
	transform: translateY(-8px);
	box-shadow: 0 24px 60px rgba(0, 26, 41, 0.18);
}

.projectlist .image-box,
.projectlist .image,
.projectlist .image a {
	display: block;
	height: 100%;
}

.projectlist .image img {
	width: 100%;
	height: 100%;
	min-height: 460px;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
}

.projectlist .inner-box:hover .image img {
	transform: scale(1.07);
}

/* .projectlist .overlay-1 {
	position: absolute;
	inset: 0;
	background:
		linear-gradient(180deg, rgba(0, 26, 41, 0.02) 20%, rgba(0, 26, 41, 0.88) 100%),
		linear-gradient(45deg, rgba(74, 171, 61, 0.34), rgba(0, 26, 41, 0) 42%);
	z-index: 1;
	transition: all 0.4s ease-in-out;
} */

.projectlist .overlay-1 {
	position: absolute;
	inset: 0;
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 0%) 35%, rgb(0 0 0 / 0%) 70%, rgba(0, 0, 0, 0.9) 100%);
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.projectlist .inner-box:hover .overlay-1 {
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgb(0 0 0 / 0%) 35%, rgb(0 0 0 / 0%) 70%, rgba(0, 0, 0, 0.9) 100%);
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.projectlist .content-box {
	position: absolute;
	right: 24px;
	bottom: 24px;
	left: 24px;
	z-index: 2;
	padding-right: 64px;
}

.projectlist .cat {
	display: inline-block;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.35em;
	color: var(--accent-color);
	background: rgba(255, 255, 255, 0.94);
	border-radius: 5px;
	padding: 8px 12px;
	margin-bottom: 14px;
}

.projectlist .title {
	font-size: 28px;
	line-height: 1.18em;
	color: var(--white-color);
}

.projectlist .title a {
	color: inherit;
}

.projectlist .location {
	font-size: 15px;
	font-weight: 600;
	line-height: 1.4em;
	color: rgba(255, 255, 255, 0.84);
	margin: 8px 0 0;
}

.projectlist .read-more {
	position: absolute;
	right: 0;
	bottom: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	color: var(--white-color);
	background: var(--accent-color);
	box-shadow: 0 12px 30px rgba(74, 171, 61, 0.35);
	transition: all 0.3s ease-in-out;
}

.projectlist .read-more:hover {
	color: var(--primary-color);
	background: var(--white-color);
	transform: rotate(90deg);
}

@media (max-width: 991px) {
	.projectlist {
		padding: 70px 0 40px;
	}

	.projectlist .project-block {
		height: auto;
	}
}

@media (max-width: 767px),
(prefers-reduced-motion: reduce) {

	.projectlist .project-block,
	.projectlist .project-grid>div:nth-child(odd) .project-block.project-tilt-active,
	.projectlist .project-grid>div:nth-child(even) .project-block.project-tilt-active {
		transform: none;
	}
}

@media (max-width: 575px) {

	.projectlist .inner-box,
	.projectlist .image img {
		min-height: 360px;
	}

	.projectlist .content-box {
		right: 18px;
		bottom: 18px;
		left: 18px;
		padding-right: 56px;
	}

	.projectlist .title {
		font-size: 24px;
	}
}


.visioncond {
	font-size: 22px;
	font-weight: 600;
	color: #001A29;
	padding: 0;
	margin: 0;
}

p.aboutcount {
	font-size: 38px;
	padding: 0;
	margin: 0;
	font-weight: 600;
	font-family: var(--accent-font);
}

.page-category-list .page-category-list-title {
	font-size: 22px;
	color: var(--white-color);
	background: var(--accent-color);
	padding: 18px 40px;
	font-family: var(--accent-font);
	font-weight: 500;
	margin: 0;

}

.about-us-item-content h2 {
	font-size: 23px;
}

.about-footer-list-prime {
	display: none;
}

.whatsappbtn {
	background-color: #25D366;
	border: none;
}

.whatsappbtn:hover {
	background-color: #128C7E;
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
	transform: translateY(-2px);
	cursor: pointer;
}

/* --- Floating Buttons Container --- */
.floating-contact-btn {
	position: fixed;
	bottom: 20px;
	/* Space from the bottom */
	right: 20px;
	/* Space from the right */
	display: flex;
	flex-direction: column;
	align-items: center;
	/* Aligns items to the center of the container */
	gap: 10px;
	/* Creates space between the buttons */
	z-index: 1050;
}

.floating-contact-btn>div,
.floating-contact-btn>a>i {
	font-size: 20px;
}

/* Floating Button Styles */
.floating-contact-btn>div,
.floating-contact-btn>a {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: transform 0.2s ease-in-out;
	text-decoration: none;
	/* For the link element */
}

.floating-contact-btn>div:hover,
.floating-contact-btn>a:hover {
	transform: scale(1.1);
}

.floating-whatsapp-btn {
	background-color: #3ebb00;
}

.floating-phone-btn {
	background-color: #134fa0;

}

a.floating-phone-btn i {
	font-size: 26px;
}

.floating-contact-btn img {
	width: 40px;
}

.floating-contact-btn i {
	color: white;
	font-size: 2rem;
}

.icon-btn {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

/* Modal Overlay and Container */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1050;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.modal-overlay.show {
	display: flex;
	opacity: 1;
}

.modal-content-wrapper {
	background-color: white;
	border-radius: 1rem;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	max-width: 500px;
	width: 90%;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transform: translateY(-50px);
	opacity: 0;
}

.modal-overlay.show .modal-content-wrapper {
	transform: translateY(0);
	opacity: 1;
}

/* Modal Header */
.modal-header {
	background-color: #107c19;
	color: white;
	padding: 10px;
	border-top-left-radius: 1rem;
	border-top-right-radius: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-title {
	font-size: 18px;
	color: white;
	text-align: center;
}

.modal-header h5 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 500;
}

.modal-header .close-btn {
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
	line-height: 1;
}

/* Modal Body */
.modal-body {
	padding: 1.5rem;
}

/* Form Styling */
.form-group {
	margin-bottom: 1rem;
}

.form-label {
	font-weight: 500;
	color: #4a4a4a;
	display: block;
	margin-bottom: 0.5rem;
}

.form-control {
	width: 100%;
	border-radius: 0.75rem;
	border: 1px solid #e0e0e0;
	padding: 0.65rem 1rem;
	box-sizing: border-box;
	transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-control:focus {
	outline: none;
	border-color: #0d6efd;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-submit {
	background-color: #107c19 !important;
	border: none;
	font-weight: bold;
	color: white;
	border-radius: 0.75rem;
	padding: 0.75rem 1.5rem;
	width: 100%;
	cursor: pointer;
	transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.btn-submit:hover {
	background-color: #128c7e;
	transform: translateY(-2px);
}

/* Corner Modal Specific Styles */
.corner-modal-overlay {
	justify-content: flex-end;
	align-items: flex-end;
	padding: 20px;
}

.corner-modal-overlay .modal-content-wrapper {
	width: 100%;
	max-width: 400px;
	transform: translateY(50px);
	margin: 0;
}

.flip-icon {
	transform: scaleX(-1);
}

/* --- MOBILE RESPONSIVE STYLES --- */
@media (max-width: 768px) {
	.floating-contact-btn {
		bottom: 2rem;
		/* Space from the bottom on mobile */
		right: 1rem;
		/* Space from the right on mobile */
		gap: 0.75rem;
	}

	.floating-contact-btn>div,
	.floating-contact-btn>a {
		width: 50px;
		height: 50px;
	}

	.floating-contact-btn img {
		width: 35px;
	}
}
