:root {
	--primary-color: #041441;
	--bg-color: #F8FAFC;
	--text-color: #5E6672;
	--accent-color: #47ac2d;
	--white-color: #FFFFFF;
	--divider-color: #E6EBF2;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Anek Bangla", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	position: relative;
	font-family: var(--default-font);
	font-size: 18px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--bg-color);
}

::-webkit-scrollbar-track {
	background-color: var(--secondary-color);
	border-left: 1px solid var(--secondary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--secondary-color);
}

::-webkit-scrollbar-thumb {
	background: var(--primary-color);
}

::selection {
	color: var(--primary-color);
	background-color: var(--accent-color);
	filter: invert(1);
}

p {
	line-height: 1.6em;
	margin-bottom: 1.5em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--primary-color);
}

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;
}

html,
body {
	width: 100%;
	overflow-x: clip;
}

.container {
	max-width: 1300px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	color: var(--primary-color);
	background: var(--accent-color);
	border-radius: 10px;
	padding: 17px 55px 17px 20px;
	border: none;
	overflow: hidden;
	outline: none;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover {
	color: var(--white-color);
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 6px;
	width: 40px;
	height: 40px;
	background-color: var(--primary-color);
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px auto;
	border-radius: 6px;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	background-color: var(--accent-color);
}

.btn-default::after {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--primary-color);
	z-index: -1;
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::after {
	right: auto;
	left: 0;
	width: 100%;
}

.btn-default.btn-highlighted:hover {
	color: var(--primary-color);
}

.btn-default.btn-highlighted::after {
	background: var(--white-color);
}

.readmore-btn {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2em;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 28px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover {
	color: var(--accent-color);
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	background-image: url('../images/arrow-accent.svg');
	background-repeat: no-repeat;
	background-size: cover;
	width: 20px;
	height: 20px;
	transform: translate(-3px, -50%);
	transition: all 0.3s ease-in-out;
}

.readmore-btn:hover::before {
	transform: translate(0px, -50%);
}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--accent-color) transparent var(--accent-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.dark-section {
	background-color: var(--primary-color);
}

.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	margin-bottom: 0;
}

.section-row .section-title.section-title-center {
	width: 100%;
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.section-btn {
	text-align: right;
}

.section-content-btn .section-btn {
	margin-top: 30px;
	text-align: left;
}

.section-title-content p {
	margin-bottom: 20px;
}

.section-title-content p:last-child {
	margin-bottom: 0;
}

.section-title {
	margin-bottom: 40px;
}

.section-title h3 {
	background-image: url('../images/icon-sub-heading.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: 20px auto;
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.2em;
	line-height: normal;
	text-transform: uppercase;
	color: var(--primary-color);
	padding-left: 30px;
	margin-bottom: 10px;
}

.section-title h1 {
	font-size: 70px;
	font-weight: 700;
	line-height: 1.1em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 50px;
	font-weight: 700;
	line-height: 1.1em;
	margin-bottom: 0;
	cursor: none;
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.dark-section .section-title h3,
.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		 ****/
/************************************/

.navbar {
	position: sticky;
	top: 0;
	width: 100%;
	border-bottom: 1px solid var(--dark-divider-color);
	z-index: 9999;
	transition:
		background-colour 0.35s ease,
		box-shadow 0.35s ease,
		transform 0.35s ease;
}

/* Header appearance after scrolling */
.navbar.is-scrolled {
	background: rgba(255, 255, 255, 0.97);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.navbar {
	padding: 3px 0;
	align-items: center;
}

.navbar-brand {
	padding: 0;
	margin: 0;
	width: 90px;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin: 0 1.042vw;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 5px;
	position: relative;
}

.nav-item .nav-link {
	font-size: 18px;
	font-weight: 600;
	line-height: 1.2em;
	padding: 14px 10px !important;
	color: #000;
	transition: all 0.3s ease-in-out;
	text-transform: uppercase;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.nav-item .nav-link:hover,
.nav-item .nav-link:focus {
	color: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scale(1, 0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 12px;
	position: absolute;
	left: 0;
	top: 100%;
	background: var(--accent-color);
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 235px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scale(1, 1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
}

.main-menu ul ul li a {
	color: var(--primary-color);
	padding: 6px 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(--white-color);
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.main-menu ul li.highlighted-menu {
	display: none;
}

.responsive-menu,
.navbar-toggle {
	display: none;
}

.responsive-menu {
	top: 0;
	position: relative;
}

.slicknav_btn {
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--primary-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-size: 18px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 2px 20px;
	color: var(--primary-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--white-color);
}

.slicknav_menu ul ul li a {
	padding: 2px 20px 2px 30px;
}

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--primary-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: translateY(-50%) rotate(-180deg);
	color: var(--white-color);
}

/************************************/
/***         04. Hero css	      ***/
/************************************/

/* .hero {
	position: relative;
	background: url('../images/banner-1.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 230px 0 115px;
} */

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	/* background: linear-gradient(0deg, rgba(110, 128, 180, 0) 87.63%, rgba(4, 20, 65, 0.60) 100.45%), linear-gradient(90deg, rgba(4, 20, 65, 0.90) 24.36%, rgba(24, 85, 92, 0.00) 100%); */
	width: 100%;
	height: 100%;
	z-index: 0;
}

.hero .container {
	position: relative;
	z-index: 1;
}

.hero-content .section-title p {
	width: 100%;
	max-width: 750px;
}

.hero-btn {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 30px;
	margin: 60px 0;
}

.hero-btn .readmore-btn {
	color: var(--white-color);
}

.hero-btn .readmore-btn:hover {
	color: var(--accent-color);
}

.hero-btn .readmore-btn::before {
	background-image: url('../images/arrow-white.svg');
}

.hero-content-body {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.satisfy-client-img {
	position: relative;
	display: inline-block;
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	overflow: hidden;
	margin-left: -16px;
	z-index: 1;
}

.satisfy-client-img:first-child {
	margin: 0;
}

.satisfy-client-img figure {
	display: block;
}

.satisfy-client-img img {
	max-width: 50px;
	border-radius: 50%;
}

.hero-counter-box h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
}

.hero-counter-box p {
	color: var(--white-color);
	margin: 0;
}

.hero-counter-box p i {
	color: var(--accent-color);
}

.hero-counter-box p span {
	font-weight: 600;
}

/************************************/
/***   05. Scrolling Ticker css   ***/
/************************************/

.our-scrolling-ticker {
	position: relative;
	background-color: var(--accent-color);
	padding: 18px 0;
	z-index: 1;
}

.scrolling-ticker-box {
	--gap: 30px;
	position: relative;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content {
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 50s linear infinite;
}

.scrolling-content span {
	display: inline-block;
	font-size: 20px;
	font-weight: 600;
	line-height: 1;
	text-transform: capitalize;
	color: var(--primary-color);
}

.scrolling-content span img {
	width: 100%;
	max-width: 30px;
	margin-right: 30px;
}

@keyframes scroll {
	from {
		transform: translateX(0);
	}

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

/************************************/
/***   	   06. About Us css       ***/
/************************************/

.about-us {
	padding: 100px 0;
}

.about-us-images {
	position: relative;
	padding: 90px 195px 150px 20px;
	margin-right: 50px;
}

.about-image-1 figure,
.about-image-2 figure,
.about-image-3 figure {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.about-image-1 figure img,
.about-image-2 figure img,
.about-image-3 figure img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.about-image-1 {
	transform: rotate(-7deg);
}

.about-image-1 figure img {
	aspect-ratio: 1 / 1.265;
}

.about-image-2 {
	position: absolute;
	top: 10px;
	right: 5px;
	width: 100%;
	max-width: 340px;
	transform: rotate(5deg);
}

.about-image-2 figure img {
	aspect-ratio: 1 / 0.521;
}

.about-image-3 {
	position: absolute;
	bottom: 15px;
	right: 20px;
	width: 100%;
	max-width: 255px;
	transform: rotate(9deg);
}

.about-image-3 figure img {
	aspect-ratio: 1 / 1.199;
}

.about-image-circle {
	position: absolute;
	top: -90px;
	left: 50px;
}

.about-image-circle a,
.about-image-circle a img {
	display: inline-block;
	border-radius: 50%;
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.about-image-circle a img {
	width: 100%;
	max-width: 140px;
	animation: infiniterotate 25s infinite linear;
}

@keyframes infiniterotate {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

.about-image-circle a:hover img {
	animation-play-state: paused;
}

.about-us-list,
.about-us-body {
	margin-bottom: 40px;
}

.about-us-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-us-list ul li {
	position: relative;
	line-height: 1.4em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.about-us-list ul li:last-child {
	margin-bottom: 0;
}

.about-us-list ul li::before {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.about-us-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.about-body-image {
	width: calc(52% - 15px);
}

.about-body-content {
	width: calc(48% - 15px);
}

.about-body-image figure {
	display: block;
	border-radius: 20px;
}

.about-body-image img {
	width: 100%;
	object-fit: cover;
	/* aspect-ratio: 1 / 0.33; */
	/* border-radius: 20px; */
}

.about-body-content h3 {
	font-size: 22px;
	line-height: 1.4em;
}

.about-body-content h3 span {
	color: var(--accent-color);
}

.about-us-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px 40px;
}

.contact-now-box {
	display: flex;
	align-items: center;
}

.contact-now-box .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	border-radius: 50%;
	margin-right: 15px;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
}

.contact-now-box .icon-box::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	width: 100%;
	height: 100%;
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
	z-index: 0;
}

.contact-now-box:hover .icon-box::before {
	transform: scale(1);
}

.contact-now-box .icon-box img {
	position: relative;
	width: 100%;
	max-width: 25px;
	z-index: 1;
}

.contact-now-box-content p {
	margin-bottom: 5px;
}

.contact-now-box-content h3 {
	font-size: 20px;
}

.contact-now-box-content h3 a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-now-box-content h3 a:hover {
	color: var(--accent-color);
}


/************************************/
/***   	 07. Our Services css     ***/
/************************************/

.our-services {
	padding: 100px 0;
}

.our-service-content {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-item {
	position: relative;
	background-color: var(--dark-divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.service-item::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 999px 999px 0 0;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-item.active::after,
.service-item:hover::after {
	height: 100%;
	border-radius: 0;
}

.service-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	margin-bottom: 40px;
	z-index: 1;
}

.service-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: var(--primary-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-item.active .icon-box::before,
.service-item:hover .icon-box::before {
	transform: scale(1);
}

.service-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

.service-item-content {
	position: relative;
	margin-bottom: 30px;
	z-index: 1;
}

.service-item-content h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 15px;
	transition: all 0.4s ease-in-out;
}

.service-item-content h3 a {
	color: inherit;
}

.service-item-content p {
	margin-bottom: 0;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.service-item.active .service-item-content h3,
.service-item:hover .service-item-content h3,
.service-item.active .service-item-content p,
.service-item:hover .service-item-content p {
	color: var(--primary-color);
}

.service-readmore-btn {
	position: relative;
	color: var(--accent-color);
	z-index: 1;
}

.service-readmore-btn a {
	color: var(--accent-color);
}

.service-readmore-btn a::before {
	background-image: url('../images/arrow-accent.svg');
}

.service-item.active .service-readmore-btn a,
.service-item:hover .service-readmore-btn a {
	color: var(--primary-color);
}

.service-item.active .service-readmore-btn a::before,
.service-item:hover .service-readmore-btn a::before {
	filter: brightness(0.9) invert(1);
}

.service-cta-box {
	position: relative;
	background: url('../images/service-cta-box-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	align-content: center;
	height: 350px;
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

.service-cta-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.service-cta-box-info,
.service-cta-box .contact-now-box {
	position: relative;
	z-index: 1;
}

.service-cta-box-info {
	margin-bottom: 30px;
}

.service-cta-box-info h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.service-cta-box-info h2 {
	font-size: 30px;
	color: var(--white-color);
}

.service-cta-box .contact-now-box-content p,
.service-cta-box .contact-now-box-content h3 {
	color: var(--white-color);
}

.section-footer-text {
	margin-top: 30px;
	text-align: center;
}

.section-footer-text p {
	margin-bottom: 0;
}

.dark-section .section-footer-text p {
	color: var(--white-color);
}

.section-footer-text span {
	font-size: 16px;
	font-weight: 600;
	line-height: 1.1em;
	display: inline-block;
	text-transform: capitalize;
	color: var(--primary-color);
	background: var(--accent-color);
	padding: 4px 10px;
	border-radius: 100px;
	margin-right: 12px;
}

.section-footer-text p a {
	font-weight: 600;
	text-transform: capitalize;
	text-decoration: underline;
	text-underline-offset: 3px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.section-footer-text p a:hover {
	color: var(--primary-color);
}

.dark-section .section-footer-text p a:hover {
	color: var(--white-color);
}

/************************************/
/***   	 08. Why Choose Us css    ***/
/************************************/

.why-choose-us {
	padding: 100px 0;
}

.why-choose-box {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 30px;
}

.why-choose-content {
	width: calc(55% - 15px);
}

.why-choose-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.why-choose-content-box {
	width: calc(55% - 15px);
}

.why-choose-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 40px;
	padding-bottom: 40px;
	padding-right: 3.646vw;
}

.why-choose-item .icon-box {
	margin-bottom: 20px;
}

.why-choose-item .icon-box img {
	width: 100%;
	max-width: 40px;
}

.why-choose-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.why-choose-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.why-choose-list ul li {
	position: relative;
	line-height: 1.4em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.why-choose-list ul li:last-child {
	margin-bottom: 0;
}

.why-choose-list ul li:before {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.why-choose-btn {
	margin-top: 60px;
}

.why-choose-body-img {
	width: calc(45% - 15px);
}

.why-choose-body-img figure {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.why-choose-body-img img {
	width: 100%;
	aspect-ratio: 1 / 1.405;
	object-fit: cover;
	border-radius: 20px;
}

.why-choose-image {
	width: calc(45% - 15px);
	position: relative;
	padding: 0 50px 50px 0;
}

.why-choose-img figure {
	display: block;
	border-radius: 20px;
}

.why-choose-img img {
	width: 100%;
	aspect-ratio: 1 / 1.333;
	object-fit: cover;
	border-radius: 20px;
}

.company-experience-box {
	position: absolute;
	right: 0;
	bottom: 0;
	width: 140px;
	height: 140px;
	display: flex;
	flex-wrap: wrap;
	gap: 5px;
	align-content: center;
	justify-content: center;
	background: var(--accent-color);
	border-radius: 50%;
	padding: 25px;
	text-align: center;
	transition: all 0.3s ease-in-out;
}

.company-experience-box:hover {
	background: var(--primary-color);
}

.company-experience-box h3 {
	font-size: 30px;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.company-experience-box p {
	line-height: 1.3em;
	color: var(--primary-color);
	text-transform: capitalize;
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.company-experience-box:hover h3,
.company-experience-box:hover p {
	color: var(--white-color);
}

/************************************/
/***   	 09. Intro Video css      ***/
/************************************/

.intro-video {
	position: relative;
	padding: 29.167vw 0 100px;
	background: url('../images/intro-video-bg.jpg');
	background-position: center center;
	background-size: cover;
}

.intro-video::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(24, 85, 92, 0.00) 27.11%, var(--primary-color) 100%);
	width: 100%;
	height: 100%;
}

.intro-video .container {
	position: relative;
	z-index: 1;
}

.intro-video .section-title {
	margin-bottom: 0;
}

.intro-video .section-title h2 {
	color: var(--white-color);
}

.video-play-button {
	display: flex;
	align-items: center;
	justify-content: center;
}

.video-play-button a {
	background-color: var(--accent-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	cursor: none;
}

.video-play-button a i {
	font-size: 20px;
	color: var(--primary-color);
	margin-left: 2px;
}

.video-play-button p {
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
	margin: 0;
}

.intro-video-list {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 40px;
	padding-top: 40px;
}

.intro-video-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.intro-video-list ul li {
	position: relative;
	width: calc(25% - 22.5px);
	color: var(--white-color);
	line-height: 1.4em;
	padding-left: 30px;
}

.intro-video-list ul li:after {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

/************************************/
/***   	  10. What We Do css      ***/
/************************************/

.what-we-do {
	position: relative;
	padding: 80px 0;
}

.what-we-do-content {
	margin-right: 30px;
}

.what-we-do-body {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-bottom: 40px;
}

.what-we-do-list {
	width: calc(100% - 210px);
}

.what-we-do-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.what-we-do-list ul li {
	position: relative;
	line-height: 1.4em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.what-we-do-list ul li:last-child {
	margin-bottom: 0;
}

.what-we-do-list ul li::before {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.what-we-do-body .about-image-circle {
	position: initial;
}

.what-we-do-body .about-image-circle a img {
	position: initial;
	align-content: center;
	max-width: 180px;
}

.what-we-do-images {
	position: relative;
	padding: 15px 255px 155px 25px;
}

.what-we-do-img-1 {
	transform: rotate(-6.46deg);
	border-radius: 20px;
	overflow: hidden;
}

.what-we-do-img-2 {
	position: absolute;
	top: 15px;
	right: 25px;
	transform: rotate(10.67deg);
	width: 100%;
	max-width: 265px;
}

.what-we-do-img-2::before {
	content: '';
	position: absolute;
	bottom: 12px;
	right: 20px;
	background: url('../images/what-we-do-image-bg.svg') no-repeat;
	background-position: center center;
	background-size: contain;
	height: 125px;
	width: 95px;
	transform: translateY(100%);
}

.what-we-do-img-2,
.what-we-do-img-3 {
	border: 9px solid var(--bg-color);
	border-radius: 20px;
}

.what-we-do-img-3 {
	position: absolute;
	bottom: 20px;
	left: 10px;
	transform: rotate(-7.87deg);
	width: 100%;
	max-width: 370px;
}

.what-we-do-img-1 figure {
	display: block;
}

.what-we-do-img-2 figure,
.what-we-do-img-3 figure {
	display: block;
	border-radius: 12px;
}

.what-we-do-img-1 img,
.what-we-do-img-2 img,
.what-we-do-img-3 img {
	width: 100%;
	object-fit: cover;
}

.what-we-do-img-1 img {
	aspect-ratio: 1 / 1.48;
}

.what-we-do-img-2 img {
	aspect-ratio: 1 / 1.405;
}

.what-we-do-img-3 img {
	aspect-ratio: 1 / 0.644;
}

.client-review-box {
	position: absolute;
	bottom: 45px;
	right: 0;
	display: block;
	width: 100%;
	max-width: 215px;
	background: var(--primary-color);
	border-radius: 16px;
	padding: 20px;
	box-shadow: 0px 0px 11.8px 0px rgba(0, 0, 0, 0.12);
	animation: experienceobject 3s infinite linear alternate;
}

@keyframes experienceobject {
	50% {
		right: 40px;
	}
}

.client-review-images {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.client-review-image {
	display: inline-block;
	margin-left: -14px;
	overflow: hidden;
}

.client-review-image:first-child {
	margin: 0;
}

.client-review-image figure {
	display: block;
	width: 40px;
	height: 40px;
	border: 1px solid var(--primary-color);
	border-radius: 50%;
}

.client-review-image img {
	position: relative;
	width: 100%;
	z-index: 1;
}

.client-review-image.add-more {
	width: 40px;
	height: 40px;
	background-color: var(--white-color);
	border-radius: 50%;
	text-align: center;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	z-index: 1;
}

.client-review-image.add-more p {
	font-size: 14px;
	color: var(--primary-color);
	font-weight: 700;
	margin: 0;
}

.client-review-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.client-review-content p i {
	color: var(--accent-color);
	margin: 0 5px;
}

/************************************/
/***   	  11.  Our Facts css      ***/
/************************************/

.our-facts {
	padding: 50px 0;
}

.our-facts-image {
	margin-right: 65px;
	align-content: end;
	height: 100%;
}

.our-facts-image img {
	width: 100%;
	aspect-ratio: 1 / 1.55;
	object-fit: cover;
	margin-bottom: -50px;
}

.our-facts-content {
	height: 100%;
	align-content: center;
}

.facts-counter-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border-top: 1px solid var(--dark-divider-color);
	border-bottom: 1px solid var(--dark-divider-color);
	padding: 40px 0;
	margin: 40px 0;
}

.fact-counter-item {
	position: relative;
	width: calc(33.33% - 20px);
}

.fact-counter-item::before {
	content: '';
	position: absolute;
	top: 0;
	right: -15px;
	bottom: 0;
	background: var(--dark-divider-color);
	width: 1px;
	height: 100%;
}

.fact-counter-item:nth-child(3n + 3):before,
.fact-counter-item:last-child:before {
	display: none;
}

.fact-counter-item h2 {
	font-size: 40px;
	color: var(--white-color);
	margin-bottom: 5px;
}

.fact-counter-item p {
	color: var(--white-color);
	margin: 0;
}

.our-facts-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.our-facts-list ul li {
	position: relative;
	width: calc(50% - 15px);
	color: var(--white-color);
	font-weight: 600;
	line-height: 1.4em;
	padding-left: 30px;
}

.our-facts-list ul li::before {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.our-facts-btn {
	margin-top: 40px;
}

/************************************/
/***   	 12. Our Potential css    ***/
/************************************/

.our-potential {
	padding: 100px 0;
}

.our-potential-content {
	height: 100%;
}

.our-potential-counter {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
	margin-bottom: 40px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.potential-counter-item {
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.potential-counter-item .counter-circle {
	width: 110px;
	height: 110px;
	display: flex;
	align-items: center;
	justify-content: center;
	border: 10px solid var(--accent-color);
	border-radius: 50%;
	margin-right: 20px;
}

.potential-counter-item .counter-circle h2 {
	font-size: 30px;
	font-weight: 700;
}

.potential-counter-content {
	width: calc(100% - 130px);
}

.potential-counter-content h3 {
	font-size: 20px;
}

.potential-body-content {
	margin-bottom: 20px;
}

.potential-body-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	font-weight: 600;
	margin-bottom: 20px;
}

.potential-body-content p:last-child {
	margin-bottom: 0;
}

.potential-body-list ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.potential-body-list ul li {
	position: relative;
	line-height: 1.4em;
	padding-left: 30px;
	margin-bottom: 15px;
}

.potential-body-list ul li:last-child {
	margin-bottom: 0;
}

.potential-body-list ul li::before {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.our-potential-img {
	margin-left: 15px;
	height: 100%;
}

.our-potential-img figure {
	display: block;
	border-radius: 20px;
}

.our-potential-img img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1.32;
	border-radius: 20px;
}

/************************************/
/***   	13. Our Testimonial css   ***/
/************************************/

.our-testimonial {
	background-image: url('../images/testimonial-bg.png');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0;
}

.our-testimonial-image {
	margin-right: 15px;
}

.our-testimonial-image figure {
	display: block;
	border-radius: 20px;
}

.our-testimonial-image img {
	width: 100%;
	aspect-ratio: 1 / 0.992;
	object-fit: cover;
	border-radius: 20px;
}

.testimonial-slider .swiper-wrapper {
	cursor: none;
}

.testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-item .testimonial-rating i {
	color: var(--accent-color);
}

.testimonial-content {
	margin-bottom: 100px;
}

.testimonial-content p {
	font-size: 20px;
	font-weight: 500;
	color: var(--white-color);
	margin: 0;
}

.testimonial-body {
	display: flex;
	align-items: center;
}

.testimonial-body .author-image {
	margin-right: 15px;
}

.testimonial-body .author-image figure {
	border-radius: 10px;
}

.testimonial-body .author-image img {
	width: 60px;
	height: 60px;
	border-radius: 10px;
}

.testimonial-body .author-content {
	width: calc(100% - 75px);
}

.testimonial-body .author-content h3 {
	font-size: 20px;
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 2px;
}

.testimonial-body .author-content p {
	color: var(--white-color);
	margin: 0;
}

.testimonial-btn {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	margin-top: 30px;
	z-index: 2;
}

.testimonial-slider .testimonial-button-next,
.testimonial-slider .testimonial-button-prev {
	position: relative;
	width: 56px;
	height: 56px;
	background: var(--accent-color);
	border-radius: 10px;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

.testimonial-slider .testimonial-button-next {
	margin-left: 20px;
}

.testimonial-slider .testimonial-button-next:hover,
.testimonial-slider .testimonial-button-prev:hover {
	background: var(--bg-color);
}

.testimonial-slider .testimonial-button-next::before,
.testimonial-slider .testimonial-button-prev::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: url('../images/arrow-white.svg') no-repeat;
	background-position: center center;
	background-size: 24px auto;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-button-prev::before {
	transform: rotate(180deg);
}

.testimonial-slider .testimonial-button-next:hover::before,
.testimonial-slider .testimonial-button-prev:hover::before {
	filter: brightness(0) invert(0);
}

.testimonial-company-slider {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 80px;
	margin-top: 80px;
}

.testimonial-company-slider .company-logo {
	text-align: center;
}

.testimonial-company-slider .company-logo img {
	width: 100%;
	max-height: 40px;
}

/************************************/
/***   	   14. Our Goals css      ***/
/************************************/

.our-goals {
	padding: 100px 0;
}

.goals-content-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.goals-item {
	position: relative;
	width: calc(50% - 15px);
	background: var(--accent-color);
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}

.goals-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	border-radius: 999px 999px 0 0;
	width: 100%;
	height: 0;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.goals-item.active:before,
.goals-item:hover:before {
	height: 100%;
	border-radius: 0;
}

.goals-item .icon-box {
	position: relative;
	margin-bottom: 40px;
	z-index: 1;
}

.goals-item .icon-box img {
	width: 100%;
	max-width: 50px;
	transition: all 0.4s ease-in-out;
}

.goals-item.active .icon-box img,
.goals-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.goals-item-content {
	position: relative;
	z-index: 1;
}

.goals-item-content h3 {
	font-size: 20px;
	margin-bottom: 5px;
	transition: all 0.3s ease-in-out;
}

.goals-item-content p {
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.goals-item.active .goals-item-content h3,
.goals-item:hover .goals-item-content h3,
.goals-item.active .goals-item-content p,
.goals-item:hover .goals-item-content p {
	color: var(--white-color);
}

.goals-content-footer {
	display: flex;
	align-items: center;
	gap: 20px 30px;
	margin-top: 60px;
}

.our-goals-images {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin-left: 20px;
}

.goals-image-box {
	width: calc(50% - 5px);
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

.goals-image-box figure {
	display: block;
	width: 100%;
	border-radius: 20px;
}

.goals-image-box img {
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.goals-img-2,
.goals-img-1,
.goals-img-4,
.goals-img-3 {
	width: 100%;
}

.goals-img-1 img {
	aspect-ratio: 1 / 0.9672;
}

.goals-img-2 img {
	aspect-ratio: 1 / 1.068;
}

.goals-img-3 img {
	aspect-ratio: 1 / 1.2;
}

.goals-img-4 img {
	aspect-ratio: 1 / 1.085;
}

.our-goals-images .about-image-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}

/************************************/
/***   	   15. Our FAQs css       ***/
/************************************/

.our-faqs {
	padding: 100px 0;
}

.our-faqs-content {
	position: sticky;
	top: 40px;
	margin-right: 30px;
}

.faq-cta-box {
	position: relative;
	display: inline-flex;
	background: var(--accent-color);
	border-radius: 20px;
	padding: 40px;
	overflow: hidden;
}

.faq-cta-box::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 0;
	background: var(--white-color);
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.faq-cta-box:hover:before {
	height: 100%;
}

.faq-cta-box .icon-box {
	position: relative;
	margin-right: 20px;
	z-index: 1;
}

.faq-cta-box .icon-box img {
	max-width: 60px;
}

.faq-cta-box .faq-cta-content {
	position: relative;
	width: calc(100% - 80px);
	z-index: 1;
}

.faq-cta-content p {
	color: var(--primary-color);
	margin-bottom: 10px;
}

.faq-cta-content p:last-child {
	margin-bottom: 0;
}

.faq-cta-content p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.faq-cta-content p a:hover {
	color: var(--accent-color);
}

.faq-cta-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.faq-accordion .accordion-item {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.faq-accordion .accordion-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.2em;
	color: var(--white-color);
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed) {
	color: var(--white-color);
	padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\f107';
	font-family: 'FontAwesome';
	position: absolute;
	right: 0;
	top: 0;
	font-size: 20px;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	transform: rotate(180deg);
	color: var(--accent-color);
}

.faq-accordion .accordion-item .accordion-body {
	padding-right: 30px;
}

.faq-accordion .accordion-item:last-child .accordion-body {
	padding-bottom: 0;
}

.faq-accordion .accordion-item .accordion-body p {
	color: var(--white-color);
	margin-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-body p:last-child {
	margin-bottom: 0;
}

/************************************/
/***   	   16. Our Blogs css      ***/
/************************************/

.our-blog {
	padding: 100px 0 70px;
}

.post-item {
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.post-featured-image a {
	cursor: none;
	display: block;
	overflow: hidden;
}

.post-featured-image figure {
	display: block;
}

.post-featured-image img {
	aspect-ratio: 1 / 0.68;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-body {
	padding: 20px;
}

.post-item-content {
	margin-bottom: 20px;
}

.post-item-content h2 {
	font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h2 a {
	display: inline-block;
	color: inherit;
}

/************************************/
/***   	    17. Footer css        ***/
/************************************/

footer.main-footer {
	padding: 100px 0 0 0;
}

.newsletter-form .form-group {
	display: flex;
	width: 85%;
}

.newsletter-form .form-group .form-control {
	width: calc(100% - 60px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--white-color);
	background: transparent;
	border: 1px solid var(--dark-divider-color);
	border-right: none;
	border-radius: 10px 0 0 10px;
	outline: none;
	box-shadow: none;
	padding: 17px 20px;
}

.newsletter-form .form-group .form-control::placeholder {
	color: var(--white-color);
}

.newsletter-form .form-group .newsletter-btn {
	width: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border: none;
	border-radius: 0 10px 10px 0;
	transition: all 0.3s ease-in-out;
}

.newsletter-form .form-group .newsletter-btn:hover {
	background-color: var(--white-color);
}

.newsletter-form .form-group .newsletter-btn i {
	font-size: 28px;
	color: var(--primary-color);
	margin-right: 3px;
}

.footer-link-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}

.footer-links h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 25px;
}

.footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li {
	text-transform: capitalize;
	line-height: 1.5em;
	margin-bottom: 10px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li a {
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.footer-links ul li a:hover {
	color: var(--accent-color);
}

.footer-cta-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	background-color: var(--dark-divider-color);
	border-radius: 20px;
	margin-top: 60px;
	padding: 10px 40px;
}

.footer-logo img {
	width: 100%;
	max-width: 115px;
}

.footer-contact-box {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 0;
}

.footer-contact-item {
	padding-right: 40px;
	margin-right: 40px;
	border-right: 1px solid var(--dark-divider-color);
}

.footer-contact-item:last-child {
	padding: 0;
	margin: 0;
	border: none;
}

.footer-contact-item p {
	color: var(--white-color);
	opacity: 80%;
	margin-bottom: 10px;
}

.footer-contact-item h3 {
	font-size: 20px;
	color: var(--white-color);
}

.footer-contact-item h3 a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item h3 a:hover {
	color: var(--accent-color);
}

.footer-copyright {
	padding: 60px 0;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
}

.footer-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: right;
}

.footer-menu ul li {
	position: relative;
	display: inline-block;
	text-transform: capitalize;
	line-height: normal;
	color: var(--white-color);
	margin-right: 40px;
	transition: all 0.3s ease-in-out;
}

.footer-menu ul li:last-child {
	margin-right: 0;
}

.footer-menu ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -23px;
	background-color: var(--dark-divider-color);
	border-radius: 50%;
	height: 6px;
	width: 6px;
	transform: translateY(-50%);
}

.footer-menu ul li:last-child:before {
	display: none;
}

.footer-menu ul li:hover {
	color: var(--accent-color);
}

.footer-menu ul li a {
	color: inherit;
}

/************************************/
/***    18. About Us Page css     ***/
/************************************/

.page-header {
	position: relative;
	background: url('../images/page-header-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 225px 0 110px;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(0deg, rgba(24, 85, 92, 0.00) 87.63%, rgba(24, 85, 92, 0.60) 100.45%), linear-gradient(90deg, rgba(24, 85, 92, 0.90) 24.36%, rgba(24, 85, 92, 0.00) 100%);
	width: 100%;
	height: 100%;
	z-index: 0;
}

.page-header-box {
	position: relative;
	z-index: 1;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 70px;
	font-weight: 700;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol {
	position: relative;
	margin: 0;
	padding: 0;
	z-index: 1;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 18px;
	text-transform: capitalize;
	color: var(--white-color);
}

.page-header-box ol li.breadcrumb-item a {
	color: inherit;
}

.page-header-box ol .breadcrumb-item+.breadcrumb-item::before {
	color: var(--white-color);
}

.our-approach {
	padding: 100px 0;
}

.approach-goal-item {
	position: relative;
	margin-bottom: 20px;
}

.approach-goal-img figure {
	display: block;
	border-radius: 20px;
}

.approach-goal-img figure:before {
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	top: auto;
	right: 0;
	bottom: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(38, 81, 74, 0.00) 37.39%, rgba(38, 81, 74, 0.80) 93.02%);
	z-index: 1;
}

.approach-goal-img img {
	width: 100%;
	aspect-ratio: 1 / 0.32;
	object-fit: cover;
}

.approach-goal-content {
	position: absolute;
	right: 40px;
	bottom: 40px;
	left: 40px;
	z-index: 1;
}

.approach-goal-content h3,
.mission-vision-item h3 {
	position: relative;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.2em;
	line-height: normal;
	text-transform: uppercase;
	color: var(--white-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.approach-goal-content h3::before,
.mission-vision-item h3::before {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	background: url('../images/icon-sub-heading.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 50%;
	width: 20px;
	height: 20px;
	transition: all 0.4s ease-in-out;
}

.approach-goal-content h2 {
	font-size: 22px;
	color: var(--white-color);
	text-transform: capitalize;
}

.our-approach-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.mission-vision-item {
	position: relative;
	width: calc(50% - 15px);
	background: url('../images/mission-vision-item-bg.html') no-repeat;
	background-position: top left;
	background-size: auto;
	background: var(--bg-color);
	border-radius: 20px;
	padding: 30px;
	overflow: hidden;
}

.mission-vision-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 999px 999px 0 0;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
}

.mission-vision-item.active::before,
.mission-vision-item:hover::before {
	height: 100%;
	border-radius: 0;
}

.mission-vision-item.active h3::before,
.mission-vision-item:hover h3::before {
	filter: brightness(0) invert(0);
}

.mission-vision-item h3,
.mission-vision-item h2,
.mission-vision-item p {
	position: relative;
	z-index: 1;
}

.mission-vision-item h3 {
	color: var(--primary-color);
	margin-bottom: 40px;
}

.mission-vision-item h2 {
	font-size: 20px;
	margin-bottom: 20px;
}

.mission-vision-item p {
	color: var(--primary-color);
	margin: 0;
}

.our-features {
	padding: 100px 0;
}

.our-features-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.our-features-item {
	width: calc(33.33% - 40px);
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
}

.our-features-item:nth-child(even) {
	flex-direction: column-reverse;
}

.our-features-image figure {
	display: block;
	border-radius: 20px;
}

.our-features-image img {
	width: 100%;
	aspect-ratio: 1 / 0.84;
	object-fit: cover;
	border-radius: 20px;
}

.our-features-content {
	display: flex;
	gap: 15px;
}

.our-features-body {
	width: calc(100% - 95px);
}

.our-features-body h2 {
	font-size: 50px;
	margin-bottom: 25px;
}

.our-features-body h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.our-features-body p {
	margin: 0;
}

.our-features-content .icon-box img {
	width: 100%;
	max-width: 80px;
}

.our-team {
	padding: 100px 0 70px;
}

.team-item {
	height: calc(100% - 30px);
	background: var(--white-color);
	box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.04);
	margin-bottom: 30px;
	border-radius: 20px;
	overflow: hidden;
}

.team-image {
	position: relative;
}

.team-image a {
	display: block;
	cursor: none;
	overflow: hidden;
}

.team-image img {
	width: 100%;
	aspect-ratio: 1 / 1.14;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-item:hover .team-image img {
	transform: scale(1.1);
}

.team-social-icon {
	position: absolute;
	top: 50%;
	left: 20px;
	right: 20px;
	opacity: 0;
	visibility: hidden;
	transform: translateY(50%);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-social-icon {
	transform: translateY(-50%);
	opacity: 1;
	visibility: visible;
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	text-align: center;
	gap: 15px;
}

.team-social-icon ul li a {
	width: 30px;
	height: 30px;
	color: var(--white-color);
	background: var(--primary-color);
	border-radius: 4px;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
	background: var(--accent-color);
	color: var(--primary-color);
}

.team-social-icon ul li a i {
	color: inherit;
	font-size: 16px;
}

.team-content {
	padding: 20px;
	text-align: center;
}

.team-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.team-content h3 a {
	display: inline-block;
	color: inherit;
}

.team-content p {
	text-transform: capitalize;
	margin: 0;
}

.our-expertise {
	padding: 100px 0;
}

.our-expertise-body ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
	list-style: none;
	margin: 0 0 40px;
	padding: 0;
}

.our-expertise-body ul li {
	position: relative;
	line-height: 1.4em;
	padding-left: 30px;
}

.our-expertise-body ul li::before {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.skills-progress-bar {
	margin-bottom: 30px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0px;
}

.skills-progress-bar .skill-data {
	display: flex;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 15px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
	color: var(--primary-color);
	text-transform: capitalize;
}

.skills-progress-bar .skillbar .skill-progress {
	position: relative;
	width: 100%;
	height: 16px;
	background: var(--divider-color);
	border-radius: 100px;
	overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 100px;
}

.expertise-image {
	position: relative;
	padding: 0 0 60px 80px;
	overflow: hidden;
	margin-left: 15px;
}

.expertise-img figure {
	display: block;
	border-radius: 20px;
}

.expertise-img img {
	width: 100%;
	aspect-ratio: 1 / 0.891;
	object-fit: cover;
	border-radius: 20px;
}

.expertise-image-list {
	max-width: 216px;
	position: absolute;
	bottom: 0;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	z-index: 1;
}

.expertise-list-img {
	border: 6px solid var(--bg-color);
	border-radius: 20px;
	overflow: hidden;
}

.expertise-list-img img {
	width: 100%;
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
}

.expertise-image .about-image-circle {
	top: auto;
	left: auto;
	right: 180px;
	bottom: 0;
}

/************************************/
/*** 	 19. Services Page css	  ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

.page-services .service-item {
	background: var(--primary-color);
}

/************************************/
/*** 	 20. Service Single css	  ***/
/************************************/

.page-service-single {
	padding: 100px 0;
}

.page-single-sidebar {
	position: sticky;
	top: 20px;
	margin-right: 15px;
}

.page-category-list {
	border-radius: 20px;
	margin-bottom: 60px;
	overflow: hidden;
}

.page-category-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	background: var(--accent-color);
	padding: 26px 40px;
}

.page-category-list ul {
	background-color: var(--primary-color);
	list-style: none;
	margin: 0;
	padding: 40px;
}

.page-category-list ul li {
	text-transform: capitalize;
	line-height: 1.5em;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.page-category-list ul li:last-child {
	margin: 0;
	padding: 0;
	border-bottom: none;
}

.page-category-list ul li a {
	position: relative;
	display: block;
	color: var(--white-color);
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.page-category-list ul li:hover a {
	color: var(--accent-color);
}

.page-category-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: url('../images/arrow-white.svg') no-repeat;
	background-size: cover;
	background-position: center center;
	width: 22px;
	height: 22px;
}

.sidebar-cta-box {
	position: relative;
	background: url('../images/sidebar-cta-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 20px;
	padding: 40px;
	overflow: hidden;
}

.sidebar-cta-box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.sidebar-cta-logo,
.cta-contact-item,
.sidebar-cta-image {
	position: relative;
	z-index: 1;
}

.sidebar-cta-logo {
	margin-bottom: 20px;
}

.sidebar-cta-logo img {
	width: 100%;
	max-width: 168px;
}

.cta-contact-item {
	background: var(--dark-divider-color);
	backdrop-filter: saturate(140%) blur(10px);
	-webkit-backdrop-filter: saturate(140%) blur(10px);
	padding: 20px 30px;
	border-radius: 20px;
	margin-bottom: 30px;
}

.cta-contact-header {
	display: flex;
	align-items: center;
	margin-bottom: 10px;
}

.cta-contact-header img {
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

.cta-contact-header p {
	color: var(--white-color);
	margin-bottom: 0;
}

.cta-contact-item-content h3 {
	font-size: 24px;
	color: var(--white-color);
}

.cta-contact-item-content h3 a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.cta-contact-item-content h3 a:hover {
	color: var(--accent-color);
}

.sidebar-cta-image {
	border-radius: 20px;
	overflow: hidden;
}

.sidebar-cta-image figure {
	display: block;
}

.sidebar-cta-image img {
	width: 100%;
	aspect-ratio: 1 / 0.483;
	object-fit: cover;
}

.page-single-image {
	margin-bottom: 40px;
}

.page-single-image figure {
	display: block;
	border-radius: 20px;
}

.page-single-image img {
	width: 100%;
	aspect-ratio: 1 / 0.598;
	object-fit: cover;
	border-radius: 20px;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry h2 {
	font-size: 50px;
	font-weight: 700;
	margin-bottom: 20px;
}

.service-entry ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-entry ul li {
	position: relative;
	width: calc(50% - 10px);
	line-height: 1.5em;
	padding-left: 30px;
}

.service-entry ul li::before {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.service-deliver-box,
.service-quality-box,
.service-caring-box {
	margin-top: 60px;
}

.service-deliver-image-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-deliver-image,
.service-deliver-content {
	width: calc(50% - 15px);
}

.service-deliver-image figure {
	display: block;
	border-radius: 20px;
	height: 100%;
}

.service-deliver-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.75;
	object-fit: cover;
	border-radius: 20px;
}

.service-deliver-item {
	display: flex;
	background: var(--primary-color);
	border-radius: 20px;
	margin-bottom: 30px;
	padding: 30px;
}

.service-deliver-item:last-child {
	margin-bottom: 0;
}

.service-deliver-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
}

.service-deliver-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 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;
}

.service-deliver-item:hover .icon-box::before {
	transform: scale(1);
}

.service-deliver-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.service-deliver-item-content {
	width: calc(100% - 70px);
}

.service-deliver-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.service-deliver-item-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.service-quality-list,
.page-single-image-video {
	margin-top: 40px;
}

.page-single-image-video {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
}

.page-single-image-video figure {
	display: block;
	border-radius: 20px;
}

.page-single-image-video figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	opacity: 70%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.page-single-image-video img {
	width: 100%;
	aspect-ratio: 1 / 0.35;
	object-fit: cover;
	border-radius: 20px;
}

.page-single-image-video .video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.page-single-image-video .video-play-button a {
	width: 50px;
	height: 50px;
	margin: 0;
}

.page-single-image-video .video-play-button a:before,
.page-single-image-video .video-play-button a:after {
	content: '';
	position: absolute;
	top: -50%;
	left: -50%;
	width: 160%;
	height: 160%;
	border: 50px solid var(--white-color);
	opacity: 30%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.page-single-image-video .video-play-button a:after {
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.service-caring-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-caring-item {
	position: relative;
	width: calc(50% - 15px);
	display: flex;
	border-left: 4px solid var(--accent-color);
	background: var(--primary-color);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
	transition: all 0.6s ease-in-out;
}

.service-caring-item:hover {
	background: transparent;
}

.service-caring-item::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.service-caring-item:hover::before {
	width: 100%;
}

.service-caring-item .icon-box {
	position: relative;
	width: 50px;
	height: 50px;
	background: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	z-index: 1;
}

.service-caring-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100%;
	background: var(--white-color);
	border-radius: 50%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
	z-index: 0;
}

.service-caring-item:hover .icon-box::before {
	transform: scale(1);
}

.service-caring-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 24px;
	z-index: 1;
}

.service-caring-item-content {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.service-caring-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 5px;
	transition: all 0.4s ease-in-out;
}

.service-caring-item-content p {
	color: var(--white-color);
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.service-caring-item:hover .service-caring-item-content h3,
.service-caring-item:hover .service-caring-item-content p {
	color: var(--primary-color);
}

.page-single-faqs .faq-accordion .accordion-item {
	border-bottom-color: var(--divider-color);
}

.page-single-faqs .faq-accordion .accordion-header .accordion-button {
	color: var(--primary-color);
}

.page-single-faqs .faq-accordion .accordion-item .accordion-button.collapsed::after {
	color: var(--primary-color);
}

.page-single-faqs .faq-accordion .accordion-item .accordion-body p {
	color: var(--text-color);
}

/************************************/
/*** 	 21. Blog Archive css	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-pagination {
	margin-top: 30px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--divider-color);
	color: var(--primary-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 600;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--accent-color);
}

/************************************/
/*** 	 22. Blog Single css	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-single-meta {
	margin-top: 5px;
}

.post-single-meta ol li {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child {
	margin-right: 0;
}

.post-single-meta ol li i {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
	border-radius: 20px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 20px;
}

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 700;
	line-height: 1.1em;
	margin: 0 0 0.4em;
}

.post-entry h1 {
	font-size: 70px;
}

.post-entry h2 {
	font-size: 50px;
}

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 20px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.6em;
	color: var(--text-color);
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: url('../images/icon-blockquote.svg'), var(--primary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
	background-size: 45px;
	border-radius: 20px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1em;
	background: var(--primary-color);
	color: var(--white-color);
	border-radius: 10px;
	padding: 12px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--accent-color);
	color: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--primary-color);
	color: var(--white-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--accent-color);
	color: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/*** 	 23. Our Products css	  ***/
/************************************/

.page-product {
	padding: 100px 0;
}

.our-product-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.product-item {
	width: calc(25% - 22.5px);
	background: var(--white-color);
	border-radius: 20px;
	text-align: center;
	padding: 30px;
}

.product-image {
	margin-bottom: 15px;
}

.product-image img {
	width: 100%;
	object-fit: contain;
}

.product-rating {
	margin-bottom: 15px;
}

.product-rating i {
	color: var(--accent-color);
}

.product-item-content h2 {
	font-size: 20px;
	margin-bottom: 10px;
}

.product-item-content h2 a {
	color: inherit;
}

.product-item-content h3 {
	font-size: 20px;
	color: var(--accent-color);
}

.product-item-content h3 span {
	font-size: 14px;
	text-decoration: line-through;
	color: var(--primary-color);
	opacity: 30%;
}

.page-product .page-pagination {
	margin-top: 60px;
}

/************************************/
/*** 	 24. Product Single css	  ***/
/************************************/

.page-product-single {
	padding: 100px 0;
}

.product-about-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px 60px;
}

.product-single-content,
.team-member-image {
	width: calc(50% - 30px);
}

.team-member-image {
	background: var(--white-color);
	border-radius: 20px;
	text-align: center;
	align-content: center;
	padding: 100px 40px;
}

.team-member-image figure img {
	width: 100%;
	max-width: 400px;
}

.customer-rating-box {
	margin-bottom: 30px;
}

.customer-rating-box i {
	font-size: 18px;
	color: var(--accent-color);
	margin-right: 2px;
}

.customer-rating-box i:last-child {
	margin-right: 0;
}

.customer-rating-box span {
	font-size: 14px;
	color: var(--primary-color);
	margin-left: 5px;
}

.product-single-content h3 {
	font-size: 30px;
	margin-bottom: 20px;
}

.product-single-content h3 span {
	font-size: 20px;
	color: var(--primary-color);
	opacity: 0.3;
	text-decoration: line-through;
}

.product-single-content h2 {
	font-size: 46px;
	margin-bottom: 20px;
}

.product-single-content p {
	margin-bottom: 20px;
}

.product-single-content ul {
	list-style: disc;
	padding: 0 0 0 22px;
	margin: 0 0 20px 0;
}

.product-single-content ul li {
	line-height: 1.4em;
	margin-bottom: 12px;
}

.product-single-content ul li:last-child {
	margin-bottom: 0;
}

.product-cart-btn {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 30px;
}

.product-cart-btn input {
	display: block;
	width: 50px;
	background: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	text-align: center;
	padding: 5px;
}

.product-cart-btn input:focus-visible {
	outline: none;
}

.product-cart-btn .btn-default {
	padding: 17px 20px;
}

.product-cart-btn .btn-default::before {
	display: none;
}

.product-single-info {
	margin-top: 100px;
}

.product-step-nav {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.product-step-nav .nav-tabs {
	padding: 0;
	margin: 0;
	list-style: none;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	border: none;
}

.product-step-nav ul li {
	width: auto;
}

.product-step-nav ul li .nav-link {
	position: relative;
	width: 100%;
	background: transparent;
	border: none;
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 600;
	line-height: 1em;
	padding: 0;
	border-radius: 0;
	margin: 0;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.product-step-nav ul li .nav-link.active,
.product-step-nav ul li .nav-link:hover {
	background: transparent;
	color: var(--accent-color);
}

.product-step-nav ul li .nav-link::before {
	content: '';
	display: block;
	position: absolute;
	top: auto;
	left: auto;
	bottom: -32px;
	right: 0;
	background: var(--primary-color);
	width: 0;
	height: 2px;
	transition: all 0.4s ease-in-out;
}

.product-step-nav ul li .nav-link.active::before,
.product-step-nav ul li .nav-link:hover:before {
	width: 100%;
	right: auto;
	left: 0;
}

.product-tab-item-box h3 {
	font-size: 20px;
	margin-top: 20px;
}

.product-tab-item-box h2 {
	font-size: 46px;
	margin-top: 20px;
}

.product-tab-item-box p {
	margin: 20px 0 0 0;
}

.product-tab-item-box ul {
	list-style: disc;
	padding: 0 0 0 22px;
	margin: 20px 0 0 0;
}

.product-tab-item-box ul li {
	line-height: 1.4em;
	margin-bottom: 12px;
}

.product-tab-item-box ul li:last-child {
	margin-bottom: 0;
}

.product-review-from-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
}

.review-form,
.customer-review-list {
	width: calc(50% - 30px);
}

.customer-review-item {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.customer-review-item:last-child {
	margin-bottom: 0;
}

.customer-review-item .icon-box {
	margin-right: 20px;
}

.customer-review-item .icon-box img {
	width: 100%;
	max-width: 60px;
	border-radius: 50%;
}

.customer-review-item-body {
	width: calc(100% - 80px);
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 10px;
}

.customer-review-item-content p {
	margin: 0 0 5px 0;
}

.customer-review-item-content p:last-child {
	margin-bottom: 0;
}

.customer-review-item-content p span {
	color: var(--primary-color);
	font-weight: 600;
}

.customer-review-item-rating i {
	color: var(--accent-color);
	font-size: 16px;
}

.review-form-content {
	margin-bottom: 30px;
}

.review-form-content h3 {
	font-size: 20px;
	margin: 0;
}

.review-form-content p {
	margin: 15px 0 0 0;
}

.review-form .form-control {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.445em;
	color: var(--white-color);
	background-color: transparent;
	border: 1px solid var(--divider-color);
	border-radius: 10px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.review-form .form-control::placeholder {
	color: var(--primary-color);
}

.review-form-note {
	display: flex;
	align-items: baseline;
	gap: 5px;
}

.review-form-note .form-label {
	margin: 0;
}

.review-form .btn-default {
	width: 100%;
	padding: 17px;
	margin-top: 20px;
}

.review-form .btn-default::before {
	display: none;
}

.related-products-box {
	margin-top: 100px;
}

.related-products-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.related-products-box .section-title {
	max-width: 700px;
	margin: 0 auto 40px;
	text-align: center;
}

/************************************/
/*** 	   25. Team Page css	  ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/*** 	 26. Team Single css	  ***/
/************************************/

.page-team-single {
	padding: 100px 0;
}

.team-single-image {
	margin-bottom: 60px;
}

.team-single-image figure {
	display: block;
	border-radius: 20px;
}

.team-single-image img {
	width: 100%;
	aspect-ratio: 1 / 1.58;
	object-fit: cover;
	border-radius: 20px;
}

.team-sidebar-category-box {
	background: var(--white-color);
	border-radius: 20px;
	padding: 40px;
}

.team-sidebar-category-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 25px;
	padding-bottom: 25px;
}

.team-sidebar-category-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.team-sidebar-category-item h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.team-category-info {
	display: flex;
	align-items: center;
}

.team-category-info img {
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

.team-category-info p {
	margin-bottom: 0;
}

.team-sidebar-category-item ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-sidebar-category-item ul li {
	display: inline-block;
	border-radius: 50%;
	margin-right: 15px;
}

.team-sidebar-category-item ul li:last-child {
	margin-right: 0;
}

.team-sidebar-category-item ul li a {
	background: var(--primary-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-sidebar-category-item ul li:hover a {
	background-color: var(--accent-color);
}

.team-sidebar-category-item ul li a i {
	color: var(--white-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.team-sidebar-category-item ul li:hover a i {
	color: var(--primary-color);
}

.team-member-about,
.team-member-service,
.team-skills-box {
	margin-bottom: 60px;
}

.team-member-about .section-title {
	margin-bottom: 0;
}

.member-service-list,
.member-service-counters {
	margin-top: 40px;
}

.member-service-list ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.member-service-list ul li {
	position: relative;
	line-height: 1.4em;
	padding-left: 25px;
	margin-bottom: 15px;
}

.member-service-list ul li:last-child {
	margin-bottom: 0;
}

.member-service-list ul li::before {
	content: '\f14a';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	top: 0;
	left: 0;
	font-size: 18px;
	font-weight: 900;
	color: var(--accent-color);
}

.member-service-counters {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.member-service-counter-item {
	position: relative;
	width: calc(33.33% - 20px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 40px 35px;
	overflow: hidden;
}

.member-service-counter-item::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	width: 100%;
	height: 0;
	background-color: var(--primary-color);
	border-radius: 500px 500px 0 0;
	transition: all 0.4s ease-in-out;
}

.member-service-counter-item:hover:before {
	height: 100%;
	border-radius: 0;
}

.member-service-counter-item h2,
.member-service-counter-item p {
	position: relative;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.member-service-counter-item h2 {
	font-size: 50px;
	margin-bottom: 5px;
}

.member-service-counter-item:hover h2 {
	color: var(--accent-color);
}

.member-service-counter-item p {
	margin-bottom: 0;
}

.member-service-counter-item:hover p {
	color: var(--white-color);
}

.team-skills-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 30px;
	margin-top: 40px;
}

.team-skills-list .skills-progress-bar {
	width: calc(50% - 15px);
	margin-bottom: 0;
}

.team-skills-list .skills-progress-bar .skill-data .skill-title,
.team-skills-list .skills-progress-bar .skill-data .skill-no {
	color: var(--text-color);
}

.team-skills-list .skills-progress-bar .skillbar .skill-progress {
	background: var(--divider-color);
}

.team-skills-list .skills-progress-bar .skillbar .skill-progress .count-bar {
	background: var(--primary-color);
}

/************************************/
/***  27. Testimonials Page css	  ***/
/************************************/

.page-testimonials {
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
	background-color: var(--primary-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.page-testimonials .testimonial-item .testimonial-content {
	margin-bottom: 40px;
}

/************************************/
/*** 	 28. Image Gallery css	  ***/
/************************************/

.page-gallery {
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
	cursor: none;
}

.page-gallery-box .photo-gallery figure {
	display: block;
	border-radius: 20px;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	 29. Video Gallery css	  ***/
/************************************/

.page-video-gallery {
	padding: 100px 0 70px;
}

.video-gallery-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a {
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 20px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
	opacity: 50%;
	visibility: visible;
	transform: scale(1);
}

.video-gallery-image a::after {
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.video-gallery-image:hover a::after {
	opacity: 1;
	visibility: visible;
}

.video-gallery-image img {
	width: 100%;
	aspect-ratio: 1 / 0.829;
	object-fit: cover;
	border-radius: 20px;
}

/************************************/
/*** 	  30. FAQs Page css		  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.page-faqs .page-faq-accordion {
	margin-bottom: 60px;
}

.page-faqs .page-faq-accordion:last-child {
	margin-bottom: 0px;
}

/************************************/
/*** 	31. Contact Us Page css	  ***/
/************************************/

.page-contact-us {
	padding: 100px 0;
}

.contact-us-content {
	margin-right: 20px;
}

.contact-info-item {
	display: flex;
	flex-wrap: wrap;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.contact-info-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.contact-info-item .icon-box {
	position: relative;
	background-color: var(--accent-color);
	height: 50px;
	width: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	overflow: hidden;
	z-index: 1;
}

.contact-info-item .icon-box::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	border-radius: 50%;
	background-color: var(--primary-color);
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	height: 100%;
	height: 100%;
}

.contact-info-item:hover .icon-box::before {
	transform: scale(1);
}

.contact-info-item .icon-box img {
	position: relative;
	max-width: 24px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.contact-info-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.contact-item-content {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.contact-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.contact-item-content p {
	margin: 0;
}

.contact-item-content p a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.contact-item-content p a:hover {
	color: var(--primary-color);
}

.contact-social-links {
	display: flex;
	align-items: center;
	gap: 20px;
	border-top: 1px solid var(--divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.contact-social-links h3 {
	font-size: 20px;
}

.contact-social-links ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.contact-social-links ul li {
	display: inline-block;
	border-radius: 50%;
	margin-right: 10px;
}

.contact-social-links ul li:last-child {
	margin-right: 0;
}

.contact-social-links ul li a {
	background: var(--primary-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.contact-social-links ul li:hover a {
	background-color: var(--accent-color);
}

.contact-social-links ul li a i {
	color: var(--white-color);
	font-size: 18px;
	transition: all 0.3s ease-in-out;
}

.contact-social-links ul li:hover a i {
	color: var(--primary-color);
}

.contact-us-form {
	position: relative;
	border-radius: 20px;
	padding: 40px;
}

.contact-form .form-control {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.445em;
	color: var(--white-color);
	background-color: var(--dark-divider-color);
	border: none;
	border-radius: 20px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder {
	color: var(--white-color);
}

.contact-form .btn-default {
	width: 100%;
	padding: 17px;
}

.contact-form .btn-default::before {
	display: none;
}

.google-map .container-fluid {
	padding: 0;
}

.google-map-iframe {
	height: 700px;
}

.google-map-iframe iframe {
	width: 100%;
	height: 700px;
	filter: grayscale(1);
	transition: all 0.4s ease-in-out;
}

.google-map-iframe iframe:hover {
	filter: grayscale(0);
}

/************************************/
/*** 	32. 404 Error Page css	  ***/
/************************************/

.error-page {
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 45%;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 15px;
}

/************************************/
/***      33. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1024px) {

	.main-menu ul li {
		margin: 0;
	}
}

@media only screen and (max-width: 991px) {

	body {
		font-size: 16px;
	}

	.btn-default {
		font-size: 16px;
		padding: 14px 50px 14px 15px;
	}

	.btn-default::before {
		width: 35px;
		height: 35px;
	}

	.navbar {
		padding: 5px 0;
	}

	.navbar-brand {
		width: 70px
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-row .section-title.section-title-center {
		max-width: 100%;
	}

	.section-content-btn .section-btn {
		margin-top: 20px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h3 {
		padding-left: 25px;
		background-size: 18px auto;
	}

	.section-title h1 {
		font-size: 50px;
	}

	.section-title h2 {
		font-size: 38px;
	}

	.section-title p {
		margin-top: 10px;
	}

	.section-title-content {
		margin-top: 10px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.hero {
		padding: 170px 0 80px;
	}

	.hero-content .section-title p {
		max-width: 100%;
	}

	.hero-btn {
		margin: 0 0 30px;
	}

	.our-scrolling-ticker {
		padding: 20px 0;
	}

	.scrolling-ticker-box {
		--gap: 20px;
	}

	.scrolling-content span {
		font-size: 24px;
	}

	.scrolling-content span img {
		max-width: 26px;
		margin-right: 20px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-us::before {
		bottom: 40px;
		width: 170px;
		height: 170px;
		opacity: 20%;
	}

	.about-us-images {
		max-width: 70%;
		margin: 0 auto 30px;
	}

	.about-image-circle {
		top: -65px;
	}

	.about-image-circle a img {
		max-width: 120px;
	}

	.about-us-list,
	.about-us-body {
		margin-bottom: 30px;
	}

	.about-us-list ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.about-us-footer {
		gap: 20px 30px;
	}

	.our-services {
		padding: 50px 0;
	}

	.service-item,
	.service-cta-box {
		padding: 30px;
	}

	.service-item .icon-box {
		height: 50px;
		width: 50px;
		margin-bottom: 30px;
	}

	.service-item .icon-box img {
		max-width: 26px;
	}

	.service-item-content {
		margin-bottom: 20px;
	}

	.service-item-content h3 {
		margin-bottom: 10px;
	}

	.service-cta-box-info {
		margin-bottom: 20px;
	}

	.service-cta-box-info h2 {
		font-size: 26px;
	}

	.section-footer-text {
		margin-top: 10px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-content,
	.why-choose-image {
		width: 100%;
	}

	.why-choose-item {
		margin-bottom: 30px;
		padding-bottom: 30px;
		padding-right: 0;
	}

	.why-choose-item-content h3 {
		font-size: 20px;
	}

	.why-choose-list ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.why-choose-btn {
		margin-top: 30px;
	}

	.why-choose-body-img img {
		aspect-ratio: 1 / 0.9;
		object-position: top center;
	}

	.why-choose-image {
		padding: 0 0 50px 0;
	}

	.why-choose-image img {
		aspect-ratio: 1 / 0.8;
		object-position: top center;
	}

	.company-experience-box h3 {
		font-size: 26px;
	}

	.intro-video {
		padding: 250px 0 50px;
	}

	.intro-video-list {
		margin-top: 30px;
		padding-top: 30px;
	}

	.intro-video-list ul {
		gap: 15px 20px;
	}

	.intro-video-list ul li {
		width: calc(50% - 10px);
		padding-left: 25px;
	}

	.what-we-do {
		padding: 50px 0;
	}

	.what-we-do-content {
		margin-right: 0;
		margin-bottom: 30px;
	}

	.what-we-do-body {
		margin-bottom: 30px;
	}

	.what-we-do-list {
		width: calc(100% - 170px);
	}

	.what-we-do-list ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.what-we-do-body .about-image-circle a img {
		max-width: 140px;
	}

	.what-we-do-images {
		max-width: 80%;
		padding: 15px 240px 140px 25px;
		margin: 0 auto;
	}

	.what-we-do-img-1 img {
		aspect-ratio: 1 / 1.34;
	}

	.what-we-do-img-2 {
		top: 5px;
		right: 15px;
		max-width: 240px;
	}

	.what-we-do-img-2::before {
		right: 30px;
		height: 110px;
		width: 70px;
	}

	.what-we-do-img-2 img {
		aspect-ratio: 1 / 1.32;
	}

	.what-we-do-img-3 {
		max-width: 330px;
	}

	.what-we-do-img-3 img {
		aspect-ratio: 1 / 0.62;
	}

	.client-review-box {
		padding: 15px;
	}

	.our-facts-image {
		max-width: 60%;
		height: auto;
		margin: 0 auto;
	}

	.facts-counter-box {
		padding: 30px 0;
		margin: 30px 0;
	}

	.fact-counter-item h2 {
		font-size: 34px;
	}

	.our-facts-content {
		height: auto;
		margin-bottom: 30px;
	}

	.our-facts-list ul {
		gap: 15px 30px;
	}

	.our-facts-list ul li {
		padding-left: 25px;
	}

	.our-facts-btn {
		margin-top: 30px;
	}

	.our-potential {
		padding: 50px 0;
	}

	.our-potential-content {
		height: auto;
		margin-bottom: 30px;
	}

	.our-potential-counter {
		padding-bottom: 30px;
		margin-bottom: 30px;
	}

	.potential-counter-item .counter-circle {
		width: 100px;
		height: 100px;
	}

	.potential-counter-item .counter-circle h2 {
		font-size: 26px;
	}

	.potential-counter-content {
		width: calc(100% - 120px);
	}

	.potential-body-list ul li {
		padding-left: 25px;
		margin-bottom: 10px;
	}

	.potential-body-content h3 {
		margin-bottom: 15px;
	}

	.our-potential-img {
		margin-left: 0px;
	}

	.our-potential-img img {
		aspect-ratio: 1 / 0.9;
	}

	.our-testimonial {
		padding: 50px 0;
	}

	.our-testimonial-image {
		margin: 0 0 30px;
	}

	.our-testimonial-image img {
		aspect-ratio: 1 / 0.8;
	}

	.testimonial-rating {
		margin-bottom: 10px;
	}

	.testimonial-content {
		margin-bottom: 50px;
	}

	.testimonial-content p {
		font-size: 18px;
	}

	.testimonial-slider .testimonial-button-next,
	.testimonial-slider .testimonial-button-prev {
		width: 40px;
		height: 40px;
	}

	.testimonial-slider .testimonial-button-next::before,
	.testimonial-slider .testimonial-button-prev::before {
		background-size: 20px auto;
	}

	.testimonial-company-slider {
		padding-top: 40px;
		margin-top: 40px;
	}

	.our-goals {
		padding: 50px 0;
	}

	.our-goals-content {
		margin-bottom: 30px;
	}

	.goals-item {
		padding: 20px;
	}

	.goals-item .icon-box {
		margin-bottom: 30px;
	}

	.goals-content-footer {
		margin-top: 30px;
	}

	.our-goals-images {
		margin-left: 0px;
	}

	.our-faqs {
		padding: 50px 0;
	}

	.our-faqs-content {
		position: initial;
		margin-right: 0;
		margin-bottom: 30px;
	}

	.faq-cta-box {
		padding: 20px;
	}

	.faq-accordion .accordion-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.our-blog {
		padding: 50px 0 20px;
	}

	.post-item-content {
		margin-bottom: 15px;
	}

	footer.main-footer {
		padding: 50px 0 0 0;
	}

	.footer-newsletter-box {
		margin-bottom: 30px;
	}

	.newsletter-form .form-group {
		width: 100%;
	}

	.newsletter-form .form-group .form-control {
		padding: 12px 15px;
	}

	.newsletter-form .form-group .newsletter-btn i {
		font-size: 24px;
	}

	.footer-links h3 {
		margin-bottom: 20px;
	}

	.footer-cta-box {
		margin-top: 30px;
		padding: 30px;
	}

	.footer-contact-item {
		padding-right: 20px;
		margin-right: 20px;
	}

	.footer-copyright {
		padding: 30px 0;
	}

	.footer-menu ul li {
		margin-right: 20px;
	}

	.footer-menu ul li::before {
		right: -14px;
	}

	.page-header {
		padding: 170px 0 80px;
	}

	.page-header-box h1 {
		font-size: 50px;
	}

	.our-approach {
		padding: 50px 0;
	}

	.approach-goal-img img {
		aspect-ratio: 1 / 0.42;
	}

	.approach-goal-content {
		right: 20px;
		bottom: 20px;
		left: 20px;
	}

	.approach-goal-content h3,
	.mission-vision-item h3 {
		padding-left: 25px;
	}

	.approach-goal-content h3::before,
	.mission-vision-item h3::before {
		width: 18px;
		height: 18px;
	}

	.approach-goal-content h3 {
		margin-bottom: 10px;
	}

	.approach-goal-content h2 {
		font-size: 20px;
	}

	.mission-vision-item {
		padding: 20px;
	}

	.mission-vision-item h3 {
		margin-bottom: 30px;
	}

	.mission-vision-item h2 {
		margin-bottom: 15px;
	}

	.our-features {
		padding: 50px 0;
	}

	.our-features-item {
		width: 100%;
		align-items: center;
		gap: 20px 30px;
	}

	.our-features-item:nth-child(even) {
		flex-direction: row-reverse;
	}

	.our-features-image,
	.our-features-content {
		width: calc(50% - 15px);
	}

	.our-features-image img {
		aspect-ratio: 1 / 0.72;
	}

	.our-features-body {
		width: calc(100% - 75px);
	}

	.our-features-body h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.our-features-content .icon-box img {
		max-width: 60px;
	}

	.our-team {
		padding: 50px 0;
	}

	.team-image img {
		aspect-ratio: 1 / 0.98;
	}

	.our-expertise {
		padding: 50px 0;
	}

	.our-expertise-content {
		margin-bottom: 30px;
	}

	.our-expertise-body ul {
		margin: 0 0 30px;
	}

	.our-expertise-body ul li {
		padding-left: 25px;
	}

	.skills-progress-bar {
		margin-bottom: 20px;
	}

	.expertise-image {
		margin-left: 0;
	}

	.expertise-image-list {
		max-width: 190px;
	}

	.page-services {
		padding: 50px 0 20px;
	}

	.page-service-single {
		padding: 50px 0;
	}

	.page-single-sidebar {
		position: initial;
		margin: 0 0 30px;
	}

	.page-category-list {
		margin-bottom: 30px;
	}

	.page-category-list h3 {
		padding: 20px;
	}

	.page-category-list ul {
		padding: 30px;
	}

	.page-category-list ul li {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.page-category-list ul li a {
		padding-right: 25px;
	}

	.page-category-list ul li a::before {
		width: 20px;
		height: 20px;
	}

	.sidebar-cta-box {
		padding: 30px;
	}

	.sidebar-cta-logo {
		margin-bottom: 15px;
	}

	.cta-contact-item {
		padding: 15px 20px;
		margin-bottom: 20px;
	}

	.cta-contact-item-content h3 {
		font-size: 22px;
	}

	.sidebar-cta-image img {
		aspect-ratio: 1 / 0.35;
	}

	.page-single-image {
		margin-bottom: 30px;
	}

	.service-entry {
		margin-bottom: 40px;
	}

	.service-entry p {
		margin-bottom: 15px;
	}

	.service-entry h2 {
		font-size: 38px;
		margin-bottom: 15px;
	}

	.service-entry ul {
		gap: 10px 20px;
	}

	.service-entry ul li {
		padding-left: 25px;
	}

	.service-deliver-box,
	.service-quality-box,
	.service-caring-box {
		margin-top: 40px;
	}

	.service-deliver-image-content {
		margin-top: 30px;
	}

	.service-deliver-item {
		padding: 20px;
	}

	.service-quality-list,
	.page-single-image-video {
		margin-top: 30px;
	}

	.service-caring-item-list {
		gap: 20px;
		margin-top: 30px;
	}

	.service-caring-item {
		width: calc(50% - 10px);
	}

	.page-blog {
		padding: 50px 0;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

	.post-image {
		margin-bottom: 20px;
	}

	.post-entry h1,
	.post-entry h2,
	.post-entry h3,
	.post-entry h4,
	.post-entry h5,
	.post-entry h6 {
		margin: 0 0 0.42em;
	}

	.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;
	}

	.tag-links {
		gap: 10px;
	}

	.post-tags .tag-links a {
		padding: 10px 15px;
	}

	.post-social-sharing ul {
		text-align: left;
	}

	.page-product {
		padding: 50px 0;
	}

	.product-item {
		width: calc(50% - 15px);
		padding: 20px;
	}

	.product-image img {
		width: 200px;
		height: 200px;
	}

	.page-product .page-pagination {
		margin-top: 40px;
	}

	.page-product-single {
		padding: 50px 0;
	}

	.product-single-content,
	.team-member-image {
		width: 100%;
	}

	.team-member-image {
		padding: 30px;
	}

	.customer-rating-box {
		margin-bottom: 20px;
	}

	.product-single-content h3 {
		font-size: 26px;
		margin-bottom: 10px;
	}

	.product-single-content h2 {
		font-size: 36px;
		margin-bottom: 10px;
	}

	.product-single-content p {
		margin-bottom: 15px;
	}

	.product-single-content ul li {
		margin-bottom: 10px;
	}

	.product-cart-btn {
		margin-top: 20px;
	}

	.product-cart-btn .btn-default {
		padding: 15px;
	}

	.product-single-info {
		margin-top: 50px;
	}

	.product-step-nav {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.product-step-nav ul li .nav-link {
		font-size: 16px;
	}

	.product-step-nav ul li .nav-link::before {
		bottom: -21px;
	}

	.product-tab-item-box h2 {
		font-size: 36px;
		margin-bottom: 10px;
	}

	.product-tab-item-box p {
		margin: 15px 0 0 0;
	}

	.product-tab-item-box ul li {
		margin-top: 10px;
	}

	.review-form,
	.customer-review-list {
		width: 100%;
	}

	.customer-review-item {
		margin-bottom: 30px;
	}

	.customer-review-item-content p {
		margin: 0 0 5px 0;
	}

	.review-form .form-control {
		font-size: 16px;
		padding: 12px 15px;
	}

	.related-products-box {
		margin-top: 50px;
	}

	.related-products-box .section-title {
		margin: 0 auto 30px;
	}

	.page-team {
		padding: 50px 0 20px;
	}

	.page-team-single {
		padding: 50px 0;
	}

	.team-single-image {
		margin-bottom: 30px;
	}

	.team-single-image img {
		aspect-ratio: 1 / 0.8;
	}

	.team-sidebar-category-box {
		padding: 30px;
	}

	.team-sidebar-category-item {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.team-sidebar-category-item ul li {
		margin-right: 10px;
	}

	.team-member-about,
	.team-member-service,
	.team-skills-box {
		margin-bottom: 40px;
	}

	.member-service-list,
	.member-service-counters {
		margin-top: 30px;
	}

	.member-service-list ul li {
		margin-bottom: 10px;
	}

	.member-service-counter-item {
		padding: 30px 25px;
	}

	.member-service-counter-item h2 {
		font-size: 38px;
	}

	.team-skills-list {
		gap: 30px;
		margin-top: 30px;
	}

	.page-testimonials {
		padding: 50px 0 20px;
	}

	.page-testimonials .testimonial-item {
		padding: 20px;
	}

	.page-testimonials .testimonial-item .testimonial-content {
		margin-bottom: 20px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-video-gallery {
		padding: 50px 0 20px;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.page-faqs .page-faq-accordion {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 50px 0;
	}

	.contact-us-content {
		margin: 0 0 30px;
	}

	.contact-info-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.contact-social-links {
		margin-top: 20px;
		padding-top: 20px;
	}

	.contact-us-form {
		padding: 30px;
	}

	.contact-form .form-control {
		border-radius: 14px;
		padding: 13px 15px;
	}

	.contact-form .btn-default {
		padding: 14px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 450px;
	}

	.error-page {
		padding: 50px 0;
	}

	.error-page-image {
		margin-bottom: 20px;
	}

	.error-page-image img {
		max-width: 80%;
	}
}

@media only screen and (max-width: 767px) {

	.section-row {
		margin-bottom: 30px;
	}

	.section-title h1 {
		font-size: 30px;
	}

	.section-title h2 {
		font-size: 26px;
	}

	.hero::before {
		background: linear-gradient(0deg, rgba(24, 85, 92, 0.6) 87.63%, rgba(24, 85, 92, 0.60) 100.45%), linear-gradient(90deg, rgba(24, 85, 92, 0.90) 24.36%, rgba(24, 85, 92, 0.00) 100%);
	}

	.hero-btn {
		gap: 20px;
	}

	.hero-counter-box h3 {
		font-size: 18px;
	}

	.our-scrolling-ticker {
		padding: 15px 0;
	}

	.scrolling-ticker-box {
		--gap: 15px;
	}

	.scrolling-content span {
		font-size: 20px;
	}

	.scrolling-content span img {
		max-width: 22px;
		margin-right: 15px;
	}

	.about-us-images {
		max-width: 100%;
		padding: 80px 90px 130px 16px;
	}

	.about-image-2 {
		max-width: 240px;
	}

	.about-image-3 {
		max-width: 190px;
	}

	.about-image-circle a img {
		max-width: 100px;
	}

	.about-us-body {
		gap: 20px;
	}

	.about-body-image,
	.about-body-content {
		width: 100%;
	}

	.about-body-content h3 {
		font-size: 18px;
	}

	.about-us-footer {
		gap: 15px 20px;
	}

	.contact-now-box .icon-box {
		width: 44px;
		height: 44px;
		margin-right: 5px;
	}

	.contact-now-box .icon-box img {
		max-width: 20px;
	}

	.contact-now-box-content p {
		margin-bottom: 2px;
	}

	.contact-now-box-content h3 {
		font-size: 18px;
	}

	.service-item {
		padding: 20px;
	}

	.service-item .icon-box {
		margin-bottom: 20px;
	}

	.service-item-content h3 {
		font-size: 18px;
	}

	.service-cta-box {
		padding: 40px 20px;
	}

	.service-cta-box .contact-now-box .icon-box {
		margin-right: 15px;
	}

	.service-cta-box-info h3 {
		font-size: 18px;
	}

	.service-cta-box-info h2 {
		font-size: 22px;
	}

	.why-choose-content-box,
	.why-choose-body-img {
		width: 100%;
	}

	.why-choose-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.why-choose-item .icon-box {
		margin-bottom: 15px;
	}

	.why-choose-item-content h3 {
		font-size: 18px;
	}

	.why-choose-btn {
		margin-top: 20px;
	}

	.why-choose-img img {
		object-position: center center;
	}

	.company-experience-box {
		width: 110px;
		height: 110px;
		padding: 15px;
	}

	.company-experience-box h3 {
		font-size: 22px;
	}

	.company-experience-box p {
		font-size: 14px;
	}

	.intro-video .section-title {
		margin-bottom: 30px;
	}

	.video-play-button {
		justify-content: left;
	}

	.intro-video-list ul {
		gap: 10px;
	}

	.intro-video-list ul li {
		width: 100%;
	}

	.what-we-do-body {
		gap: 20px;
	}

	.what-we-do-list {
		width: 100%;
	}

	.what-we-do-body .about-image-circle a img {
		max-width: 100px;
	}

	.what-we-do-images {
		max-width: 100%;
		padding: 10px 150px 100px 15px;
	}

	.what-we-do-img-1 img {
		aspect-ratio: 1 / 1.45;
	}

	.what-we-do-img-2,
	.what-we-do-img-3 {
		border-width: 4px;
	}

	.what-we-do-img-2 figure,
	.what-we-do-img-3 figure {
		border-radius: 16px;
	}

	.what-we-do-img-2 {
		max-width: 150px;
	}

	.what-we-do-img-2::before {
		right: 18px;
		height: 80px;
		width: 40px;
	}

	.what-we-do-img-2 img {
		aspect-ratio: 1 / 1.4;
	}

	.what-we-do-img-3 {
		bottom: 10px;
		max-width: 180px;
	}

	.client-review-box {
		bottom: 10px;
		max-width: 140px;
		padding: 10px;
	}

	.client-review-images {
		margin-bottom: 5px;
	}

	.client-review-image {
		margin-left: -6px;
	}

	.client-review-image figure,
	.client-review-image.add-more {
		width: 30px;
		height: 30px;
	}

	.client-review-image.add-more p {
		font-size: 10px;
	}

	.client-review-content p {
		font-size: 12px;
	}

	.facts-counter-box {
		gap: 20px;
		padding: 20px 0;
		margin: 20px 0;
	}

	.fact-counter-item {
		width: calc(33.33% - 13.33px);
	}

	.fact-counter-item::before {
		right: -10px;
	}

	.fact-counter-item h2 {
		font-size: 28px;
	}

	.our-facts-list ul {
		gap: 10px;
	}

	.our-facts-list ul li {
		width: 100%;
	}

	.our-facts-image {
		max-width: 100%;
	}

	.our-facts-image img {
		aspect-ratio: 1 / 1.29;
		object-fit: contain;
	}

	.our-potential-counter {
		gap: 20px;
	}

	.potential-counter-item {
		width: 100%;
	}

	.potential-counter-item .counter-circle {
		border-width: 6px;
		width: 80px;
		height: 80px;
		margin-right: 10px;
	}

	.potential-counter-content {
		width: calc(100% - 90px);
	}

	.potential-counter-item .counter-circle h2 {
		font-size: 20px;
	}

	.potential-counter-content h3 {
		font-size: 18px;
	}

	.potential-body-content h3 {
		font-size: 18px;
	}

	.testimonial-content {
		margin-bottom: 20px;
	}

	.testimonial-content p {
		font-size: 16px;
	}

	.testimonial-body .author-content h3 {
		font-size: 18px;
	}

	.testimonial-btn {
		position: initial;
		justify-content: center;
	}

	.testimonial-company-slider {
		padding-top: 30px;
		margin-top: 30px;
	}

	.goals-item {
		width: 100%;
	}

	.goals-item .icon-box {
		margin-bottom: 20px;
	}

	.goals-item .icon-box img {
		max-width: 40px;
	}

	.goals-item-content h3 {
		font-size: 18px;
	}

	.goals-content-footer {
		gap: 15px;
	}

	.faq-cta-box .icon-box {
		margin-right: 10px;
	}

	.faq-cta-box .icon-box img {
		max-width: 45px;
	}

	.faq-cta-box .faq-cta-content {
		width: calc(100% - 55px);
	}

	.faq-cta-content p {
		margin-bottom: 5px;
	}

	.faq-cta-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.faq-accordion .accordion-header .accordion-button {
		font-size: 18px;
		padding-right: 20px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 16px;
	}

	.faq-accordion .accordion-item .accordion-body {
		padding-right: 0px;
	}

	.post-item-content h2 {
		font-size: 18px;
	}

	.footer-link-list {
		justify-content: initial;
		gap: 30px 60px;
	}

	.footer-links h3 {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.footer-links ul li {
		margin-bottom: 5px;
	}

	.footer-cta-box {
		padding: 20px;
	}

	.footer-logo,
	.footer-contact-box {
		width: 100%;
	}

	.footer-logo img {
		max-width: 150px;
	}

	.footer-contact-box {
		justify-content: left;
	}

	.footer-contact-item {
		padding-right: 10px;
		margin-right: 10px;
	}

	.footer-contact-item::before {
		right: -10px;
	}

	.footer-contact-item:nth-of-type(2n + 2)::before {
		display: none;
	}

	.footer-contact-item p {
		margin-bottom: 5px;
	}

	.footer-contact-item h3 {
		font-size: 16px;
	}

	.footer-copyright {
		padding: 15px 0;
	}

	.footer-copyright-text {
		margin-bottom: 5px;
		text-align: center;
	}

	.footer-menu ul {
		text-align: center;
	}

	.page-header-box h1 {
		font-size: 30px;
	}

	.page-header-box ol li.breadcrumb-item {
		font-size: 16px;
	}

	.approach-goal-img img {
		aspect-ratio: 1 / 0.82;
	}

	.approach-goal-content {
		right: 15px;
		bottom: 20px;
		left: 15px;
	}

	.approach-goal-content h2 {
		font-size: 18px;
	}

	.our-approach-content {
		gap: 20px;
	}

	.mission-vision-item {
		width: 100%;
	}

	.mission-vision-item h3 {
		margin-bottom: 15px;
	}

	.mission-vision-item h2 {
		font-size: 18px;
		margin-bottom: 10px;
	}

	.our-features-item:nth-child(even) {
		flex-direction: column;
	}

	.our-features-image,
	.our-features-content {
		width: 100%;
	}

	.our-features-image img {
		aspect-ratio: 1 / 0.67;
	}

	.our-features-body {
		width: calc(100% - 60px);
	}

	.our-features-body h2 {
		font-size: 26px;
		margin-bottom: 10px;
	}

	.our-features-body h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.our-features-content .icon-box img {
		max-width: 45px;
	}

	.team-content {
		padding: 15px;
	}

	.team-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.our-expertise-body ul {
		gap: 10px;
	}

	.our-expertise-body ul li {
		width: 100%;
	}

	.skills-progress-bar .skillbar .skill-progress {
		height: 14px;
	}

	.expertise-image {
		padding: 0 0 50px 40px;
	}

	.expertise-img figure,
	.expertise-img img {
		border-radius: 20px;
	}

	.expertise-image-list {
		max-width: 120px;
	}

	.expertise-list-img {
		border-width: 3px;
		border-radius: 12px;
	}

	.expertise-image .about-image-circle {
		right: 80px;
	}

	.page-category-list h3 {
		font-size: 18px;
		padding: 15px 20px;
	}

	.page-category-list ul {
		padding: 20px;
	}

	.sidebar-cta-box {
		padding: 20px;
	}

	.cta-contact-header {
		margin-bottom: 5px;
	}

	.cta-contact-item-content h3 {
		font-size: 20px;
	}

	.sidebar-cta-image img {
		aspect-ratio: 1 / 0.5;
	}

	.page-single-image {
		margin-bottom: 20px;
	}

	.service-entry h2 {
		font-size: 26px;
	}

	.service-entry ul li {
		width: 100%;
	}

	.service-deliver-image-content {
		gap: 20px;
	}

	.service-deliver-image,
	.service-deliver-content {
		width: 100%;
	}

	.service-deliver-image figure,
	.service-deliver-image img {
		height: auto;
	}

	.service-deliver-item {
		margin-bottom: 20px;
	}

	.service-deliver-item-content h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.page-single-image-video img {
		aspect-ratio: 1 / 0.6;
	}

	.service-caring-item {
		width: 100%;
		padding: 15px;
	}

	.service-caring-item-content h3 {
		font-size: 18px;
	}

	.page-single-faqs .faq-accordion .accordion-item .accordion-body figure,
	.page-single-faqs .faq-accordion .accordion-item .accordion-body p {
		width: 100%;
	}

	.post-single-meta ol li {
		font-size: 16px;
	}

	.post-single-meta ol li i {
		font-size: 16px;
	}

	.post-image img {
		aspect-ratio: 1 / 0.7;
	}

	.post-entry blockquote {
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px;
	}

	.post-entry blockquote p {
		font-size: 16px;
	}

	.post-entry h2 {
		font-size: 26px;
	}

	.tag-links {
		font-size: 18px;
	}

	.product-item {
		width: 100%;
	}

	.product-image img {
		width: 180px;
		height: 180px;
	}

	.product-item-content h3,
	.product-item-content h2 {
		font-size: 18px;
	}

	.customer-rating-box i {
		font-size: 16px;
	}

	.product-single-content h3 {
		font-size: 24px;
	}

	.product-single-content h3 span {
		font-size: 18px;
	}

	.product-single-content h2 {
		font-size: 26px;
	}

	.product-step-nav .nav-tabs {
		gap: 20px;
	}

	.product-tab-item-box h2 {
		font-size: 26px;
	}

	.customer-review-item .icon-box {
		margin-right: 10px;
	}

	.customer-review-item .icon-box img {
		max-width: 50px;
	}

	.customer-review-item-body {
		width: calc(100% - 60px);
	}

	.team-single-image img {
		aspect-ratio: 1 / 1.05;
	}

	.team-sidebar-category-box {
		padding: 20px;
	}

	.team-sidebar-category-item h3 {
		font-size: 18px;
	}

	.member-service-counters {
		gap: 20px;
	}

	.member-service-counter-item {
		width: calc(50% - 10px);
		padding: 15px;
	}

	.member-service-counter-item h2 {
		font-size: 26px;
	}

	.team-skills-list {
		gap: 20px;
	}

	.team-skills-list .skills-progress-bar {
		width: 100%;
	}

	.contact-info-item .icon-box {
		margin-right: 10px;
	}

	.contact-item-content {
		width: calc(100% - 60px);
	}

	.contact-item-content h3,
	.contact-social-links h3 {
		font-size: 18px;
	}

	.contact-social-links {
		gap: 10px;
	}

	.contact-social-links ul li {
		margin-right: 5px;
	}

	.contact-social-links ul li a {
		width: 36px;
		height: 36px;
	}

	.contact-us-form {
		padding: 20px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 350px;
	}
}

/* ========== CUSTOM PRODUCT SLIDER  */
/* Custom Section Variables & Container */
.custom-product-section {
	background-color: #f4f7f6;
	position: relative;
}

.custom-section-subtitle {
	color: #0d6efd;
	font-weight: 600;
	font-size: 0.9rem;
	text-transform: uppercase;
	letter-spacing: 1px;
}

.custom-section-title {
	color: #1a2b3c;
	font-weight: 700;
	font-size: 2rem;
	margin-top: 4px;
}

/* Swiper Outer Wrap */
.custom-product-slider {
	position: relative;
	padding: 10px 5px 50px 5px;
}

/* Creative Product Card Design */
.custom-card {
	background: #ffffff;
	border-radius: 16px;
	padding: 24px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
	border: 1px solid rgba(0, 0, 0, 0.04);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	height: 100%;
}

.custom-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.custom-card-img {
	width: 100%;
	/* height: 200px; */
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f8faf9;
	border-radius: 12px;
	padding: 15px;
	margin-bottom: 20px;
	overflow: hidden;
}

.custom-card-img img {
	max-height: 100%;
	max-width: 100%;
	object-fit: contain;
	transition: transform 0.4s ease;
}

.custom-card:hover .custom-card-img img {
	transform: scale(1.08);
}

.custom-card-body {
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 100%;
	flex-grow: 1;
	justify-content: space-between;
}

.custom-card-title {
	font-size: 1.15rem;
	font-weight: 600;
	color: #1a2b3c;
	margin-bottom: 20px;
	line-height: 1.4;
}

/* CTA Button */
.custom-card-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	padding: 12px 20px;
	background-color: #1a2b3c;
	color: #ffffff !important;
	border-radius: 8px;
	font-weight: 500;
	font-size: 0.95rem;
	text-decoration: none;
	transition: background-color 0.3s ease, gap 0.3s ease;
}

.custom-card-btn:hover {
	background-color: #0d6efd;
	gap: 12px;
}

/* Navigation Controls */
.custom-slider-controls {
	display: flex;
	justify-content: center;
	gap: 12px;
	margin-top: 24px;
}

.custom-nav-btn {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	border: 1px solid #dcdcdc;
	background: #ffffff;
	color: #1a2b3c;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s ease;
}

.custom-nav-btn:hover {
	background-color: #0d6efd;
	color: #ffffff;
	border-color: #0d6efd;
}

.custom-nav-btn.swiper-button-disabled {
	opacity: 0.4;
	cursor: not-allowed;
}

/* ========== CUSTOM CAT SECTION */
/* =========================================
   CATEGORY GRID
========================================= */

.cat-grid-section {
	position: relative;
	background: #f7faf8;
	overflow: hidden;
}

/* subtle background decoration */
.cat-grid-section::before {
	content: "";
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: rgba(66, 174, 42, 0.045);
	top: -180px;
	right: -150px;
	pointer-events: none;
}

.cat-grid-section::after {
	content: "";
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(7, 38, 91, 0.035);
	bottom: -150px;
	left: -120px;
	pointer-events: none;
}


/* =========================================
   HEADER
========================================= */

.cat-grid-badge {
	display: inline-flex;
	align-items: center;
	gap: 8px;

	padding: 9px 18px;

	border-radius: 50px;

	background: #e7f1eb;
	color: #0c5938;

	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.7px;

	margin-bottom: 14px;
}

.cat-grid-badge i {
	font-size: 12px;
}

.cat-grid-title {
	margin: 0 auto 12px;

	color: #071f43;

	font-size: clamp(28px, 3vw, 42px);
	line-height: 1.15;
	font-weight: 800;

	letter-spacing: -0.8px;
}

.cat-grid-desc {
	max-width: 760px;
	margin: 0 auto;

	color: #657080;

	font-size: 15px;
	line-height: 1.8;
}


/* =========================================
   CATEGORY CARD
========================================= */

.cat-grid-card {
	position: relative;

	height: 100%;

	padding: 25px 24px 23px;

	background: #ffffff;

	border: 1px solid #e6ebe8;

	border-radius: 20px;

	overflow: hidden;

	box-shadow: 0 8px 25px rgba(7, 31, 67, 0.045);

	transition:
		transform 0.35s ease,
		box-shadow 0.35s ease,
		border-color 0.35s ease;
}

/* green accent line */
.cat-grid-card::before {
	content: "";

	position: absolute;

	left: 0;
	top: 0;

	width: 100%;
	height: 4px;

	background: linear-gradient(90deg,
			#0c5938,
			#49ad2f);

	transform: scaleX(0);
	transform-origin: left;

	transition: transform 0.4s ease;
}

.cat-grid-card:hover {
	transform: translateY(-7px);

	border-color: rgba(73, 173, 47, 0.35);

	box-shadow:
		0 18px 45px rgba(7, 31, 67, 0.10);
}

.cat-grid-card:hover::before {
	transform: scaleX(1);
}


/* =========================================
   TOP ROW
========================================= */

.cat-grid-top {
	display: flex;

	align-items: center;
	justify-content: space-between;

	gap: 10px;

	margin-bottom: 25px;
}

.cat-grid-number {
	font-size: 12px;
	font-weight: 800;

	color: #b4bfc0;

	letter-spacing: 1px;
}


/* =========================================
   TAG
========================================= */

.cat-grid-tag {
	display: inline-flex;

	align-items: center;
	gap: 6px;

	padding: 7px 11px;

	border-radius: 7px;

	background: #eef7f1;

	color: #0c5938;

	font-size: 10px;
	line-height: 1;

	font-weight: 800;

	white-space: nowrap;
}

.cat-grid-tag i {
	font-size: 10px;
}


/* =========================================
   ICON
========================================= */

.cat-grid-icon {
	width: 62px;
	height: 62px;

	display: flex;
	align-items: center;
	justify-content: center;

	margin-bottom: 20px;

	border-radius: 16px;

	background:
		linear-gradient(145deg,
			#eef7f1,
			#f8fbf9);

	border: 1px solid #dcebe2;

	color: #0c5938;

	font-size: 25px;

	transition:
		background 0.35s ease,
		color 0.35s ease,
		transform 0.35s ease;
}

.cat-grid-card:hover .cat-grid-icon {
	background: #0c5938;
	color: #ffffff;

	transform: rotate(-4deg) scale(1.05);
}


/* =========================================
   CARD CONTENT
========================================= */

.cat-grid-body h3 {
	margin: 0 0 10px;

	color: #071f43;

	font-size: 20px;
	line-height: 1.3;

	font-weight: 800;
}

.cat-grid-body p {
	min-height: 52px;

	margin: 0 0 20px;

	color: #6b7480;

	font-size: 15px;
	line-height: 1.65;
}


/* =========================================
   BUTTON
========================================= */

.cat-grid-btn {
	display: inline-flex;

	align-items: center;
	gap: 9px;

	color: #0c5938;

	text-decoration: none;

	font-size: 15px;
	font-weight: 800;

	transition: gap 0.3s ease, color 0.3s ease;
}

.cat-grid-btn i {
	font-size: 14px;

	transition: transform 0.3s ease;
}

.cat-grid-btn:hover {
	color: #42a92e;

	gap: 13px;
}

.cat-grid-btn:hover i {
	transform: translateX(3px);
}


/* =========================================
   FOOTER
========================================= */

.cat-grid-footer {
	display: inline-flex;

	align-items: center;
	justify-content: center;

	flex-wrap: wrap;

	gap: 8px 12px;

	padding: 13px 20px;

	background: #ffffff;

	border: 1px solid #e5ebe7;

	border-radius: 50px;

	color: #68727c;

	font-size: 15px;

	box-shadow: 0 5px 20px rgba(7, 31, 67, 0.035);
}

.cat-grid-footer .badge {
	display: inline-flex;
	align-items: center;
	gap: 6px;

	padding: 6px 10px;

	background: #0c5938 !important;

	color: #ffffff;

	border-radius: 6px;

	font-size: 13px;
	font-weight: 700;
}

.cat-grid-footer a {
	display: inline-flex;

	align-items: center;
	gap: 6px;

	color: #0c5938;

	font-weight: 800;

	text-decoration: none;
}

.cat-grid-footer a i {
	font-size: 13px;

	transition: transform 0.3s ease;
}

.cat-grid-footer a:hover {
	color: #42a92e;
}

.cat-grid-footer a:hover i {
	transform: translateX(3px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 991px) {

	.cat-grid-title {
		font-size: 32px;
	}

	.cat-grid-card {
		padding: 22px 20px;
	}

}


@media (max-width: 575px) {

	.cat-grid-section {
		padding-top: 55px !important;
		padding-bottom: 55px !important;
	}

	.cat-grid-title {
		font-size: 28px;
	}

	.cat-grid-desc {
		font-size: 14px;
		line-height: 1.7;
	}

	.cat-grid-card {
		padding: 22px;
		border-radius: 17px;
	}

	.cat-grid-top {
		margin-bottom: 20px;
	}

	.cat-grid-icon {
		width: 55px;
		height: 55px;

		font-size: 22px;
		border-radius: 14px;
	}

	.cat-grid-body h3 {
		font-size: 19px;
	}

	.cat-grid-body p {
		min-height: auto;
	}

	.cat-grid-footer {
		border-radius: 16px;

		padding: 15px;

		line-height: 1.5;
	}

}

/* ========== PCD AND THIRD PARTY SECTION  */
/* Reset template position bugs */
.zyn-pcd-section .our-goals-images,
.zyn-pcd-section .goals-image-box,
.zyn-pcd-section .about-image-circle {
	position: static !important;
	width: 100% !important;
	height: auto !important;
}

/* Left Offering Cards Fix */
.zyn-offering-card {
	padding: 24px;
	border-radius: 16px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.zyn-offering-card.pcd-card {
	background-color: #2e9e3f;
	color: #ffffff;
}

.zyn-offering-card.pcd-card p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.88rem;
	line-height: 1.5;
	margin-bottom: 0;
}

.zyn-offering-card.pcd-card h3 {
	color: #ffffff;
	font-size: 1.15rem;
	font-weight: 700;
}

/* Card 2 Style Update */
.zyn-offering-card.supply-card {
	background-color: #0c1a30;
	color: #ffffff;
}

.zyn-offering-card.supply-card p {
	color: #a0aec0;
	font-size: 0.88rem;
	line-height: 1.5;
	margin-bottom: 0;
}

.zyn-offering-card.supply-card h3 {
	color: #ffffff;
	font-size: 1.15rem;
	font-weight: 700;
}

.zyn-offering-card .icon-box i {
	font-size: 1.5rem;
}

/* Right Image Layout */
.zyn-image-wrapper {
	width: 100%;
}

.zyn-img-card {
	position: relative;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.zyn-img-card img {
	width: 100%;
	height: 380px;
	object-fit: cover;
	display: block;
}

.zyn-img-tag {
	position: absolute;
	bottom: 12px;
	left: 12px;
	right: 12px;
	background: rgba(12, 26, 48, 0.85);
	color: #ffffff;
	font-size: 0.75rem;
	font-weight: 600;
	padding: 6px 12px;
	border-radius: 8px;
	backdrop-filter: blur(4px);
	text-align: center;
}

/* Creative Floating Badge */
.zyn-floating-badge {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	background: #ffffff;
	padding: 10px 20px;
	border-radius: 50px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
	display: flex;
	align-items: center;
	gap: 12px;
	border: 1px solid #e2e8f0;
	z-index: 5;
	white-space: nowrap;
}

.zyn-floating-badge .badge-icon {
	width: 36px;
	height: 36px;
	background-color: #2e9e3f;
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 0.95rem;
}

.zyn-floating-badge .badge-text strong {
	display: block;
	font-size: 0.85rem;
	color: #0c1a30;
	line-height: 1.2;
}

.zyn-floating-badge .badge-text span {
	font-size: 0.75rem;
	color: #64748b;
}

/* Contact & CTA Adjustments */
.zyn-cta-btn {
	background-color: #0c1a30;
	color: #ffffff !important;
	padding: 14px 24px;
	border-radius: 10px;
	font-weight: 600;
	text-decoration: none;
	transition: background-color 0.2s ease;
}

.zyn-cta-btn:hover {
	background-color: #2e9e3f;
}

.zyn-contact-box {
	display: flex;
	align-items: center;
	gap: 12px;
	background: #f8faf9;
	padding: 8px 18px;
	border-radius: 10px;
	border: 1px solid #eaeeeb;
}

.zyn-call-icon {
	width: 38px;
	height: 38px;
	background-color: #2e9e3f;
	color: #ffffff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.zyn-call-label {
	font-size: 0.72rem;
	color: #64748b;
	text-transform: uppercase;
	font-weight: 600;
}

.zyn-phone-link {
	color: #0c1a30;
	font-weight: 700;
	font-size: 0.95rem;
	text-decoration: none;
}

/* ========== PCD PHARMA PAGE CSS */
/* =========================================================
   ZYNORA PCD PHARMA FRANCHISE PAGE
   Unique prefix: zyn-pcd-
========================================================= */

.zyn-pcd-page {
	--zyn-pcd-primary: #041441;
	--zyn-pcd-green: #47ac2d;
	--zyn-pcd-bg: #f8fafc;
	--zyn-pcd-text: #5e6672;
	--zyn-pcd-white: #ffffff;
	--zyn-pcd-border: rgba(4, 20, 65, 0.09);
	--zyn-pcd-shadow: 0 20px 60px rgba(4, 20, 65, 0.09);

	background: var(--zyn-pcd-bg);
	color: var(--zyn-pcd-primary);
	overflow: hidden;
}

.zyn-pcd-page * {
	box-sizing: border-box;
}

.zyn-pcd-page img {
	max-width: 100%;
	display: block;
}


/* =========================================================
   COMMON
========================================================= */

.zyn-pcd-label {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: var(--zyn-pcd-green);
	font-size: 13px;
	font-weight: 800;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	margin-bottom: 16px;
}

.zyn-pcd-label::before {
	content: "";
	width: 28px;
	height: 2px;
	background: var(--zyn-pcd-green);
}

.zyn-pcd-label-light {
	color: #91df78;
}

.zyn-pcd-heading-center {
	max-width: 760px;
	margin: 0 auto 55px;
	text-align: center;
}

.zyn-pcd-heading-center h2,
.zyn-pcd-heading-left h2,
.zyn-pcd-section-content h2,
.zyn-pcd-support-content h2 {
	font-size: clamp(34px, 4vw, 54px);
	line-height: 1.08;
	font-weight: 800;
	letter-spacing: -1.5px;
	margin: 0 0 18px;
}

.zyn-pcd-heading-center h2 span,
.zyn-pcd-heading-left h2 span,
.zyn-pcd-section-content h2 span,
.zyn-pcd-support-content h2 span,
.zyn-pcd-hero h1 span {
	color: var(--zyn-pcd-green);
}

.zyn-pcd-heading-center p,
.zyn-pcd-heading-description,
.zyn-pcd-section-content p,
.zyn-pcd-support-content>p {
	color: var(--zyn-pcd-text);
	line-height: 1.8;
	font-size: 16px;
}


/* =========================================================
   BUTTON
========================================================= */

.zyn-pcd-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 14px;
	min-height: 56px;
	padding: 0 25px;
	border-radius: 10px;
	background: var(--zyn-pcd-green);
	color: #fff;
	text-decoration: none;
	font-size: 14px;
	font-weight: 700;
	transition: all .3s ease;
	box-shadow: 0 12px 30px rgba(71, 172, 45, .20);
}

.zyn-pcd-btn:hover {
	color: #fff;
	background: var(--zyn-pcd-primary);
	transform: translateY(-3px);
	box-shadow: 0 15px 35px rgba(4, 20, 65, .18);
}

.zyn-pcd-btn i {
	transition: transform .3s ease;
}

.zyn-pcd-btn:hover i {
	transform: translateX(4px);
}


/* =========================================================
   HERO
========================================================= */

.zyn-pcd-hero {
	position: relative;
	padding: 110px 0 120px;
	background:
		radial-gradient(circle at 80% 20%, rgba(71, 172, 45, .10), transparent 28%),
		linear-gradient(135deg, #f8fafc 0%, #fff 55%, #eef7ec 100%);
}

.zyn-pcd-hero-content {
	position: relative;
	z-index: 2;
}

.zyn-pcd-eyebrow {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	padding: 8px 14px;
	border-radius: 100px;
	background: rgba(71, 172, 45, .09);
	border: 1px solid rgba(71, 172, 45, .18);
	color: var(--zyn-pcd-green);
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .8px;
	text-transform: uppercase;
	margin-bottom: 22px;
}

.zyn-pcd-hero h1 {
	max-width: 700px;
	font-size: clamp(43px, 5.2vw, 72px);
	line-height: 1.02;
	letter-spacing: -3px;
	font-weight: 850;
	margin: 0 0 25px;
	color: var(--zyn-pcd-primary);
}

.zyn-pcd-hero-text {
	max-width: 650px;
	color: var(--zyn-pcd-text);
	font-size: 18px;
	line-height: 1.8;
	margin-bottom: 32px;
}

.zyn-pcd-hero-actions {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 22px;
}

.zyn-pcd-call {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	text-decoration: none;
	color: var(--zyn-pcd-primary);
}

.zyn-pcd-call-icon {
	width: 45px;
	height: 45px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(4, 20, 65, .07);
	color: var(--zyn-pcd-green);
}

.zyn-pcd-call small,
.zyn-pcd-call strong {
	display: block;
}

.zyn-pcd-call small {
	color: var(--zyn-pcd-text);
	font-size: 11px;
	margin-bottom: 2px;
}

.zyn-pcd-call strong {
	font-size: 15px;
}

.zyn-pcd-hero-points {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-top: 34px;
}

.zyn-pcd-hero-points span {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	font-size: 12px;
	font-weight: 700;
	color: var(--zyn-pcd-primary);
}

.zyn-pcd-hero-points i {
	color: var(--zyn-pcd-green);
}


/* HERO IMAGE */

.zyn-pcd-hero-visual {
	position: relative;
	padding: 20px 20px 40px 40px;
}

.zyn-pcd-image-main {
	position: relative;
	height: 570px;
	border-radius: 28px;
	overflow: hidden;
	box-shadow: 0 30px 80px rgba(4, 20, 65, .18);
	z-index: 2;
}

.zyn-pcd-image-main::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,
			rgba(4, 20, 65, .02),
			rgba(4, 20, 65, .35));
}

.zyn-pcd-image-main img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.zyn-pcd-hero-accent {
	position: absolute;
	width: 190px;
	height: 190px;
	right: -15px;
	bottom: 5px;
	background: var(--zyn-pcd-green);
	border-radius: 35px;
	opacity: .9;
}

.zyn-pcd-floating-card {
	position: absolute;
	left: 0;
	bottom: 75px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 17px 22px;
	border-radius: 15px;
	background: rgba(255, 255, 255, .96);
	box-shadow: 0 18px 45px rgba(4, 20, 65, .18);
	backdrop-filter: blur(10px);
}

.zyn-pcd-floating-icon {
	width: 48px;
	height: 48px;
	display: grid;
	place-items: center;
	border-radius: 12px;
	background: rgba(71, 172, 45, .11);
	color: var(--zyn-pcd-green);
	font-size: 20px;
}

.zyn-pcd-floating-card strong,
.zyn-pcd-floating-card span {
	display: block;
}

.zyn-pcd-floating-card strong {
	font-size: 14px;
	margin-bottom: 3px;
}

.zyn-pcd-floating-card span {
	color: var(--zyn-pcd-text);
	font-size: 12px;
}


/* =========================================================
   INTRO / VETERINARY PCD FRANCHISE
========================================================= */

.zyn-pcd-intro {
	padding: 120px 0;
	background: #fff;
}

.zyn-pcd-section-image {
	position: relative;
	padding: 0 35px 35px 0;
}

.zyn-pcd-section-image::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 70%;
	height: 70%;
	background: var(--zyn-pcd-green);
	border-radius: 25px;
	z-index: 0;
	opacity: .12;
}

.zyn-pcd-section-image img {
	position: relative;
	z-index: 1;
	width: 100%;
	height: 520px;
	object-fit: cover;
	border-radius: 25px;
	box-shadow: var(--zyn-pcd-shadow);
}

.zyn-pcd-image-badge {
	position: absolute;
	z-index: 3;
	right: 0;
	bottom: 15px;
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 18px 22px;
	border-radius: 15px;
	background: var(--zyn-pcd-primary);
	color: #fff;
	box-shadow: 0 15px 35px rgba(4, 20, 65, .2);
}

.zyn-pcd-image-badge>i {
	width: 45px;
	height: 45px;
	display: grid;
	place-items: center;
	border-radius: 10px;
	background: rgba(71, 172, 45, .18);
	color: #73d85a;
}

.zyn-pcd-image-badge strong,
.zyn-pcd-image-badge span {
	display: block;
}

.zyn-pcd-image-badge strong {
	font-size: 13px;
}

.zyn-pcd-image-badge span {
	font-size: 11px;
	opacity: .7;
	margin-top: 3px;
}

.zyn-pcd-section-content {
	padding-left: 25px;
}

.zyn-pcd-feature-line {
	margin-top: 28px;
}

.zyn-pcd-feature-line>div {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 13px;
	color: var(--zyn-pcd-primary);
	font-size: 14px;
	font-weight: 600;
}

.zyn-pcd-feature-line i {
	color: var(--zyn-pcd-green);
}


/* =========================================================
   MONOPOLY
========================================================= */

.zyn-pcd-monopoly {
	position: relative;
	padding: 120px 0;
	background: var(--zyn-pcd-primary);
	color: #fff;
	overflow: hidden;
}

.zyn-pcd-monopoly::before {
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	right: -180px;
	top: -180px;
	border-radius: 50%;
	background: rgba(71, 172, 45, .10);
}

.zyn-pcd-monopoly-content {
	position: relative;
	z-index: 2;
}

.zyn-pcd-monopoly-content h2 {
	max-width: 700px;
	font-size: clamp(36px, 4vw, 55px);
	line-height: 1.08;
	letter-spacing: -1.5px;
	font-weight: 800;
	margin-bottom: 22px;
}

.zyn-pcd-monopoly-content h2 span {
	color: #67cf4d;
}

.zyn-pcd-monopoly-content>p {
	max-width: 690px;
	color: rgba(255, 255, 255, .68);
	line-height: 1.8;
}

.zyn-pcd-monopoly-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 18px;
	margin-top: 35px;
}

.zyn-pcd-monopoly-item {
	display: flex;
	gap: 14px;
	padding: 18px;
	border: 1px solid rgba(255, 255, 255, .09);
	border-radius: 14px;
	background: rgba(255, 255, 255, .035);
}

.zyn-pcd-number {
	color: #67cf4d;
	font-weight: 800;
	font-size: 12px;
}

.zyn-pcd-monopoly-item strong,
.zyn-pcd-monopoly-item span {
	display: block;
}

.zyn-pcd-monopoly-item strong {
	font-size: 14px;
	margin-bottom: 5px;
}

.zyn-pcd-monopoly-item span {
	color: rgba(255, 255, 255, .55);
	font-size: 12px;
	line-height: 1.6;
}

.zyn-pcd-monopoly-visual {
	position: relative;
	min-height: 470px;
	display: grid;
	place-items: center;
}

.zyn-pcd-india-shape {
	width: 300px;
	height: 300px;
	border-radius: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border: 1px solid rgba(71, 172, 45, .3);
	background: radial-gradient(circle,
			rgba(71, 172, 45, .16),
			rgba(71, 172, 45, .02));
}

.zyn-pcd-india-shape i {
	font-size: 90px;
	color: #67cf4d;
	margin-bottom: 15px;
}

.zyn-pcd-india-shape span {
	font-size: 18px;
	letter-spacing: 5px;
	font-weight: 800;
}

.zyn-pcd-map-card {
	position: absolute;
	right: 0;
	bottom: 40px;
	z-index: 3;
	display: flex;
	align-items: center;
	gap: 13px;
	padding: 16px 20px;
	border-radius: 14px;
	background: #fff;
	color: var(--zyn-pcd-primary);
	box-shadow: 0 20px 50px rgba(0, 0, 0, .2);
}

.zyn-pcd-map-card>i {
	color: var(--zyn-pcd-green);
	font-size: 22px;
}

.zyn-pcd-map-card strong,
.zyn-pcd-map-card span {
	display: block;
}

.zyn-pcd-map-card strong {
	font-size: 14px;
}

.zyn-pcd-map-card span {
	color: var(--zyn-pcd-text);
	font-size: 11px;
	margin-top: 2px;
}


/* =========================================================
   BENEFITS
========================================================= */

.zyn-pcd-benefits {
	padding: 120px 0;
	background: var(--zyn-pcd-bg);
}

.zyn-pcd-benefit-card {
	height: 100%;
	position: relative;
	padding: 34px;
	border: 1px solid var(--zyn-pcd-border);
	border-radius: 20px;
	background: #fff;
	transition: all .35s ease;
	overflow: hidden;
}

.zyn-pcd-benefit-card::after {
	content: "";
	position: absolute;
	width: 90px;
	height: 90px;
	right: -35px;
	top: -35px;
	border-radius: 50%;
	background: rgba(71, 172, 45, .07);
	transition: all .35s ease;
}

.zyn-pcd-benefit-card:hover {
	transform: translateY(-7px);
	border-color: rgba(71, 172, 45, .25);
	box-shadow: var(--zyn-pcd-shadow);
}

.zyn-pcd-benefit-card:hover::after {
	transform: scale(1.6);
}

.zyn-pcd-card-icon {
	width: 55px;
	height: 55px;
	display: grid;
	place-items: center;
	border-radius: 14px;
	background: rgba(71, 172, 45, .1);
	color: var(--zyn-pcd-green);
	font-size: 21px;
	margin-bottom: 25px;
}

.zyn-pcd-benefit-card>span {
	color: rgba(4, 20, 65, .25);
	font-size: 12px;
	font-weight: 800;
}

.zyn-pcd-benefit-card h3 {
	font-size: 20px;
	margin: 8px 0 10px;
}

.zyn-pcd-benefit-card p {
	color: var(--zyn-pcd-text);
	line-height: 1.7;
	font-size: 14px;
	margin: 0;
}


/* =========================================================
   PRODUCT RANGE
========================================================= */

.zyn-pcd-products {
	padding: 120px 0;
	background: #fff;
}

.zyn-pcd-product-card {
	min-height: 155px;
	height: 100%;
	display: flex;
	gap: 20px;
	padding: 25px;
	border: 1px solid var(--zyn-pcd-border);
	border-radius: 18px;
	background: #fff;
	transition: all .3s ease;
}

.zyn-pcd-product-card:hover {
	border-color: rgba(71, 172, 45, .35);
	box-shadow: 0 15px 40px rgba(4, 20, 65, .08);
	transform: translateY(-4px);
}

.zyn-pcd-product-icon {
	flex: 0 0 52px;
	width: 52px;
	height: 52px;
	display: grid;
	place-items: center;
	border-radius: 13px;
	background: var(--zyn-pcd-primary);
	color: #fff;
	font-size: 18px;
}

.zyn-pcd-product-card small {
	color: var(--zyn-pcd-green);
	font-weight: 800;
	font-size: 11px;
}

.zyn-pcd-product-card h3 {
	font-size: 17px;
	margin: 5px 0 7px;
}

.zyn-pcd-product-card p {
	margin: 0;
	color: var(--zyn-pcd-text);
	font-size: 13px;
	line-height: 1.6;
}


/* =========================================================
   PROMOTIONAL SUPPORT
========================================================= */

.zyn-pcd-support {
	padding: 120px 0;
	background: var(--zyn-pcd-bg);
}

.zyn-pcd-support-image {
	position: relative;
	padding: 0 35px 35px 0;
}

.zyn-pcd-support-image img {
	position: relative;
	z-index: 2;
	width: 100%;
	height: 520px;
	object-fit: cover;
	border-radius: 25px;
	box-shadow: var(--zyn-pcd-shadow);
}

.zyn-pcd-support-image::after {
	content: "";
	position: absolute;
	left: 25px;
	bottom: 0;
	width: 85%;
	height: 75%;
	background: var(--zyn-pcd-green);
	opacity: .13;
	border-radius: 25px;
}

.zyn-pcd-support-stamp {
	position: absolute;
	z-index: 4;
	right: 0;
	bottom: 10px;
	width: 120px;
	height: 120px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: var(--zyn-pcd-green);
	color: #fff;
	box-shadow: 0 15px 35px rgba(71, 172, 45, .3);
}

.zyn-pcd-support-stamp i {
	font-size: 16px;
	margin-bottom: 5px;
}

.zyn-pcd-support-stamp strong {
	font-size: 16px;
}

.zyn-pcd-support-stamp span {
	font-size: 11px;
	opacity: .85;
}

.zyn-pcd-support-content {
	padding-left: 25px;
}

.zyn-pcd-support-list {
	margin-top: 30px;
}

.zyn-pcd-support-list>div {
	display: flex;
	gap: 15px;
	margin-bottom: 24px;
}

.zyn-pcd-support-list>div>span {
	flex: 0 0 38px;
	width: 38px;
	height: 38px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: rgba(71, 172, 45, .1);
	color: var(--zyn-pcd-green);
}

.zyn-pcd-support-list strong {
	font-size: 15px;
}

.zyn-pcd-support-list p {
	margin: 5px 0 0;
	color: var(--zyn-pcd-text);
	font-size: 13px;
	line-height: 1.6;
}


/* =========================================================
   PROCESS
========================================================= */

.zyn-pcd-process {
	padding: 120px 0;
	background: #fff;
}

.zyn-pcd-process-track {
	display: flex;
	align-items: flex-start;
	justify-content: center;
	margin-top: 70px;
}

.zyn-pcd-process-item {
	width: 23%;
	text-align: center;
}

.zyn-pcd-process-number {
	color: rgba(4, 20, 65, .2);
	font-size: 11px;
	font-weight: 900;
	margin-bottom: 12px;
}

.zyn-pcd-process-icon {
	position: relative;
	width: 70px;
	height: 70px;
	margin: 0 auto 20px;
	display: grid;
	place-items: center;
	border-radius: 50%;
	background: var(--zyn-pcd-primary);
	color: #fff;
	font-size: 22px;
	box-shadow: 0 12px 30px rgba(4, 20, 65, .15);
}

.zyn-pcd-process-item:nth-child(1) .zyn-pcd-process-icon,
.zyn-pcd-process-item:nth-child(5) .zyn-pcd-process-icon {
	background: var(--zyn-pcd-green);
}

.zyn-pcd-process-item h3 {
	font-size: 17px;
	margin-bottom: 9px;
}

.zyn-pcd-process-item p {
	max-width: 220px;
	margin: auto;
	color: var(--zyn-pcd-text);
	font-size: 13px;
	line-height: 1.65;
}

.zyn-pcd-process-line {
	flex: 1;
	max-width: 100px;
	height: 1px;
	margin-top: 105px;
	background: linear-gradient(90deg,
			rgba(71, 172, 45, .5),
			rgba(4, 20, 65, .12));
}


/* =========================================================
   FINAL CTA
========================================================= */

.zyn-pcd-cta {
	padding: 35px 0 100px;
	background: #fff;
}

.zyn-pcd-cta-inner {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 40px;
	padding: 55px 65px;
	border-radius: 25px;
	overflow: hidden;
	background:
		radial-gradient(circle at 90% 20%,
			rgba(71, 172, 45, .15),
			transparent 35%),
		var(--zyn-pcd-primary);
}

.zyn-pcd-cta-inner::before {
	content: "";
	position: absolute;
	width: 280px;
	height: 280px;
	right: -100px;
	bottom: -130px;
	border-radius: 50%;
	border: 1px solid rgba(71, 172, 45, .25);
}

.zyn-pcd-cta-inner>div {
	position: relative;
	z-index: 1;
}

.zyn-pcd-cta-inner span {
	color: #71d657;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 1px;
	text-transform: uppercase;
}

.zyn-pcd-cta-inner h2 {
	max-width: 650px;
	color: #fff;
	font-size: clamp(30px, 4vw, 48px);
	line-height: 1.1;
	margin: 10px 0 12px;
}

.zyn-pcd-cta-inner h2 strong {
	color: #71d657;
}

.zyn-pcd-cta-inner p {
	max-width: 580px;
	color: rgba(255, 255, 255, .62);
	margin: 0;
	line-height: 1.7;
}

.zyn-pcd-cta-actions {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 16px;
	flex-shrink: 0;
}

.zyn-pcd-btn-white {
	background: #fff;
	color: var(--zyn-pcd-primary);
	box-shadow: none;
}

.zyn-pcd-btn-white:hover {
	background: var(--zyn-pcd-green);
	color: #fff;
}

.zyn-pcd-cta-phone {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	color: rgba(255, 255, 255, .8);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
}

.zyn-pcd-cta-phone i {
	color: #71d657;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

	.zyn-pcd-hero,
	.zyn-pcd-intro,
	.zyn-pcd-monopoly,
	.zyn-pcd-benefits,
	.zyn-pcd-products,
	.zyn-pcd-support,
	.zyn-pcd-process {
		padding: 85px 0;
	}

	.zyn-pcd-hero-visual {
		padding: 10px 15px 35px;
	}

	.zyn-pcd-image-main {
		height: 470px;
	}

	.zyn-pcd-section-content,
	.zyn-pcd-support-content {
		padding-left: 0;
	}

	.zyn-pcd-monopoly-visual {
		min-height: 380px;
	}

	.zyn-pcd-process-track {
		flex-wrap: wrap;
		gap: 35px 0;
	}

	.zyn-pcd-process-item {
		width: 50%;
	}

	.zyn-pcd-process-line {
		display: none;
	}

	.zyn-pcd-cta-inner {
		padding: 45px;
	}
}


@media (max-width: 767px) {

	.zyn-pcd-hero,
	.zyn-pcd-intro,
	.zyn-pcd-monopoly,
	.zyn-pcd-benefits,
	.zyn-pcd-products,
	.zyn-pcd-support,
	.zyn-pcd-process {
		padding: 70px 0;
	}

	.zyn-pcd-hero h1 {
		letter-spacing: -2px;
	}

	.zyn-pcd-hero-text {
		font-size: 16px;
	}

	.zyn-pcd-hero-actions {
		align-items: stretch;
		flex-direction: column;
	}

	.zyn-pcd-call {
		width: fit-content;
	}

	.zyn-pcd-hero-points {
		flex-direction: column;
		gap: 10px;
	}

	.zyn-pcd-image-main {
		height: 400px;
	}

	.zyn-pcd-floating-card {
		left: 0;
		bottom: 55px;
	}

	.zyn-pcd-monopoly-grid {
		grid-template-columns: 1fr;
	}

	.zyn-pcd-monopoly-visual {
		min-height: 330px;
	}

	.zyn-pcd-india-shape {
		width: 240px;
		height: 240px;
	}

	.zyn-pcd-india-shape i {
		font-size: 65px;
	}

	.zyn-pcd-map-card {
		right: 5px;
		bottom: 10px;
	}

	.zyn-pcd-section-image img,
	.zyn-pcd-support-image img {
		height: 400px;
	}

	.zyn-pcd-process-item {
		width: 100%;
	}

	.zyn-pcd-cta {
		padding-bottom: 70px;
	}

	.zyn-pcd-cta-inner {
		padding: 35px 25px;
		flex-direction: column;
		align-items: flex-start;
	}

	.zyn-pcd-cta-actions {
		width: 100%;
	}

	.zyn-pcd-btn {
		width: 100%;
	}

}


@media (max-width: 480px) {

	.zyn-pcd-hero-visual {
		padding: 0 5px 30px;
	}

	.zyn-pcd-image-main {
		height: 350px;
		border-radius: 20px;
	}

	.zyn-pcd-floating-card {
		left: -5px;
		padding: 13px 15px;
	}

	.zyn-pcd-floating-icon {
		width: 40px;
		height: 40px;
	}

	.zyn-pcd-section-image,
	.zyn-pcd-support-image {
		padding-right: 15px;
		padding-bottom: 25px;
	}

	.zyn-pcd-section-image img,
	.zyn-pcd-support-image img {
		height: 330px;
		border-radius: 20px;
	}

	.zyn-pcd-image-badge {
		right: -5px;
		padding: 13px;
	}

	.zyn-pcd-support-stamp {
		width: 95px;
		height: 95px;
	}

	.zyn-pcd-product-card {
		padding: 20px;
	}

}

/* ======= INDEX WHY CHOOSE U SECTION  */
/* =========================================
   ZYNORA - WHY CHOOSE US
========================================= */

.zyn-why-choose {
	position: relative;
	padding: 110px 0;
	background: #F8FAFC;
	overflow: hidden;
}

.zyn-why-choose::before {
	content: "";
	position: absolute;
	top: -180px;
	right: -180px;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: rgba(71, 172, 45, 0.055);
	pointer-events: none;
}

.zyn-why-choose::after {
	content: "";
	position: absolute;
	bottom: -160px;
	left: -160px;
	width: 360px;
	height: 360px;
	border-radius: 50%;
	background: rgba(4, 20, 65, 0.035);
	pointer-events: none;
}


/* -----------------------------------------
   LEFT VISUAL
----------------------------------------- */

.zyn-why-visual {
	position: relative;
	padding: 15px;
}

.zyn-why-image {
	position: relative;
	height: 650px;
	overflow: hidden;
	border-radius: 28px;
	background: #fff;
	box-shadow: 0 25px 60px rgba(4, 20, 65, 0.12);
}

.zyn-why-image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg,
			rgba(4, 20, 65, 0.02) 35%,
			rgba(4, 20, 65, 0.55) 100%);
	pointer-events: none;
}

.zyn-why-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.7s ease;
}

.zyn-why-image:hover img {
	transform: scale(1.04);
}


/* Floating information box */

.zyn-why-stat {
	position: absolute;
	z-index: 3;
	left: -5px;
	bottom: 45px;

	display: flex;
	align-items: center;
	gap: 15px;

	max-width: 320px;
	padding: 18px 22px;

	background: rgba(255, 255, 255, 0.96);
	border: 1px solid rgba(4, 20, 65, 0.08);
	border-radius: 16px;

	box-shadow: 0 18px 45px rgba(4, 20, 65, 0.16);
	backdrop-filter: blur(10px);
}

.zyn-why-stat-icon {
	width: 48px;
	height: 48px;
	flex: 0 0 48px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 13px;
	background: rgba(71, 172, 45, 0.12);
	color: #47ac2d;
	font-size: 20px;
}

.zyn-why-stat strong {
	display: block;
	margin-bottom: 3px;
	color: #041441;
	font-size: 15px;
	font-weight: 700;
}

.zyn-why-stat span:not(.zyn-why-stat-icon) {
	display: block;
	color: #5E6672;
	font-size: 12px;
	line-height: 1.5;
}


/* -----------------------------------------
   HEADING
----------------------------------------- */

.zyn-why-content {
	position: relative;
	z-index: 2;
}

.zyn-why-heading {
	margin-bottom: 35px;
}

.zyn-why-eyebrow {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 9px;

	margin-bottom: 13px;
	padding-left: 38px;

	color: #47ac2d;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 1.4px;
	text-transform: uppercase;
}

.zyn-why-eyebrow::before {
	content: "";
	position: absolute;
	left: 0;
	width: 28px;
	height: 2px;
	background: #47ac2d;
}

.zyn-why-heading h2 {
	max-width: 650px;
	margin: 0 0 15px;

	color: #041441;
	font-size: clamp(34px, 3.2vw, 48px);
	line-height: 1.12;
	font-weight: 700;
	letter-spacing: -1px;
}

.zyn-why-heading h2 span {
	color: #47ac2d;
}

.zyn-why-heading>p {
	max-width: 650px;
	margin: 0;

	color: #5E6672;
	font-size: 16px;
	line-height: 1.8;
}


/* -----------------------------------------
   BENEFIT LIST
----------------------------------------- */

.zyn-why-list {
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.zyn-why-item {
	position: relative;

	display: grid;
	grid-template-columns: 38px 50px 1fr;
	align-items: center;
	gap: 17px;

	padding: 17px 20px;

	background: #ffffff;
	border: 1px solid rgba(4, 20, 65, 0.07);
	border-radius: 14px;

	transition:
		transform 0.3s ease,
		box-shadow 0.3s ease,
		border-color 0.3s ease;
}

.zyn-why-item:hover {
	transform: translateX(6px);
	border-color: rgba(71, 172, 45, 0.28);
	box-shadow: 0 12px 30px rgba(4, 20, 65, 0.07);
}


/* Number */

.zyn-why-number {
	color: rgba(4, 20, 65, 0.25);
	font-size: 13px;
	font-weight: 800;
}


/* Icon */

.zyn-why-icon {
	width: 52px;
	height: 52px;

	display: flex;
	align-items: center;
	justify-content: center;

	border-radius: 13px;

	background: rgba(71, 172, 45, 0.09);
	color: #47ac2d;

	font-size: 20px;
	transition: all 0.3s ease;
}

.zyn-why-item:hover .zyn-why-icon {
	background: #47ac2d;
	color: #ffffff;
}


/* Content */

.zyn-why-item-content h3 {
	margin: 0 0 4px;

	color: #041441;
	font-size: 20px;
	line-height: 1.3;
	font-weight: 600;
}

.zyn-why-item-content p {
	margin: 0;

	color: #5E6672;
	font-size: 15px;
	line-height: 1.55;
}


/* -----------------------------------------
   BOTTOM CTA
----------------------------------------- */

.zyn-why-bottom {
	display: flex;
	align-items: center;
	gap: 18px;

	margin-top: 30px;
	padding-top: 25px;

	border-top: 1px solid rgba(4, 20, 65, 0.09);
}

.zyn-why-bottom-line {
	width: 4px;
	height: 48px;
	flex: 0 0 4px;

	border-radius: 20px;
	background: #47ac2d;
}

.zyn-why-bottom strong {
	display: block;
	margin-bottom: 3px;

	color: #041441;
	font-size: 14px;
	font-weight: 700;
}

.zyn-why-bottom span {
	display: block;

	color: #5E6672;
	font-size: 12px;
}

.zyn-why-btn {
	display: inline-flex;
	align-items: center;
	gap: 10px;

	margin-left: auto;
	padding: 13px 19px;

	border-radius: 8px;
	background: #041441;
	color: #ffffff;

	font-size: 13px;
	font-weight: 600;
	text-decoration: none;

	white-space: nowrap;
	transition: all 0.3s ease;
}

.zyn-why-btn i {
	font-size: 12px;
	transition: transform 0.3s ease;
}

.zyn-why-btn:hover {
	background: #47ac2d;
	color: #ffffff;
	transform: translateY(-2px);
}

.zyn-why-btn:hover i {
	transform: translateX(4px);
}


/* -----------------------------------------
   RESPONSIVE
----------------------------------------- */

@media (max-width: 1199px) {

	.zyn-why-choose {
		padding: 90px 0;
	}

	.zyn-why-image {
		height: 620px;
	}

	.zyn-why-item {
		grid-template-columns: 30px 46px 1fr;
		gap: 13px;
		padding: 15px;
	}

	.zyn-why-icon {
		width: 46px;
		height: 46px;
	}

}


@media (max-width: 991px) {

	.zyn-why-choose {
		padding: 80px 0;
	}

	.zyn-why-visual {
		max-width: 650px;
		margin: 0 auto 20px;
	}

	.zyn-why-image {
		height: 520px;
	}

	.zyn-why-heading h2 {
		font-size: 40px;
	}

	.zyn-why-content {
		max-width: 750px;
		margin: 0 auto;
	}

}


@media (max-width: 575px) {

	.zyn-why-choose {
		padding: 65px 0;
	}

	.zyn-why-visual {
		padding: 5px;
	}

	.zyn-why-image {
		height: 400px;
		border-radius: 20px;
	}

	.zyn-why-stat {
		left: 10px;
		bottom: 25px;
		max-width: 280px;
		padding: 14px 16px;
	}

	.zyn-why-stat-icon {
		width: 42px;
		height: 42px;
		flex-basis: 42px;
	}

	.zyn-why-heading {
		margin-bottom: 25px;
	}

	.zyn-why-heading h2 {
		font-size: 32px;
		letter-spacing: -0.5px;
	}

	.zyn-why-heading>p {
		font-size: 14px;
		line-height: 1.7;
	}

	.zyn-why-item {
		grid-template-columns: 28px 42px 1fr;
		gap: 10px;
		padding: 14px 12px;
		align-items: start;
	}

	.zyn-why-number {
		padding-top: 12px;
		font-size: 11px;
	}

	.zyn-why-icon {
		width: 42px;
		height: 42px;
		font-size: 15px;
	}

	.zyn-why-item-content h3 {
		font-size: 15px;
	}

	.zyn-why-item-content p {
		font-size: 12px;
		line-height: 1.5;
	}

	.zyn-why-bottom {
		align-items: flex-start;
		flex-wrap: wrap;
	}

	.zyn-why-bottom-line {
		height: 42px;
	}

	.zyn-why-btn {
		width: 100%;
		justify-content: center;
		margin-left: 22px;
	}

}

/* ========== CUSTOM DROPDOWN CSS */
/* Products Dropdown */
.navbar .dropdown-menu {
	border: 0;
	border-radius: 12px;
	padding: 10px;
	min-width: 230px;
	margin-top: 12px;
	background: #fff;
	box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.navbar .dropdown-item {
	padding: 11px 14px;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 600;
	color: #071d3a;
	transition: all 0.25s ease;
}

.navbar .dropdown-item:hover,
.navbar .dropdown-item:focus {
	background: #eef7f1;
	color: #35a92d;
	transform: translateX(3px);
}

.navbar .dropdown-divider {
	margin: 8px 4px;
	opacity: 0.1;
}

.navbar .dropdown-toggle::after {
	margin-left: 7px;
	vertical-align: 3px;
}

/* ======= MD SECTION ABOUT U S PAGE  */
/* =========================================
   DIRECTORS MESSAGE
========================================= */

.directors-message-section {
	position: relative;
	padding: 100px 0;
	background: #f7faf8;
	overflow: hidden;
}

/* Soft brand background details */

.directors-message-section::before {
	content: "";
	position: absolute;
	width: 420px;
	height: 420px;
	border-radius: 50%;
	background: rgba(53, 169, 45, 0.055);
	top: -180px;
	right: -120px;
}

.directors-message-section::after {
	content: "";
	position: absolute;
	width: 300px;
	height: 300px;
	border-radius: 50%;
	background: rgba(7, 29, 58, 0.035);
	bottom: -150px;
	left: -100px;
}

.directors-message-wrapper {
	position: relative;
	z-index: 2;
	max-width: 1050px;
	margin: 0 auto;
	background: #ffffff;
	border-radius: 24px;
	padding: 65px 75px 55px;
	border: 1px solid rgba(7, 29, 58, 0.07);
	box-shadow: 0 20px 60px rgba(7, 29, 58, 0.08);
}

/* Heading */

.directors-message-heading {
	margin-bottom: 45px;
}

.directors-message-badge {
	display: inline-flex;
	align-items: center;
	padding: 8px 17px;
	margin-bottom: 15px;
	border-radius: 50px;
	background: #e9f5ed;
	color: #278b28;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.2px;
	text-transform: uppercase;
}

.directors-message-heading h2 {
	margin: 0;
	color: #071d3a;
	font-size: 40px;
	line-height: 1.2;
	font-weight: 700;
}

.directors-heading-line {
	width: 55px;
	height: 3px;
	margin: 18px auto 0;
	border-radius: 10px;
	background: #35a92d;
}

/* Message */

.directors-message-content {
	position: relative;
	max-width: 900px;
	margin: 0 auto;
	padding: 0 15px;
}

.message-quote-mark {
	position: absolute;
	left: -25px;
	top: -18px;
	font-size: 48px;
	color: rgba(53, 169, 45, 0.15);
}

.directors-message-content p {
	position: relative;
	margin-bottom: 18px;
	color: #596675;
	font-size: 16px;
	line-height: 1.85;
}

.directors-message-content p:last-child {
	margin-bottom: 0;
}

/* Directors */

.directors-signatures {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 55px;
	margin-top: 50px;
	padding-top: 35px;
	border-top: 1px solid #e7ece9;
}

.director-profile {
	display: flex;
	align-items: center;
	gap: 15px;
	min-width: 260px;
}

.director-initial {
	width: 52px;
	height: 52px;
	flex: 0 0 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: #071d3a;
	color: #ffffff;
	font-size: 19px;
	position: relative;
}

.director-initial::after {
	content: "";
	position: absolute;
	width: 10px;
	height: 10px;
	right: -2px;
	bottom: 2px;
	border-radius: 50%;
	background: #35a92d;
	border: 2px solid #ffffff;
}

.director-info h3 {
	margin: 0 0 4px;
	color: #071d3a;
	font-size: 17px;
	font-weight: 700;
}

.director-info span {
	display: block;
	color: #35a92d;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.8px;
	text-transform: uppercase;
}

.director-divider {
	width: 1px;
	height: 48px;
	background: #dfe6e2;
}


/* =========================================
   TABLET
========================================= */

@media (max-width: 991px) {

	.directors-message-section {
		padding: 75px 0;
	}

	.directors-message-wrapper {
		padding: 55px 45px 45px;
	}

	.directors-message-heading h2 {
		font-size: 34px;
	}

	.directors-signatures {
		gap: 30px;
	}

	.director-profile {
		min-width: auto;
	}
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

	.directors-message-section {
		padding: 55px 15px;
	}

	.directors-message-wrapper {
		padding: 40px 22px 35px;
		border-radius: 18px;
	}

	.directors-message-heading {
		margin-bottom: 35px;
	}

	.directors-message-heading h2 {
		font-size: 28px;
	}

	.directors-message-content {
		padding: 0;
	}

	.message-quote-mark {
		display: none;
	}

	.directors-message-content p {
		font-size: 14px;
		line-height: 1.75;
	}

	.directors-signatures {
		flex-direction: column;
		align-items: stretch;
		gap: 22px;
		margin-top: 35px;
		padding-top: 28px;
	}

	.director-profile {
		min-width: 0;
	}

	.director-divider {
		width: 100%;
		height: 1px;
	}

	.director-initial {
		width: 46px;
		height: 46px;
		flex-basis: 46px;
		font-size: 16px;
	}

	.director-info h3 {
		font-size: 15px;
	}
}

/* ============= */
.bh-widget-page .bh-w-link {
	display: none !important;
}