@import url('https://fonts.googleapis.com/css2?family=Abel&family=Contrail+One&family=DM+Serif+Display:ital@0;1&family=Dancing+Script:wght@400..700&family=Mozilla+Headline:wght@200..700&family=Noto+Serif+Thai:wght@100..900&family=Oswald:wght@200..700&family=Parkinsans:wght@300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Playwrite+NO:wght@100..400&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=Red+Hat+Display:ital,wght@0,300..900;1,300..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:wght@500&family=SUSE+Mono:ital,wght@0,100..800;1,100..800&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap');

:root {
	--primary-color: #0F6B63;
	--secondary-color: #FFFFFF;
	--bg-color: #F3F6FC;
	--text-color: #2E314D;
	--accent-color: #3662CC;
	--white-color: #FFFFFF;
	--divider-color: #0105351A;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: Playfair Display,
		Georgia,
		"serif";
	--accent-font: Playfair Display,
		Georgia,
		"serif";
}

html,
body {
	margin: 0;
	padding: 0;
	width: 100%;
	overflow-x: hidden;
	min-height: 100%;
}



.main-footer {
	overflow: hidden;
	margin-bottom: 0;
	padding-bottom: 0;
}

section:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
}

* {
	box-sizing: border-box;
}


footer {
	margin-bottom: 0 !important;
	padding-bottom: 0;
}

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

body {
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--bg-color);
}



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

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Open Sans", sans-serif;
	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: 1500px;
}

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

.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;
	background: #0f6b63;
	border-radius: 100px;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-weight: 500;
	line-height: 1em;
	letter-spacing: -0.02em;
	text-transform: capitalize;
	color: #fff;
	padding: 15px;
	/* border: 2px solid #0f6b63; */
	overflow: hidden;
	outline: none;
	transition: all 0.5s ease-in-out;
	z-index: 0;
}

.btn-default:hover {
	color: #000;
	background: #c9a963;
}

/* 
.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 24px;
	width: 24px;
	height: 24px;
	background-image: url('../images/arrow-white.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
	z-index: 1;
} */
.international-section {
	overflow: hidden;
	position: relative;
}

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

.btn-default::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	background: #c9a963;
	border-radius: 100px;
	width: 0;
	height: 100%;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

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

.btn-default.btn-light {
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
}

.btn-default.btn-light:hover,
.btn-default.btn-highlighted:hover {
	color: #000;
}

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

.btn-default.btn-light:hover:after,
.btn-default.btn-highlighted:after {
	background-color: #c9a963;
}

.readmore-btn {
	position: relative;
	display: inline-block;
	font-family: "Open Sans", sans-serif;
	font-weight: 500;
	line-height: normal;
	text-transform: capitalize;
	color: var(--primary-color);
	padding: 3px 36px 3px 0;
}

.view-btn {
	text-align: center;
	margin-top: 10px;
}

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

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


.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: #fff;
	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(--primary-color) transparent var(--primary-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%);
}

#loading-icon img {

	animation: rotateLoader 2s linear infinite;
}

/* Rotation Animation */
@keyframes rotateLoader {
	from {
		transform: rotate(0deg);
	}

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

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

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

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

.light-section .container-fluid {
	padding: 0;
}

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

.about-footer-prime p i {
	color: #c9a963;
}

.about-footer-prime p a i {
	color: #c9a963;
}

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

.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 {
	text-align: center;
	margin-bottom: 40px;
}

.section-title h1 {
	text-align: center;
}

.section-title .section-sub-title {
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: normal;
	color: var(--primary-color);
	background-color: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 40px;
	padding: 7px 16px 7px 32px;
	margin-bottom: 15px;
}

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

.section-title h1 {
	font-size: 45px;
	font-weight: 600;
	line-height: 1.2em;
	letter-spacing: 0;
	margin-bottom: 0;
}

.section-title h2 {
	font-size: 40px;
	font-weight: 600;
	line-height: 1.2em;
	letter-spacing: -0.02em;
	margin-bottom: 0;
}



.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
	font-size: 18px;
	font-weight: 600;
	text-align: right;
	color: #fff !important;
}

.about-us-btn-prime .btn-default {
	background-color: #0F6B63;
	color: #fff;
	border: none;
}

.about-us-btn-prime .btn-default:hover {
	color: #000;
}

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

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

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

.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		  ***/
/************************************/

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

header.main-header .header-sticky {
	position: relative;
	max-width: 1500px;
	top: 0;
	background: transparent;
	border-radius: 100px;
	margin: 0 auto;
	z-index: 100;
}

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

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

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

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

.navbar-brand img {
	width: 230px;
}

.main-menu {
	margin-left: 60px;
}

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

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

.main-menu ul li {
	margin-left: 20px;
	position: relative;
	border-right: 1px dashed #c9a963;
}

.submenu ul li {
	border-right: none !important;
}

.submenu ul li a {
	font-size: 16px !important;
	color: #0f6b63 !important;
}

.border-right {
	border-right: none !important;
	padding-right: 0 !important;
}

.border-right a {
	margin-right: 0 !important;
}

.main-menu ul li a {
	font-size: 20px;
	font-weight: 500;
	margin-right: 20px;
	line-height: 1.25em;
	padding: 5px 5px !important;
	color: #fff;
	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: #c9a963;
}

.main-menu ul ul {
	position: absolute;
	left: 0;
	top: 100%;
	transform: scale(1, 0.8);
	transform-origin: top;
	width: 300px;
	background: #F5F1E8;
	border-radius: 20px;
	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: 300px;
}

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

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

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

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

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

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

.header-btn {
	line-height: 0;
}

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

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

.slicknav_btn {
	background: #0f6b63;
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 35px;
	height: 35px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 2px;
	width: 20px;
	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: #0f6b63;
}

.slicknav_menu ul {
	margin: 20px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 7px 20px;
	color: var(--white-color);
	line-height: 28px;
	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: #c9a963;
}

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

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

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

.hero {
	position: relative;
	background-image: url('../images/hero-bg-image.jpg');
	background-position: center center;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(90deg, rgba(1, 5, 53, 0.90) -2.45%, rgba(1, 5, 53, 0.81) 32.3%, transparent 97.72%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero-box {
	position: relative;
	padding: 290px 0 140px;
	z-index: 1;
}

.hero-content-box {
	margin-right: 50px;
}

.hero-sub-heading {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	background-color: var(--dark-divider-color);
	border-radius: 100px;
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	padding: 5px 16px 5px 5px;
	margin-bottom: 15px;
}

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

.satisfy-client-image {
	position: relative;
	display: inline-block;
	margin-left: -14px;
	border: 1px solid var(--bg-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: 48px;
	border-radius: 50%;
}

.satisfy-client-image.add-more {
	width: 50px;
	height: 50px;
	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 img {
	width: 100%;
	max-width: 16px;
}

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

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

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

.hero-sub-heading .satisfy-client-image figure img {
	max-width: 30px;
}

.hero-satisfy-client-content p {
	font-size: 14px;
	font-weight: 600;
	color: var(--white-color);
	margin-bottom: 0;
}

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

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

.hero-footer-item {
	width: calc(40% - 15px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

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

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

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

.hero-footer-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

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

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

.hero-footer-item-content h2 {
	font-size: 20px;
	line-height: 1.4em;
	color: var(--white-color);
}

.info-strip {
	width: 100%;
	background: #c9a963;
	color: #ffffff;
	padding: 25px 0px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 28px;
	flex-wrap: wrap;
	/* border-top: 2px solid #fff;
	border-bottom: 2px solid #fff; */
	font-size: 14px;
	font-weight: 500;
	letter-spacing: 0.3px;
}

.info-item {
	position: relative;

	white-space: nowrap;
	border-right: 1px dashed #000;
	padding-right: 30px;
	padding-left: 10px;
}

.info-item h2 {
	font-size: 18px;
	color: #000;
}

.info-img {
	text-align: center;
	margin-bottom: 10px;
}

.info-img img {
	width: 60px;
	background: #fff;
	border-radius: 50%;
	padding: 10px;
	margin-bottom: 10px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}



@media (max-width: 768px) {
	.info-strip {
		gap: 14px;
		padding: 12px 15px;
		font-size: 13px;
	}

	.info-item {
		padding: 0 8px;
	}
}

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

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

.service-item {
	position: relative;
	background-color: var(--bg-color);
	border-radius: 20px;
	min-height: 440px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.service-item:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--bg-color);
	border-radius: 10px;
	width: 100%;
	height: 100%;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.service-item.active::before,
.service-item:hover::before {
	transform: translate(100%, -100%);
}

.service-item-image {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-image,
.service-item:hover .service-item-image {
	opacity: 1;
}

.service-item-image::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	opacity: 50%;
}

.service-item-image figure {
	display: block;
	height: 100%;
}

.service-item-image figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-item-content-box {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	z-index: 2;
}

.service-item-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-header,
.service-item:hover .service-item-header {
	border-color: var(--dark-divider-color);
}

.service-item-title {
	width: calc(80% - 15px);
	max-width: 70%;
}

.service-item-title h2 {
	font-size: 20px;
	line-height: 1.4em;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-title h2,
.service-item:hover .service-item-title h2 {
	color: var(--white-color);
}

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

.service-item-no {
	width: calc(20% - 15px);
	text-align: right;
}

.service-item-no h3 {
	font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.service-item.active .service-item-no h3,
.service-item:hover .service-item-no h3 {
	color: var(--white-color);
}

.service-item-content p {
	transition: all 0.4s ease-in-out;
}

.service-item-content p:last-child {
	margin-bottom: 0;
}

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

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

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

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

.service-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-item:hover .icon-box img,
.service-item.active .icon-box img {
	filter: brightness(0) invert(0);
}



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

.main-footer {
	position: relative;
	background-image: url('../images/footer-bg-image-1.png');
	overflow: hidden;
	padding: 120px 0 0;
}

.main-footer:before {
	position: absolute;
	content: '';
	right: 0;
	bottom: 0;
	left: 0;
	background-image: url(../images/footer-bg-image-2.png);
	background-repeat: repeat-x;
	background-position: right bottom;
	background-size: cover;
	width: 100%;
	height: 200px;
}

.main-footer-prime {
	overflow: hidden;
}

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

.main-footer,
.main-footer-prime {
	overflow: hidden;
}

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

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

.footer-link-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	margin-left: 30px;
}

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

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

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

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

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

.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-working-hour-box {
	width: 100%;
	max-width: 36%;
}

.footer-contact-item {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 25px;
	margin-top: 25px;
}

.footer-contact-item ul li {
	font-size: 20px;
	font-weight: 500;
}

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

.footer-cta-box {
	background-color: var(--dark-divider-color);
	border-radius: 100px;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-top: 80px;
	padding: 15px 20px;
	overflow: hidden;
}

.footer-cta-content-box {
	width: calc(49% - 15px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 40px;
}

.footer-cta-content-box .icon-box {
	margin-bottom: -35px;
}

.footer-cta-content-box .icon-box img {
	width: 100%;
	max-width: 90px;
}

.footer-cta-content {
	width: calc(100% - 130px);
}

.footer-cta-content h3 {
	font-size: 20px;
	color: var(--white-color);
}


.footer-copyright {
	padding: 60px 0;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

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

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

.footer-social-links ul li a {
	width: 40px;
	height: 40px;
	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: var(--accent-color);
}

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




/************************************/
/***      33. Responsive css      ***/
/************************************/

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

	.hero-box {
		padding: 250px 0 100px;
	}

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

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

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

	header.main-header {
		top: 30px;
	}

	.hero-content-box {
		margin: 0;
	}

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

	.about-image-box {
		max-width: 740px;
		margin: 0 auto 30px;
	}

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

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

	.service-item {
		min-height: 360px;
		padding: 30px;
	}

	.service-item-header {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.what-we-content {
		height: auto;
		margin-bottom: 30px;
	}

	.what-we-footer {
		margin-top: 30px;
		padding-top: 30px;
	}

	.what-we-image-box {
		height: auto;
		margin: 0;
	}

	.what-we-image figure,
	.what-we-image img {
		height: auto;
	}

	.what-we-image img {
		aspect-ratio: 1 / 0.7;
	}

	.why-choose-info-box {
		height: auto;
		gap: 30px;
		margin: 0 0 30px;
	}

	.why-choose-image,
	.why-choose-image figure,
	.why-choose-image img {
		height: auto;
	}

	.why-choose-content {
		height: auto;
	}

	.project-item-content {
		padding: 20px;
	}

	.features-item {
		width: calc(50% - 15px);
		min-height: auto;
		padding: 30px;
	}

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

	.features-item-iamge figure {
		margin: 10px auto 0;
	}

	.pricing-item {
		padding: 30px;
	}

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

	.integrations-counter-item-list {
		margin-top: 50px;
		padding: 30px 0 0;
	}

	.integrations-social-icon-list,
	.integrations-social-icon-list ul {
		gap: 30px;
	}

	.how-work-content {
		height: auto;
		margin: 0 0 30px;
	}

	.how-work-image-box,
	.how-work-image,
	.how-work-image figure,
	.how-work-image img {
		height: auto;
	}

	.how-work-image figure img {
		aspect-ratio: 1 / 0.7;
	}

	.how-work-item {
		padding: 30px;
	}

	.main-footer:before {
		height: 130px;
	}

	.about-footer {
		max-width: 100%;
		margin-bottom: 30px;
	}



	.footer-link-box {
		margin: 0;
	}

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

	.footer-links ul li {
		margin-bottom: 10px;
	}

	.footer-contact-item {
		margin-top: 20px;
		padding-top: 20px;
	}

	.footer-cta-box {
		margin-top: 30px;
	}

	.footer-copyright {
		padding: 30px 0;
		gap: 20px;
	}

	.approach-item,
	.approach-cta-item {
		min-height: auto;
		padding: 30px;
	}

	.approach-item-header .icon-box {
		margin-bottom: 30px;
	}

	.trusted-company-slider-content {
		margin-bottom: 30px;
	}

	.trusted-company-logo img {
		max-width: 145px;
		height: 35px;
	}

	.intro-video-image img {
		aspect-ratio: 1 / 0.6;
	}

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

	.team-item-image img {
		aspect-ratio: 1 / 1.08;
	}

	.faqs-iamge-box {
		height: auto;
		margin: 0 0 30px;
	}

	.faqs-iamge,
	.faqs-iamge figure,
	.faqs-iamge img {
		height: auto;
	}

	.faqs-iamge img {
		aspect-ratio: 1 / 0.8;
	}

	.google-rating-box {
		right: 30px;
		bottom: 30px;
		padding: 20px;
	}

	.faqs-content {
		margin: 0;
	}

	.page-single-sidebar {
		margin: 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;
	}

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

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

	.service-offer-list {
		margin-top: 30px;
	}

	.service-offer-list ul li {
		margin-bottom: 20px;
	}

	.service-offer-images {
		margin-top: 30px;
	}

	.service-benefits-list {
		margin-top: 30px;
	}

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

	.project-entry-implemented-box,
	.project-entry-process-box {
		margin-top: 40px;
	}

	.project-entry-implemented-image-content {
		margin-top: 30px;
	}

	.project-entry-process-item-list {
		margin-top: 30px;
		gap: 20px;
	}

	.project-entry-process-item {
		width: calc(33.33% - 13.33px);
		padding: 20px;
	}

	.project-entry-process-item-header {
		margin-bottom: 30px;
	}

	.project-entry-process-box .section-footer-text {
		margin-top: 30px;
	}

	.team-about-content {
		padding: 30px;
	}

	.team-about-content,
	.team-member-expertise {
		margin-bottom: 40px;
	}

	.team-contact-list ul li {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.team-member-skill-list {
		padding: 30px;
	}

	.contact-us-content {
		min-height: auto;
		margin: 0 0 30px;
	}

	.contact-us-btn {
		margin-top: 30px;
	}

	.contact-us-form {
		padding: 30px;
	}
}

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

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

	.btn-default::before {
		right: 15px;
		width: 22px;
		height: 22px;
	}

	.readmore-btn {
		padding: 1px 28px 1px 0;
	}

	.readmore-btn::before {
		width: 22px;
		height: 22px;
		background-size: 14px auto;
	}

	header.main-header {
		top: 0px;
		right: 0px;
		left: 0px;
	}

	header.main-header .header-sticky {
		width: 100%;
		border-radius: 0;
	}

	header.main-header .header-sticky.active {
		width: 100%;
		left: 0;
		right: 0;
		transform: translateY(0);
		border-top: none;
		border-right: none;
		border-left: none;
		border-radius: 0;
	}

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

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.light-section .container-fluid {
		padding: 0 15px;
	}

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

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

	.section-title .section-sub-title {
		padding: 5px 12px 5px 26px;
		margin-bottom: 10px;
	}

	.section-title .section-sub-title::before {
		left: 12px;
	}

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

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

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

	.hero-sub-heading {
		padding: 5px 12px 5px 5px;
	}

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

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

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

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

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

	.satisfy-client-image.add-more h3 {
		font-size: 16px;
	}

	.satisfy-client-image.add-more i {
		font-size: 16px;
	}

	.our-scrolling-ticker {
		padding: 20px 0;
	}

	.scrolling-ticker-box {
		--gap: 20px;
	}

	.scrolling-content span {
		font-size: 22px;
	}

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

	.about-experience-item {
		padding: 20px;
		margin-right: -80px;
	}

	.about-experience-item .icon-box {
		height: 50px;
		width: 50px;
	}

	.about-experience-item .icon-box img {
		max-width: 24px;
	}

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

	.about-us-body-list ul li {
		margin-bottom: 10px;
	}

	.about-us-body-list ul li::before {
		font-size: 16px;
	}

	.about-us-author-box {
		gap: 10px;
	}

	.about-us-author-image figure img {
		max-width: 44px;
	}

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

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

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

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

	.what-we-item .icon-box {
		height: 50px;
		width: 50px;
	}

	.what-we-item .icon-box img {
		max-width: 24px;
	}

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

	.what-we-image-box-content {
		left: 30px;
		right: 30px;
	}

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

	.why-choose-info-box .watch-video-circle img {
		max-width: 110px;
	}

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

	.why-choose-info-list ul li {
		padding: 7px 16px;
	}

	.why-choose-item {
		margin-bottom: 20px;
	}

	.why-choose-item-title h2 {
		font-size: 38px;
	}

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

	.project-item {
		min-height: 360px;
	}

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

	.features-item-iamge figure {
		max-width: 160px;
	}

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

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

	.pricing-item-header .pricing-item-title {
		margin-bottom: 20px;
	}

	.pricing-item-header h2 {
		font-size: 38px;
	}

	.pricing-item-body {
		margin-top: 20px;
		padding-top: 20px;
	}

	.pricing-item-list h3 {
		margin-bottom: 20px;
	}

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

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

	.integrations-btn {
		margin-top: 30px;
	}

	.integrations-social-icon-list ul li a {
		height: 50px;
		width: 50px;
	}

	.integrations-add-more-item {
		height: 60px;
		width: 60px;
	}

	.integrations-social-icon-list ul li a i {
		font-size: 24px;
	}

	.integrations-add-more-item i {
		font-size: 30px;
	}

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

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

	.how-work-rating-box {
		left: 20px;
		right: 20px;
		bottom: 20px;
		padding: 20px;
	}

	.how-work-rating-header h2 {
		font-size: 26px;
	}

	.how-work-item {
		margin-bottom: 20px;
	}

	.how-work-item-no {
		height: 50px;
		width: 50px;
	}

	.how-work-item-no h2 {
		font-size: 26px;
	}

	.how-work-item-content {
		width: calc(100% - 70px);
		max-width: 85%;
	}

	.how-work-item .icon-box img {
		max-width: 80px;
	}



	.post-featured-image {
		margin-bottom: 20px;
	}

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

	.footer-working-hour-box {
		max-width: 40%;
	}

	.footer-cta-box {
		gap: 20px;
		border-radius: 20px;
	}

	.footer-cta-content-box {
		width: 100%;
		gap: 15px;
	}

	.footer-cta-content-box .icon-box {
		margin-bottom: 0;
	}

	.footer-cta-content-box .icon-box img {
		max-width: 40px;
	}

	.footer-cta-content {
		width: calc(100% - 55px);
	}

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

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

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

	.approach-item-header .icon-box {
		height: 50px;
		width: 50px;
	}

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

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

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

	.trusted-company-slider {
		padding: 0;
	}

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

	.team-item-body {
		padding: 20px;
	}

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

	.google-rating-info-header h2 {
		font-size: 22px;
	}

	.faq-accordion .accordion-header .accordion-button {
		padding: 18px 60px 18px 18px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		height: 40px;
		width: 40px;
		font-size: 20px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding: 18px;
	}

	.page-services {
		padding: 60px 0 30px;
	}

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

	.page-single-sidebar {
		position: initial;
		margin-bottom: 30px;
	}

	.page-category-list {
		margin-bottom: 30px;
	}

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

	.service-entry h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.service-benefits-list-item .icon-box {
		height: 50px;
		width: 50px;
	}

	.service-benefits-list-item .icon-box img {
		max-width: 24px;
	}

	.service-benefits-list-title {
		width: calc(100% - 65px);
	}

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

	.post-tags {
		margin-bottom: 20px;
	}

	.post-tags .tag-links a {
		padding: 12px 15px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.page-projects {
		padding: 60px 0 30px;
	}

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

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

	.project-entry h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.project-entry-implemented-accordion .accordion-item {
		margin-bottom: 15px;
	}

	.project-entry-implemented-accordion .accordion-header .accordion-button {
		padding: 0 20px 15px 0;
	}

	.project-entry-implemented-accordion .accordion-button::after,
	.project-entry-implemented-accordion .accordion-button.collapsed::after {
		font-size: 18px;
	}

	.project-entry-implemented-accordion .accordion-item .accordion-body {
		padding: 15px 20px 0 0;
	}

	.page-team {
		padding: 60px 0 30px;
	}

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

	.team-single-image figure img {
		aspect-ratio: 1 / 1;
	}

	.team-contact-list ul li span {
		font-size: 18px;
	}

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

	.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-body-list ul li {
		margin-bottom: 10px;
	}

	.contact-us-content-body-list ul li::before {
		font-size: 16px;
	}

	.contact-form .form-control {
		padding: 13px 15px;
	}

	.google-map {
		padding: 30px 0 60px;
	}

	.google-map-iframe {
		height: 450px;
	}

	.error-page {
		padding: 60px 0px;
	}

	.error-page-image {
		margin-bottom: 20px;
	}
}

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

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

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

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

	.hero-box {
		padding: 150px 0 60px;
	}

	.hero-sub-heading .satisfy-client-image figure img {
		max-width: 26px;
	}

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

	.video-play-button a {
		gap: 10px;
	}

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

	.hero-footer-item {
		width: 100%;
	}

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

	.our-scrolling-ticker {
		padding: 15px 0;
	}

	.scrolling-ticker-box {
		--gap: 15px;
	}

	.scrolling-content span {
		font-size: 20px;
	}

	.about-image-box {
		background-position: top 15px right 30px;
		background-size: 45px auto;
	}

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

	.about-us-image-box-2 .about-us-image figure {
		border-width: 3px;
	}

	.about-experience-item {
		gap: 10px;
		border-radius: 14px;
		margin: 20px -120px 20px 20px;
		padding: 15px;
	}

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

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

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

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

	.about-us-body-list {
		width: 100%;
		padding: 10px;
	}

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

	.service-item {
		padding: 20px;
		min-height: auto;
	}

	.service-item-content-box {
		gap: 20px;
	}

	.service-item-header {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

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

	.what-we-item-list {
		gap: 20px;
	}

	.what-we-item {
		width: 100%;
		padding: 15px;
	}

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

	.what-we-footer {
		gap: 20px;
	}

	.what-we-image {
		padding: 10px 10px 0 0;
	}

	.what-we-image::before {
		width: calc(100% - 20px);
		height: calc(100% - 20px);
		left: 20px;
		bottom: 20px;
	}

	.what-we-image img {
		aspect-ratio: 1 / 0.9;
	}

	.what-we-image-box-content {
		left: 20px;
		bottom: 20px;
		right: 20px;
	}

	.what-we-image-box-content h3 {
		font-size: 16px;
	}

	.why-choose-info-box .watch-video-circle {
		top: 20px;
		right: 20px;
	}

	.why-choose-info-box .watch-video-circle img {
		max-width: 80px;
	}

	.why-choose-info-list ul {
		gap: 10px;
	}

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

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

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

	.why-choose-item-title h2 {
		font-size: 26px;
	}

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

	.features-item {
		width: 100%;
		padding: 20px;
		gap: 20px;
	}

	.features-item-iamge figure {
		margin: 0 auto;
	}

	.features-item-iamge figure {
		max-width: 130px;
	}

	.pricing-item {
		padding: 20px;
	}

	.pricing-item-header .pricing-item-title {
		font-size: 18px;
	}

	.pricing-item-header h2 {
		font-size: 26px;
	}

	.pricing-item-header h2 sub {
		font-size: 14px;
	}

	.pricing-item-header p {
		margin: 15px 0 0;
	}

	.pricing-item-list h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

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

	.pricing-benefit-list ul {
		gap: 10px 15px;
	}

	.pricing-benefit-list ul li {
		font-size: 14px;
	}

	.pricing-benefit-list ul li img {
		margin-right: 5px;
	}

	.integrations-social-icon-list,
	.integrations-social-icon-list ul {
		gap: 10px;
	}

	.integrations-social-icon-list ul li a,
	.integrations-add-more-item {
		height: 40px;
		width: 40px;
	}

	.integrations-social-icon-list ul li a i,
	.integrations-add-more-item i {
		font-size: 20px;
	}

	.integrations-counter-item-list {
		gap: 30px 20px;
		margin-top: 30px;
		padding-top: 30px;
	}

	.integrations-counter-item {
		width: calc(50% - 10px);
	}

	.integrations-counter-item:before {
		right: -10px;
	}

	.integrations-counter-item:nth-child(4n + 4):before {
		display: block;
	}

	.integrations-counter-item:nth-child(2n + 2):before,
	.integrations-counter-item:last-child:before {
		display: none;
	}

	.integrations-counter-item h2 {
		font-size: 26px;
	}

	.integrations-counter-item p {
		font-size: 14px;
		margin: 5px 0 0;
	}

	.how-work-image figure img {
		aspect-ratio: 1 / 1.2;
	}

	.how-work-rating-box {
		left: 15px;
		bottom: 15px;
		right: 15px;
		padding: 15px;
		max-width: 100%;
	}

	.how-work-rating-header h2 {
		font-size: 22px;
	}

	.how-work-rating-info-content {
		margin-top: 10px;
	}

	.how-work-item {
		padding: 20px;
	}

	.how-work-item-no h2 {
		font-size: 22px;
	}

	.how-work-item-content {
		max-width: 100%;
	}

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

	.how-work-item .icon-box {
		top: -15px;
		right: -15px;
	}

	.how-work-item .icon-box img {
		max-width: 60px;
	}

	.post-featured-image {
		margin-bottom: 15px;
	}

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

	.post-item-content {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.main-footer:before {
		height: 110px;
	}

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

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

	.footer-contact-item ul li {
		font-size: 18px;
	}

	.footer-cta-box {
		padding: 15px;
		margin-top: 30px;
	}

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

	.footer-copyright {
		padding: 30px 0 15px;
		gap: 15px;
	}

	.page-header-box h1 {
		font-size: 28px;
	}

	.trusted-company-slider-box {
		margin-top: 10px;
	}

	.approach-item,
	.approach-cta-item {
		padding: 20px;
		gap: 20px;
	}

	.approach-cta-item-body {
		gap: 20px;
	}

	.approach-item-header .icon-box {
		margin-bottom: 20px;
	}

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

	.approach-item-list {
		padding-top: 20px;
	}

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

	.approach-cta-item-content ul li {
		font-size: 18px;
	}

	.trusted-company-slider-content {
		margin-bottom: 20px;
		gap: 10px;
	}

	.intro-video-image img {
		aspect-ratio: 1 / 0.8;
	}

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

	.faqs-iamge img {
		aspect-ratio: 1 / 1;
	}

	.google-rating-box {
		right: 20px;
		bottom: 20px;
		padding: 15px;
	}

	.google-rating-box .icon-box img {
		max-width: 40px;
	}

	.google-rating-info {
		width: calc(100% - 55px);
	}

	.google-rating-info-header h2 {
		font-size: 20px;
	}

	.google-rating-info-content p {
		margin-top: 5px;
	}

	.faq-accordion .accordion-header .accordion-button {
		padding: 12px 50px 12px 15px;
		font-size: 16px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		height: 30px;
		width: 30px;
		font-size: 18px;
	}

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

	.page-category-list .page-category-list-title {
		font-size: 18px;
	}

	.sidebar-cta-box {
		min-height: 280px;
	}

	.sidebar-cta-body h2 {
		font-size: 18px;
	}

	.sidebar-cta-contact-btn {
		margin-top: 20px;
	}

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

	.page-single-image img {
		aspect-ratio: 1 / 0.7;
	}

	.service-entry h2 {
		font-size: 26px;
	}

	.service-offer-list {
		margin-top: 20px;
	}

	.service-offer-list ul li {
		margin-bottom: 15px;
	}

	.service-offer-list ul li span {
		font-size: 18px;
	}

	.service-offer-images {
		gap: 20px;
	}

	.service-offer-image {
		width: 100%;
	}

	.service-benefits-list {
		gap: 20px;
	}

	.service-benefits-list-item {
		width: 100%;
		padding: 15px;
	}

	.service-benefits-list-title h3 {
		font-size: 18px;
	}

	.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 {
		Background-size: 30px;
		padding: 60px 20px 20px 20px;
	}

	.post-entry blockquote p {
		font-size: 16px;
	}

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

	.tag-links {
		font-size: 18px;
	}

	.project-entry h2 {
		font-size: 26px;
	}

	.project-entry-implemented-image {
		width: 100%;
	}

	.project-entry-implemented-image figure,
	.project-entry-implemented-image figure img {
		height: auto;
	}

	.project-entry-implemented-accordion {
		width: 100%;
	}

	.project-entry-implemented-accordion .accordion-header .accordion-button {
		font-size: 18px;
	}

	.project-entry-implemented-accordion .accordion-item .accordion-body {
		padding: 15px 0 0;
	}

	.project-entry-process-item {
		width: 100%;
	}

	.project-entry-process-item-header {
		margin-bottom: 20px;
	}

	.project-entry h3 {
		font-size: 18px;
	}

	.team-single-image figure img {
		aspect-ratio: 1 / 1.1;
	}

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

	.team-contact-list ul li {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.team-contact-list ul li span {
		font-size: 16px;
	}

	.team-contact-list .member-social-list {
		gap: 10px;
	}

	.team-contact-list .member-social-list a {
		height: 34px;
		width: 34px;
	}

	.team-contact-list .member-social-list a i {
		font-size: 16px;
	}

	.team-member-skill-list {
		padding: 20px;
	}

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

	.skills-progress-bar .skill-data {
		margin-bottom: 15px;
	}

	.contact-us-form {
		padding: 20px;
	}

	.google-map-iframe {
		height: 350px;
	}
}

.about-us-gold {
	padding: 120px 0;
}

.about-us-circle-gold {
	text-align: right;
}

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

.about-us-circle-gold a img {
	width: 100%;
	max-width: 120px;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
	animation: infiniterotategold 20s infinite linear;
}

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

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

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

.about-us-image-gold {
	height: 100%;
}

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

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

.about-us-content-gold {
	margin-left: 15px;
}

.about-us-item-list-gold {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

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

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

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

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

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

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

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

.about-us-content-body-gold {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.about-us-body-content-gold {
	width: calc(47% - 15px);
	align-content: center;
}

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

.about-us-body-list-gold ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 20px;
}

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

.about-us-body-list-gold 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;
}

.about-us-btn-gold {
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 30px;
}

.about-us-body-image-gold {
	width: calc(53% - 15px);
}

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

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

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

.service-item-gold {
	position: relative;
	border-radius: 20px;
	min-height: 400px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.service-item-gold::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--bg-color);
	border-radius: 20px;
	width: 100%;
	height: 100%;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}


.service-item-gold.active::before,
.service-item-gold:hover::before {
	transform: translate(100%, -100%);
}

.service-item-image-gold {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	opacity: 0;
	transition: all 0.4s ease-in-out;
}

.service-item-gold.active .service-item-image-gold,
.service-item-gold:hover .service-item-image-gold {
	opacity: 1;
}

.service-item-image-gold::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--primary-color);
	opacity: 50%;
}

.service-item-image-gold figure {
	display: block;
	height: 100%;
}

.service-item-image-gold figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.service-item-content-box-gold {
	position: relative;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	z-index: 2;
}

.service-item-content-box-gold .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--accent-color);
	border-radius: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
}

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

.service-item-gold.active .service-item-content-box-gold .icon-box::before,
.service-item-gold:hover .service-item-content-box-gold .icon-box::before {
	transform: rotate(0) scale(1);
}

.service-item-content-box-gold .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-item-gold.active .icon-box img,
.service-item-gold:hover .icon-box img {
	filter: brightness(0) invert(0);
}

.service-item-content-gold h2 {
	font-size: 20px;
	transition: all 0.4s ease-in-out;
}

.service-item-gold.active .service-item-content-gold h2,
.service-item-gold:hover .service-item-content-gold h2 {
	color: var(--white-color);
}

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

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

.service-item-gold.active .service-item-content-gold p,
.service-item-gold:hover .service-item-content-gold p {
	color: var(--white-color);
}

.service-item-btn-gold {
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	margin-top: 30px;
	transition: all 0.4s ease-in-out;
}

.service-item-btn-gold .readmore-btn {
	transition: all 0.4s ease-in-out;
}

.service-item-gold.active .service-item-btn-gold,
.service-item-gold:hover .service-item-btn-gold {
	border-color: var(--dark-divider-color);
}

.service-item-gold.active .service-item-btn-gold .readmore-btn,
.service-item-gold:hover .service-item-btn-gold .readmore-btn {
	color: var(--white-color);
}

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

.why-choose-image-box-gold {
	position: relative;
	padding: 0 35px 50px;
}

.why-choose-image-gold {
	position: relative;
	z-index: 0;
}

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

.why-choose-image-gold figure:before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(243, 246, 252, 0.00) 0%, #F3F6FC 100%);
	width: 100%;
	height: 140px;
	z-index: 1;
}

.why-choose-image-gold figure img {
	width: 100%;
	aspect-ratio: 1 / 1.406;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-image-box-gold .about-us-circle-gold {
	position: absolute;
	top: 20px;
	right: 0;
	border: 6px solid var(--bg-color);
	border-radius: 50%;
}

.why-choose-cta-box-gold {
	position: absolute;
	left: 0;
	bottom: 0;
	display: flex;
	flex-wrap: wrap;
	background-color: var(--white-color);
	box-shadow: 0 0 20px 0 rgba(41, 37, 36, 0.06);
	border-radius: 10px;
	gap: 15px;
	padding: 20px;
	animation: cta-box-move 3s infinite linear;
}

@keyframes cta-box-move {
	50% {
		transform: translateX(20px);
	}
}

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

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

.why-choose-cta-box-gold:hover .icon-box::before {
	transform: rotate(0) scale(1);
}

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

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

.why-choose-cta-box-content-gold h2 {
	font-size: 20px;
}

.why-choose-cta-box-content-gold p {
	color: inherit;
	margin: 5px 0 0;
}

.why-choose-cta-box-content-gold p a {
	color: var(--text-color);
	transition: all 0.4s ease-in-out;
}

.why-choose-cta-box-content-gold p a:hover {
	color: var(--accent-color);
}

.why-choose-body-gold {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-body-item-list-gold {
	width: calc(60% - 15px);
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 35px;
}

.why-choose-body-item-gold {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
}

.why-choose-body-item-gold:last-child {
	border-bottom: none;
	padding-bottom: 0;
	margin-bottom: 0;
}

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

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

.why-choose-review-box-gold {
	width: calc(40% - 15px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 35px;
}

.why-choose-review-box-gold .satisfy-client-image figure img {
	max-width: 40px;
}

.why-choose-review-box-gold .satisfy-client-image.add-more {
	height: 42px;
	width: 42px;
}

.why-choose-review-content-box-gold {
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
}

.why-choose-review-header-gold {
	display: flex;
	align-items: center;
	gap: 5px;
	margin-bottom: 10px;
}

.why-choose-rating-star-gold {
	line-height: normal;
}

.why-choose-rating-star-gold i {
	font-size: 20px;
	color: var(--accent-color);
}

.why-choose-review-header-gold h2 {
	font-size: 30px;
}

.why-choose-review-header-gold h2 sub {
	font-size: 16px;
}

.why-choose-review-content-gold p {
	margin: 0;
}

.why-choose-btn-gold {
	margin-top: 40px;
}

.why-choose-slider-box-gold {
	margin-top: 80px;
}

.why-choose-slider-content-gold {
	color: var(--primary-color);
	font-weight: 600;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	margin-bottom: 40px;
	text-align: center;
}

.why-choose-slider-content-gold hr {
	height: 1px;
	flex-grow: 1;
	color: var(--divider-color);
	opacity: 1;
	margin: 0;
}

.why-choose-logo-slider-gold {
	max-width: 980px;
	margin: 0 auto;
}

.why-choose-logo-gold {
	text-align: center;
}

.why-choose-logo-gold img {
	width: 100%;
	max-width: 170px;
	height: 40px;
}

.our-projects-gold {
	padding: 120px 0;
}

.project-item-slider-gold {
	height: 100%;
}

.project-item-slider-gold .swiper {
	padding-bottom: 70px;
	height: 100%;
}

.project-item-gold {
	background: var(--secondary-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 10px;
	padding: 10px;
	height: 100%;
}

.project-item-image-gold {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.project-item-image-gold figure {
	display: block;
}

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

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

.project-item-btn-gold {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%) scale(0);
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.project-item-gold:hover .project-item-btn-gold {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%) scale(1);
}

.project-item-btn-gold a {
	display: block;
	background-color: var(--accent-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.project-item-btn-gold a:hover {
	background-color: var(--white-color);
}

.project-item-btn-gold a img {
	width: 100%;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
}

.project-item-btn-gold a:hover img {
	transform: rotate(45deg);
	filter: brightness(0) invert(0);
}

.Project-item-body-gold {
	padding: 20px;
}

.project-item-meta-gold {
	margin-bottom: 20px;
}

.project-item-meta-gold ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.project-item-meta-gold ul li a {
	display: block;
	font-size: 14px;
	font-weight: 500;
	border: 1px solid var(--divider-color);
	color: var(--primary-color);
	padding: 6px 16px 6px 16px;
	border-radius: 100px;
}

.project-item-content-gold h2 {
	font-size: 20px;
	line-height: 1.4em;
}

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

.project-item-slider-gold .project-pagination-gold {
	position: absolute;
	bottom: 0;
	text-align: center;
}

.project-item-slider-gold .project-pagination-gold .swiper-pagination-bullet {
	height: 10px;
	width: 10px;
	background: var(--divider-color);
	opacity: 1;
	margin: 0 5px;
	border-radius: 10px;
	transition: all 0.4s ease-in-out;
}

.project-item-slider-gold .project-pagination-gold .swiper-pagination-bullet-active {
	background: var(--accent-color);
	width: 34px;
}

.our-projects-gold .section-footer-text.section-satisfy-img {
	margin-top: 40px;
}

.our-features-gold {
	padding: 120px 0;
}

.features-item-gold {
	background-color: var(--bg-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 40px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

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

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

.features-item-gold:hover .features-item-header-gold .icon-box::before {
	transform: rotate(0) scale(1);
}

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

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

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

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

.features-item-list-gold ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

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

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

.features-item-list-gold 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;
}

.features-info-box-gold {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.features-info-item-gold {
	background-color: var(--primary-color);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	padding: 30px;
	overflow: hidden;
}

.features-info-content-gold {
	width: 79%;
}

.features-info-content-gold h2 {
	font-size: 18px;
	line-height: 1.4em;
	color: var(--white-color);
	margin-bottom: 30px;
}

.features-info-content-gold a {
	color: var(--white-color);
	font-weight: 600;
	text-decoration: underline;
	transition: all 0.4s ease-in-out;
}

.features-info-content-gold a:hover {
	color: var(--accent-color);
}

.features-info-image-gold {
	width: 21%;
	align-content: end;
}

.features-info-image-gold figure {
	max-width: 94px;
	display: block;
	border-radius: 10px;
	margin-bottom: -60px;
	margin-left: -20px;
}

.features-info-image-gold figure img {
	width: 100%;
	aspect-ratio: 1 / 1.49;
	object-fit: cover;
	border-radius: 10px;
}

.features-client-box-gold {
	min-height: 305px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	background-color: var(--bg-color);
	border-radius: 20px;
	padding: 30px;
}

.features-awards-image-gold {
	margin-bottom: 20px;
}

.features-awards-image-gold figure {
	max-width: 100px;
	display: block;
	border-radius: 20px;
}

.features-awards-image-gold figure img {
	width: 100%;
	border-radius: 20px;
}

.features-client-box-content-gold h2 {
	font-size: 20px;
}

.features-client-box-body-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
}

.features-client-box-body-gold .satisfy-client-images {
	width: calc(40% - 5px);
}

.features-client-body-content-gold {
	width: calc(60% - 5px);
	display: flex;
	align-items: center;
	gap: 10px;
}

.features-client-body-content-gold h2 {
	min-width: 100px;
	font-size: 38px;
}

.features-client-body-content-gold p {
	max-width: 100px;
	line-height: normal;
	margin: 0;
}

.features-item-image-gold {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.features-item-image-gold figure {
	display: block;
	border-radius: 20px;
	height: 100%;
}

.features-item-image-gold figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.201;
	object-fit: cover;
	border-radius: 20px;
}

.core-feature-footer-gold {
	max-width: 900px;
	margin: 30px auto 0;
}

.core-feature-footer-list-gold ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
}

.core-feature-footer-list-gold ul li {
	position: relative;
	background-color: var(--bg-color);
	font-weight: 500;
	line-height: 1.25em;
	color: var(--primary-color);
	border-radius: 100px;
	padding: 10px 16px 10px 32px;
	transition: all 0.4s ease-in-out;
}

.core-feature-footer-list-gold ul li:hover {
	background: var(--accent-color);
	color: var(--white-color);
}

.core-feature-footer-list-gold ul li::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	border-radius: 50%;
	width: 6px;
	height: 6px;
	transition: all 0.4s ease-in-out;
}

.core-feature-footer-list-gold ul li:hover::before {
	background: var(--white-color);
}

.our-pricing-gold {
	padding: 100px 0;
}

.pricing-item-gold {
	background-color: var(--white-color);
	border-radius: 20px;
	margin-bottom: 30px;
	padding: 10px;
}

.pricing-item-header-gold {
	padding: 25px 30px;
}

.pricing-item-header-gold h2 {
	font-size: 20px;
	line-height: 1.4em;
}

.pricing-item-body-gold {
	background-color: var(--bg-color);
	border-radius: 20px;
	padding: 40px;
}

.pricing-item-contant-gold h2 {
	font-size: 40px;
	letter-spacing: -0.02em;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 25px;
	padding-bottom: 25px;
}

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

.pricing-item-contant-gold p:last-child {
	margin: 0;
}

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

.pricing-item-list-gold {
	margin-top: 25px;
}

.pricing-item-list-gold h3 {
	font-size: 16px;
	line-height: 1.6em;
	margin-bottom: 0;
}

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

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

.pricing-item-list-gold 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;
}

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

.pricing-item-gold.highlighted-box {
	background-color: var(--accent-color);
}

.pricing-item-gold.highlighted-box .pricing-item-header-gold h2 {
	color: var(--white-color);
}

.pricing-item-gold.highlighted-box .pricing-item-body-gold {
	background-color: var(--secondary-color);
}

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

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

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

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

.how-we-works-gold {
	padding: 120px 0;
}

.how-works-item-list-gold {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 80px;
}

.how-works-item-gold {
	position: relative;
	align-content: center;
	min-height: 340px;
	width: calc(33.33% - 53.33px);
	text-align: center;
}

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

.how-works-item-gold:nth-child(3n + 3)::before,
.how-works-item-gold:last-child::before {
	display: none;
}

.how-works-item-no-gold {
	transform: translateY(20px);
	transition: all 0.5s ease-in-out;
}

.how-works-item-gold:hover .how-works-item-no-gold {
	transform: translateY(0);
}

.how-works-item-no-gold h2 {
	font-size: 120px;
	line-height: 0.9em;
	letter-spacing: -0.02em;
	background: linear-gradient(0deg, var(--primary-color) 0, rgba(255, 255, 255, 0.2) 100%);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-stroke: 2px transparent;
	transition: all 0.5s ease-in-out;
}

.how-works-item-gold:hover .how-works-item-no-gold h2 {
	color: transparent;
}

.how-works-item-content-gold {
	position: relative;
	z-index: 1;
}

.how-works-item-content-gold h3 {
	font-size: 20px;
	line-height: 1.4em;
	color: var(--white-color);
}

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

.how-works-item-content-gold ul {
	list-style: none;
	border-top: 1px solid var(--dark-divider-color);
	padding: 35px 0 0 0;
	margin: 35px 0 0 0;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.how-works-item-content-gold ul li {
	display: inline-block;
	position: relative;
	line-height: 1.6em;
	color: var(--white-color);
	padding-left: 20px;
	margin-bottom: 15px;
}

.how-works-item-content-gold ul li:last-child {
	margin-bottom: 0;
}

.how-works-item-content-gold ul li::before {
	content: "";
	position: absolute;
	width: 5px;
	height: 5px;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background-color: var(--accent-color);
	border-radius: 50%;
}

.how-we-works-gold .section-footer-text {
	margin-top: 60px;
}



.main-footer-gold {
	position: relative;
	background-image: url(../images/footer-bg-image-1.png);
	padding: 120px 0 0;
}

.main-footer-gold:before {
	position: absolute;
	content: '';
	right: 0;
	bottom: 0;
	left: 0;
	background-image: url(../images/footer-bg-image-2.png);
	background-repeat: repeat-x;
	background-position: right bottom;
	background-size: auto 100%;
	width: 100%;
	height: 200px;
	z-index: 1;
}

.main-footer-gold .container {
	position: relative;
	z-index: 2;
}

.about-footer-gold {
	margin-right: 20px;
}

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

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

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

.footer-links-box-gold {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(50px);
	-webkit-backdrop-filter: blur(50px);
	border-radius: 20px;
	padding: 40px;
}

.footer-links-gold {
	max-width: 26%;
}

.footer-links-gold h2 {
	position: relative;
	display: inline-block;
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 25px;
	padding-bottom: 25px;
}

.footer-links-gold h2::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 50%;
	height: 2px;
	background-color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.footer-links-gold:hover h2::before {
	background-color: var(--white-color);
	width: 100%;
}

.footer-links-gold ul {
	margin: 0;
	padding: 0 0 0 20px;
}

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

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

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

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

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

.footer-working-hours-box-gold {
	width: 100%;
	max-width: 40%;
}

.footer-links-gold.footer-working-hours-box-gold ul {
	list-style: none;
	padding-left: 0;
}

.footer-working-hours-box-gold ul li {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
}

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

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

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

	.header-action-gold {
		gap: 20px;
	}

	.header-contact-box-gold {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

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

	.about-us-image-gold {
		max-width: 740px;
		height: auto;
		margin: 0 auto 30px;
	}

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

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

	.about-us-content-gold {
		margin: 0;
	}

	.about-us-content-body-gold {
		margin-top: 30px;
		padding-top: 30px;
	}

	.service-item-gold {
		padding: 30px;
		min-height: 350px;
	}

	.why-choose-image-box-gold {
		max-width: 605px;
		margin: 0 auto 30px;
	}

	.why-choose-body-item-list-gold,
	.why-choose-review-box-gold {
		padding: 30px;
	}

	.why-choose-body-item-gold {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.why-choose-slider-box-gold {
		margin-top: 50px;
	}

	.why-choose-slider-content-gold {
		margin-bottom: 30px;
	}

	.features-item-gold {
		padding: 30px;
	}

	.features-info-item-gold {
		padding: 20px;
	}

	.features-client-box-gold {
		min-height: auto;
		padding: 20px;
	}

	.features-item-image-gold figure img {
		aspect-ratio: 1 / 0.6;
	}

	.how-works-item-list-gold {
		gap: 30px 40px;
	}

	.how-works-item-gold {
		width: calc(50% - 20px);
		min-height: auto;
	}

	.how-works-item-gold::before {
		right: -20px;
	}

	.how-works-item-gold:nth-child(3n + 3)::before {
		display: block;
	}

	.how-works-item-gold:nth-child(2n + 2)::before,
	.how-works-item-gold:last-child::before {
		display: none;
	}


	.about-footer-gold {
		margin: 0 0 30px;
	}

	.main-footer-gold:before {
		height: 130px;
	}

	.footer-links-box-gold {
		padding: 30px;
	}

	.footer-copyright-text-gold {
		padding: 30px 0;
		margin-top: 30px;
	}
}

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

	header.main-header.main-header-gold .navbar {
		padding: 20px 0;
	}

	.hero-gold {
		padding: 190px 0 60px;
	}

	.hero-sub-heading-gold {
		padding: 5px 12px 5px 5px;
	}

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

	.about-us-circle-gold a img {
		max-width: 100px;
	}

	.about-us-body-list-gold ul li {
		margin-bottom: 15px;
	}

	.about-us-body-list-gold ul li:before {
		font-size: 16px;
	}

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

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

	.why-choose-review-header-gold h2 {
		font-size: 26px;
	}

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

	.our-projects-gold {
		padding: 60px 0;
	}

	.project-item-slider-gold .swiper {
		padding-bottom: 50px;
	}

	.Project-item-body-gold {
		padding: 10px;
	}

	.project-item-meta-gold {
		margin-bottom: 15px;
	}

	.our-projects-gold .section-footer-text.section-satisfy-img {
		margin-top: 30px;
	}

	.our-features-gold {
		padding: 60px 0;
	}

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

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

	.features-client-body-content-gold h2 {
		min-width: 85px;
		font-size: 34px;
	}

	.core-feature-footer-list-gold ul {
		gap: 15px;
	}

	.core-feature-footer-list-gold ul li {
		font-size: 14px;
		padding: 8px 14px 8px 30px;
	}

	.core-feature-footer-list-gold ul li::before {
		left: 14px;
	}

	.core-feature-footer-gold {
		margin-top: 10px;
	}

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

	.pricing-item-header-gold {
		padding: 10px 20px 20px;
	}

	.pricing-item-body-gold {
		padding: 20px;
	}

	.pricing-item-contant-gold h2 {
		font-size: 34px;
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

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

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

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

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

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

	.how-we-works-gold {
		padding: 60px 0;
	}

	.how-works-item-no-gold h2 {
		font-size: 100px;
	}

	.how-works-item-content-gold ul {
		margin-top: 25px;
		padding-top: 25px;
	}

	.how-we-works-gold .section-footer-text {
		margin-top: 40px;
	}


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

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

	.footer-links-gold h2 {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.footer-links-gold ul li {
		margin-bottom: 10px;
	}

	.footer-working-hours-box-gold {
		max-width: 42%;
	}

	.footer-copyright-text-gold {
		padding: 30px 0;
	}
}

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

	.hero-gold {
		padding: 150px 0 60px;
	}

	.hero-sub-heading-gold .satisfy-client-image figure img {
		max-width: 24px;
	}

	.hero-satisfy-client-content-gold p {
		font-size: 14px;
	}

	.hero-btn-gold {
		gap: 20px;
	}

	.about-us-gold .about-us-circle-gold {
		display: none;
	}

	.about-us-circle-gold a img {
		max-width: 80px;
	}

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

	.about-us-item-gold .icon-box {
		margin-bottom: 20px;
	}

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

	.about-us-body-list-gold ul li {
		margin-bottom: 10px;
	}

	.about-us-body-content-gold {
		width: 100%;
	}

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

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

	.service-item-gold {
		padding: 20px;
		min-height: 300px;
	}

	.service-item-content-box-gold {
		gap: 20px;
	}

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

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

	.why-choose-image-box-gold .about-us-circle-gold {
		top: 10px;
	}

	.why-choose-cta-box-gold {
		padding: 15px;
	}

	.why-choose-cta-box-content-gold h2 {
		font-size: 18px;
	}

	.why-choose-body-item-list-gold {
		width: 100%;
		padding: 20px;
	}

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

	.why-choose-body-item-gold {
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.why-choose-review-box-gold {
		width: 100%;
		gap: 20px;
		padding: 20px;
	}

	.why-choose-review-content-box-gold {
		padding-top: 20px;
	}

	.why-choose-review-header-gold h2 {
		font-size: 22px;
	}

	.why-choose-slider-box-gold {
		margin-top: 30px;
	}

	.why-choose-slider-content-gold {
		gap: 10px;
		margin-bottom: 20px;
	}

	.why-choose-logo-gold img {
		max-width: 145px;
		height: 35px;
	}

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

	.features-item-gold {
		padding: 20px;
		gap: 20px;
	}

	.features-item-header-gold .icon-box {
		margin-bottom: 20px;
	}

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

	.features-item-list-gold {
		padding-top: 20px;
	}

	.features-info-image-gold figure {
		margin-bottom: -50px;
	}

	.features-client-box-gold {
		gap: 20px;
	}

	.features-client-box-content-gold h2 {
		font-size: 18px;
	}

	.features-client-box-body-gold {
		padding-top: 20px;
	}

	.features-client-body-content-gold h2 {
		min-width: 75px;
		font-size: 28px;
	}

	.core-feature-footer-list-gold ul {
		gap: 10px;
	}

	.core-feature-footer-list-gold ul li {
		padding: 8px 10px 8px 24px;
	}

	.core-feature-footer-list-gold ul li::before {
		left: 10px;
	}

	.pricing-item-header-gold h2 {
		font-size: 18px;
	}

	.pricing-item-contant-gold h2 {
		font-size: 28px;
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.pricing-item-btn-gold,
	.pricing-item-list-gold {
		margin-top: 20px;
	}

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

	.pricing-benefit-list-gold ul {
		font-size: 14px;
		gap: 10px;
	}

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

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

	.pricing-benefit-list-gold ul li img {
		max-width: 16px;
		margin-right: 5px;
	}

	.how-works-item-list-gold {
		gap: 30px;
	}

	.how-works-item-gold {
		width: 100%;
	}

	.how-works-item-gold::before {
		display: none;
	}

	.how-works-item-no-gold h2 {
		font-size: 80px;
	}

	.how-works-item-content-gold ul {
		margin-top: 15px;
		padding-top: 15px;
	}

	.main-footer-gold:before {
		height: 110px;
	}

	.footer-links-box-gold {
		padding: 20px;
	}

	.footer-links-gold {
		max-width: 100%;
	}

	.footer-links-gold h2 {
		font-size: 18px;
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.footer-copyright-text-gold {
		padding: 15px 0;
	}
}

/************************************/
/***  35. Home - Version 3 css    ***/
/************************************/

.hero-prime {
	position: relative;
	align-content: center;
	padding: 350px 0 330px;
	/* padding: 280px 0 250px; */
	overflow: hidden;
}

.hero-prime-inner {
	position: relative;
	align-content: center;
	padding: 240px 0 240px;
	/* padding: 280px 0 250px; */
	overflow: hidden;
}

.hero-prime-inner .section-title h1 {
	text-align: left !important;
}

.hero-prime-inner .hero-content-body-prime {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
	align-items: center;
	gap: 20px 50px;
}

/* .hero-prime::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(270deg, transparent 0%, var(--primary-color) 150%);
	height: 100%;
	width: 100%;
	z-index: 1;
} */

.hero-bg-video-prime-inner {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('../images/bg/sub-bg.png') center center / cover no-repeat;
	z-index: 0;
}

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

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

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


.hero-prime .section-title h1 {
	font-size: 45px;
	text-align: right;
	/* color: #c9a963; */
	color: #c9a963;
	text-shadow: 2px 2px 5px #000;
}

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

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

.video-play-button-prime 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-prime a span.bg-effect:before,
.video-play-button-prime a span.bg-effect:after {
	content: '';
	position: absolute;
	width: 160%;
	height: 160%;
	border: 25px solid var(--white-color);
	opacity: 50%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button-prime a span.bg-effect:after {
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

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

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

.hero-prime .company-supports-slider-prime {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 40px;
	margin-top: 150px;
}

.company-supports-logo-prime {
	text-align: center;
}

.company-supports-logo-prime img {
	width: 100%;
	max-width: 200px;
	height: 40px;
}

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

.about-us-image-box-prime {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-start;
	justify-content: flex-end;
	padding-left: 0px;
	margin-right: 0px;
	margin-top: 60px;
}

.service-top {
	display: flex;
	gap: 20px;
}

.service-top a {
	color: inherit;
}

.about-us-image-prime.image-1 {
	position: relative;
	width: 85%;
	height: 78%;
	z-index: 1;
}

.about-us-image-prime.image-1:before {
	content: '';
	position: absolute;
	top: 40px;
	left: -40px;
	bottom: 0;
	width: 100%;
	height: calc(100% - 40px);
	background: #f5f1e8;
	border-radius: 20px;
}

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

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

.about-us-image-prime.image-1 figure {
	height: 100%;
}

.about-us-image-prime.image-1 figure img {
	height: 100%;
	aspect-ratio: 1 / 1.175;
}


.about-content-prime {
	height: 100%;
	margin-left: 15px;

}

.about-body-content-prime {
	margin-top: 0px;
}

.about-body-content-prime p {
	line-height: 30px;
	text-align: justify;
	font-size: 18px;
}

.about-body-content-prime p:last-child {
	margin-bottom: 0;
}

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

.about-us-author-box-prime {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

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

.about-us-author-image-prime figure img {
	width: 100%;
	max-width: 50px;
}

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

.about-us-author-content-prime p {
	line-height: normal;
	margin: 5px 0 0;
}

.our-services-prime {
	background-image: url(../images/service-bg-image.png);
	background-repeat: no-repeat;
	background-position: bottom center;
	background-size: auto;
	padding: 30px 0 40px;
}

.service-item-prime {
	position: relative;
	background-color: var(--bg-color);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 0px;
	min-height: 300px;
	height: calc(100% - 50px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
	border: 2px solid lab(88.426% -.0113547 1.90792);
}

.service-item-prime:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	border-radius: 0px;
	background: #0f6b63;
	border-radius: 999px 999px 0 0;
	transition: all 0.4s ease-in-out;
	height: 100%;
	z-index: 0;
}

.service-item-prime:hover::before {
	top: 0;
	border-radius: 0;
}

.servie-item-body-prime,
.service-item-prime .icon-box {
	position: relative;
	z-index: 1;
}

.service-item-prime .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	background: #0f6b63;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 15px;
}

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

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

.service-item-prime .icon-box img {
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

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

.service-item-contant-prime h2 {
	position: relative;
	display: inline-block;
	font-size: 24px;
	padding-bottom: 20px;
	margin-bottom: 20px;
	line-height: 32px;
	transition: all 0.4s ease-in-out;
}

.service-item-contant-prime h2::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100px;
	height: 2px;
	background-color: #c9a963;
	transition: all 0.4s ease-in-out;
}

.service-item-prime:hover .service-item-contant-prime h2::before {
	background-color: var(--white-color);
	width: 100%;
}

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

.service-item-prime:hover .service-item-contant-prime h2 {
	color: var(--white-color);
}

.service-item-contant-prime p {
	margin: 0;
	text-align: left;
	font-size: 18px;
	line-height: 32px;
	transition: all 0.4s ease-in-out;
}

.service-item-prime:hover .service-item-contant-prime p {
	color: var(--white-color);
}

.service-item-btn-prime {
	margin-top: 20px;
	text-align: center;
}

.service-item-prime .readmore-btn {
	transition: all 0.4s ease-in-out;
}

.service-item-prime:hover .readmore-btn {
	color: var(--white-color);
}

.service-item-prime:hover .readmore-btn::before {
	background-color: var(--white-color);
	background-image: url('../images/arrow-accent.png');
}


.main-footer-prime {
	position: relative;
	padding: 40px 0 0;
}

.main-footer-prime:before {
	position: absolute;
	content: '';
	right: 0;
	bottom: 0;
	left: 0;
	/* background-image: url(../images/footer-bg-image-2.png); */
	background-repeat: repeat-x;
	background-position: right bottom;
	background-size: auto 100%;
	width: 100%;
	height: 200px;
}

.main-footer-prime .container {
	position: relative;
	z-index: 1;
}



.footer-contact-links-prime ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: end;
}

.footer-contact-links-prime ul li {
	font-family: "Open Sans", sans-serif;
	font-size: 30px;
	line-height: 1em;
	color: var(--white-color);
	margin-bottom: 15px;
}

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

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

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

.about-footer-prime {
	margin-right: 20px;
}

.about-footer-prime p {
	color: #0f6b63;
	font-size: 16px;
	line-height: 30px;
	margin-bottom: 10px;
}

.about-footer-prime p a {
	color: #0f6b63;
	font-size: 16px;
	line-height: 30px;
}

.about-footer-prime p a:hover {
	color: #c9a963;
}

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

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

.about-footer-content-prime p {
	color: var(--white-color);
}

.about-footer-content-prime p:last-child {
	margin: 0;
}

.footer-social-links-prime {
	margin-top: 40px;
}

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

.footer-social-links-prime ul li a {
	width: 40px;
	height: 40px;
	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-prime ul li a:hover {
	background: var(--accent-color);
}

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

.footer-links-box-prime {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}


.footer-links-prime h2 {
	font-size: 25px;
	color: #c9a963;
	font-weight: 700;
	margin-bottom: 30px;
}

.footer-links-prime ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-copyright-text-prime p a {
	color: #c9a963;
	font-weight: 600;
}

.footer-links-prime ul li {
	position: relative;
	color: #0f6b63;
	line-height: 1.5em;
	margin-bottom: 12px;
}

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

.footer-links-prime ul li a {
	color: inherit;
	font-size: 17px;
	transition: all 0.3s ease-in-out;
}

.footer-links-prime ul li a:hover {
	color: #c9a963;
}

.footer-newsletter-form-prime {
	max-width: 38%;
}

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

.footer-newsletter-form-prime .form-group {
	display: flex;
}

.footer-newsletter-form-prime .form-control {
	width: calc(100% - 50px);
	font-size: 16px;
	font-weight: 400;
	line-height: normal;
	color: var(--white-color);
	background: var(--dark-divider-color);
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: none;
	border-radius: 100px;
	outline: none;
	box-shadow: none;
	padding: 14px 24px;
}

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

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

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

.footer-newsletter-form-prime .newsletter-btn img {
	font-size: 24px;
	transition: all 0.4s ease-in-out;
}

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

.footer-copyright-text-prime {
	text-align: center;
	border-top: 1px solid var(--dark-divider-color);
	padding: 10px 8px;
	margin-top: 0px;
	background-color: #0F6B63;
}

.footer-copyright-text-prime p {
	color: #fff;
	margin: 0;
}

.main-footer-prime {
	position: relative;
	padding: 40px 0 0;
	overflow: hidden;
	border-top: 1px solid var(--divider-color);
}

.main-footer-prime::before {
	pointer-events: none;
}

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

	.about-us-image-box-prime {
		max-width: 740px;
		margin: 0 auto 30px;
	}

	.about-us-image-box-prime,
	.about-us-image-prime.image-1,
	.about-us-image-prime.image-1 figure,
	.about-us-image-prime.image-1 figure img {
		height: auto;
	}

	.about-us-image-prime.image-1 figure img {
		aspect-ratio: 1 / 1.1;
	}

	.service-item-prime {
		min-height: 360px;
		padding: 30px;
	}

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

	.why-choose-us-image-prime {
		max-width: 740px;
		height: auto;
		margin: 0 auto 30px;
	}

	.why-choose-us-image-prime figure,
	.why-choose-us-image-prime img {
		height: auto;
	}

	.why-choose-us-image-prime img {
		aspect-ratio: 1 / 1.02;
	}

	.impact-image-box-prime {
		max-width: 740px;
		margin: 0 auto 30px;
	}

	.impact-item-prime {
		min-height: 290px;
	}

	.what-we-do-content-prime {
		margin-bottom: 30px;
	}

	.what-we-do-footer-list-prime {
		margin-top: 30px;
		padding-top: 30px;
	}

	.what-we-do-image-box-prime {
		max-width: 740px;
		margin: 0 auto;
	}

	.cta-contact-form-box-prime {
		padding: 30px;
	}

	.main-footer-prime:before {
		height: 130px;
	}

	.footer-header-prime {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.about-footer-prime {
		margin: 0 0 30px;
	}

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

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

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

	.footer-links-prime ul li {
		margin-bottom: 10px;
	}

	.footer-newsletter-form-prime p {
		margin-bottom: 20px;
	}

	.footer-copyright-text-prime {
		padding: 30px 0;
		margin-top: 30px;
	}
}

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

	.hero-prime {
		padding: 200px 0 30px;
	}

	.hero-prime .section-title h1 {
		font-size: 48px;
	}

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

	.hero-content-body-prime .video-play-button-prime a span {
		width: 46px;
		height: 46px;
	}

	.hero-content-body-prime .video-play-button-prime a span.bg-effect:before,
	.hero-content-body-prime .video-play-button-prime a span.bg-effect:after {
		width: 150%;
		height: 150%;
	}

	.hero-prime .company-supports-slider-prime {
		padding-top: 30px;
		margin-top: 120px;
	}

	.company-supports-logo-prime img {
		max-width: 150px;
		height: 35px;
	}

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

	.about-body-content-prime {
		margin-top: 30px;
	}

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

	.about-us-author-image-prime figure img {
		max-width: 44px;
	}

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

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

	.service-item-contant-prime h2 {
		margin-bottom: 20px;
	}


	.why-choose-us-body-prime {
		margin-top: 0;
	}

	.why-choose-item-list-prime {
		width: calc(100% - 170px);
	}

	.why-choose-item-prime .icon-box {
		width: 50px;
		height: 50px;
	}

	.why-choose-item-prime .icon-box img {
		max-width: 24px;
	}

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

	.get-in-touch-circle-prime img {
		max-width: 130px;
	}

	.why-choose-us-footer-prime {
		gap: 20px 30px;
		margin-top: 30px;
		padding-top: 30px;
	}



	.client-satisfaction-box-prime::before {
		width: 50px;
		left: -50px;
	}

	.impact-content-list-prime {
		margin-bottom: 30px;
	}

	.impact-content-list-prime ul li {
		margin-bottom: 10px;
	}

	.impact-content-list-prime ul li:before {
		font-size: 16px;
	}

	.impact-item-counter-no-prime h2 {
		font-size: 38px;
	}



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

	.what-we-do-footer-list-prime ul li {
		margin-bottom: 10px;
	}

	.what-we-do-footer-list-prime ul li:before {
		font-size: 16px;
	}

	.our-team-prime {
		padding: 60px 0;
	}

	.team-social-link-prime {
		border-width: 3px;
		height: 50px;
		width: 50px;
	}

	.team-social-link-prime img {
		max-width: 20px;
	}

	.team-social-icon-prime {
		bottom: 10px;
	}

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

	.pricing-item-prime {
		padding: 10px;
	}

	.pricing-item-content-prime .pricing-item-title-prime {
		margin-bottom: 10px;
	}

	.pricing-item-content-prime p {
		margin-bottom: 20px;
	}

	.pricing-item-content-prime h2 {
		font-size: 38px;
	}

	.pricing-item-content-prime h2 sup {
		top: -0.9em;
	}

	.pricing-item-body-prime {
		padding: 20px;
	}

	.pricing-item-body-prime h3 {
		margin-bottom: 20px;
	}

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

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

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

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

	.pricing-item-btn-prime .btn-default {
		padding: 15px;
	}



	.cta-box-image-prime {
		position: initial;
		height: auto;
		margin-bottom: 30px;
	}

	.cta-box-image-prime figure::before {
		display: none;
	}

	.cta-box-image-prime figure,
	.cta-box-image-prime figure img {
		height: auto;
		border-radius: 20px;
	}

	.cta-box-image-prime figure img {
		aspect-ratio: 1 / 0.66;
	}

	.cta-contact-form-box-prime {
		max-width: 100%;
	}

	.cta-contact-form-box-prime .contact-form-btn .btn-default {
		padding: 15px;
	}

	.faq-contact-btn-prime .icon-box {
		height: 40px;
		width: 40px;
		margin-right: 10px;
	}

	.faq-contact-btn-prime .icon-box img {
		max-width: 20px;
	}

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

	.faq-accordion-prime .accordion-header .accordion-button {
		padding: 15px 45px 15px 20px;
	}

	.faq-accordion-prime .accordion-item .accordion-button::after,
	.faq-accordion-prime .accordion-item .accordion-button.collapsed::after {
		font-size: 18px;
		right: 20px;
	}

	.faq-accordion-prime .accordion-item .accordion-body {
		padding: 15px 20px;
	}

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

	.footer-header-prime .section-title {
		max-width: 450px;
	}

	.footer-contact-links-prime ul li {
		font-size: 24px;
	}
}

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

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

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

	.hero-content-body-prime .video-play-button-prime {
		margin-left: 10px;
	}

	.hero-content-body-prime .video-play-button-prime p {
		font-size: 14px;
	}

	.about-us-image-box-prime {
		padding-left: 25px;
	}

	.about-us-image-prime.image-1:before {
		left: -25px;
	}

	.about-us-image-prime.image-2 {
		bottom: 30px;
	}

	.about-us-image-prime.image-2 figure {
		border-width: 4px;
		border-radius: 20px;
		margin-left: -115px;
	}


	.about-body-item-title-prime h3 {
		font-size: 18px;
	}

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

	.service-item-prime {
		padding: 20px;
		gap: 20px;
		min-height: auto;
	}

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

	.service-item-btn-prime {
		margin-top: 20px;
	}

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

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

	.why-choose-us-body-prime .get-in-touch-circle-prime {
		display: none;
	}

	.get-in-touch-circle-prime img {
		max-width: 100px;
	}

	.client-satisfaction-box-prime {
		gap: 10px;
	}

	.client-satisfaction-box-prime .satisfy-client-image figure img {
		max-width: 34px;
	}

	.client-satisfaction-box-content-prime {
		max-width: 120px;
	}

	.client-satisfaction-box-content-prime p {
		font-size: 14px;
	}

	.impact-item-prime {
		width: 100%;
		min-height: auto;
		padding: 20px;
		gap: 20px;
	}

	.impact-item-counter-no-prime h2 {
		font-size: 28px;
	}

	.impact-item-content-prime {
		padding-top: 20px;
	}

	.impact-item-content-prime h3 {
		font-size: 18px;
	}

	.what-we-do-item-list-prime {
		gap: 20px;
	}

	.what-we-do-item-prime {
		width: calc(50% - 10px);
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}

	.what-we-do-item-content-prime {
		width: 100%;
	}

	.what-we-do-item-content-prime h3 {
		font-size: 16px;
	}

	.what-we-do-image-box-prime {
		gap: 10px;
	}

	.what-we-do-image-prime {
		width: calc(50% - 5px);
	}

	.team-item-content-prime {
		padding: 10px;
	}

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

	.pricing-item-header-prime .icon-box {
		margin-bottom: 20px;
	}

	.pricing-item-content-prime .pricing-item-title-prime {
		font-size: 18px;
	}

	.pricing-item-content-prime h2 sup {
		font-size: 14px;
		top: -0.7em;
	}

	.pricing-item-content-prime h2 {
		font-size: 28px;
	}

	.pricing-item-content-prime h2 sub {
		font-size: 14px;
	}

	.pricing-item-body-prime h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

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

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

	.cta-contact-form-box-prime {
		padding: 20px;
	}

	.faq-contact-btn-prime a {
		font-size: 18px;
	}

	.faq-contact-btn-prime .icon-box {
		height: 34px;
		width: 34px;
	}

	.faq-contact-btn-prime .icon-box img {
		max-width: 18px;
	}

	.faq-accordion-prime .accordion-header .accordion-button {
		font-size: 16px;
		padding: 12px 40px 12px 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: 12px 15px;
	}

	.main-footer-prime:before {
		height: 110px;
	}

	.footer-contact-links-prime ul {
		text-align: start;
	}

	.footer-contact-links-prime ul li {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.footer-links-prime {
		max-width: 100%;
	}

	.footer-links-prime h2 {
		margin-bottom: 15px;
	}

	.footer-copyright-text-prime {
		padding: 15px 0;
	}
}

.international-section {
	position: relative;
	overflow: hidden;
	padding: 50px 0 40px;
	/* background: #0f6b63; */
	background: url('../images/bg/banner-bg.avif');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

.international-content {
	position: relative;
}

.international-section::before {
	content: '';
	background-color: #000;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0.6;
}

.international-container {
	margin: auto;
	display: flex;
	grid-template-columns: 1fr 1fr;
	align-items: center;
	gap: 50px;
}

/* Globe */

.globe-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
}

.international-content h2 {
	text-align: left;
	color: #fff;
}

.globe {
	width: 330px;
	height: 330px;
	position: relative;

	background:
		url('../images/bg/globe.png') center/cover no-repeat;

}


@keyframes pulse {
	0% {
		transform: scale(1);
		opacity: 0.5;
	}

	50% {
		transform: scale(1.05);
		opacity: 1;
	}

	100% {
		transform: scale(1);
		opacity: 0.5;
	}
}

.international-content p {
	color: #fff;
	font-size: 18px;
	line-height: 35px;
	text-align: justify;
}

.blur-right {
	bottom: -120px;
	right: -100px;
}

@media(max-width: 992px) {

	.international-container {
		grid-template-columns: 1fr;
		text-align: center;
	}

	.globe {
		width: 280px;
		height: 280px;
	}
}

.industries-section {
	position: relative;
	padding: 50px 0;
	overflow: hidden;
	background-color: #fff;
}

.industries-container {
	max-width: 1300px;
	margin: auto;
	position: relative;
	z-index: 2;
}


/* Grid */

.industries-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 28px;
}

.industry-card {
	position: relative;
	padding: 35px 30px;
	border-radius: 22px;
	background: #f5f1e869;
	border: 1px solid #0f6b63;
	backdrop-filter: blur(12px);
	transition: 0.4s ease;
	overflow: hidden;
}

.industry-card::before {
	content: "";
	position: absolute;
	width: 180px;
	height: 180px;
	background: rgba(209, 192, 157, 0.2);
	border-radius: 50%;
	top: -80px;
	right: -80px;
	transition: 0.5s;
}

.industry-card:hover {
	transform: translateY(-8px);
	border-color: rgba(255, 255, 255, 0.18);
	background: rgba(255, 255, 255, 0.07);
	box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.industry-card:hover::before {
	transform: scale(1.3);
}

.industry-number {
	font-size: 20px;
	color: #0f6b63;
	margin-bottom: 18px;
	display: block;
	font-weight: 500;
	letter-spacing: 2px;
}

.industry-name {
	font-size: 22px;
	line-height: 1.4;
	font-weight: 600;
	color: #000;
}


/* Responsive */

@media(max-width:1100px) {

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

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

@media(max-width:768px) {

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

	.section-title {
		font-size: 36px;
		margin-bottom: 50px;
	}

	.industry-name {
		font-size: 20px;
	}
}

.insights-section {
	padding: 40px 0;
	margin: auto;
	background-color: #fff;
}



/* Grid Layout */
.articles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	gap: 30px;
}

/* Featured Article */
.featured-card {
	grid-column: span 2;
	position: relative;
	overflow: hidden;
	border-radius: 24px;
	min-height: 520px;
	background: #000;
	color: #fff;
}

.featured-card img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	opacity: 0.55;
	transition: 0.4s ease;
}

.featured-card:hover img {
	transform: scale(1.05);
}

.featured-content {
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 40px;
	z-index: 2;
}

.featured-badge {
	display: inline-block;
	background: #c9a963;
	padding: 8px 16px;
	border-radius: 50px;
	font-size: 13px;
	margin-bottom: 18px;
	font-weight: 500;
	color: #000;
}

.featured-title {
	font-size: 36px;
	line-height: 1.3;
	margin-bottom: 18px;
	font-weight: 700;
	color: #fff;
}

.featured-text {
	font-size: 17px;
	line-height: 1.7;
	margin-bottom: 25px;
	text-align: justify;
}

.read-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 14px 26px;
	background: #fff;
	color: #111827;
	border-radius: 12px;
	text-decoration: none;
	font-weight: 600;
	transition: 0.3s ease;
}

.read-btn:hover {
	background: #c9a963;
	color: #fff;
}

/* Article Cards */
.article-card {
	background: #fff;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
	transition: 0.35s ease;
}

.article-card:hover {
	transform: translateY(-8px);
}

.article-card img {
	width: 100%;
	height: 240px;
	object-fit: cover;
}

.article-content {
	padding: 28px;
}

.article-category {
	font-size: 13px;
	font-weight: 700;
	color: #c9a963;
	margin-bottom: 14px;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.article-title {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.4;
	margin-bottom: 14px;
}

.article-text {
	color: #6b7280;
	line-height: 1.7;
	margin-bottom: 24px;
}

.article-link {
	text-decoration: none;
	color: #111827;
	font-weight: 700;
	transition: 0.3s;
}


@media(max-width:992px) {
	.featured-card {
		grid-column: span 1;
	}

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

	.featured-title {
		font-size: 30px;
	}
}

@media(max-width:600px) {
	.section-title {
		font-size: 30px;
	}

	.section-description {
		font-size: 16px;
	}

	.featured-content {
		padding: 28px;
	}

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

.final-cta {
	position: relative;
	overflow: hidden;
	padding: 50px 0;
	background:
		url('../images/bg/cta-bg.png');
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	color: #ffffff;
}

.cta-container {
	position: relative;
	z-index: 2;
	max-width: 1100px;
	margin: auto;
	text-align: center;
	padding: 30px 30px;

}


.cta-title {
	font-size: 48px;
	line-height: 1.15;
	font-weight: 600;
	margin-bottom: 28px;
	letter-spacing: 0px;
	color: #fff;
}

.cta-title span {
	color: #d6b36a;
}

.cta-description {
	max-width: 800px;
	margin: auto;
	font-size: 18px;
	line-height: 34px;
	color: #ffff;
	margin-bottom: 42px;
}

/* Buttons */

.cta-buttons {
	display: flex;
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
	position: relative;
	display: inline-block;
	background: #c9a963;
	border-radius: 100px;
	font-family: "Open Sans", sans-serif;
	font-size: 16px;
	font-weight: 600;
	line-height: 1em;
	letter-spacing: -0.02em;
	text-transform: capitalize;
	color: #fff;
	padding: 15px;
	/* border: 2px solid #0f6b63; */
	overflow: hidden;
	outline: none;
	transition: all 0.5s ease-in-out;
	z-index: 0;
}

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

.primary-btn:hover {
	color: #fff;
	background-color: #0f6b63;
}

.secondary-btn {
	border: 1px solid rgba(255, 255, 255, 0.15);
	color: #fff;
	background: rgba(255, 255, 255, 0.03);
}

.secondary-btn:hover {
	background: rgba(255, 255, 255, 0.08);
	transform: translateY(-4px);
}

/* Glow Effects */

.cta-glow {
	position: absolute;
	border-radius: 50%;
	filter: blur(90px);
	opacity: 0.18;
	z-index: 1;
}

.glow-1 {
	width: 320px;
	height: 320px;
	background: #d6b36a;
	top: -80px;
	left: -100px;
}

.glow-2 {
	width: 280px;
	height: 280px;
	background: #8b6b2f;
	bottom: -100px;
	right: -80px;
}

/* =========================
      RESPONSIVE
  ========================== */

@media(max-width:992px) {

	.cta-container {
		padding: 60px 35px;
	}

	.cta-title {
		font-size: 48px;
	}

}

@media(max-width:768px) {

	.cta-title {
		font-size: 38px;
	}

	.cta-description {
		font-size: 17px;
	}

	.primary-btn,
	.secondary-btn {
		width: 100%;
		text-align: center;
	}

}

@media(max-width:480px) {

	.cta-title {
		font-size: 30px;
		line-height: 1.3;
	}

	.cta-container {
		padding: 45px 24px;
		border-radius: 24px;
	}

}

.fixed-social-icons {
	position: fixed;
	right: 20px;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	flex-direction: column;
	gap: 12px;
	z-index: 999;
}

.fixed-social-icons a {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #fff;
	font-size: 18px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
	transition: all 0.3s ease;
}

.fixed-social-icons a:hover {
	transform: translateX(-5px) scale(1.1);
}

/* Individual Colors */
.fixed-social-icons .facebook {
	background: #1877f2;
}

.fixed-social-icons .instagram {
	background: linear-gradient(45deg,
			#f09433 0%,
			#e6683c 25%,
			#dc2743 50%,
			#cc2366 75%,
			#bc1888 100%);
}

.fixed-social-icons .twitter {
	background: #000;
}

.fixed-social-icons .linkedin {
	background: #0a66c2;
}

/* Mobile */
@media screen and (max-width: 768px) {
	.fixed-social-icons {
		right: 10px;
	}

	.fixed-social-icons a {
		width: 40px;
		height: 40px;
		font-size: 16px;
	}
}

.floating-whatsapp {
	position: fixed;
	right: 120px;
	bottom: 80px;
	width: 60px;
	height: 60px;
	background: #25d366;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 32px;
	text-decoration: none;
	z-index: 9;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.floating-whatsapp i {
	position: relative;
	z-index: 2;
}

/* Pulse Circle */
.whatsapp-pulse {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(37, 211, 102, 0.5);
	border-radius: 50%;
	animation: pulse-animation 2s infinite;
	z-index: 1;
}

@keyframes pulse-animation {
	0% {
		transform: scale(1);
		opacity: 0.8;
	}

	70% {
		transform: scale(1.6);
		opacity: 0;
	}

	100% {
		transform: scale(1.6);
		opacity: 0;
	}
}

/* Hover */
.floating-whatsapp:hover {
	transform: scale(1.08);
}

/* Mobile */
@media screen and (max-width: 768px) {
	.floating-whatsapp {
		width: 55px;
		height: 55px;
		font-size: 28px;
		right: 15px;
		bottom: 15px;
	}
}

/* SERVICE SLIDER */

.service-slider {
	width: 100%;
	overflow: hidden;
	padding-bottom: 60px;
	position: relative;
}

.service-slider .swiper-wrapper {
	display: flex;
}

.service-slider .swiper-slide {
	flex-shrink: 0;
	height: auto;
}

.service-slider .service-item-prime {
	height: 100%;
}

.service-slider .swiper-pagination {
	margin-top: 30px;
	position: relative;
}

.service-slider .swiper-pagination-bullet-active {
	background: #0b7a75;
}


.extra-industries {
	display: none;
	content: "";
}

.extra-industries.show {
	display: contents;
}

.toggle-card {
	cursor: pointer;
	user-select: none;
}


/* Disable scroll while popup is open */
body.modal-open {
	overflow: hidden;
}

/* Overlay */
.disclaimer-overlay {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.65);
	display: flex;
	justify-content: center;
	align-items: center;
	z-index: 999999;
	padding: 20px;
}

.disclaimer-box {
	width: 100%;
	max-width: 900px;
	max-height: 75vh;
	/* Adjust as needed */
	background: #fff;
	padding: 35px;
	border-radius: 4px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
	animation: fadeInUp .4s ease;
	overflow-y: auto;
}

/* Chrome, Edge, Safari */
.disclaimer-box::-webkit-scrollbar {
	width: 8px;
}

.disclaimer-box::-webkit-scrollbar-track {
	background: #f1f1f1;
	border-radius: 10px;
}

.disclaimer-box::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 10px;
}

.disclaimer-box::-webkit-scrollbar-thumb:hover {
	background: #555;
}

/* Firefox */
.disclaimer-box {
	scrollbar-width: thin;
	scrollbar-color: #888 #f1f1f1;
}

.disclaimer-box h2 {
	margin: 0;
	font-size: 28px;
	font-weight: 700;
	color: #000;
}

.divider {
	height: 1px;
	background: #0d6b64;
	margin: 15px 0 15px;
}

.disclaimer-box p {
	font-size: 15px;
	line-height: 1.9;
	text-align: justify;
	margin-bottom: 15px;
}

.disclaimer-box ul {
	margin: 15px 0;
	padding-left: 20px;
}

.disclaimer-box ul li {
	margin-bottom: 12px;
	line-height: 1.8;
}

/* Button Area */
.popup-btn {
	text-align: right;
}

.popup-btn button {
	background: #0d6b64;
	color: #fff;
	border: none;
	padding: 12px 35px;
	font-size: 14px;
	font-weight: 500;
	border-radius: 100px;
	cursor: pointer;
	transition: all .3s ease;
}

.popup-btn button:hover {
	background: #c9a963;
	color: #000;
}

/* Animation */
@keyframes fadeInUp {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}

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

/* Responsive */
@media (max-width: 768px) {

	.disclaimer-box {
		padding: 20px;
	}

	.disclaimer-box h2 {
		font-size: 22px;
	}

	.disclaimer-box p,
	.disclaimer-box li {
		font-size: 13px;
	}

	.popup-btn {
		text-align: center;
	}

	.popup-btn button {
		width: 100%;
	}

	.disclaimer-overlay {
		padding: 30px;
	}
}

.testimonial-section {
	padding: 20px 0;
	background: #fff;
}

.testimonial-section .section-title {
	text-align: center;
	margin-bottom: 50px;
}

.testimonial-slider {
	margin: 0 -15px;
}

.testimonial-card {
	background: #fff;
	border-radius: 20px;
	padding: 35px;
	margin: 15px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
	min-height: 280px;
	display: flex !important;
	flex-direction: column;
	justify-content: space-between;
	transition: .3s;
	border: 1px solid #e5e7eb;
}

.testimonial-card:hover {
	transform: translateY(-8px);
}

.testimonial-card p {
	font-size: 16px;
	line-height: 1.8;
	text-align: justify;
}

.testimonial-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid #e5e7eb;
	padding-top: 20px;
}

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

.author img {
	width: 70px;
	height: 70px;
	border-radius: 50%;
	object-fit: cover;
}

.author h4 {
	margin: 0;
	font-size: 18px;
	font-weight: 700;
}

.quote-icon {
	width: 70px;
}

.slick-dots {
	display: none !important;
}


@media(max-width:768px) {

	.testimonial-section {
		padding: 60px 0;
	}

	.testimonial-card {
		min-height: auto;
		padding: 25px;
	}

	.quote-icon {
		align-self: flex-end;
	}
}

.about-content-inner {
	margin-top: 40px;
	margin-bottom: 40px;
}

.about-content-inner .about-us-image-box-prime {
	float: left;
	margin-right: 50px;
	margin-top: 0;
}

.about-content-inner .about-content-prime ul li {
	font-size: 18px;
	line-height: 30px;
}

.about-content-inner .about-content-prime p {
	margin-bottom: 25px;
}

.footer-logo-prime {
	margin-bottom: 10px;
}

.contact-section {
	margin-bottom: 50px;
}

.contact-section p {
	line-height: 30px;
	text-align: center;
	font-size: 18px;
}

.ip-consultation {
	padding: 40px 20px;
	background: linear-gradient(to bottom,
			#f8f7f4 0%,
			#ffffff 100%);
}


.section-heading {
	text-align: center;
	max-width: 800px;
	margin: 0 auto 70px;
}

.section-heading span {
	color: #b78b4f;
	font-size: 13px;
	letter-spacing: 3px;
	font-weight: 600;
	text-transform: uppercase;
}

.section-heading h2 {
	font-size: 48px;
	color: #162235;
	margin: 20px 0;
	line-height: 1.2;
}

.section-heading p {
	color: #667085;
	line-height: 1.8;
}

/* Layout */

.consultation-layout {
	display: grid;
	grid-template-columns: 1.5fr 550px;
	gap: 40px;
	align-items: start;
}

/* Timeline */

.services-timeline {
	position: relative;
	padding-left: 35px;
}

.services-timeline::before {
	content: '';
	position: absolute;
	left: 11px;
	top: 0;
	width: 2px;
	height: 100%;
	background: #d9d9d9;
}

.ip-consultation .text-left {
	text-align: left;
}

.timeline-item {
	position: relative;
	margin-bottom: 40px;
}

.timeline-dot {
	width: 24px;
	height: 24px;
	border: 4px solid #b78b4f;
	background: white;
	border-radius: 50%;
	position: absolute;
	left: -35px;
	top: 5px;
	transition: 0.3s;
}

.timeline-item:hover .timeline-dot {
	background: #b78b4f;
}

.timeline-content {
	background: white;
	padding: 15px 25px;
	border-radius: 18px;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.05);
	transition: 0.3s;
}

.timeline-content:hover {
	transform: translateY(-5px);
}

.timeline-content h4 {
	color: #0f6b63;
	margin-bottom: 10px;
	font-size: 20px;
}

.timeline-content p {
	color: #667085;
	line-height: 1.7;
	text-align: left;
	text-align: 18px;
	margin-bottom: 0;
}

/* Consultation Card */

.consult-card {
	position: sticky;
	top: 120px;
	background: #162235;
	color: white;
	padding: 50px 40px;
	border-radius: 28px;
	overflow: hidden;
}

.consult-card::before {
	content: '';
	position: absolute;
	width: 250px;
	height: 250px;
	background: rgba(183, 139, 79, 0.1);
	border-radius: 50%;
	top: -100px;
	right: -100px;
}

.consult-label {
	display: inline-block;
	padding: 8px 18px;
	border-radius: 30px;
	background: rgba(255, 255, 255, 0.08);
	color: #d6a868;
	font-size: 13px;
	margin-bottom: 25px;
}

.consult-card h3 {
	font-size: 34px;
	line-height: 1.3;
	margin-bottom: 20px;
	text-align: left;
}

.consult-card p {
	color: rgba(255, 255, 255, 0.75);
	line-height: 1.8;
	margin-bottom: 35px;
}

.consult-features {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 40px;
}

.consult-features span {
	background: rgba(255, 255, 255, 0.08);
	padding: 10px 16px;
	border-radius: 30px;
	font-size: 14px;
}

.consult-card .hero-btn-prime {
	text-align: center;
}

.consult-card .hero-btn-prime .btn-default {
	background: #c9a963;
	color: #000;
	text-transform: none;
}

.consult-card .hero-btn-prime .btn-default::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	background: #0f6b63;
	border-radius: 100px;
	width: 0;
	height: 100%;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

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

.consult-card .hero-btn-prime .btn-default:hover {
	color: #fff;
	background: #c9a963;
}

/* Responsive */

@media (max-width: 992px) {
	.consultation-layout {
		grid-template-columns: 1fr;
	}

	.consult-card {
		position: static;
	}
}

@media (max-width: 768px) {
	.section-heading h2 {
		font-size: 34px;
	}

	.consult-card {
		padding: 35px;
	}

	.consult-card h3 {
		font-size: 28px;
	}
}



.market-image img {
	width: 100%;
	border-radius: 30px;
	box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.market-content p {
	font-size: 18px;
	line-height: 30px;
	text-align: center;
}

.intro {
	font-size: 22px;
	font-weight: 500;
	color: #1f2937;
	margin-bottom: 25px;
	max-width: 1100px;
	margin: 0 auto;
}


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

.legal-row .featured-title {
	font-size: 23px;
	color: #c9a963;
	text-shadow: 2px 2px 5px #000;
}

.legal-row .featured-card {
	min-height: 450px;
	margin-bottom: 30px;
}

.legal-row .featured-card img {
	height: 450px;
	opacity: 0.5;
}

.legal-img img {
	float: left;
	margin-right: 30px;
	width: 450px;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.legal-content p {
	font-size: 18px;
	line-height: 30px;
	text-align: justify;
}

.legal-content h3 {
	font-size: 20px;
	margin-bottom: 10px;
	color: #c9a963;
}

.legal-content ul li {
	font-size: 18px;
	line-height: 30px;
	text-align: justify;
}

.consultation-wrapper {
	max-width: 800px;
	margin: auto auto 50px;
	background: #fff;
	padding: 40px 40px 30px;
	border-radius: 20px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}


.consultation-wrapper .form-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}

.consultation-wrapper .form-group {
	margin-bottom: 20px;
}

.consultation-wrapper .form-group label {
	display: block;
	font-weight: 600;
	margin-bottom: 8px;
	color: #343a40;
}

.consultation-wrapper .form-group input,
.consultation-wrapper .form-group select,
.consultation-wrapper .form-group textarea {
	width: 100%;
	padding: 14px 16px;
	border: 1px solid #dcdfe6;
	border-radius: 10px;
	font-size: 15px;
	transition: 0.3s ease;
}

.consultation-wrapper .form-group input:focus,
.consultation-wrapper .form-group select:focus,
.consultation-wrapper .form-group textarea:focus {
	border-color: #0f6b63;
	outline: none;
	box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

.consultation-wrapper .form-check {
	display: flex;
	gap: 10px;
	margin: 25px 0;
	align-items: flex-start;
}

.consultation-wrapper .form-check label {
	color: #6c757d;
	line-height: 1.6;
}


@media (max-width: 768px) {
	.consultation-wrapper {
		padding: 30px 25px;
	}

	.consultation-wrapper.form-row {
		grid-template-columns: 1fr;
	}
}

@media (min-width: 300px) and (max-width: 900px) {
	.navbar-brand img {
		width: 150px;
	}

	.hero-prime .section-title h1 {
		text-align: center;
	}

	.hero-prime .section-title h1 {
		font-size: 24px;
	}

	.section-title p {
		text-align: center;
		font-size: 14px;
	}

	.hero-content-body-prime {
		justify-content: center;
	}

	.hero-btn-prime {
		text-align: center;
	}

	.btn-default {
		font-size: 15px;
		padding: 15px 15px 15px 15px;
	}

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

	.hero-prime {
		padding: 120px 0 60px;
	}

	.info-strip {
		display: block;
	}

	.info-item {
		text-align: center;
		border-right: none;
		margin-bottom: 20px;
	}

	.info-img img {
		width: 45px;
	}

	.info-item h2 {
		font-size: 13px;
	}

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

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

	.about-us-image-box-prime {
		margin-top: 30px;
		margin-bottom: 0;
		margin-right: 20px;
		margin-left: 20px;
		justify-content: center;
		padding-left: 0;
	}

	/* .about-us-image-prime.image-1 {
		display: none;
	} */
	.about-us-image-prime.image-1 {
		width: 70%;
	}

	.about-body-content-prime p {
		margin-bottom: 10px;
		font-size: 15px;
	}

	.about-content-prime {
		margin: 0 20px;
	}

	.about-us-footer-prime {
		justify-content: center;
	}

	.our-services-prime {
		padding: 10px 0 40px;
	}

	.service-item-prime {
		margin: 0 20px;
		gap: 10px;
	}

	.service-item-contant-prime p {
		font-size: 15px;
		line-height: 28px;
		text-align: justify;
	}

	.service-item-contant-prime h2 {
		line-height: 28px;
	}

	.view-btn {
		margin-top: -8px;
	}

	.international-container {
		display: block;
		margin: 0 20px;
	}

	.international-content h2 {
		text-align: center;
	}

	.globe {
		width: 230px;
		height: 230px;
	}

	.international-content p {
		color: #fff;
		font-size: 15px;
		line-height: 28px;
		text-align: justify;
	}

	.industries-section {
		padding: 50px 0 20px;
	}

	.industries-grid {
		margin: 0 30px;
	}

	.industries-container .section-title h2 {
		margin-bottom: 0 !important;
	}

	.articles-grid {
		margin: 0 20px;
	}

	.featured-title {
		font-size: 20px;
	}

	.featured-text {
		font-size: 15px;
		line-height: 28px;
	}

	.read-btn {
		padding: 10px 18px;
		font-size: 14px;
	}

	.article-title {
		font-size: 20px;
	}

	.article-link {
		font-size: 15px;
	}

	.insights-section {
		padding-bottom: 0;
	}

	.insights-section .view-btn {
		margin-top: 10px !important;
	}

	.section-title img {
		display: none;
	}

	.testimonial-card p {
		font-size: 15px;
		line-height: 28px;
	}

	.testimonial-card {
		margin: 0 35px;
	}

	.author img {
		width: 50px;
		height: 50px;
	}

	.testimonial-section {
		padding: 60px 0 30px;
	}

	.final-cta {
		padding: 0 0px;
	}

	.cta-title {
		font-size: 25px;
		line-height: 35px;
	}

	.cta-description {
		font-size: 18px;
		line-height: 30px;
		text-align: justify;
		font-size: 15px;
	}

	.main-footer-prime {
		padding: 40px 0 0;
	}

	.about-footer-prime p {
		font-size: 15px;
	}

	.footer-links-prime ul li {
		margin-top: 15px;
		margin-bottom: 15px;
	}

	.footer-links-prime ul li a {
		font-size: 16px;
	}

	.footer-links-prime h2 {
		font-size: 23px;
		margin-bottom: 0;
	}

	.footer-copyright-text-prime p {
		font-size: 14px;
	}

	.floating-whatsapp {
		width: 45px;
		height: 45px;
		font-size: 20px;
	}

	.fixed-social-icons a {
		width: 35px;
		height: 35px;
		font-size: 15px;
	}

	.submenu ul li a {
		color: #fff !important;
	}

	.hero-prime-inner .section-title h1 {
		text-align: center !important;
	}

	.hero-prime-inner .hero-content-body-prime {
		justify-content: center;
	}

	.about-content-inner .about-content-prime {
		align-content: normal;
	}

	.about-content-inner .about-us-image-box-prime {
		margin-bottom: 30px;
	}

	.about-content-inner .about-content-prime ul li {
		font-size: 15px;
		line-height: 28px;
	}

	.about-content-inner .about-content-prime p {
		margin-bottom: 15px;
	}

	.section-title h4 {
		font-size: 18px;
		line-height: 28px;
	}

	.market-entry {
		margin: 0 20px;
	}

	.market-content p {
		font-size: 15px;
		line-height: 28px;
		text-align: justify;
		margin-bottom: 12px;
	}

	.market-header {
		margin-bottom: 15px;
	}


	.navbar {
		margin: 0 20px;
	}

	.section-row .section-title.section-title-center {
		margin: 0 20px;
	}

	.legal-row .featured-card {
		margin: 0 20px 30px;
	}

	.contact-section {
		margin: 0 20px;
	}

	.contact-section p {
		line-height: 28px;
		text-align: justify;
		font-size: 15px;
	}

	.timeline-content h4 {
		font-size: 18px;
		line-height: 28px;
	}

	.consult-card h3 {
		font-size: 22px;
	}

	.consultation-wrapper .form-row {
		display: block;
	}

	.consultation-wrapper .form-group label {
		font-size: 14px;
	}

	.consultation-wrapper {
		padding: 0;
		box-shadow: none;
		margin: 0 10px 30px;
	}

	.consultation-wrapper .form-group input,
	.consultation-wrapper .form-group select,
	.consultation-wrapper .form-group textarea {
		font-size: 14px;
	}

	.timeline-dot {
		width: 20px;
		height: 20px;
		left: -33px;
		top: 15px;
	}

	.about-footer-prime {
		margin: 0 20px 30px;
	}

	.footer-prime {
		margin: 0 20px;
	}

	.consult-card::before {
		display: none;
	}

	.ip-consultation {
		padding: 30px 0 40px;
	}
}

/* Services Section */
.services-inner {
	margin: 30px 0;
}

.services-inner h3 {
	font-size: 25px;
	color: #0f6b63;
	margin-bottom: 30px;
	text-align: center;
	font-weight: 600;
	position: relative;
}

/* Grid Layout */
.strategy-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 25px;
}

/* Individual Cards */
.strategy-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 25px 20px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
	transition: all 0.3s ease;
	border: 1px solid #edf2f7;
}

.strategy-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 10px 30px rgb(27 111 99 / 25%);
}

/* Icon + Heading */
.card-icon {
	display: flex;
	align-items: center;
	gap: 15px;
}

.card-icon img {
	width: 60px;
	height: 60px;
	/* border-radius: 50%; */
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 1.3rem;
	flex-shrink: 0;
}

.card-icon h4 {
	font-size: 17.5px;
	line-height: 1.5;
	margin: 0;
	color: #000;
}

/* Outcome Section */
.outcome {
	margin: 30px 0 50px;
	background: linear-gradient(135deg, #c9a963, #0f6b63);
	color: #ffffff;
	padding: 30px 0px;
	border-radius: 20px;
	text-align: center;
	box-shadow: 0 10px 30px rgb(27 111 99 / 25%);
}

.outcome-icon {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 10px;
}

.outcome-icon i {
	font-size: 22px;
	color: #fff;
	margin-right: 8px;
}

.outcome h3 {
	font-size: 2rem;
	margin-bottom: 0px;
	font-weight: 700;
	color: #fff;
}

.outcome p {
	max-width: 700px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 1.8;
	opacity: 0.95;
}

/* Responsive */
@media (max-width: 768px) {

	.services-inner h3,
	.outcome h3 {
		font-size: 23px;
	}

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

	.strategy-card {
		padding: 20px;
	}

	.card-icon {
		align-items: center;
	}

	.card-icon img {
		width: 45px;
		height: 45px;
	}

	.card-icon h4 {
		font-size: 1rem;
	}

	.outcome {
		padding: 30px 25px;
	}

	.outcome p {
		font-size: 1rem;
	}
}