/* Testimonial Speech Bubble Style */
.designer-showcase-section {
	position: relative;
	overflow: hidden;
	padding: 46px 0 30px;
	background: linear-gradient(to bottom, #ffffff 0 50%, #ececec 50% 100%);
}

.designer-showcase-wrap {
	position: relative;
	min-height: 330px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.designer-showcase-title {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	margin: 0;
	font-size: 123px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	line-height: 0.9;
	color: rgba(0, 0, 0, 0.06);
	pointer-events: none;
	white-space: nowrap;
	z-index: 1;
	user-select: none;
}

.designer-showcase-image {
	position: relative;
	display: block;
	width: min(100%, 940px);
	height: auto;
	margin: 0 auto;
	will-change: transform;
	z-index: 2;
}

@media (max-width: 767px) {
	.designer-showcase-section {
		padding: 30px 0 24px;
	}

	.designer-showcase-wrap {
		min-height: 220px;
	}
}

.speech-bubble {
	position: relative;
	border: 2px dashed #f3f5f9;
	border-radius: 16px 16px 32px 16px;
	background: #fff;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
	padding: 2.2rem 2rem 2.8rem 2rem;
	margin: 0 10px;
	min-height: 260px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transition: box-shadow 0.2s;
}

.speech-bubble:hover {
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.14);
}

.testimonial-content p {
	font-size: 1.08rem;
	color: #444;
	margin-bottom: 1.6rem;
	font-style: normal;
}

.testimonial-footer {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-top: auto;
	gap: 10px;
}

.testimonial-author {
	font-weight: 600;
	font-size: 1.08rem;
	color: #222;
}

.testimonial-location {
	font-weight: 400;
	font-size: 0.98rem;
	color: #a89c7d;
	margin-left: 0.4em;
}

.testimonial-rating {
	color: #a89c7d;
	font-size: 1.15rem;
	letter-spacing: 2px;
	margin-left: 0.5em;
}

.testimonial-quote-icon {
	font-size: 2.6rem;
	color: #a89c7d4f;
	margin-left: 0.8em;
	align-self: flex-end;
}

.testimonial-swiper .swiper-slide {
	display: flex;
	height: auto;
}

.testimonial-swiper {
	padding-bottom: 48px;
}

@media (max-width: 991px) {
	.testimonial-swiper .swiper-slide {
		margin-bottom: 24px;
	}

	.speech-bubble {
		min-height: 220px;
		padding: 1.5rem 1rem 2.2rem 1rem;
	}
}

/* Testimonial Card Styling */
.testimonial-card {
	background: #fff;
	box-shadow: 0 4px 24px rgba(0, 0, 0, 0.10);
	border-radius: 18px;
	padding: 2rem 1.5rem 1.5rem 1.5rem;
	margin: 0 10px;
	min-height: 240px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.testimonial-swiper .swiper-slide {
	display: flex;
	height: auto;
}

.testimonial-swiper {
	padding-bottom: 48px;
}

@media (max-width: 991px) {
	.testimonial-swiper .swiper-slide {
		margin-bottom: 24px;
	}

	.testimonial-card {
		min-height: 280px;
		padding: 1.5rem 1rem 1rem 1rem;
	}
}

/* Project Swiper Arrow Group Styling */
.project-swiper-arrows {
	position: absolute;
	top: -54px;
	right: 0;
	display: flex;
	gap: 12px;
	z-index: 20;
}

.project-swiper .swiper-button-prev,
.project-swiper .swiper-button-next {
	position: static;
	width: 38px;
	height: 38px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #181818;
	opacity: 1;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
	margin: 0;
}

span.swiper-pagination-bullet.swiper-pagination-bullet-active {
	padding: 0px;
	width: 40px;
	height: 10px;
	border-radius: 10px;
}

.swiper-pagination-bullet-active {
	opacity: var(--swiper-pagination-bullet-opacity, 1);
	background: #09090b;
}

.project-swiper .swiper-button-prev:after,
.project-swiper .swiper-button-next:after {
	font-size: 18px;
	font-weight: bold;
}

.project-swiper .swiper-button-prev:hover,
.project-swiper .swiper-button-next:hover {
	background: #181818;
	color: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

@media (max-width: 991px) {
	.project-swiper-arrows {
		top: -44px;
		gap: 8px;
	}

	.project-swiper .swiper-button-prev,
	.project-swiper .swiper-button-next {
		width: 32px;
		height: 32px;
	}
}

/* Project Swiper Arrow Styling */
.project-swiper .swiper-button-prev,
.project-swiper .swiper-button-next {
	position: absolute;
	top: 10px;
	right: 60px;
	width: 38px;
	height: 38px;
	background: #fff;
	border-radius: 50%;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #181818;
	z-index: 10;
	opacity: 1;
	transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.project-swiper .swiper-button-prev {
	right: 60px;
}

.project-swiper .swiper-button-next {
	right: 10px;
}

.project-swiper .swiper-button-prev:after,
.project-swiper .swiper-button-next:after {
	font-size: 18px;
	font-weight: bold;
}

.project-swiper .swiper-button-prev:hover,
.project-swiper .swiper-button-next:hover {
	background: #181818;
	color: #fff;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}

@media (max-width: 991px) {

	.project-swiper .swiper-button-prev,
	.project-swiper .swiper-button-next {
		top: 0px;
		right: 40px;
		width: 32px;
		height: 32px;
	}

	.project-swiper .swiper-button-next {
		right: 0px;
	}
}

/* How We Work Card Hover Effects */
.howework-step-card .howework-step-img {
	transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), filter 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.howework-step-card .howework-step-number {
	transition: color 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.howework-step-card:hover .howework-step-img {
	transform: scale(1.07);
	filter: brightness(0.93) contrast(1.08);
}

.howework-step-card:hover .howework-step-number {
	color: #e4c264;
}

img.shapese.shape-1 {
	position: absolute;
	right: 0;
	top: 0;
}

:root {
	--primary-color: #01225b;
	--secondery-color: #F8F8F8;
	--text-color: #151818;
	--accent-color: #002e74;
	--white-color: #FFFFFF;
	--divider-color: #EAF0EC;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Hanken Grotesk", sans-serif;
}


/************************************/
/*** 	   02. General css		  ***/
/************************************/

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6em;
	background-color: var(--white-color);
	color: var(--text-color);
}

p {
	line-height: 1.7em;
	margin-bottom: 1.6em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	font-weight: 700;
	line-height: 1.1em;
	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: 1240px;
}

.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;
	border-radius: 10px;
}

.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;
	background: var(--accent-color);
	color: var(--white-color);
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	border: none;
	padding: 15px 46px 15px 20px;
	transition: all 0.5s ease-in-out;
	overflow: hidden;
	z-index: 0;
	border-radius: 8px;
}

.btn-default:hover {
	background: transparent;
	color: var(--white-color);
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 16px;
	height: 16px;
	background-image: url(../images/arrow-white.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transform: translate(-20px, -50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover::before {
	transform: translate(-18px, -50%);
}

.btn-default::after {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: -15%;
	right: 0;
	width: 0;
	height: 106%;
	background: var(--primary-color);
	transform: skew(45deg);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.btn-default:hover:after {
	width: 100%;
	transform: skew(0deg);
	left: 0;
}

.btn-default.btn-highlighted {
	background-color: var(--white-color);
	color: var(--accent-color);
}

.btn-default.btn-highlighted:hover {
	color: var(--white-color);
}

.btn-default.btn-highlighted::before {
	background-image: url(../images/arrow-accent.svg);
}

.btn-default.btn-highlighted:hover::before {
	filter: brightness(0) invert(1);
}

.btn-default.btn-highlighted::after {
	background-color: var(--accent-color);
}

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background-color: white;
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 300px;
	position: relative;
	width: 300px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

@keyframes rotate-loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

.section-row {
	margin-bottom: 80px;
}

.section-row .section-title {
	margin-bottom: 0;
	margin-right: 30px;
}

.section-btn {
	text-align: end;
}

.section-title-content {
	margin-left: 120px;
}

.section-title-content p {
	margin: 0;
}

.section-title {
	margin-bottom: 40px;
}

.section-title h3 {
	display: inline-block;
	position: relative;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6em;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-left: 35px;
	margin-bottom: 20px;
}

.section-title h3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url('../images/icon-sub-heading.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
	width: 24px;
	height: 5px;
}

.section-title span.subtiles {
	display: inline-block;
	position: relative;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6em;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-left: 35px;
	margin-bottom: 20px;
}

.section-title span.subtiles::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url('../images/icon-sub-heading.svg');
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
	width: 24px;
	height: 5px;
}

.section-title h1 {
	font-size: 38px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title p.eaglebnettitle {
	font-size: 50px!important;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
	max-width: 100%!important;
	line-height: 1;
}

.section-title h2 {
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h2 span {
	color: var(--accent-color);
}

.section-title p {
	margin-top: 12px;
	margin-bottom: 0;
}


.section-title-content.dark-section p,
.section-title.dark-section p,
.section-title.dark-section h2,
.section-title.dark-section h3 {
	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;
}

/* =============================================
   TOP HEADER BAR SECTION
   ============================================= */
.tobbar {
	background: linear-gradient(115deg, #0e45a9 68%, #00235b 68%, #01235c 68.5%, #004dc4 68.5%, #004dc4 69.5%, #022159 69.5%, #004cc2 100%);
	padding: 5px 0;
	font-family: var(--default-font);
	font-size: 14px;
	color: #ffffff;
}

.tobbar-left-content {
	display: flex;
	align-items: center;
	gap: 30px;
	height: 100%;
}

.tobbar-left-content a {
	color: #ffffff;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 10px;
	font-weight: 600;
	transition: opacity 0.25s ease;
}

.tobbar-left-content a:hover {
	opacity: 0.85;
}

.tobbar-left-content i {
	font-size: 16px;
}

.tobbar-right-content {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 15px;
	height: 100%;
}

.tobbar-right-content span {
	font-weight: 600;
	margin-right: 5px;
}

.tobbar-right-content a {
	color: #ffffff;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 24px;
	height: 24px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.tobbar-right-content a:hover {
	transform: scale(1.15);
	opacity: 0.85;
}

.tobbar-right-content i {
	font-size: 16px;
}

@media (max-width: 991px) {
	.tobbar {
		background: #0b4d8c;
		padding: 8px 0;
		text-align: center;
	}

	.tobbar-left-content {
		justify-content: center;
		margin-bottom: 8px;
		flex-wrap: wrap;
		gap: 20px;
	}

	.tobbar-right-content {
		justify-content: center;
	}
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
	position: relative;
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	z-index: 100;
	transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.3s ease;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
	border-radius: 0;
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	border-radius: 0;
	transform: translateY(0);
	background: #ffffff;
	border-bottom: 1px solid var(--dark-divider-color);
}

.navbar {
	padding: 10px 0;
	align-items: center;
	border-bottom: 1px solid var(--dark-divider-color);
}

header.main-header .header-sticky.active .navbar {
	border-bottom: none;
	padding: 0;
}


.navbar-brand {
	padding: 0;
	margin: 0;
}

.main-menu .nav-menu-wrapper {
	flex: 1;
	text-align: center;
	margin-left: 40px;
}

.main-menu .nav-menu-wrapper>ul {
	align-items: center;
	display: inline-flex;
}

.main-menu ul li {
	margin: 0 6px;
	position: relative;
}

a.navbar-brand img {
	width: 230px;
	transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

header.main-header .header-sticky.active a.navbar-brand img {
	width: 173px;
}

.main-menu ul li a {
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 500;
	padding: 15px 14px !important;
	color: var(--primary-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--accent-color);
}

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scaleY(0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 280px;
	border-radius: 5px;
	position: absolute;
	left: 0;
	top: 100%;
	background-color: #ffffff;
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul li.submenu:first-child ul {
	width: 230px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
}

.main-menu ul li.submenu ul li.submenu>a:after {
	content: '\f105';
	float: right;
}

.main-menu ul ul li {
	margin: 0;
	padding: 0;
	border-bottom: 1px dashed #e5e5e5;
}

.main-menu ul ul li a {
	color: #002e74;
	padding: 6px 20px !important;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scaleY(1);
	padding: 5px 0;
	height: 450px;
	overflow-y: auto;
}

.main-menu ul ul li a:hover,
.main-menu ul ul li a:focus {
	color: #0952d5;
	background-color: transparent;
	padding: 6px 20px 6px 23px !important;
}

.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: 0;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {

	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-family: var(--accent-font);
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	padding: 10px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--primary-color);
}

.slicknav_menu ul ul li a {
	padding: 10px 20px 10px 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(--white-color);
	position: absolute;
	right: 15px;
	top: 15px;
	transition: all 0.3s ease-out;
}

.slicknav_open>a .slicknav_arrow:after {
	transform: rotate(-180deg);
	color: var(--primary-color);
}

/************************************/
/***        04. Hero css	      ***/
/************************************/

.hero {
	position: relative;
	background: url('../images/hero-bg.jpg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 280px 0 250px;
	min-height: 80vh;
	/* margin-top: -118px; */
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.4) 80.94%);
	height: 100%;
	width: 100%;
	z-index: 1;
}

.hero.hero-video .hero-bg-video {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
}

.hero.hero-video .hero-bg-video video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-slider-layout .hero-slide {
	position: relative;
	padding: 100px 0 100px;
	min-height: 80vh;
}

.hero.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(90deg, rgb(0 0 0 / 45%) 30%, rgba(25, 35, 36, 0) 80.70%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-slider-layout .hero-slide .hero-slider-image img,
.hero.hero-slider-layout .hero-slide .hero-slider-image video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 50px;
	text-align: left;
	padding-left: calc(((100vw - 1300px) / 2));
	z-index: 2;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--white-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

.hero.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background-color: var(--accent-color);
}

.hero-content {
	position: relative;
	z-index: 2;
}

.hero-content .section-title h3,
.hero-content .section-title h1 {
	color: var(--white-color);
}

.hero-content .section-title p {
	font-size: 22px;
	color: var(--white-color);
	width: 100%;
	max-width: 600px;
}

.hero-content .section-title h3::before {
	filter: brightness(0) invert(1);
}

.hero-content .btn-default.btn-highlighted {
	margin-left: 30px;
}

/************************************/
/***       05. About Us css 	  ***/
/************************************/

.about-us {
	/* background-image: url('../images/section-bg-shape-1.svg'); */
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	padding: 50px 0;
}

.about-us-images {
	position: relative;
	padding-right: 100px;
	padding-bottom: 180px;
	margin-right: 30px;
}

.about-us-images::before {
	content: '';
	position: absolute;
	left: 60px;
	bottom: 40px;
	width: 100px;
	height: 100px;
	background-image: url(../images/about-shape.png);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	transform-origin: center center;
	animation: about-shape-spin 14s linear infinite;
	pointer-events: none;
	z-index: 0;
}

.about-us-images>* {
	position: relative;
	z-index: 1;
}

@keyframes about-shape-spin {
	from {
		transform: rotate(0deg);
	}

	to {
		transform: rotate(360deg);
	}
}

@media (prefers-reduced-motion: reduce) {
	.about-us-images::before {
		animation: none;
	}
}

.about-img-1 figure,
.about-img-2 figure {
	display: block;
	border-radius: 10px;
}

.about-img-1 img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.76;
	border-radius: 10px;
}

.about-img-2 {
	position: absolute;
	width: 100%;
	max-width: 385px;
	bottom: 0;
	right: 0;
	border-radius: 10px;
}

.about-img-2 img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.76;
	border-radius: 10px;
}

.experience-counter {
	position: absolute;
	top: 0;
	left: 0;
	height: 152px;
	width: 152px;
	display: flex;
	flex-wrap: wrap;
	align-content: center;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border: 6px solid var(--white-color);
	transform: translate(-50%, -6px);
	border-radius: 50%;
}

.experience-counter h3 {
	font-size: 34px;
	color: var(--white-color);
	text-align: center;
	width: 100%;
	margin-bottom: 5px;
}

.experience-counter p {
	font-weight: 600;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--white-color);
	text-align: center;
	margin-bottom: 0;
}

.feedback-counter {
	position: absolute;
	top: -15px;
	right: 0;
	transform: rotate(-180deg) translate(20px, -20px);
	writing-mode: vertical-rl;
	display: flex;
	align-items: center;
}

.feedback-counter p {
	font-size: 16px;
	font-weight: 500;
	color: var(--white-color);
	height: 60px;
	width: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: var(--accent-color);
	border-radius: 50%;
	margin: 0 0 15px 0;
	transition: all 0.3s ease-in-out;
}

.feedback-counter:hover p {
	background-color: var(--primary-color);
}

.footer-social-link-title h2 {
    font-size: 20px;
    color: white;
}

.feedback-counter h3 {
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	width: calc(100% - 75px);
}

.feedback-counter span.clsint {
	font-size: 18px;
	font-weight: 500;
	text-transform: capitalize;
	width: calc(100% - 75px);
}

.about-us-content-body {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
}

.about-us-content-body::before {
	content: '';
	position: absolute;
	right: 50%;
	top: 0;
	bottom: 0;
	transform: translateX(-50%);
	border: 1px solid var(--divider-color);
	width: 1px;
	height: 100%;
}

.about-us-content-info {
	width: calc(50% - 40px);
}

.director-profile {
	position: relative;
	isolation: isolate;
	display: flex;
	align-items: center;
	gap: 4px;
	margin-top: 12px;
    padding: 10px;
	overflow: hidden;
	background:
		linear-gradient(125deg, rgba(255, 255, 255, 0.08), transparent 38%),
		linear-gradient(135deg, #063a78 0%, #01225b 55%, #001535 100%);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 20px;
	box-shadow: 0 18px 42px rgba(1, 34, 91, 0.22);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.director-profile::before {
	content: '';
	position: absolute;
	z-index: -1;
	right: -55px;
	bottom: -75px;
	width: 190px;
	height: 190px;
	border: 34px solid rgba(255, 255, 255, 0.045);
	border-radius: 50%;
}

.director-profile::after {
	content: '';
	position: absolute;
	top: 0;
	right: 42px;
	left: 42px;
	height: 3px;
	background: linear-gradient(90deg, transparent, #66c7f4, transparent);
}

.director-profile:hover {
	transform: translateY(-5px);
	box-shadow: 0 24px 50px rgba(1, 34, 91, 0.3);
}

.director-profile-image {
	flex: 0 0 142px;
	height: 160px;
	position: relative;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.1);
	border: 2px solid rgba(255, 255, 255, 0.26);
	border-radius: 14px;
	box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.director-profile-image::after {
	content: '';
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 65%, rgba(1, 34, 91, 0.28));
}

.director-profile-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center 18%;
	transition: transform 0.45s ease;
}

.director-profile:hover .director-profile-image img {
	transform: scale(1.04);
}

.director-profile-content {
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: 16px 18px 16px 22px;
}

.director-profile-content::before {
	content: '';
	position: absolute;
	top: 22px;
	bottom: 22px;
	left: 0;
	width: 3px;
	background: linear-gradient(180deg, #66c7f4, rgba(102, 199, 244, 0.08));
	border-radius: 10px;
}

.director-profile-label {
	margin-bottom: 7px;
	color: #8ed8ff;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 1.5px;
	line-height: 1.2;
	text-transform: uppercase;
}

.director-profile-content h3 {
	margin: 0 0 7px;
	color: var(--white-color);
	font-size: 25px;
	font-weight: 700;
	letter-spacing: -0.35px;
	line-height: 1.25;
}

.director-profile-role {
	display: inline-flex;
	align-items: center;
	align-self: flex-start;
	gap: 7px;
	margin: 0 0 12px;
	padding: 6px 13px;
	color: #01225b;
	background: linear-gradient(135deg, #ffffff, #bceaff);
	border-radius: 30px;
	box-shadow: 0 6px 14px rgba(0, 46, 116, 0.2);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.8px;
	line-height: 1;
	text-transform: uppercase;
}

.director-profile-role::before {
	content: '';
	width: 6px;
	height: 6px;
	flex: 0 0 6px;
	background: var(--accent-color);
	border: 2px solid rgba(255, 255, 255, 0.95);
	border-radius: 50%;
	box-shadow: 0 0 0 3px rgba(0, 46, 116, 0.12);
}

.director-profile-experience {
	margin: 0;
	color: rgba(255, 255, 255, 0.82);
	font-size: 15px;
	font-weight: 500;
	line-height: 1.55;
}

.about-us-content-list {
	margin-bottom: 10px;
}

.about-us-content-list ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.about-us-content-list ul li {
	position: relative;
	font-weight: 500;
	color: var(--primary-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.about-us-content-list ul li:last-child {
	margin-bottom: 0;
}

.about-us-content-list ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.about-us-contact-list {
	width: calc(50% - 40px);
}

.about-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 40px;
}

.about-contact-item:last-child {
	margin-bottom: 0;
}

.about-contact-item .icon-box {
	width: 40px;
	height: 40px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 15px;
	transition: all 0.3s ease-in-out;
}

.about-contact-item:hover .icon-box {
	background-color: var(--primary-color);
}

.about-contact-item .icon-box figure {
	display: block;
	border-radius: 50%;
	overflow: hidden;
}

.about-contact-item .icon-box img {
	max-width: 40px;
	border-radius: 50%;
}

.about-contact-item .icon-box i {
	font-size: 18px;
	color: var(--white-color);
}

.about-contact-content {
	width: calc(100% - 55px);
}

.about-contact-content h3 {
	font-size: 20px;
	text-transform: capitalize;
}

.about-contact-content p {
	font-weight: 500;
	color: var(--primary-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

/************************************/
/***     06. Why Choose Us css    ***/
/************************************/
.why-choose-img-2.position-relative {
	background: #fff;
}

.why-choose-img-2.position-relative>video {
	width: 486px;
	/* mix-blend-mode: lighten; */
}

.why-choose-us {
	padding: 50px 0;
	background-color: #ffffff;
}

.why-choose-item {
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.why-choose-item:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

img.podfpof {
	position: absolute;
	top: 0;
	bottom: 0;
}

.why-choose-item .icon-box {
	position: relative;
	width: 70px;
	height: 70px;
	background-color: #eff4ff;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

.why-choose-item:hover .icon-box {
	background-color: transparent;
}

.why-choose-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.3s ease-in-out;
}

.why-choose-item:hover .icon-box::before {
	transform: scale(1);
}

.why-choose-item .icon-box img {
	max-width: 24px;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.why-choose-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.why-choose-item-content {
	width: calc(100% - 80px);
}

.why-choose-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.why-choose-item-content p {
	color: var(--primary-color);
	margin-bottom: 0;
}

.why-choose-images {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-left: 30px;
}

.why-choose-img-box-1,
.why-choose-img-box-2 {
	display: flex;
	gap: 20px;
	width: 100%;
}

.why-choose-img-1 figure,
.why-choose-img-2 figure,
.why-choose-img-3 figure,
.why-choose-img-4 figure {
	display: block;
}

.why-choose-img-1 {
	width: calc(57% - 10px);
}

.why-choose-img-1 img {
	width: 100%;
	aspect-ratio: 1 / 0.756;
	object-fit: cover;
}

.why-choose-img-2 {
	width: calc(43% - 10px);
}

.why-choose-img-2 img {
	width: 100%;
	aspect-ratio: 1 / 1.01;
	object-fit: cover;
}

.why-choose-img-3 {
	width: calc(67% - 10px);
}

.why-choose-img-3 img {
	width: 100%;
	aspect-ratio: 1 / 0.746;
	object-fit: cover;
}

.why-choose-img-4 {
	width: calc(33% - 10px);
}

.why-choose-img-4 img {
	width: 100%;
	aspect-ratio: 1 / 1.55;
	object-fit: cover;
}

/************************************/
/***     07. Our Services css     ***/
/************************************/

.our-services {
	padding: 100px 0;
}

.service-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.service-image a {
	display: block;
	cursor: none;
}

.service-image a figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 105%);
	height: 100%;
	width: 100%;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.service-image img {
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 1.36;
	transition: all 0.4s ease-in-out;
}

.service-item:hover .service-image img {
	transform: scale(1.1);
}

.service-btn {
	position: absolute;
	top: 40px;
	right: 40px;
	z-index: 1;
}

.service-btn a {
	background-color: var(--accent-color);
	height: 60px;
	width: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover {
	background-color: var(--primary-color);
}

.service-btn a img {
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.service-btn a:hover img {
	transform: rotate(0)
}

.service-content {
	position: absolute;
	bottom: 40px;
	left: 40px;
	right: 40px;
	z-index: 1;
}

.service-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.service-content h3 a {
	color: inherit;
}

.service-content p {
	color: var(--white-color);
	margin-bottom: 0;
}

.all-services-btn {
	text-align: center;
	margin-top: 20px;
}

/************************************/
/***      08. Intro Video css     ***/
/************************************/

.intro-video .container-fluid {
	padding: 0;
}

.intro-video-box {
	position: relative;
	overflow: hidden;
	z-index: 1;
}

.intro-video-image a {
	display: block;
	cursor: none;
}

.intro-video-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background: linear-gradient(180deg, rgba(25, 35, 36, 0) 0%, rgba(25, 35, 36, 0.6) 80.94%);
	height: 100%;
	width: 100%;
	z-index: 1;
	transition: all 0.3s ease-in-out;
}

.intro-video-image img {
	width: 100%;
	aspect-ratio: 1 / 0.31;
	object-fit: cover;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 2;
}

.video-play-button a {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--white-color);
	border: 1px solid var(--white-color);
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
	transition: all 0.3s ease-in-out;
}

.video-play-button a:hover {
	border-color: var(--primary-color);
	color: var(--primary-color);
}

/************************************/
/***    09. Latest Project css    ***/
/************************************/

.our-project {
	padding: 50px 0 40px;
}

.our-Project-nav {
	text-align: center;
	margin-bottom: 60px;
}

.our-Project-nav ul {
	list-style: none;
	text-align: center;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 15px 30px;
	padding: 0;
	margin: 0;
}

.our-Project-nav ul li a {
	position: relative;
	display: inline-block;
	color: var(--primary-color);
	font-weight: 500;
	line-height: 1.2em;
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.our-Project-nav ul li a:after,
.our-Project-nav ul li a:before {
	content: '';
	position: absolute;
	left: 0px;
	bottom: -8px;
	width: 100%;
	height: 2px;
	background-color: var(--accent-color);
	transform-origin: bottom right;
	transition: transform 0.4s ease-in-out;
	transform: scaleX(0);
}

.our-Project-nav ul li a:after {
	top: -8px;
	bottom: auto;
	left: 0px;
}

.our-Project-nav ul li a:hover:before,
.our-Project-nav ul li a.active-btn:before,
.our-Project-nav ul li a:hover:after,
.our-Project-nav ul li a.active-btn:after {
	transform-origin: bottom left;
	transform: scaleX(1);
}

.project-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.project-featured-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: linear-gradient(360deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 111.33%); */
	z-index: 0;
}

.project-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	opacity: 0;
	visibility: hidden;
	backdrop-filter: blur(20px);
	border-radius: 50%;
	transform: translate(-50%, -30%);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-btn {
	opacity: 1;
	visibility: visible;
	transform: translate(-50%, -50%);
}

.project-btn a {
	width: 100px;
	height: 100px;
	background: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.project-btn img {
	max-width: 24px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.project-btn a:hover {
	background: var(--primary-color);
}

.project-btn a:hover img {
	transform: rotate(0deg);
}

.project-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
}

.project-content {
	position: absolute;
	left: 40px;
	bottom: 20px;
	right: 40px;
	/* display: none; */
}

.project-content h3 {
	margin: 0;
	background-color: #ffffffde;
	color: #002e74 !important;
	font-size: 20px;
	font-weight: 600;
	padding: 16px;
	border-radius: 10px !important;
}

.project-content h3,
.project-content h2 {
	color: var(--white-color);
	text-transform: capitalize;
	position: relative;
	z-index: 1;
}

/* .project-content h3{
	font-size: 16px;
	font-weight: 500;
	margin-bottom: 10px;
} */

/* .our-project {
    background-color: #000000;
    background-image: url('./images/dark-section-bg-shape.png');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
} */

.project-content h2 {
	font-size: 20px;
	font-weight: 700;
}

.project-content h2 a {
	color: inherit;
}

/************************************/
/***      10. How We Work css     ***/
/************************************/

.how-we-work {
	background: var(--primary-color);
	padding: 50px 0;
}

.how-we-work-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	z-index: 1;
}

.how-we-work-item {
	width: calc(25% - 22.5px);
}

.how-we-work-item .icon-box {
	margin-bottom: 30px;
}

.how-we-work-item .icon-box img {
	max-width: 60px;
}

.how-we-work-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 10px;
}

.how-we-work-content p {
	color: var(--white-color);
	margin: 0;
}

.how-work-company-slider {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding-top: 60px;
}

.how-work-company-slider .company-logo {
	text-align: center;
}

.how-work-company-slider .company-logo img {
	width: 100%;
	max-height: 40px;
}

/************************************/
/***      11. Our Skills css      ***/
/************************************/

.our-skill {
	padding: 100px 0;
	background: url('../images/section-bg-shape-2.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
}

.skills-progress-bar {
	margin-bottom: 40px;
}

.skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skillbar .skill-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}

.skill-data .skill-title {
	font-size: 16px;
	text-transform: capitalize;
	color: var(--primary-color);
}

.skill-data .skill-no {
	font-size: 16px;
	color: var(--primary-color);
	margin-left: 20px;
}

.skill-progress {
	width: 100%;
	height: 12px;
	background: var(--divider-color);
	border-radius: 99px;
	position: relative;
}

.skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 99px;
}

.our-skill-image {
	position: relative;
	padding-bottom: 155px;
	margin-left: 65px;
}

.our-skill-img-1 {
	width: 333px;
	position: relative;
	background: url('../images/our-skill-img-bg-dot.svg');
	background-repeat: no-repeat;
	background-position: top left;
	background-size: 84px auto;
	padding: 30px 0 0 30px;
}

.our-skill-img-1 figure,
.our-skill-img-2 figure,
.our-skill-img-3 figure {
	display: block;
}

.our-skill-img-1 img {
	width: 100%;
	aspect-ratio: 1/1.37;
	object-fit: cover;
}

.our-skill-img-2 {
	width: 202px;
	position: absolute;
	top: 70px;
	right: 0;
}

.our-skill-img-2 img {
	width: 100%;
	aspect-ratio: 1/0.93;
	object-fit: cover;
}

.our-skill-img-3 {
	width: 333px;
	position: absolute;
	bottom: 0;
	right: 0;
}

.our-skill-img-3 img {
	width: 100%;
	aspect-ratio: 1/0.97;
	object-fit: cover;
}

/************************************/
/***   12. Our Testimonials css   ***/
/************************************/

.our-testimonials {
	padding-top: 40px;
	background: var(--secondery-color);
}

.our-testimonials .container-fluid {
	padding: 0;
}

.our-testimonials-image {
	height: 100%;
}

.our-testimonials-image figure,
.our-testimonials-image figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.82;
	object-fit: cover;
}

.our-testimonial-content {
	/* padding: 100px; */
}

.our-testimonial-content .section-title {
	background: url('../images/testimonial-quote.svg') no-repeat;
	background-position: top right;
	background-size: 92px auto;
}

.footer-contact-content p a {
	color: white;
}

.testimonial-slider {
	width: 100%;
	max-width: 100%;
	/* margin-bottom: 40px; */
	/* padding-bottom: 40px; */
	border-bottom: 1px solid var(--divider-color);
}

.testimonial-slider .swiper-wrapper {
	cursor: none;
}

.testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-rating i {
	font-size: 18px;
	color: var(--primary-color);
	margin-right: 2px;
}

.testimonial-rating i:last-child {
	margin-right: 0;
}

.testimonial-content {
	margin-bottom: 40px;
}

.testimonial-content p {
	font-size: 16px;
	color: #000000;
	margin: 0;
}

.testimonial-body {
	display: flex;
	align-items: center;
}

.testimonial-body .author-image {
	margin-right: 15px;
}

.testimonial-body .author-image img {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	border: 1px dashed;
}

.testimonial-body .author-content {
	width: calc(100% - 75px);
}

.testimonial-body .author-content h3 {
	font-size: 17px;
	text-transform: capitalize;
}

.testimonial-body .author-content p {
	text-transform: capitalize;
	margin: 0;
}

.testimonial-rating-counter {
	display: flex;
	align-items: center;
	gap: 20px;
}

.testimonial-rating-counter .rating-counter h2 {
	font-size: 58px;
}

.testimonial-client-rating {
	display: inline-block;
	background: var(--accent-color);
	padding: 0px 5px 3px 5px;
	line-height: 1em;
}

.testimonial-client-rating i {
	font-size: 10px;
	color: var(--white-color);
}

.testimonial-rating-content p {
	color: var(--primary-color);
	font-weight: 500;
	margin: 0;
}

/************************************/
/***       13. Our Blog css       ***/
/************************************/

.our-blog {
	padding: 100px 0;
	background: url('../images/section-bg-shape-2.svg');
	background-repeat: no-repeat;
	background-position: top center;
	background-size: contain;
}

.post-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.post-featured-image {
	margin-bottom: 20px;
}

.post-featured-image a {
	cursor: none;
}

.post-featured-image figure,
.post-featured-image a {
	display: block;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.post-item:hover .post-featured-image img {
	transform: scale(1.1);
}

.post-item-content {
	margin-bottom: 15px;
}

.post-item-content h3 {
	color: var(--primary-color);
	font-size: 20px;
	line-height: 1.4em;
}

.post-item-content h3 a {
	color: inherit;
}

.post-item-btn a {
	position: relative;
	color: var(--primary-color);
	font-weight: 500;
	text-transform: capitalize;
	padding-right: 25px;
}

.post-item-btn a::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	transform: translate(0px, -50%);
	width: 17px;
	height: 16px;
	background: url('../images/arrow-dark.svg') no-repeat;
	background-position: right center;
	background-size: cover;
	transition: all 0.4s ease-in-out;
}

.post-item-btn a:hover::after {
	transform: translate(2px, -50%);
}

.our-blog-footer {
	margin-top: 20px;
	text-align: center;
}

/************************************/
/***      	14. Footer css 		  ***/
/************************************/

.main-footer {
	padding: 40px 0 0;
	background: var(--primary-color);
}

p.mopif {
	font-size: 21px;
	padding-top: 11px;
}

.footer-logo img {
	width: 30%;
}

.main-footer .footer-header {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.footer-social-links {
	display: flex;
	align-items: center;
	justify-content: end;
	gap: 30px;
}

.footer-social-link-title h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
}

.footer-social-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-social-links ul li {
	display: inline-flex;
	margin-right: 10px;
}

.footer-social-links ul li:last-child {
	margin-right: 0;
}

.footer-social-links ul li a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--white-color);
	border-radius: 50%;
	height: 36px;
	width: 36px;
	transition: all 0.3s ease-in-out;
}

.footer-social-links ul li a i {
	font-size: 18px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.footer-links h3 {
	font-size: 20px;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-links ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-links ul li {
	color: var(--white-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
	margin-bottom: 10px;
}

.footer-links ul li:last-child {
	margin-bottom: 0;
}

.footer-links ul li:hover {
	color: var(--accent-color);
}

.footer-links ul li a {
	display: block;
	color: inherit;
}

.footer-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 15px;
}

.footer-contact-item:last-child {
	margin-bottom: 0;
}

.footer-contact-item .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid var(--dark-divider-color);
	border-radius: 50%;
	width: 40px;
	height: 40px;
	margin-right: 10px;
	transition: all 0.3s ease-in-out;
}

.footer-contact-item:hover .icon-box {
	border-color: var(--white-color);
}

.footer-contact-item .icon-box i {
	font-size: 16px;
	color: var(--white-color);
}

.footer-contact-content {
	width: calc(100% - 50px);
}

.footer-contact-content p {
	color: var(--white-color);
	margin: 0;
}

.footer-newsletter-form p {
	color: var(--white-color);
	margin-bottom: 30px;
}

.footer-newsletter-form .form-group {
	display: flex;
	background: var(--white-color);
	overflow: hidden;
}

.footer-newsletter-form .form-group .form-control {
	width: 85%;
	border: none;
	border-radius: 0;
	color: var(--text-color);
	background: transparent;
	padding: 13px 10px;
	box-shadow: none;
}

.footer-newsletter-form .form-group .form-control::placeholder {
	color: var(--text-color);
}

.footer-newsletter-form button {
	background-color: transparent;
	width: 15%;
	border: none;
	padding: 0;
}

.footer-newsletter-form button i {
	color: var(--accent-color);
	font-size: 16px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form button:hover i {
	color: var(--primary-color);
}

.copr p {
	margin: 0;
	text-align: right;
}

.footer-copyright {
	border-top: 1px solid var(--dark-divider-color);
	text-align: center;
	margin-top: 25px;
	padding: 10px 0;
}

.footer-copyright-text {
	text-align: left;
}

.footer-copyright-text p {
	color: var(--white-color);
	margin: 0;
}

p.styflop.amopof {
    font-size: 35px;
    color: white;
    font-weight: 600;
    padding: 0;
    margin: 0;
}

/************************************/
/***     15. 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: 50px 0 50px;
}

.page-header::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #000000db;
	width: 100%;
	height: 100%;
	z-index: 0;
}

.page-header-box {
	position: relative;
	text-align: center;
	z-index: 1;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 80px;
	font-weight: 700;
	color: var(--white-color);
	letter-spacing: -0.02em;
	margin-bottom: 10px;
	cursor: none;
}

.page-header-box ol {
	margin: 0;
	padding: 0;
	justify-content: center;
}

.page-header-box ol li.breadcrumb-item {
	font-size: 19px;
	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 {
	font-size: 20px;
	color: var(--white-color);
}

.about-us.page-about-us {
	background: transparent;
}

.about-facility-list {
	margin-top: 100px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-facility-item {
	width: calc(33.33% - 20px);
	display: flex;
}

.about-facility-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
}

.about-facility-item .icon-box:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.about-facility-item:hover .icon-box:before {
	transform: scale(1);
}

.about-facility-item .icon-box img {
	max-width: 24px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.about-facility-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.about-facility-content {
	width: calc(100% - 80px);
}

.about-facility-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.about-facility-content p {
	margin-bottom: 0;
}

.vision-mission {
	padding: 100px 0 50px;
	background: linear-gradient(180deg, var(--primary-color) 60%, var(--white-color) 40%);
}

.vision-mission-box {
	background-color: var(--secondery-color);
	padding: 45px 60px;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 150px;
}

.vision-mission-item {
	position: relative;
	width: calc(50% - 75px);
}

.vision-mission-item::before {
	content: '';
	position: absolute;
	height: 100%;
	width: 1px;
	top: 0;
	right: -75px;
	bottom: 0;
	background-color: var(--divider-color);
	z-index: 1;
}

.vision-mission-item:nth-child(2n + 2)::before,
.vision-mission-item:last-child::before {
	display: none;
}

.vision-mission-item .icon-box {
	position: relative;
	width: 95px;
	height: 95px;
	background: var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
}

.vision-mission-item .icon-box:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--primary-color);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.vision-mission-item:hover .icon-box:before {
	transform: scale(1);
}

.vision-mission-item .icon-box img {
	position: relative;
	max-width: 36px;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.vision-mission-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.vision-mission-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 20px;
}

.vision-mission-content p {
	margin: 0;
}

.best-selling {
	background: url(../images/section-bg-shape-1.svg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: contain;
	padding: 50px 0 100px;
}

.best-selling-content-img {
	margin-bottom: 80px;
}

.best-selling-iamge figure,
.best-selling-content-img figure {
	display: block;
}

.best-selling-content-img img {
	width: 100%;
	aspect-ratio: 1 / 0.42;
	object-fit: cover;
}

.best-selling-content .section-title {
	margin-bottom: 0;
}

.best-selling-iamge img {
	width: 100%;
	aspect-ratio: 1 / 0.93;
	object-fit: cover;
}

.our-team {
	padding: 100px 0 70px;
}

.team-member-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.team-image {
	position: relative;
	margin-bottom: 20px;
	overflow: hidden;
}

.team-image a {
	display: block;
	cursor: none;
}

.team-image figure {
	display: block;
}

.team-image figure img {
	width: 100%;
	aspect-ratio: 1 / 1.11;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-member-item:hover .team-image figure img {
	transform: scale(1.1);
}

.team-readmore-btn {
	position: absolute;
	top: 30px;
	right: 30px;
	z-index: 1;
}

.team-readmore-btn a {
	width: 60px;
	height: 60px;
	background-color: var(--accent-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover {
	background-color: var(--primary-color);
}

.team-readmore-btn img {
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.team-readmore-btn a:hover img {
	transform: rotate(0deg);
}

.team-content {
	text-align: center;
	margin-bottom: 20px;
}

.team-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.team-content p {
	font-weight: 500;
	text-transform: capitalize;
	margin: 0;
}

.team-social-icon ul {
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}

.team-social-icon ul li {
	display: inline-flex;
	margin-right: 10px;
}

.team-social-icon ul li:last-child {
	margin-right: 0;
}

.team-social-icon ul li a {
	width: 44px;
	height: 44px;
	color: var(--accent-color);
	background: var(--divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-icon ul li a:hover {
	color: var(--white-color);
	background: var(--primary-color);
}

.team-social-icon ul li a i {
	color: inherit;
	font-size: 18px;
}

.our-faqs {
	padding: 100px 0;
}

.our-faqs-content {
	margin-right: 70px;
}

.faq-accordion .accordion-item {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 15px;
}

.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(--primary-color);
	align-items: start;
	padding-right: 35px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button span {
	margin-right: 7px;
}

.faq-accordion .accordion-button:not(.collapsed) {
	padding-bottom: 15px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\2b';
	font-family: 'Font Awesome 6 Free';
	position: absolute;
	font-size: 18px;
	font-weight: 900;
	color: var(--primary-color);
	text-align: right;
	top: 0;
	right: 0;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	content: '\f068';
}

.faq-accordion .accordion-body {
	padding-right: 35px;
}

.faq-accordion .accordion-body p {
	margin: 0;
}

.our-faqs-image {
	text-align: right;
}

.our-faqs-image figure {
	display: block;
}

.our-faqs-image img {
	width: 100%;
	aspect-ratio: 1 / 1.26;
	object-fit: cover;
}

.our-clients {
	background-color: var(--secondery-color);
	padding: 100px 0;
}

.our-clients .our-clients-box {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.our-client-slider .client-logo {
	text-align: center;
}

.our-client-slider .client-logo img {
	width: 100%;
	max-height: 40px;
}

/************************************/
/***     16. Services Page css 	  ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

/************************************/
/***    17. Service Single css 	  ***/
/************************************/

.page-service-single {
	padding: 50px 0;
}

.service-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 0px;
}

.contbtnsdf a {
    width: 100%;
}

.contbtnsdf {
    display: flex;
    gap: 9px;
}

.service-catagery-list {
	border: none;
    padding: 0px;
    margin-bottom: 20px;
    overflow: hidden;
}

.service-catagery-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.service-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-catagery-list ul li {
	margin-bottom: 20px;
}

.service-catagery-list ul li:last-child {
	margin: 0;
}

.service-catagery-list ul li a {
	position: relative;
	display: block;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
	color: var(--primary-color);
}

.service-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	transform: translateY(-50%) rotate(-45deg);
	background-image: url(../images/arrow-accent.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before {
	transform: translateY(-50%) rotate(0);
	filter: brightness(0) invert(0);
}

.sidebar-cta-image figure {
	display: block;
}

.sidebar-cta-image img {
	width: 100%;
	aspect-ratio: 1 / 0.57;
	object-fit: cover;
}

.sidebar-cta-Body {
	border: 1px solid var(--divider-color);
	padding: 30px;
}

.sidebar-cta-content {
	margin-bottom: 25px;
}

.sidebar-cta-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.sidebar-cta-content p {
	font-weight: 500;
	margin-bottom: 0;
}

.sidebar-cta-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.sidebar-cta-contact-item:last-child {
	margin-bottom: 0;
}

.sidebar-cta-contact-item .icon-box {
	position: relative;
	height: 58px;
	width: 58px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-item:hover {
	background-color: transparent;
}

.sidebar-cta-contact-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.3s ease-in-out;
}

.sidebar-cta-contact-item:hover .icon-box::before {
	transform: scale(1);
}

.sidebar-cta-contact-item .icon-box img {
	position: relative;
	max-width: 24px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.sidebar-cta-contact-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.cta-contact-item-content {
	width: calc(100% - 78px);
}

.cta-contact-item-content p {
	font-weight: 500;
	margin: 0;
}

.service-feature-image {
	margin-bottom: 40px;
}

.service-feature-image figure {
	display: block;
}

.service-feature-image img {
	width: 100%;
	aspect-ratio: 1 / 0.55;
	object-fit: cover;
}

.service-entry {
	margin-bottom: 20px;
}

.service-entry h2 {
	font-size: 46px;
	margin-bottom: 20px;
}

.service-entry h2 span {
	color: var(--accent-color);
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.service-entry ul li {
	position: relative;
	font-weight: 500;
	color: var(--text-color);
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 15px;
}

.service-entry ul li:last-child {
	margin-bottom: 0;
}

.service-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.service-entry-list-image {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.service-entry-image,
.service-entry-list {
	width: calc(50% - 15px);
}

.service-entry-image figure {
	display: block;
}

.service-entry-image img {
	width: 100%;
	aspect-ratio: 1 / 0.615;
	object-fit: cover;
}

.service-entry-list ul {
	margin-bottom: 0;
}

.why-choose-content.service-single-why-choose {
	margin-bottom: 60px;
}

/************************************/
/***     18. Blog Archive css 	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-pagination {
	margin-top: 20px;
	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(--accent-color);
	color: var(--white-color);
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 700;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

/************************************/
/***     19. Blog Single css 	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
}

.post-image figure,
.post-image img {
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

.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.2em;
	margin: 0 0 0.6em;
}

.post-entry h1 {
	font-size: 80px;
	letter-spacing: -0.02em;
}

.post-entry h2 {
	font-size: 46px;
	letter-spacing: -0.02em;
}

.post-entry h3 {
	font-size: 46px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 18px;
}

.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 ol li {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-color);
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li {
	font-size: 18px;
	font-weight: 500;
	color: var(--text-color);
	position: relative;
	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(--accent-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
	background-size: 58px;
	border-radius: 0;
	padding: 30px 30px 30px 100px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0;
	padding: 6px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0;
	width: 36px;
	height: 36px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/***     20. Project Page css 	  ***/
/************************************/

.page-project {
	padding: 100px 0 70px;
}

/************************************/
/***    21. Project Single css 	  ***/
/************************************/

.page-project-single {
	padding: 100px 0;
}

.project-single-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.project-detail-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.project-detail-item {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.project-detail-item:last-child {
	margin-bottom: 0;
}

.project-detail-item .icon-box {
	position: relative;
	background-color: var(--divider-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.project-detail-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .icon-box::before {
	transform: scale(1);
}

.project-detail-item .icon-box i {
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-detail-item:hover .icon-box i {
	color: var(--white-color);
}

.project-detail-content {
	width: calc(100% - 70px);
}

.project-detail-content h3 {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-detail-content p {
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

.project-single-image {
	margin-bottom: 40px;
}

.project-single-image figure {
	display: block;
}

.project-single-image img {
	width: 100%;
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
}

.project-info,
.project-design-info {
	margin-bottom: 60px;
}

.project-entry h2 {
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 30px;
}

.project-entry p {
	margin-bottom: 20px;
}

.project-entry p:last-child {
	margin-bottom: 0;
}

.project-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.project-entry ul li {
	position: relative;
	font-weight: 500;
	color: var(--text-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.project-entry ul li:last-child {
	margin-bottom: 0;
}

.project-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.project-gallery-images {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.project-gallery-img {
	width: calc(25% - 22.5px);
}

.project-gallery-img a,
.project-gallery-img figure {
	display: block;
	cursor: none;
}

.project-gallery-img figure img {
	width: 100%;
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
}

/************************************/
/***    22. 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;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}

/************************************/
/***    	23. FAQs Page css 	  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.faq-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.faq-catagery-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.faq-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li {
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child {
	margin-bottom: 0;
}

.faq-catagery-list ul li a {
	position: relative;
	display: block;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a {
	color: var(--primary-color);
}

.faq-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	transform: translateY(-50%) rotate(-45deg);
	background-image: url(../images/arrow-accent.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before {
	transform: translateY(-50%) rotate(0);
	filter: brightness(0) invert(0);
}

.our-faq-section.page-faq-accordion {
	margin-bottom: 60px;
}

.our-faqs-image {
	text-align: right;
}

.our-faqs-image img {
	aspect-ratio: 1 / 1.26;
}

.our-clients {
	background-color: var(--secondery-color);
	padding: 100px 0;
}

.our-clients .our-clients-box {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.our-client-slider .client-logo {
	text-align: center;
}

.our-client-slider .client-logo img {
	width: 100%;
	max-height: 40px;
}

/************************************/
/***     16. Services Page css 	  ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

/************************************/
/***    17. Service Single css 	  ***/
/************************************/

.page-service-single {
	padding: 50px 0;
}

.service-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.service-catagery-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 40px;
	overflow: hidden;
}

.service-catagery-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.service-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-catagery-list ul li {
	margin-bottom: 20px;
}

.service-catagery-list ul li:last-child {
	margin: 0;
}

.service-catagery-list ul li a {
	position: relative;
	display: block;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
	color: var(--primary-color);
}

.service-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	transform: translateY(-50%) rotate(-45deg);
	background-image: url(../images/arrow-accent.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before {
	transform: translateY(-50%) rotate(0);
	filter: brightness(0) invert(0);
}

.sidebar-cta-image figure {
	display: block;
}

.sidebar-cta-image img {
	width: 100%;
	aspect-ratio: 1 / 0.57;
	object-fit: cover;
}

.sidebar-cta-Body {
	border: 1px solid var(--divider-color);
	padding: 30px;
}

.sidebar-cta-content {
	margin-bottom: 25px;
}

.sidebar-cta-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.sidebar-cta-content p {
	font-weight: 500;
	margin-bottom: 0;
}

.sidebar-cta-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.sidebar-cta-contact-item:last-child {
	margin-bottom: 0;
}

.sidebar-cta-contact-item .icon-box {
	position: relative;
	height: 58px;
	width: 58px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-item:hover {
	background-color: transparent;
}

.sidebar-cta-contact-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.3s ease-in-out;
}

.sidebar-cta-contact-item:hover .icon-box::before {
	transform: scale(1);
}

.sidebar-cta-contact-item .icon-box img {
	position: relative;
	max-width: 24px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.sidebar-cta-contact-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.cta-contact-item-content {
	width: calc(100% - 78px);
}

.cta-contact-item-content p {
	font-weight: 500;
	margin: 0;
}

.service-feature-image {
	margin-bottom: 40px;
}

.service-feature-image figure {
	display: block;
}

.service-feature-image img {
	width: 100%;
	aspect-ratio: 1 / 0.55;
	object-fit: cover;
}

.service-entry {
	margin-bottom: 60px;
}

.service-entry h2 {
	font-size: 46px;
	margin-bottom: 20px;
}

.service-entry h2 span {
	color: var(--accent-color);
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.service-entry ul li {
	position: relative;
	font-weight: 500;
	color: var(--text-color);
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 15px;
}

.service-entry ul li:last-child {
	margin-bottom: 0;
}

.service-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.service-entry-list-image {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.service-entry-image,
.service-entry-list {
	width: calc(50% - 15px);
}

.service-entry-image figure {
	display: block;
}

.service-entry-image img {
	width: 100%;
	aspect-ratio: 1 / 0.615;
	object-fit: cover;
}

.service-entry-list ul {
	margin-bottom: 0;
}

.why-choose-content.service-single-why-choose {
	margin-bottom: 60px;
}

/************************************/
/***     18. Blog Archive css 	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-pagination {
	margin-top: 20px;
	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(--accent-color);
	color: var(--white-color);
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 700;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

/************************************/
/***     19. Blog Single css 	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
}

.post-image figure,
.post-image img {
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

.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.2em;
	margin: 0 0 0.6em;
}

.post-entry h1 {
	font-size: 80px;
	letter-spacing: -0.02em;
}

.post-entry h2 {
	font-size: 46px;
	letter-spacing: -0.02em;
}

.post-entry h3 {
	font-size: 46px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 18px;
}

.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 ol li {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-color);
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li {
	font-size: 18px;
	font-weight: 500;
	color: var(--text-color);
	position: relative;
	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(--accent-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
	background-size: 58px;
	border-radius: 0;
	padding: 30px 30px 30px 100px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0;
	padding: 6px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0;
	width: 36px;
	height: 36px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/***     20. Project Page css 	  ***/
/************************************/

.page-project {
	padding: 100px 0 70px;
}

/************************************/
/***    21. Project Single css 	  ***/
/************************************/

.page-project-single {
	padding: 100px 0;
}

.project-single-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.project-detail-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.project-detail-item {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.project-detail-item:last-child {
	margin-bottom: 0;
}

.project-detail-item .icon-box {
	position: relative;
	background-color: var(--divider-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.project-detail-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .icon-box::before {
	transform: scale(1);
}

.project-detail-item .icon-box i {
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-detail-item:hover .icon-box i {
	color: var(--white-color);
}

.project-detail-content {
	width: calc(100% - 70px);
}

.project-detail-content h3 {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-detail-content p {
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

.project-single-image {
	margin-bottom: 40px;
}

.project-single-image figure {
	display: block;
}

.project-single-image img {
	width: 100%;
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
}

.project-info,
.project-design-info {
	margin-bottom: 60px;
}

.project-entry h2 {
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 30px;
}

.project-entry p {
	margin-bottom: 20px;
}

.project-entry p:last-child {
	margin-bottom: 0;
}

.project-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.project-entry ul li {
	position: relative;
	font-weight: 500;
	color: var(--text-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.project-entry ul li:last-child {
	margin-bottom: 0;
}

.project-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.project-gallery-images {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.project-gallery-img {
	width: calc(25% - 22.5px);
}

.project-gallery-img a,
.project-gallery-img figure {
	display: block;
	cursor: none;
}

.project-gallery-img figure img {
	width: 100%;
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
}

/************************************/
/***    22. 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;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}

/************************************/
/***    	23. FAQs Page css 	  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.faq-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.faq-catagery-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.faq-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li {
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child {
	margin-bottom: 0;
}

.faq-catagery-list ul li a {
	position: relative;
	display: block;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a {
	color: var(--primary-color);
}

.faq-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	transform: translateY(-50%) rotate(-45deg);
	background-image: url(../images/arrow-accent.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before {
	transform: translateY(-50%) rotate(0);
	filter: brightness(0) invert(0);
}

.our-faq-section.page-faq-accordion {
	margin-bottom: 60px;
}

.our-faqs-image {
	text-align: right;
}

.our-faqs-image img {
	aspect-ratio: 1 / 1.26;
}

.our-clients {
	background-color: var(--secondery-color);
	padding: 100px 0;
}

.our-clients .our-clients-box {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.our-client-slider .client-logo {
	text-align: center;
}

.our-client-slider .client-logo img {
	width: 100%;
	max-height: 40px;
}

/************************************/
/***     16. Services Page css 	  ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

/************************************/
/***    17. Service Single css 	  ***/
/************************************/

.page-service-single {
	padding: 50px 0;
}

.service-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 0px;
}

.service-catagery-list {
	border: none;
	padding: 0px;
	margin-bottom: 20px;
	overflow: hidden;
}

.service-catagery-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.service-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.service-catagery-list ul li {
	margin-bottom: 20px;
}

.service-catagery-list ul li:last-child {
	margin: 0;
}

.service-catagery-list ul li a {
	position: relative;
	display: block;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a {
	color: var(--primary-color);
}

.service-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	transform: translateY(-50%) rotate(-45deg);
	background-image: url(../images/arrow-accent.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.service-catagery-list ul li:hover a::before {
	transform: translateY(-50%) rotate(0);
	filter: brightness(0) invert(0);
}

.sidebar-cta-image figure {
	display: block;
}

.sidebar-cta-image img {
	width: 100%;
	aspect-ratio: 1 / 0.57;
	object-fit: cover;
}

.sidebar-cta-Body {
	border: 1px solid var(--divider-color);
	padding: 30px;
}

.sidebar-cta-content {
	margin-bottom: 25px;
}

.sidebar-cta-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.sidebar-cta-content p {
	font-weight: 500;
	margin-bottom: 0;
}

.sidebar-cta-contact-item {
	display: flex;
	align-items: center;
	margin-bottom: 20px;
}

.sidebar-cta-contact-item:last-child {
	margin-bottom: 0;
}

.sidebar-cta-contact-item .icon-box {
	position: relative;
	height: 58px;
	width: 58px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-contact-item:hover {
	background-color: transparent;
}

.sidebar-cta-contact-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.3s ease-in-out;
}

.sidebar-cta-contact-item:hover .icon-box::before {
	transform: scale(1);
}

.sidebar-cta-contact-item .icon-box img {
	position: relative;
	max-width: 24px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.sidebar-cta-contact-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.cta-contact-item-content {
	width: calc(100% - 78px);
}

.cta-contact-item-content p {
	font-weight: 500;
	margin: 0;
}

.service-feature-image {
	margin-bottom: 40px;
}

.service-feature-image figure {
	display: block;
}

.service-feature-image img {
	width: 100%;
	aspect-ratio: 1 / 0.55;
	object-fit: cover;
}

.service-entry {
	margin-bottom: 20px;
}

.service-entry h2 {
	font-size: 46px;
	margin-bottom: 20px;
}

.service-entry h2 span {
	color: var(--accent-color);
}

.service-entry p {
	margin-bottom: 20px;
}

.service-entry p:last-child {
	margin-bottom: 0;
}

.service-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.service-entry ul li {
	position: relative;
	font-weight: 500;
	color: var(--text-color);
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 15px;
}

.service-entry ul li:last-child {
	margin-bottom: 0;
}

.service-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.service-entry-list-image {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
}

.service-entry-image,
.service-entry-list {
	width: calc(50% - 15px);
}

.service-entry-image figure {
	display: block;
}

.service-entry-image img {
	width: 100%;
	aspect-ratio: 1 / 0.615;
	object-fit: cover;
}

.service-entry-list ul {
	margin-bottom: 0;
}

.why-choose-content.service-single-why-choose {
	margin-bottom: 60px;
}

/************************************/
/***     18. Blog Archive css 	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-pagination {
	margin-top: 20px;
	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(--accent-color);
	color: var(--white-color);
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 700;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

/************************************/
/***     19. Blog Single css 	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
}

.post-image figure,
.post-image img {
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
}

.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.2em;
	margin: 0 0 0.6em;
}

.post-entry h1 {
	font-size: 80px;
	letter-spacing: -0.02em;
}

.post-entry h2 {
	font-size: 46px;
	letter-spacing: -0.02em;
}

.post-entry h3 {
	font-size: 46px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 18px;
}

.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 ol li {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-color);
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li {
	font-size: 18px;
	font-weight: 500;
	color: var(--text-color);
	position: relative;
	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(--accent-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
	background-size: 58px;
	border-radius: 0;
	padding: 30px 30px 30px 100px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0;
	padding: 6px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0;
	width: 36px;
	height: 36px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/***     20. Project Page css 	  ***/
/************************************/

.page-project {
	padding: 100px 0 70px;
}

/************************************/
/***    21. Project Single css 	  ***/
/************************************/

.page-project-single {
	padding: 100px 0;
}

.project-single-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.project-detail-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
	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.2em;
	margin: 0 0 0.6em;
}

.post-entry h1 {
	font-size: 80px;
	letter-spacing: -0.02em;
}

.post-entry h2 {
	font-size: 46px;
	letter-spacing: -0.02em;
}

.post-entry h3 {
	font-size: 46px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 18px;
}

.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 ol li {
	margin-bottom: 20px;
	font-size: 18px;
	font-weight: 600;
	color: var(--text-color);
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ul li {
	font-size: 18px;
	font-weight: 500;
	color: var(--text-color);
	position: relative;
	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(--accent-color);
	background-repeat: no-repeat;
	background-position: 35px 30px;
	background-size: 58px;
	border-radius: 0;
	padding: 30px 30px 30px 100px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--white-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-size: 20px;
	font-weight: 700;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 10px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0;
	padding: 6px 20px;
	transition: all 0.3s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
}

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 0;
	width: 36px;
	height: 36px;
	transition: all 0.3s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/***     20. Project Page css 	  ***/
/************************************/

.page-project {
	padding: 100px 0 70px;
}

/************************************/
/***    21. Project Single css 	  ***/
/************************************/

.page-project-single {
	padding: 100px 0;
}

.project-single-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.project-detail-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.project-detail-item {
	display: flex;
	align-items: center;
	margin-bottom: 30px;
}

.project-detail-item:last-child {
	margin-bottom: 0;
}

.project-detail-item .icon-box {
	position: relative;
	background-color: var(--divider-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	transition: all 0.3s ease-in-out;
}

.project-detail-item .icon-box::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--accent-color);
	border-radius: 50%;
	height: 100%;
	width: 100%;
	transform: scale(0);
	transition: all 0.3s ease-in-out;
}

.project-detail-item:hover .icon-box::before {
	transform: scale(1);
}

.project-detail-item .icon-box i {
	font-size: 22px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

.project-detail-item:hover .icon-box i {
	color: var(--white-color);
}

.project-detail-content {
	width: calc(100% - 70px);
}

.project-detail-content h3 {
	font-size: 16px;
	font-weight: 500;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.project-detail-content p {
	color: var(--accent-color);
	text-transform: capitalize;
	margin-bottom: 0;
}

.project-single-image {
	margin-bottom: 40px;
}

.project-single-image figure {
	display: block;
}

.project-single-image img {
	width: 100%;
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
}

.project-info,
.project-design-info {
	margin-bottom: 60px;
}

.project-entry h2 {
	font-size: 46px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 30px;
}

.project-entry p {
	margin-bottom: 20px;
}

.project-entry p:last-child {
	margin-bottom: 0;
}

.project-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.project-entry ul li {
	position: relative;
	font-weight: 500;
	color: var(--text-color);
	padding-left: 30px;
	margin-bottom: 15px;
}

.project-entry ul li:last-child {
	margin-bottom: 0;
}

.project-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 20px;
	font-weight: 900;
	line-height: normal;
	color: var(--accent-color);
	display: inline-block;
	top: 2px;
	left: 0;
}

.project-gallery-images {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.project-gallery-img {
	width: calc(25% - 22.5px);
}

.project-gallery-img a,
.project-gallery-img figure {
	display: block;
	cursor: none;
}

.project-gallery-img figure img {
	width: 100%;
	aspect-ratio: 1 / 0.99;
	object-fit: cover;
}

/************************************/
/***    22. 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;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.85;
	object-fit: cover;
}

/************************************/
/***    	23. FAQs Page css 	  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.faq-sidebar {
	position: sticky;
	top: 30px;
	margin-right: 30px;
}

.faq-catagery-list {
	border: 1px solid var(--divider-color);
	padding: 30px;
	margin-bottom: 60px;
}

.faq-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.faq-catagery-list ul li {
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:last-child {
	margin-bottom: 0;
}

.faq-catagery-list ul li a {
	position: relative;
	display: block;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 25px;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a {
	color: var(--primary-color);
}

.faq-catagery-list ul li a::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 18px;
	height: 18px;
	transform: translateY(-50%) rotate(-45deg);
	background-image: url(../images/arrow-accent.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	transition: all 0.3s ease-in-out;
}

.faq-catagery-list ul li:hover a::before {
	transform: translateY(-50%) rotate(0);
	filter: brightness(0) invert(0);
}

.our-faq-section.page-faq-accordion {
	margin-bottom: 60px;
}

.our-faq-section.page-faq-accordion:last-child {
	margin-bottom: 0;
}

/************************************/
/***   24. Contact Us Page css 	  ***/
/************************************/

.page-contact-us {
	padding: 100px 0 50px;
}

.contact-us-image {
	height: 100%;
}

.contact-us-image figure {
	height: 100%;
	display: block;
}

.contact-us-image img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	aspect-ratio: 1 / 0.962;
}

.contact-us-form {
	margin-left: 30px;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.2em;
	background-color: var(--white-color);
	color: var(--text-color);
	border: 1px solid var(--divider-color);
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 14px 15px;
}

.contact-form .form-control::placeholder {
	font-weight: 400;
}

.google-map {
	padding: 50px 0 100px;
}

.google-map .section-title {
	width: 100%;
	max-width: 560px;
	margin: 0 auto 30px;
	text-align: center;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 500px;
}

.contact-info-box {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 60px;
}

.contact-info-item {
	width: calc(33.33% - 20px);
	display: flex;
}

.contact-info-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--divider-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 20px;
	transition: all 0.4s ease-in-out;
}

.contact-info-item:hover .icon-box {
	border-color: var(--white-color);
}

.contact-info-item .icon-box i {
	font-size: 16px;
	color: var(--white-color);
}

.contact-info-content {
	width: calc(100% - 80px);
}

.contact-info-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 10px;
}

.contact-info-content p {
	margin-bottom: 0;
}

/************************************/
/***    25. 404 Error Page css 	  ***/
/************************************/

.error-page {
	background-image: url(../images/error-page-bg.svg);
	background-repeat: no-repeat;
	background-position: top -100px center;
	background-size: auto;
	padding: 100px 0;
}

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 50%;
}

.error-page-content {
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 20px;
}

.error-page-content-body p {
	font-weight: 500;
	margin-bottom: 20px;
}

/************************************/
/***      26. Responsive css      ***/
/************************************/

@media only screen and (max-width: 1366px) {

	.our-testimonial-content {
		/* padding: 30px 30px; */
	}
}

@media only screen and (max-width: 1024px) {

	.main-menu ul li {
		margin: 0;
	}

	.our-testimonial-content {
		/* padding: 50px 20px; */
	}
}

@media only screen and (max-width: 991px) {

	.navbar {
		padding: 10px 0;
	}

	.slicknav_nav li,
	.slicknav_nav ul {
		display: block;
	}

	.responsive-menu,
	.navbar-toggle {
		display: block;
	}

	.header-btn {
		display: none;
	}

	.btn-default {
		padding: 14px 42px 14px 16px;
	}

	.section-row {
		margin-bottom: 40px;
	}

	.section-row .section-title {
		margin-bottom: 0;
		margin-right: 0px;
	}

	.section-title-content {
		margin-left: 0;
		margin-top: 15px;
	}

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.section-title {
		margin-bottom: 30px;
	}

	.section-title h3 {
		margin-bottom: 10px;
	}

	.section-title p.eaglebnettitle {
		font-size: 30px!important;
	}
	.about-us-content-body::before {
    display: none;
}

	.section-title h2 {
		font-size: 31px;
	}

	.section-title p {
		margin-top: 15px;
	}

	.hero {
		min-height: auto;
		padding: 50px 0 50px;
		/* margin-top: -92px; */
	}

	.hero.hero-slider-layout .hero-slide {
		padding: 50px 0 50px;
		min-height: auto;
	}

	.hero.hero-slider-layout .hero-pagination {
		padding-left: 15px;
		bottom: 30px;
	}

	.hero-content .section-title p {
		font-size: 20px;
	}

	.about-us {
		padding: 50px 0;
	}

	.about-us-images {
		margin: 0 0 30px 0;
	}

	.experience-counter {
		height: 137px;
		width: 137px;
	}

	.experience-counter h3 {
		font-size: 28px;
	}

	.about-us-content-list {
		margin-bottom: 30px;
	}

	.about-contact-item {
		margin-bottom: 30px;
	}

	.why-choose-us {
		padding: 50px 0;
	}

	.why-choose-content {
		margin-bottom: 30px;
	}

	.why-choose-item .icon-box {
		margin-right: 10px;
	}

	.why-choose-item-content {
		width: calc(100% - 70px);
	}

	.why-choose-images {
		margin-left: 0;
	}

	.our-services {
		padding: 50px 0;
	}

	.service-image img {
		aspect-ratio: 1 / 1.2;
	}

	.service-btn {
		top: 20px;
		right: 20px;
	}

	.service-btn a {
		height: 50px;
		width: 50px;
	}

	.service-content {
		bottom: 20px;
		left: 20px;
		right: 20px;
	}

	.all-services-btn {
		margin-top: 10px;
	}

	.video-play-button a {
		width: 80px;
		height: 80px;
	}

	.our-project {
		padding: 50px 0 20px;
	}

	.our-Project-nav {
		margin-bottom: 50px;
	}

	.project-featured-image img {
		aspect-ratio: 1 / 0.89;
	}

	.project-btn a {
		width: 80px;
		height: 80px;
	}

	.project-content {
		left: 20px;
		bottom: 20px;
		right: 20px;
	}

	.how-we-work {
		padding: 50px 0;
	}

	.how-we-work-item {
		width: calc(50% - 15px);
	}

	.how-we-work-item .icon-box {
		margin-bottom: 20px;
	}

	.how-work-company-slider {
		margin-top: 40px;
		padding-top: 40px;
	}

	.our-skill {
		padding: 50px 0;
	}

	.our-skill-content {
		margin-bottom: 30px;
	}

	.skills-progress-bar {
		margin-bottom: 30px;
	}

	.our-skill-image {
		max-width: 555px;
		margin: 0 auto;
	}

	.our-testimonials-image {
		height: auto;
	}

	.our-testimonials-image figure,
	.our-testimonials-image figure img {
		height: auto;
		aspect-ratio: 1 / 0.65;
	}

	.our-testimonial-content {
		padding: 50px 15px;
	}

	.our-testimonial-content .section-title {
		background-size: contain;
	}

	.testimonial-slider {
		max-width: 100%;
		/* margin-bottom: 30px; */
		/* padding-bottom: 30px; */
	}

	.testimonial-rating {
		margin-bottom: 15px;
	}

	.testimonial-content {
		margin-bottom: 30px;
	}

	.testimonial-content p {
		font-size: 18px;
	}

	.testimonial-rating-counter .rating-counter h2 {
		font-size: 48px;
	}

	.our-blog {
		padding: 50px 0;
	}

	.our-blog .section-title {
		margin-right: 0;
	}

	.post-featured-image img {
		aspect-ratio: 1 / 0.75;
	}

	.our-blog-footer {
		margin-top: 10px;
	}

	.main-footer {
		padding: 40px 0 0;
	}

	.main-footer .footer-header {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-social-links {
		display: flex;
		align-items: center;
		justify-content: end;
		gap: 30px;
	}

	.footer-social-link-title h3 {
		font-size: 20px;
		text-transform: capitalize;
		color: var(--white-color);
	}

	.footer-social-links ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.footer-social-links ul li {
		display: inline-flex;
		margin-right: 10px;
	}

	.footer-social-links ul li:last-child {
		margin-right: 0;
	}

	.footer-social-links ul li a {
		display: flex;
		justify-content: center;
		align-items: center;
		background: var(--white-color);
		border-radius: 50%;
		height: 36px;
		width: 36px;
		transition: all 0.3s ease-in-out;
	}

	.footer-social-links ul li a i {
		font-size: 18px;
		color: var(--accent-color);
		transition: all 0.3s ease-in-out;
	}

	.footer-links h3 {
		font-size: 20px;
		text-transform: capitalize;
		color: var(--white-color);
		margin-bottom: 20px;
	}

	.footer-links ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.footer-links ul li {
		color: var(--white-color);
		text-transform: capitalize;
		transition: all 0.3s ease-in-out;
		margin-bottom: 10px;
	}

	.footer-links ul li:last-child {
		margin-bottom: 0;
	}

	.footer-links ul li:hover {
		color: var(--accent-color);
	}

	.footer-links ul li a {
		display: block;
		color: inherit;
	}

	.footer-contact-item {
		display: flex;
		align-items: center;
		margin-bottom: 15px;
	}

	.footer-contact-item:last-child {
		margin-bottom: 0;
	}

	.footer-contact-item .icon-box {
		display: flex;
		align-items: center;
		justify-content: center;
		border: 1px solid var(--dark-divider-color);
		border-radius: 50%;
		width: 40px;
		height: 40px;
		margin-right: 10px;
		transition: all 0.3s ease-in-out;
	}

	.footer-contact-item:hover .icon-box {
		border-color: var(--white-color);
	}

	.footer-contact-item .icon-box i {
		font-size: 16px;
		color: var(--white-color);
	}

	.footer-contact-content {
		width: calc(100% - 50px);
	}

	.footer-contact-content p {
		color: var(--white-color);
		margin: 0;
	}

	.footer-newsletter-form p {
		margin-bottom: 20px;
	}

	.footer-newsletter-form .form-group {
		display: flex;
		background: var(--white-color);
		overflow: hidden;
	}

	.footer-newsletter-form .form-group .form-control {
		width: 85%;
		border: none;
		border-radius: 0;
		color: var(--text-color);
		background: transparent;
		padding: 13px 10px;
		box-shadow: none;
	}

	.footer-newsletter-form .form-group .form-control::placeholder {
		color: var(--text-color);
	}

	.footer-newsletter-form button {
		background-color: transparent;
		width: 15%;
		border: none;
		padding: 0;
	}

	.footer-newsletter-form button i {
		color: var(--accent-color);
		font-size: 16px;
		transition: all 0.3s ease-in-out;
	}

	.footer-newsletter-form button:hover i {
		color: var(--primary-color);
	}

	copr p {
		margin: 0;
		text-align: right;
	}

	.footer-copyright {
		border-top: 1px solid var(--dark-divider-color);
		text-align: center;
		margin-top: 25px;
		padding: 10px 0;
	}

	.footer-copyright-text {
		text-align: left;
	}

	.footer-copyright-text p {
		color: var(--white-color);
		margin: 0;
	}

	/************************************/
	/***     15. 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: 50px 0;
		/* margin-top: -118px; */
	}

	.page-header::before {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background: #000000db;
		width: 100%;
		height: 100%;
		z-index: 0;
	}

	.page-header-box {
		position: relative;
		text-align: center;
		z-index: 1;
	}

	.page-header-box h1 {
		display: inline-block;
		font-size: 80px;
		font-weight: 700;
		color: var(--white-color);
		letter-spacing: -0.02em;
		margin-bottom: 10px;
		cursor: none;
	}

	.page-header-box ol {
		margin: 0;
		padding: 0;
		justify-content: center;
	}

	.page-header-box ol li.breadcrumb-item {
		font-size: 22px;
		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 {
		font-size: 20px;
		color: var(--white-color);
	}

	.about-us.page-about-us {
		background: transparent;
	}

	.about-facility-list {
		margin-top: 100px;
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
	}

	.about-facility-item {
		width: calc(33.33% - 20px);
		display: flex;
	}

	.about-facility-item .icon-box {
		position: relative;
		height: 60px;
		width: 60px;
		background-color: var(--divider-color);
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-right: 20px;
	}

	.about-facility-item .icon-box:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		background: var(--primary-color);
		border-radius: 50%;
		width: 100%;
		height: 100%;
		transform: scale(0);
		transition: all 0.4s ease-in-out;
		z-index: 0;
	}

	.about-facility-item:hover .icon-box:before {
		transform: scale(1);
	}

	.about-facility-item .icon-box img {
		max-width: 24px;
		z-index: 1;
		transition: all 0.4s ease-in-out;
	}

	.about-facility-item:hover .icon-box img {
		filter: brightness(0) invert(1);
	}

	.about-facility-content {
		width: calc(100% - 80px);
	}

	.about-facility-content h3 {
		font-size: 20px;
		text-transform: capitalize;
		margin-bottom: 10px;
	}

	.about-facility-content p {
		margin-bottom: 0;
	}

	.vision-mission {
		padding: 100px 0 50px;
		background: linear-gradient(180deg, var(--primary-color) 60%, var(--white-color) 40%);
	}

	.vision-mission-box {
		background-color: var(--secondery-color);
		padding: 45px 60px;
		display: flex;
		flex-wrap: wrap;
		gap: 30px 150px;
	}

	.vision-mission-item {
		position: relative;
		width: calc(50% - 75px);
	}

	.vision-mission-item::before {
		content: '';
		position: absolute;
		height: 100%;
		width: 1px;
		top: 0;
		right: -75px;
		bottom: 0;
		background-color: var(--divider-color);
		z-index: 1;
	}

	.vision-mission-item:nth-child(2n + 2)::before,
	.vision-mission-item:last-child::before {
		display: none;
	}

	.vision-mission-item .icon-box {
		position: relative;
		width: 95px;
		height: 95px;
		background: var(--divider-color);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 20px;
	}

	.vision-mission-item .icon-box:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		background: var(--primary-color);
		border-radius: 50%;
		width: 100%;
		height: 100%;
		transform: scale(0);
		transition: all 0.4s ease-in-out;
		z-index: 0;
	}

	.vision-mission-item:hover .icon-box:before {
		transform: scale(1);
	}

	.vision-mission-item .icon-box img {
		position: relative;
		max-width: 36px;
		z-index: 1;
		transition: all 0.4s ease-in-out;
	}

	.vision-mission-item:hover .icon-box img {
		filter: brightness(0) invert(1);
	}

	.vision-mission-content h3 {
		font-size: 20px;
		text-transform: capitalize;
		margin-bottom: 20px;
	}

	.vision-mission-content p {
		margin: 0;
	}

	.best-selling {
		background: url(../images/section-bg-shape-1.svg);
		background-repeat: no-repeat;
		background-position: left center;
		background-size: contain;
		padding: 50px 0 100px;
	}

	.best-selling-content-img {
		margin-bottom: 80px;
	}

	.best-selling-iamge figure,
	.best-selling-content-img figure {
		display: block;
	}

	.best-selling-content-img img {
		width: 100%;
		aspect-ratio: 1 / 0.42;
		object-fit: cover;
	}

	.best-selling-content .section-title {
		margin-bottom: 0;
	}

	.best-selling-iamge img {
		width: 100%;
		aspect-ratio: 1 / 0.93;
		object-fit: cover;
	}

	.our-team {
		padding: 100px 0 70px;
	}

	.team-member-item {
		height: calc(100% - 30px);
		margin-bottom: 30px;
	}

	.team-image {
		position: relative;
		margin-bottom: 20px;
		overflow: hidden;
	}

	.team-image a {
		display: block;
		cursor: none;
	}

	.team-image figure {
		display: block;
	}

	.team-image figure img {
		width: 100%;
		aspect-ratio: 1 / 1.11;
		object-fit: cover;
		transition: all 0.4s ease-in-out;
	}

	.team-member-item:hover .team-image figure img {
		transform: scale(1.1);
	}

	.team-readmore-btn {
		position: absolute;
		top: 30px;
		right: 30px;
		z-index: 1;
	}

	.team-readmore-btn a {
		width: 60px;
		height: 60px;
		background-color: var(--accent-color);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		cursor: pointer;
		transition: all 0.4s ease-in-out;
	}

	.team-readmore-btn a:hover {
		background-color: var(--primary-color);
	}

	.team-readmore-btn img {
		max-width: 20px;
		transform: rotate(-45deg);
		transition: all 0.4s ease-in-out;
	}

	.team-readmore-btn a:hover img {
		transform: rotate(0deg);
	}

	.team-content {
		text-align: center;
		margin-bottom: 20px;
	}

	.team-content h3 {
		font-size: 20px;
		text-transform: capitalize;
		margin-bottom: 10px;
	}

	.team-content p {
		font-weight: 500;
		text-transform: capitalize;
		margin: 0;
	}

	.team-social-icon ul {
		list-style: none;
		margin: 0;
		padding: 0;
		text-align: center;
	}

	.team-social-icon ul li {
		display: inline-flex;
		margin-right: 10px;
	}

	.team-social-icon ul li:last-child {
		margin-right: 0;
	}

	.team-social-icon ul li a {
		width: 44px;
		height: 44px;
		color: var(--accent-color);
		background: var(--divider-color);
		border-radius: 50%;
		display: flex;
		align-items: center;
		justify-content: center;
		transition: all 0.4s ease-in-out;
	}

	.team-social-icon ul li a:hover {
		color: var(--white-color);
		background: var(--primary-color);
	}

	.team-social-icon ul li a i {
		color: inherit;
		font-size: 18px;
	}

	.our-faqs {
		padding: 100px 0;
	}

	.our-faqs-content {
		margin-right: 70px;
	}

	.faq-accordion .accordion-item {
		border-bottom: 1px solid var(--divider-color);
		margin-bottom: 30px;
		padding-bottom: 15px;
	}

	.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(--primary-color);
		align-items: start;
		padding-right: 35px;
		transition: all 0.3s ease-in-out;
	}

	.faq-accordion .accordion-header .accordion-button span {
		margin-right: 7px;
	}

	.faq-accordion .accordion-button:not(.collapsed) {
		padding-bottom: 15px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		content: '\2b';
		font-family: 'Font Awesome 6 Free';
		position: absolute;
		font-size: 18px;
		font-weight: 900;
		color: var(--primary-color);
		text-align: right;
		top: 0;
		right: 0;
		transition: all 0.3s ease-in-out;
	}

	.faq-accordion .accordion-button:not(.collapsed)::after {
		content: '\f068';
	}

	.faq-accordion .accordion-body {
		padding-right: 35px;
	}

	.faq-accordion .accordion-body p {
		margin: 0;
	}

	.our-faqs-image {
		text-align: right;
	}

	.our-faqs-image figure {
		display: block;
	}

	.our-faqs-image img {
		width: 100%;
		aspect-ratio: 1 / 1.26;
		object-fit: cover;
	}

	.our-clients {
		background-color: var(--secondery-color);
		padding: 100px 0;
	}

	.our-clients .our-clients-box {
		max-width: 1100px;
		margin: 0 auto;
		text-align: center;
	}

	.our-client-slider .client-logo {
		text-align: center;
	}

	.our-client-slider .client-logo img {
		width: 100%;
		max-height: 40px;
	}

	/************************************/
	/***     16. Services Page css 	  ***/
	/************************************/

	.page-services {
		padding: 100px 0 70px;
	}

	/************************************/
	/***    17. Service Single css 	  ***/
	/************************************/

	.page-service-single {
		padding: 50px 0;
	}

	.service-sidebar {
		position: sticky;
		top: 30px;
		margin-right: 30px;
	}

	.service-catagery-list {
		border: 1px solid var(--divider-color);
		padding: 30px;
		margin-bottom: 40px;
		overflow: hidden;
	}

	.service-catagery-list h3 {
		font-size: 20px;
		text-transform: capitalize;
		border-bottom: 1px solid var(--divider-color);
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.service-catagery-list ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.service-catagery-list ul li {
		margin-bottom: 20px;
	}

	.service-catagery-list ul li:last-child {
		margin: 0;
	}

	.service-catagery-list ul li a {
		position: relative;
		display: block;
		font-weight: 500;
		text-transform: capitalize;
		color: var(--accent-color);
		padding-right: 25px;
		transition: all 0.3s ease-in-out;
	}

	.service-catagery-list ul li:hover a {
		color: var(--primary-color);
	}

	.service-catagery-list ul li a::before {
		content: '';
		position: absolute;
		top: 50%;
		right: 0;
		width: 18px;
		height: 18px;
		transform: translateY(-50%) rotate(-45deg);
		background-image: url(../images/arrow-accent.svg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		transition: all 0.3s ease-in-out;
	}

	.service-catagery-list ul li:hover a::before {
		transform: translateY(-50%) rotate(0);
		filter: brightness(0) invert(0);
	}

	.sidebar-cta-image figure {
		display: block;
	}

	.sidebar-cta-image img {
		width: 100%;
		aspect-ratio: 1 / 0.57;
		object-fit: cover;
	}

	.sidebar-cta-Body {
		border: 1px solid var(--divider-color);
		padding: 30px;
	}

	.sidebar-cta-content {
		margin-bottom: 25px;
	}

	.sidebar-cta-content h3 {
		font-size: 20px;
		text-transform: capitalize;
		margin-bottom: 10px;
	}

	.sidebar-cta-content p {
		font-weight: 500;
		margin-bottom: 0;
	}

	.sidebar-cta-contact-item {
		display: flex;
		align-items: center;
		margin-bottom: 20px;
	}

	.sidebar-cta-contact-item:last-child {
		margin-bottom: 0;
	}

	.sidebar-cta-contact-item .icon-box {
		position: relative;
		height: 58px;
		width: 58px;
		background-color: var(--divider-color);
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-right: 20px;
		transition: all 0.4s ease-in-out;
	}

	.sidebar-cta-contact-item:hover {
		background-color: transparent;
	}

	.sidebar-cta-contact-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.3s ease-in-out;
	}

	.sidebar-cta-contact-item:hover .icon-box::before {
		transform: scale(1);
	}

	.sidebar-cta-contact-item .icon-box img {
		position: relative;
		max-width: 24px;
		transition: all 0.3s ease-in-out;
		z-index: 1;
	}

	.sidebar-cta-contact-item:hover .icon-box img {
		filter: brightness(0) invert(1);
	}

	.cta-contact-item-content {
		width: calc(100% - 78px);
	}

	.cta-contact-item-content p {
		font-weight: 500;
		margin: 0;
	}

	.service-feature-image {
		margin-bottom: 40px;
	}

	.service-feature-image figure {
		display: block;
	}

	.service-feature-image img {
		width: 100%;
		aspect-ratio: 1 / 0.55;
		object-fit: cover;
	}

	.service-entry {
		margin-bottom: 20px;
	}

	.service-entry h2 {
		font-size: 46px;
		margin-bottom: 20px;
	}

	.service-entry h2 span {
		color: var(--accent-color);
	}

	.service-entry p {
		margin-bottom: 20px;
	}

	.service-entry p:last-child {
		margin-bottom: 0;
	}

	.service-entry ul {
		list-style: none;
		margin-bottom: 20px;
		padding: 0;
	}

	.service-entry ul li {
		position: relative;
		font-weight: 500;
		color: var(--text-color);
		text-transform: capitalize;
		padding-left: 30px;
		margin-bottom: 15px;
	}

	.service-entry ul li:last-child {
		margin-bottom: 0;
	}

	.service-entry ul li::before {
		content: '\f058';
		position: absolute;
		font-family: 'FontAwesome';
		font-size: 20px;
		font-weight: 900;
		line-height: normal;
		color: var(--accent-color);
		display: inline-block;
		top: 2px;
		left: 0;
	}

	.service-entry-list-image {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 30px;
	}

	.service-entry-image,
	.service-entry-list {
		width: calc(50% - 15px);
	}

	.service-entry-image figure {
		display: block;
	}

	.service-entry-image img {
		width: 100%;
		aspect-ratio: 1 / 0.615;
		object-fit: cover;
	}

	.service-entry-list ul {
		margin-bottom: 0;
	}

	.why-choose-content.service-single-why-choose {
		margin-bottom: 60px;
	}

	/************************************/
	/***     18. Blog Archive css 	  ***/
	/************************************/

	.page-blog {
		padding: 100px 0;
	}

	.page-pagination {
		margin-top: 20px;
		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(--accent-color);
		color: var(--white-color);
		width: 40px;
		height: 40px;
		margin: 0 5px;
		font-weight: 700;
		line-height: 1em;
		transition: all 0.3s ease-in-out;
	}

	.page-pagination ul li.active a,
	.page-pagination ul li a:hover {
		background: var(--primary-color);
		color: var(--white-color);
	}

	/************************************/
	/***     19. Blog Single css 	  ***/
	/************************************/

	.page-single-post {
		padding: 100px 0;
	}

	.post-image {
		position: relative;
		margin-bottom: 30px;
	}

	.post-image figure {
		display: block;
	}

	.post-image figure,
	.post-image img {
		aspect-ratio: 1 / 0.50;
		object-fit: cover;
	}

	.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.2em;
		margin: 0 0 0.6em;
	}

	.post-entry h1 {
		font-size: 80px;
		letter-spacing: -0.02em;
	}

	.post-entry h2 {
		font-size: 46px;
		letter-spacing: -0.02em;
	}

	.post-entry h3 {
		font-size: 46px;
	}

	.post-entry h4 {
		font-size: 30px;
	}

	.post-entry h5 {
		font-size: 24px;
	}

	.post-entry h6 {
		font-size: 18px;
	}

	.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 ol li {
		margin-bottom: 20px;
		font-size: 18px;
		font-weight: 600;
		color: var(--text-color);
	}

	.post-entry ul {
		padding: 0;
		margin: 20px 0 20px;
		padding-left: 20px;
	}

	.post-entry ul li {
		font-size: 18px;
		font-weight: 500;
		color: var(--text-color);
		position: relative;
		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(--accent-color);
		background-repeat: no-repeat;
		background-position: 35px 30px;
		background-size: 58px;
		border-radius: 0;
		padding: 30px 30px 30px 100px;
		margin-bottom: 30px;
	}

	.post-entry blockquote p {
		font-size: 20px;
		font-weight: 600;
		line-height: 1.4em;
		color: var(--white-color);
	}

	.post-entry blockquote p:last-child {
		margin-bottom: 0;
	}

	.tag-links {
		font-size: 20px;
		font-weight: 700;
		color: var(--primary-color);
		display: inline-flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 10px;
	}

	.post-tags .tag-links a {
		display: inline-block;
		font-size: 16px;
		font-weight: 600;
		text-transform: capitalize;
		background: var(--accent-color);
		color: var(--white-color);
		border-radius: 0;
		padding: 6px 20px;
		transition: all 0.3s ease-in-out;
	}

	.post-tags .tag-links a:hover {
		background: var(--primary-color);
	}

	.post-social-sharing {
		text-align: right;
	}

	.post-social-sharing ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.post-social-sharing ul li {
		display: inline-block;
		margin-right: 10px;
	}

	.post-social-sharing ul li:last-child {
		margin-right: 0;
	}

	.post-social-sharing ul li a {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		background: var(--accent-color);
		color: var(--white-color);
		border-radius: 0;
		width: 36px;
		height: 36px;
		transition: all 0.3s ease-in-out;
	}

	.post-social-sharing ul li:hover a {
		background: var(--primary-color);
	}

	.post-social-sharing ul li a i {
		font-size: 18px;
		color: inherit;
	}

	/************************************/
	/***     20. Project Page css 	  ***/
	/************************************/

	.page-project {
		padding: 100px 0 70px;
	}

	/************************************/
	/***    21. Project Single css 	  ***/
	/************************************/

	.page-project-single {
		padding: 100px 0;
	}

	.project-single-sidebar {
		position: sticky;
		top: 30px;
		margin-right: 30px;
	}

	.project-detail-list {
		border: 1px solid var(--divider-color);
		padding: 30px;
		margin-bottom: 60px;
	}

	.project-detail-item {
		display: flex;
		align-items: center;
		margin-bottom: 30px;
	}

	.project-detail-item:last-child {
		margin-bottom: 0;
	}

	.project-detail-item .icon-box {
		position: relative;
		background-color: var(--divider-color);
		border-radius: 50%;
		width: 50px;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 20px;
		transition: all 0.3s ease-in-out;
	}

	.project-detail-item .icon-box::before {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background: var(--accent-color);
		border-radius: 50%;
		height: 100%;
		width: 100%;
		transform: scale(0);
		transition: all 0.3s ease-in-out;
	}

	.project-detail-item:hover .icon-box::before {
		transform: scale(1);
	}

	.project-detail-item .icon-box i {
		font-size: 22px;
		color: var(--accent-color);
		transition: all 0.3s ease-in-out;
		z-index: 1;
	}

	.project-detail-item:hover .icon-box i {
		color: var(--white-color);
	}

	.project-detail-content {
		width: calc(100% - 70px);
	}

	.project-detail-content h3 {
		font-size: 16px;
		font-weight: 500;
		text-transform: capitalize;
		margin-bottom: 5px;
	}

	.project-detail-content p {
		color: var(--accent-color);
		text-transform: capitalize;
		margin-bottom: 0;
	}

	.project-single-image {
		margin-bottom: 40px;
	}

	.project-single-image figure {
		display: block;
	}

	.project-single-image img {
		width: 100%;
		aspect-ratio: 1 / 0.6;
		object-fit: cover;
	}

	.project-info,
	.project-design-info {
		margin-bottom: 60px;
	}

	.project-entry h2 {
		font-size: 46px;
		font-weight: 700;
		letter-spacing: -0.02em;
		margin-bottom: 30px;
	}

	.project-entry p {
		margin-bottom: 20px;
	}

	.project-entry p:last-child {
		margin-bottom: 0;
	}

	.project-entry ul {
		list-style: none;
		margin-bottom: 20px;
		padding: 0;
	}

	.project-entry ul li {
		position: relative;
		font-weight: 500;
		color: var(--text-color);
		padding-left: 30px;
		margin-bottom: 15px;
	}

	.project-entry ul li:last-child {
		margin-bottom: 0;
	}

	.project-entry ul li::before {
		content: '\f058';
		position: absolute;
		font-family: 'FontAwesome';
		font-size: 20px;
		font-weight: 900;
		line-height: normal;
		color: var(--accent-color);
		display: inline-block;
		top: 2px;
		left: 0;
	}

	.project-gallery-images {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
	}

	.project-gallery-img {
		width: calc(25% - 22.5px);
	}

	.project-gallery-img a,
	.project-gallery-img figure {
		display: block;
		cursor: none;
	}

	.project-gallery-img figure img {
		width: 100%;
		aspect-ratio: 1 / 0.99;
		object-fit: cover;
	}

	/************************************/
	/***    22. 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;
	}

	.page-gallery-box .photo-gallery img {
		width: 100%;
		aspect-ratio: 1 / 0.85;
		object-fit: cover;
	}

	/************************************/
	/***    	23. FAQs Page css 	  ***/
	/************************************/

	.page-faqs {
		padding: 100px 0;
	}

	.faq-sidebar {
		position: sticky;
		top: 30px;
		margin-right: 30px;
	}

	.faq-catagery-list {
		border: 1px solid var(--divider-color);
		padding: 30px;
		margin-bottom: 60px;
	}

	.faq-catagery-list ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.faq-catagery-list ul li {
		margin-bottom: 20px;
		transition: all 0.3s ease-in-out;
	}

	.faq-catagery-list ul li:last-child {
		margin-bottom: 0;
	}

	.faq-catagery-list ul li a {
		position: relative;
		display: block;
		font-weight: 500;
		text-transform: capitalize;
		color: var(--accent-color);
		padding-right: 25px;
		transition: all 0.3s ease-in-out;
	}

	.faq-catagery-list ul li:hover a {
		color: var(--primary-color);
	}

	.faq-catagery-list ul li a::before {
		content: '';
		position: absolute;
		top: 50%;
		right: 0;
		width: 18px;
		height: 18px;
		transform: translateY(-50%) rotate(-45deg);
		background-image: url(../images/arrow-accent.svg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		transition: all 0.3s ease-in-out;
	}

	.faq-catagery-list ul li:hover a::before {
		transform: translateY(-50%) rotate(0);
		filter: brightness(0) invert(0);
	}

	.our-faq-section.page-faq-accordion {
		margin-bottom: 60px;
	}

	.our-faqs-image {
		text-align: right;
	}

	.our-faqs-image img {
		aspect-ratio: 1 / 1.26;
	}

	.our-clients {
		background-color: var(--secondery-color);
		padding: 100px 0;
	}

	.our-clients .our-clients-box {
		max-width: 1100px;
		margin: 0 auto;
		text-align: center;
	}

	.our-client-slider .client-logo {
		text-align: center;
	}

	.our-client-slider .client-logo img {
		width: 100%;
		max-height: 40px;
	}

	/************************************/
	/***     16. Services Page css 	  ***/
	/************************************/

	.page-services {
		padding: 100px 0 70px;
	}

	/************************************/
	/***    17. Service Single css 	  ***/
	/************************************/

	.page-service-single {
		padding: 50px 0;
	}

	.service-sidebar {
		position: sticky;
		top: 30px;
		margin-right: 30px;
	}

	.service-catagery-list {
		border: 1px solid var(--divider-color);
		padding: 30px;
		margin-bottom: 40px;
		overflow: hidden;
	}

	.service-catagery-list h3 {
		font-size: 20px;
		text-transform: capitalize;
		border-bottom: 1px solid var(--divider-color);
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.service-catagery-list ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.service-catagery-list ul li {
		margin-bottom: 20px;
	}

	.service-catagery-list ul li:last-child {
		margin: 0;
	}

	.service-catagery-list ul li a {
		position: relative;
		display: block;
		font-weight: 500;
		text-transform: capitalize;
		color: var(--accent-color);
		padding-right: 25px;
		transition: all 0.3s ease-in-out;
	}

	.service-catagery-list ul li:hover a {
		color: var(--primary-color);
	}

	.service-catagery-list ul li a::before {
		content: '';
		position: absolute;
		top: 50%;
		right: 0;
		width: 18px;
		height: 18px;
		transform: translateY(-50%) rotate(-45deg);
		background-image: url(../images/arrow-accent.svg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		transition: all 0.3s ease-in-out;
	}

	.service-catagery-list ul li:hover a::before {
		transform: translateY(-50%) rotate(0);
		filter: brightness(0) invert(0);
	}

	.sidebar-cta-image figure {
		display: block;
	}

	.sidebar-cta-image img {
		width: 100%;
		aspect-ratio: 1 / 0.57;
		object-fit: cover;
	}

	.sidebar-cta-Body {
		border: 1px solid var(--divider-color);
		padding: 30px;
	}

	.sidebar-cta-content {
		margin-bottom: 25px;
	}

	.sidebar-cta-content h3 {
		font-size: 20px;
		text-transform: capitalize;
		margin-bottom: 10px;
	}

	.sidebar-cta-content p {
		font-weight: 500;
		margin-bottom: 0;
	}

	.sidebar-cta-contact-item {
		display: flex;
		align-items: center;
		margin-bottom: 20px;
	}

	.sidebar-cta-contact-item:last-child {
		margin-bottom: 0;
	}

	.sidebar-cta-contact-item .icon-box {
		position: relative;
		height: 58px;
		width: 58px;
		background-color: var(--divider-color);
		border-radius: 50%;
		display: flex;
		justify-content: center;
		align-items: center;
		margin-right: 20px;
		transition: all 0.4s ease-in-out;
	}

	.sidebar-cta-contact-item:hover {
		background-color: transparent;
	}

	.sidebar-cta-contact-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.3s ease-in-out;
	}

	.sidebar-cta-contact-item:hover .icon-box::before {
		transform: scale(1);
	}

	.sidebar-cta-contact-item .icon-box img {
		position: relative;
		max-width: 24px;
		transition: all 0.3s ease-in-out;
		z-index: 1;
	}

	.sidebar-cta-contact-item:hover .icon-box img {
		filter: brightness(0) invert(1);
	}

	.cta-contact-item-content {
		width: calc(100% - 78px);
	}

	.cta-contact-item-content p {
		font-weight: 500;
		margin: 0;
	}

	.service-feature-image {
		margin-bottom: 40px;
	}

	.service-feature-image figure {
		display: block;
	}

	.service-feature-image img {
		width: 100%;
		aspect-ratio: 1 / 0.55;
		object-fit: cover;
	}

	.service-entry {
		margin-bottom: 60px;
	}

	.service-entry h2 {
		font-size: 46px;
		margin-bottom: 20px;
	}

	.service-entry h2 span {
		color: var(--accent-color);
	}

	.service-entry p {
		margin-bottom: 20px;
	}

	.service-entry p:last-child {
		margin-bottom: 0;
	}

	.service-entry ul {
		list-style: none;
		margin-bottom: 20px;
		padding: 0;
	}

	.service-entry ul li {
		position: relative;
		font-weight: 500;
		color: var(--text-color);
		text-transform: capitalize;
		padding-left: 30px;
		margin-bottom: 15px;
	}

	.service-entry ul li:last-child {
		margin-bottom: 0;
	}

	.service-entry ul li::before {
		content: '\f058';
		position: absolute;
		font-family: 'FontAwesome';
		font-size: 20px;
		font-weight: 900;
		line-height: normal;
		color: var(--accent-color);
		display: inline-block;
		top: 2px;
		left: 0;
	}

	.service-entry-list-image {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		gap: 30px;
	}

	.service-entry-image,
	.service-entry-list {
		width: 100%;
	}

	.service-entry-image figure {
		display: block;
	}

	.service-entry-image img {
		width: 100%;
		aspect-ratio: 1 / 0.615;
		object-fit: cover;
	}

	.service-entry-list ul {
		margin-bottom: 0;
	}

	.why-choose-content.service-single-why-choose {
		margin-bottom: 60px;
	}

	/************************************/
	/***     18. Blog Archive css 	  ***/
	/************************************/

	.page-blog {
		padding: 100px 0;
	}

	.page-pagination {
		margin-top: 20px;
		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(--accent-color);
		color: var(--white-color);
		width: 40px;
		height: 40px;
		margin: 0 5px;
		font-weight: 700;
		line-height: 1em;
		transition: all 0.3s ease-in-out;
	}

	.page-pagination ul li.active a,
	.page-pagination ul li a:hover {
		background: var(--primary-color);
		color: var(--white-color);
	}

	/************************************/
	/***     19. Blog Single css 	  ***/
	/************************************/

	.page-single-post {
		padding: 100px 0;
	}

	.post-image {
		position: relative;
		margin-bottom: 30px;
	}

	.post-image figure {
		display: block;
	}

	.post-image figure,
	.post-image img {
		aspect-ratio: 1 / 0.50;
		object-fit: cover;
	}

	.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.2em;
		margin: 0 0 0.6em;
	}

	.post-entry h1 {
		font-size: 80px;
		letter-spacing: -0.02em;
	}

	.post-entry h2 {
		font-size: 46px;
		letter-spacing: -0.02em;
	}

	.post-entry h3 {
		font-size: 46px;
	}

	.post-entry h4 {
		font-size: 30px;
	}

	.post-entry h5 {
		font-size: 24px;
	}

	.post-entry h6 {
		font-size: 18px;
	}

	.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 ol li {
		margin-bottom: 20px;
		font-size: 18px;
		font-weight: 600;
		color: var(--text-color);
	}

	.post-entry ul {
		padding: 0;
		margin: 20px 0 20px;
		padding-left: 20px;
	}

	.post-entry ul li {
		font-size: 18px;
		font-weight: 500;
		color: var(--text-color);
		position: relative;
		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(--accent-color);
		background-repeat: no-repeat;
		background-position: 35px 30px;
		background-size: 58px;
		border-radius: 0;
		padding: 30px 30px 30px 100px;
		margin-bottom: 30px;
	}

	.post-entry blockquote p {
		font-size: 20px;
		font-weight: 600;
		line-height: 1.4em;
		color: var(--white-color);
	}

	.post-entry blockquote p:last-child {
		margin-bottom: 0;
	}

	.tag-links {
		font-size: 20px;
		font-weight: 700;
		color: var(--primary-color);
		display: inline-flex;
		align-items: center;
		flex-wrap: wrap;
		gap: 10px;
	}

	.post-tags .tag-links a {
		display: inline-block;
		font-size: 16px;
		font-weight: 600;
		text-transform: capitalize;
		background: var(--accent-color);
		color: var(--white-color);
		border-radius: 0;
		padding: 6px 20px;
		transition: all 0.3s ease-in-out;
	}

	.post-tags .tag-links a:hover {
		background: var(--primary-color);
	}

	.post-social-sharing {
		text-align: right;
	}

	.post-social-sharing ul {
		list-style: none;
		padding: 0;
		margin: 0;
	}

	.post-social-sharing ul li {
		display: inline-block;
		margin-right: 10px;
	}

	.post-social-sharing ul li:last-child {
		margin-right: 0;
	}

	.post-social-sharing ul li a {
		display: flex;
		align-items: center;
		justify-content: center;
		text-align: center;
		background: var(--accent-color);
		color: var(--white-color);
		border-radius: 0;
		width: 36px;
		height: 36px;
		transition: all 0.3s ease-in-out;
	}

	.post-social-sharing ul li:hover a {
		background: var(--primary-color);
	}

	.post-social-sharing ul li a i {
		font-size: 18px;
		color: inherit;
	}

	/************************************/
	/***     20. Project Page css 	  ***/
	/************************************/

	.page-project {
		padding: 100px 0 70px;
	}

	/************************************/
	/***    21. Project Single css 	  ***/
	/************************************/

	.page-project-single {
		padding: 100px 0;
	}

	.project-single-sidebar {
		position: sticky;
		top: 30px;
		margin-right: 30px;
	}

	.project-detail-list {
		border: 1px solid var(--divider-color);
		padding: 30px;
		margin-bottom: 60px;
	}

	.project-detail-item {
		display: flex;
		align-items: center;
		margin-bottom: 30px;
	}

	.project-detail-item:last-child {
		margin-bottom: 0;
	}

	.project-detail-item .icon-box {
		position: relative;
		background-color: var(--divider-color);
		border-radius: 50%;
		width: 50px;
		height: 50px;
		display: flex;
		align-items: center;
		justify-content: center;
		margin-right: 20px;
		transition: all 0.3s ease-in-out;
	}

	.project-detail-item .icon-box::before {
		content: '';
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		background: var(--accent-color);
		border-radius: 50%;
		height: 100%;
		width: 100%;
		transform: scale(0);
		transition: all 0.3s ease-in-out;
	}

	.project-detail-item:hover .icon-box::before {
		transform: scale(1);
	}

	.project-detail-item .icon-box i {
		font-size: 22px;
		color: var(--accent-color);
		transition: all 0.3s ease-in-out;
		z-index: 1;
	}

	.project-detail-item:hover .icon-box i {
		color: var(--white-color);
	}

	.project-detail-content {
		width: calc(100% - 70px);
	}

	.project-detail-content h3 {
		font-size: 16px;
		font-weight: 500;
		text-transform: capitalize;
		margin-bottom: 5px;
	}

	.project-detail-content p {
		color: var(--accent-color);
		text-transform: capitalize;
		margin-bottom: 0;
	}

	.project-single-image {
		margin-bottom: 40px;
	}

	.project-single-image figure {
		display: block;
	}

	.project-single-image img {
		width: 100%;
		aspect-ratio: 1 / 0.6;
		object-fit: cover;
	}

	.project-info,
	.project-design-info {
		margin-bottom: 60px;
	}

	.project-entry h2 {
		font-size: 46px;
		font-weight: 700;
		letter-spacing: -0.02em;
		margin-bottom: 30px;
	}

	.project-entry p {
		margin-bottom: 20px;
	}

	.project-entry p:last-child {
		margin-bottom: 0;
	}

	.project-entry ul {
		list-style: none;
		margin-bottom: 20px;
		padding: 0;
	}

	.project-entry ul li {
		position: relative;
		font-weight: 500;
		color: var(--text-color);
		padding-left: 30px;
		margin-bottom: 15px;
	}

	.project-entry ul li:last-child {
		margin-bottom: 0;
	}

	.project-entry ul li::before {
		content: '\f058';
		position: absolute;
		font-family: 'FontAwesome';
		font-size: 20px;
		font-weight: 900;
		line-height: normal;
		color: var(--accent-color);
		display: inline-block;
		top: 2px;
		left: 0;
	}

	.project-gallery-images {
		display: flex;
		flex-wrap: wrap;
		gap: 30px;
	}

	.project-gallery-img {
		width: calc(25% - 22.5px);
	}

	.project-gallery-img a,
	.project-gallery-img figure {
		display: block;
		cursor: none;
	}

	.project-gallery-img figure img {
		width: 100%;
		aspect-ratio: 1 / 0.99;
		object-fit: cover;
	}

	/************************************/
	/***    22. 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;
	}

	.page-gallery-box .photo-gallery img {
		width: 100%;
		aspect-ratio: 1 / 0.85;
		object-fit: cover;
	}

	/************************************/
	/***    	23. FAQs Page css 	  ***/
	/************************************/

	.page-faqs {
		padding: 100px 0;
	}

	.faq-sidebar {
		position: sticky;
		top: 30px;
		margin-right: 30px;
	}

	.faq-catagery-list {
		border: 1px solid var(--divider-color);
		padding: 30px;
		margin-bottom: 60px;
	}

	.faq-catagery-list ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.faq-catagery-list ul li {
		margin-bottom: 20px;
		transition: all 0.3s ease-in-out;
	}

	.faq-catagery-list ul li:last-child {
		margin-bottom: 0;
	}

	.faq-catagery-list ul li a {
		position: relative;
		display: block;
		font-weight: 500;
		text-transform: capitalize;
		color: var(--accent-color);
		padding-right: 25px;
		transition: all 0.3s ease-in-out;
	}

	.faq-catagery-list ul li:hover a {
		color: var(--primary-color);
	}

	.faq-catagery-list ul li a::before {
		content: '';
		position: absolute;
		top: 50%;
		right: 0;
		width: 18px;
		height: 18px;
		transform: translateY(-50%) rotate(-45deg);
		background-image: url(../images/arrow-accent.svg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		transition: all 0.3s ease-in-out;
	}

	.faq-catagery-list ul li:hover a::before {
		transform: translateY(-50%) rotate(0);
		filter: brightness(0) invert(0);
	}

	.our-faq-section.page-faq-accordion {
		margin-bottom: 60px;
	}

	.our-faqs-image {
		text-align: right;
	}

	.our-faqs-image img {
		aspect-ratio: 1 / 1.26;
	}

	.our-clients {
		background-color: var(--secondery-color);
		padding: 100px 0;
	}

	.our-clients .our-clients-box {
		max-width: 1100px;
		margin: 0 auto;
		text-align: center;
	}

	.our-client-slider .client-logo {
		text-align: center;
	}

	.our-client-slider .client-logo img {
		width: 100%;
		max-height: 40px;
	}

	/************************************/
	/***     16. Services Page css 	  ***/
	/************************************/

	.page-services {
		padding: 100px 0 70px;
	}

	/************************************/
	/***    17. Service Single css 	  ***/
	/************************************/

	.page-service-single {
		padding: 50px 0;
	}

	.service-sidebar {
		position: sticky;
		top: 30px;
		margin-right: 0px;
		margin-bottom: 20px;
	}

	.service-catagery-list {
		border: 1px solid var(--divider-color);
		padding: 0px;
		margin-bottom: 20px;
		overflow: hidden;
	}

	.service-catagery-list h3 {
		font-size: 20px;
		text-transform: capitalize;
		border-bottom: 1px solid var(--divider-color);
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.service-catagery-list ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.service-catagery-list ul li {
		margin-bottom: 20px;
	}

	.service-catagery-list ul li:last-child {
		margin: 0;
	}

	.service-catagery-list ul li a {
		position: relative;
		display: block;
		font-weight: 500;
		text-transform: capitalize;
		color: var(--accent-color);
		padding-right: 25px;
		transition: all 0.3s ease-in-out;
	}

	.service-catagery-list ul li:hover a {
		color: var(--primary-color);
	}

	.service-catagery-list ul li a::before {
		content: '';
		position: absolute;
		top: 50%;
		right: 0;
		width: 18px;
		height: 18px;
		transform: translateY(-50%) rotate(-45deg);
		background-image: url(../images/arrow-accent.svg);
		background-repeat: no-repeat;
		background-position: center center;
		background-size: cover;
		transition: all 0.3s ease-in-out;
	}

	.service-catagery-list ul li:hover a::before {
		transform: translateY(-50%) rotate(0);
		filter: brightness(0) invert(0);
	}

	.sidebar-cta-image figure {
		display: block;
	}

	.sidebar-cta-image img {
		width: 100%;
		aspect-ratio: 1 / 0.57;
		object-fit: cover;
	}

	.sidebar-cta-Body {
		border: 1px solid var(--divider-color);
		padding: 30px;
	}

	.sidebar-cta-content {
		margin-bottom: 25px;
	}

	.sidebar-cta-content h3 {
		font-size: 20px;
		text-transform: capitalize;
		margin-bottom: 10px;
	}

	.sidebar-cta-content p {
		font-weight: 500;
		margin-bottom: 0;
	}

	.sidebar-cta-contact-item {
		display: flex;
		align-items: center;
		margin-bottom: 20px;
	}

	.sidebar-cta-contact-item:last-child {
		margin-bottom: 0;
	}

	.sidebar-cta-contact-item .icon-box {
		position: relative;
		height: 58px;
		width: 58px;
		background-color: var(--divider-color);
		border-radius: 50%;
		display: flex;
		justify-content: center
	}

}

.pulse {
	animation: pulse-animation 2s infinite;
}

.circle1 {
	border-radius: 50%;
	box-shadow: 0px 0px 2px 2px #23c76473;
	position: fixed;
	right: 2.2%;
	bottom: 4%;
	z-index: 9999;
}

@keyframes pulse-animation {
	0% {
		box-shadow: 0 0 0 0px #23c76473;
	}

	100% {
		box-shadow: 0 0 0 20px #23c76473;
	}
}

@media (max-width: 991px) {
	.circle1 {
		right: 22px;
		bottom: 21px;

	}

}

/* =============================================
   PRODUCTS SECTION
   ============================================= */

.our-products-section {
	padding: 50px 0;
}

.products-heading-row {
	/* margin-bottom: 40px; */
}

.products-swiper {
	padding-bottom: 30px;
}

.products-swiper .swiper-slide {
	height: auto;
}

/* Products Swiper Arrows */
.products-swiper-arrows {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 12px;
}

.products-swiper-arrows .swiper-button-prev,
.products-swiper-arrows .swiper-button-next {
	position: static;
	width: 48px;
	height: 48px;
	background: #002e74;
	border-radius: 10%;
	border: 1px solid rgba(255, 255, 255, 0.3);
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	opacity: 1;
	margin: 0;
	flex-shrink: 0;
	transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.2s ease;
}

.products-swiper-arrows .swiper-button-prev:after,
.products-swiper-arrows .swiper-button-next:after {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
}

.products-swiper-arrows .swiper-button-prev:hover,
.products-swiper-arrows .swiper-button-next:hover {
	background: #23180f;
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.22);
	transform: translateY(-2px) scale(1.04);
}

.products-swiper-arrows .swiper-button-prev.swiper-button-disabled,
.products-swiper-arrows .swiper-button-next.swiper-button-disabled {
	opacity: 0.4;
	cursor: not-allowed;
	transform: none;
}

/* Product Card */
.product-card {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	cursor: pointer;
	transform: translateY(0);
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 26px 40px rgba(20, 10, 2, 0.22);
}

.product-image {
	width: 100%;
	aspect-ratio: 1 / 1;
	overflow: hidden;
}

.product-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.product-card:hover .product-image img {
	transform: scale(1.1);
	filter: saturate(1.05);
}

/* Product Overlay */
.product-overlay {
	position: absolute;
	left: 22px;
	right: 22px;
	bottom: 14px;
	padding: 10px 10px 10px 18px;
	background: #ffffff;
	border-radius: 18px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.16);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	min-height: 74px;
	transform: translateY(0);
	transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}

.product-card:hover .product-overlay {
	transform: translateY(-4px);
	box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.product-overlay h3 {
	font-size: 18px;
	font-weight: 700;
	color: #002e74;
	margin: 0;
	line-height: 1.3;
	letter-spacing: -0.01em;
	font-family: var(--accent-font);
}

/* Arrow Button inside product card */
.arrow-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	background: #002e74;
	color: #ffffff;
	border-radius: 12px;
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
	flex-shrink: 0;
	line-height: 1.3;
	transform: rotate(0deg);
	transition: background 0.35s ease, transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.product-card:hover .arrow-btn {
	background: #002e74;
	transform: rotate(42deg) scale(1.05);
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), 0 10px 18px rgba(0, 0, 0, 0.24);
}

/* Products Swiper Pagination */
.products-swiper .swiper-pagination {
	margin-top: 6px;
	position: relative;
	bottom: auto;
}

.products-swiper .swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	background: #c9c3be;
	opacity: 1;
	transition: width 0.3s ease, background 0.3s ease;
}

.products-swiper .swiper-pagination-bullet-active {
	width: 34px;
	height: 9px;
	border-radius: 10px;
	background: #002e74;
}

@media (max-width: 991px) {
	.our-products-section {
		padding: 60px 0;
	}

	.products-heading-row {
		margin-bottom: 28px;
	}

	.products-swiper-arrows {
		justify-content: flex-start;
		margin-top: 16px;
	}

	.products-swiper-arrows .swiper-button-prev,
	.products-swiper-arrows .swiper-button-next {
		width: 40px;
		height: 40px;
	}

	.product-overlay h3 {
		font-size: 17px;
	}
}

@media (max-width: 767px) {
	.our-products-section {
		padding: 50px 0;
	}

	.product-overlay {
		left: 14px;
		right: 14px;
		bottom: 12px;
		min-height: 62px;
		padding: 8px 8px 8px 14px;
	}

	.product-overlay h3 {
		font-size: 16px;
	}

	.arrow-btn {
		width: 42px;
		height: 42px;
		font-size: 19px;
		border-radius: 10px;
	}

	.footer-social-link-title h3 {
		display: none;
	}
}



.our-products-section.section-effect {
	position: relative;
}

.our-products-section.section-effect::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	pointer-events: none;
	background-color: #e9f0ffb5;
	/* background: linear-gradient(120deg, rgba(220, 220, 220, 0.55) 0%, rgba(255, 245, 200, 0.45) 100%); */
	/* For a more yellow tint, adjust the rgba values above */
	mix-blend-mode: lighten;
}

.our-products-section.section-effect>* {
	position: relative;
	z-index: 1;
}

/* Overlay for hero slider */
.hero-slider-image {
	position: relative;
	overflow: hidden;
}

.hero-slider-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.45);
	/* semi-transparent black */
	z-index: 1;
	pointer-events: none;
}

.hero-slider-image img,
.hero-slider-image video {
	width: 100%;
	height: auto;
	display: block;
	position: relative;
	z-index: 0;
	transition: transform 7s cubic-bezier(0.22, 1, 0.36, 1);
}

.swiper-slide-active .hero-slider-image img,
.swiper-slide-active .hero-slider-image video {
	transform: scale(1.12);
}

.hero-slider-image img,
.hero-slider-image video {
	transform: scale(1);
}

/* ==========================================================================
   Our Clients Section
   ========================================================================== */
.our-clients-section {
	padding: 50px 0;
	background: linear-gradient(180deg, #f8fbfd 0%, #f1f6fa 100%);
	position: relative;
	overflow: hidden;
}

.our-clients-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: radial-gradient(rgba(0, 82, 204, 0.03) 1px, transparent 1px);
	background-size: 24px 24px;
	pointer-events: none;
}

.clients-swiper {
	/* margin-top: 50px; */
	position: relative;
	z-index: 2;
	overflow: hidden;
}

.clients-swiper .swiper-wrapper {
	transition-timing-function: linear !important;
}

.clients-swiper .swiper-slide {
	height: auto;
}

.clients-swiper .client-logo-card {
	width: 100%;
}

.client-logo-card {
	background: #ffffff;
	border: 1px solid #eef2f6;
	border-radius: 14px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.03);
	height: 105px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px;
	transition: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
	cursor: pointer;
}

.client-logo-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
	border-color: #d2dee9;
}

.client-logo-card svg,
.client-logo-card img {
	max-width: 100%;
	/* max-height: 52px; */
	width: auto;
	height: auto;
	object-fit: contain;
	transition: filter 0.3s ease;
}

/* Media Queries for Clients Swiper */
@media (max-width: 1200px) {
	.our-clients-section {
		padding: 50px 0;
	}
}

@media (max-width: 991px) {
	.client-logo-card {
		height: 95px;
		padding: 12px 15px;
	}
}

@media (max-width: 575px) {
	.client-logo-card {
		height: 90px;
		border-radius: 10px;
	}

	.our-clients-section {
		padding: 50px 0;
	}

	.about-us-content-body {
		position: relative;
		display: block;
		flex-wrap: wrap;
		gap: 0;
	}

	.about-us-content-info {
		width: 100%;
	}

	.director-profile {
		margin-top: 25px;
	}

	.director-profile-image {
		flex-basis: 120px;
		min-height: 150px;
	}

	.director-profile-content {
		padding: 18px;
	}

	.director-profile-content h3 {
		font-size: 21px;
	}

	.why-choose-img-2.position-relative>video {
		width: 286px;
		/* mix-blend-mode: lighten; */
	}

	.designer-showcase-title {
		font-size: 37px;
	}

	.testimonial-card {
		margin: 0;
	}

	.footer-social-links {
		padding-top: 24px;
	}

	.footer-contact-box.footer-links {
		padding-top: 20px;
	}

	.footer-links {
		padding-top: 20px;
	}

	.footer-latest-news.footer-links {

		padding-top: 20px;
	}

	.tobbar-right-content {
		display: none;
	}
}

h1.sitetitlemain {
    font-size: 38px;
}
/* About page highlights */
.aboutpointers {
	margin-top: 28px;
}

.aboutpointers ul {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.aboutpointers li {
	position: relative;
	display: flex;
	align-items: center;
	gap: 12px;
	min-height: 60px;
    padding: 9px 15px;
	overflow: hidden;
	background: linear-gradient(135deg, #f7faff 0%, #edf4ff 100%);
	border: 1px solid rgba(0, 46, 116, 0.12);
	border-radius: 10px;
	box-shadow: 0 8px 22px rgba(1, 34, 91, 0.07);
	transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.aboutpointers li::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 4px;
	height: 100%;
	background: var(--accent-color);
}

.aboutpointers li:hover {
	transform: translateY(-4px);
	border-color: rgba(0, 46, 116, 0.3);
	box-shadow: 0 12px 28px rgba(1, 34, 91, 0.13);
}

.aboutpointer-icon {
	display: inline-flex;
	flex: 0 0 34px;
	align-items: center;
	justify-content: center;
	width: 34px;
	height: 34px;
	color: var(--white-color);
	font-size: 14px;
	background: var(--accent-color);
	border-radius: 50%;
	box-shadow: 0 5px 12px rgba(0, 46, 116, 0.2);
}

.aboutpointers strong {
	color: var(--primary-color);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
}

@media only screen and (max-width: 575px) {
	.aboutpointers ul {
		grid-template-columns: 1fr;
	}
}

/* About page vision, mission and core values */
.visionmisionpro {
	position: relative;
	padding: 50px 0;
	overflow: hidden;
	background:
		radial-gradient(circle at 10% 10%, rgba(0, 46, 116, 0.07), transparent 30%),
		linear-gradient(180deg, #f7faff 0%, #ffffff 100%);
}

.vision-mission-row {
	row-gap: 30px;
}

.purpose-card {
	position: relative;
	display: flex;
	gap: 22px;
	height: 100%;
	padding: 20px 20px;
	overflow: hidden;
	background: var(--white-color);
	border: 1px solid rgba(0, 46, 116, 0.12);
	border-radius: 18px;
	box-shadow: 0 15px 40px rgba(1, 34, 91, 0.09);
	transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.purpose-card::after {
	content: "";
	position: absolute;
	right: -55px;
	bottom: -55px;
	width: 145px;
	height: 145px;
	background: rgba(0, 46, 116, 0.05);
	border-radius: 50%;
}

.purpose-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 20px 45px rgba(1, 34, 91, 0.14);
}

.purpose-card-icon {
	position: relative;
	z-index: 1;
	display: inline-flex;
	flex: 0 0 64px;
	align-items: center;
	justify-content: center;
	width: 64px;
	height: 64px;
	color: var(--white-color);
	font-size: 26px;
	background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
	border-radius: 16px;
	box-shadow: 0 10px 22px rgba(0, 46, 116, 0.22);
}

.purpose-card-content {
	position: relative;
	z-index: 1;
}

.purpose-card-content h2 {
	margin-bottom: 14px;
	color: var(--primary-color);
	font-size: 30px;
}

.purpose-card-content p {
	margin: 0;
	color: var(--text-color);
	line-height: 1.75;
}

.core-values-box {
	margin-top: 45px;
	padding: 40px;
	background: linear-gradient(135deg, #000000, var(--accent-color));
	border-radius: 20px;
	box-shadow: 0 18px 45px rgba(1, 34, 91, 0.2);
}

.core-values-heading {
	margin-bottom: 30px;
	text-align: center;
}

.core-values-heading span {
	display: block;
	margin-bottom: 6px;
	color: rgba(255, 255, 255, 0.75);
	font-size: 14px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
}

.core-values-heading h2 {
	margin: 0;
	color: var(--white-color);
	font-size: 36px;
}

.core-values-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 15px;
}

.core-value-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 12px;
	/* min-height: 125px; */
	padding: 18px 10px;
	color: var(--white-color);
	text-align: center;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.18);
	border-radius: 14px;
	transition: background 0.3s ease, transform 0.3s ease;
}

.core-value-item:hover {
	transform: translateY(-5px);
	background: rgba(255, 255, 255, 0.18);
}

.core-value-item i {
	font-size: 27px;
}

.core-value-item strong {
	font-size: 16px;
	line-height: 1.25;
}

@media only screen and (max-width: 991px) {
	.visionmisionpro {
		padding: 70px 0;
	}

	.core-values-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

@media only screen and (max-width: 575px) {
	.visionmisionpro {
		padding: 55px 0;
	}

	.purpose-card {
		flex-direction: column;
		padding: 26px 22px;
	}

	.purpose-card-content h2 {
		font-size: 26px;
	}

	.core-values-box {
		padding: 30px 20px;
	}

	.core-values-heading h2 {
		font-size: 30px;
	}

	.core-values-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

/* EC Fans product image slider */
.productsimgse {
	position: relative;
	overflow: hidden;
	background: var(--white-color);
	border: 1px solid rgba(0, 46, 116, 0.12);
	border-radius: 16px;
	box-shadow: 0 12px 32px rgba(1, 34, 91, 0.12);
}

.ec-product-slider {
	width: 100%;
}

.ec-product-slider .swiper-slide {
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	padding: 0;
	background: #f8faff;
}

.ec-product-slider .swiper-slide img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.ec-product-slider .swiper-button-prev,
.ec-product-slider .swiper-button-next {
	width: 38px;
	height: 38px;
	margin-top: -19px;
	color: var(--white-color);
	background: rgba(1, 34, 91, 0.86);
	border: 0;
	border-radius: 50%;
	opacity: 0;
	transition: opacity 0.3s ease, background 0.3s ease;
}

.ec-product-slider:hover .swiper-button-prev,
.ec-product-slider:hover .swiper-button-next,
.ec-product-slider:focus-within .swiper-button-prev,
.ec-product-slider:focus-within .swiper-button-next {
	opacity: 1;
}

.ec-product-slider .swiper-button-prev:hover,
.ec-product-slider .swiper-button-next:hover {
	background: var(--accent-color);
}

.ec-product-slider .swiper-button-prev::after,
.ec-product-slider .swiper-button-next::after {
	font-size: 15px;
	font-weight: 800;
}

.ec-product-slider .swiper-pagination {
	bottom: 12px;
}

.ec-product-slider .swiper-pagination-bullet {
	width: 9px;
	height: 9px;
	background: var(--primary-color);
	opacity: 0.35;
	transition: width 0.3s ease, opacity 0.3s ease;
}

.ec-product-slider .swiper-pagination-bullet-active {
	width: 24px;
	background: var(--accent-color);
	border-radius: 10px;
	opacity: 1;
}

@media only screen and (max-width: 991px) {
	.productsimgse {
		max-width: 560px;
		margin: 0 auto;
	}
}

@media only screen and (max-width: 575px) {
	.ec-product-slider .swiper-slide {
		min-height: 280px;
		padding: 0px;
	}

	.ec-product-slider .swiper-button-prev,
	.ec-product-slider .swiper-button-next {
		width: 34px;
		height: 34px;
		margin-top: -17px;
		opacity: 1;
	}

}
h1.sitetitlemain {
    font-size: 29px;
    line-height: 1.2;
}
/* EC Fans video play button and creative popup */
.didfp.video {
	position: relative;
	width: 100%;
	height: 100%;
	overflow: hidden;
	border-radius: 10px;
}

.didfp.video::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, transparent 42%, rgba(1, 34, 91, 0.58) 100%);
	pointer-events: none;
}

.ec-video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 9px;
	padding: 0;
	color: var(--white-color);
	background: transparent;
	border: 0;
	transform: translate(-50%, -50%);
}

.ec-video-play span {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 70px;
	height: 70px;
	color: var(--accent-color);
	font-size: 23px;
	background: var(--white-color);
	border-radius: 50%;
	box-shadow: 0 10px 30px rgba(1, 34, 91, 0.3);
	transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.ec-video-play span::before,
.ec-video-play span::after {
	content: "";
	position: absolute;
	inset: -10px;
	border: 2px solid rgba(255, 255, 255, 0.65);
	border-radius: 50%;
	animation: ec-video-pulse 2s ease-out infinite;
}

.ec-video-play span::after {
	animation-delay: 1s;
}

.ec-video-play i {
	margin-left: 4px;
}

.ec-video-play small {
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.5px;
	text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.ec-video-play:hover span,
.ec-video-play:focus-visible span {
	color: var(--white-color);
	background: var(--accent-color);
	transform: scale(1.08);
}

@keyframes ec-video-pulse {
	0% {
		opacity: 0.8;
		transform: scale(0.85);
	}
	100% {
		opacity: 0;
		transform: scale(1.35);
	}
}

body.ec-video-open {
	overflow: hidden;
}

.ec-video-modal {
	position: fixed;
	inset: 0;
	z-index: 99999;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 25px;
	visibility: hidden;
	opacity: 0;
	transition: visibility 0.35s ease, opacity 0.35s ease;
}

.ec-video-modal.is-open {
	visibility: visible;
	opacity: 1;
}

.ec-video-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 12, 32, 0.88);
	backdrop-filter: blur(8px);
}

.ec-video-dialog {
	position: relative;
	z-index: 1;
	width: min(960px, 100%);
	padding: 10px;
	background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06));
	border: 1px solid rgba(255, 255, 255, 0.22);
	border-radius: 20px;
	box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
	transform: translateY(25px) scale(0.96);
	transition: transform 0.4s ease;
}

.ec-video-modal.is-open .ec-video-dialog {
	transform: translateY(0) scale(1);
}

.ec-video-close {
	position: absolute;
	top: -18px;
	right: -18px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 46px;
	height: 46px;
	padding: 0;
	color: var(--primary-color);
	font-size: 20px;
	background: var(--white-color);
	border: 3px solid rgba(0, 46, 116, 0.14);
	border-radius: 50%;
	box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
	transition: color 0.3s ease, transform 0.3s ease;
}

.ec-video-close:hover,
.ec-video-close:focus-visible {
	color: var(--accent-color);
	transform: rotate(90deg);
}

.ec-video-frame {
	overflow: hidden;
	background: #000;
	border-radius: 13px;
	aspect-ratio: 16 / 9;
}

.ec-video-frame video {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.ec-video-caption {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 12px 10px 3px;
	color: var(--white-color);
}

.ec-video-caption span {
	font-size: 13px;
	letter-spacing: 1px;
	text-transform: uppercase;
	opacity: 0.7;
}

.ec-video-caption strong {
	font-size: 18px;
}

@media only screen and (max-width: 575px) {
	.ec-video-modal {
		padding: 16px;
	}

	.ec-video-play span {
		width: 58px;
		height: 58px;
		font-size: 19px;
	}

	.ec-video-close {
		top: -13px;
		right: -8px;
		width: 40px;
		height: 40px;
	}

	.ec-video-caption {
		flex-direction: column;
		align-items: flex-start;
		gap: 2px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.ec-video-play span::before,
	.ec-video-play span::after {
		animation: none;
	}
}

@media (max-width: 768px){
	.ec-video-frame { overflow: hidden; background: #000; border-radius: 13px; aspect-ratio: 9 / 16; }
}

.clientspgimg {
    padding-bottom: 12px;
    /* border-radius: 10px; */
}

.clientspgimg img {
    border-radius: 10px;
    padding: 10px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
   .gallerypageimg {
            padding: 0 0 70px;
        }

        .gallerypageimg .row {
            row-gap: 24px;
        }

        .galleryjgom {
            height: 250px;
            overflow: hidden;
            border-radius: 12px;
            background: #fff;
            box-shadow: 0 5px 24px rgba(0, 0, 0, 0.1);
        }

        .galleryjgom a,
        .galleryjgom img {
            display: block;
            width: 100%;
            height: 100%;
        }

        .galleryjgom img {
            object-fit: cover;
            /* padding: 12px; */
            transition: transform 0.35s ease;
        }

        .galleryjgom:hover img {
            transform: scale(1.06);
        }

		@media (max-width:768px){
			.feedback-counter {
				display: none;
			}
		}

		img.mkprod {
    width: 100%;
    border-radius: 20px;
}
.whatsappbtn {
	background-color: #25D366;
	border: none;
}

.whatsappbtn:hover {
	background-color: #128C7E;
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
	transform: translateY(-2px);
	cursor: pointer;
}

/* --- Floating Buttons Container --- */
.floating-contact-btn {
	position: fixed;
	bottom: 20px;
	/* Space from the bottom */
	right: 20px;
	/* Space from the right */
	display: flex;
	flex-direction: column;
	align-items: center;
	/* Aligns items to the center of the container */
	gap: 10px;
	/* Creates space between the buttons */
	z-index: 1050;
}

.floating-contact-btn>div,
.floating-contact-btn>a>i {
	font-size: 20px;
}

/* Floating Button Styles */
.floating-contact-btn>div,
.floating-contact-btn>a {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	cursor: pointer;
	transition: transform 0.2s ease-in-out;
	text-decoration: none;
	/* For the link element */
}

.floating-contact-btn>div:hover,
.floating-contact-btn>a:hover {
	transform: scale(1.1);
}

.floating-whatsapp-btn {
	background-color: #3ebb00;
}

.floating-phone-btn {
	background-color: #134fa0;

}

a.floating-phone-btn i {
	font-size: 26px;
}

.floating-contact-btn img {
	width: 40px;
}

.floating-contact-btn i {
	color: white;
	font-size: 2rem;
}

.icon-btn {
	background: none;
	border: none;
	padding: 0;
	cursor: pointer;
}

/* Modal Overlay and Container */
.modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1050;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.modal-overlay.show {
	display: flex;
	opacity: 1;
}

.modal-content-wrapper {
	background-color: white;
	border-radius: 1rem;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
	max-width: 500px;
	width: 90%;
	transition: transform 0.3s ease, opacity 0.3s ease;
	transform: translateY(-50px);
	opacity: 0;
}

.modal-overlay.show .modal-content-wrapper {
	transform: translateY(0);
	opacity: 1;
}

/* Modal Header */
.modal-header {
	background-color: #002e74;
	color: white;
	padding: 10px;
	border-top-left-radius: 1rem;
	border-top-right-radius: 1rem;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.modal-title {
	font-size: 18px;
	color: white;
	text-align: center;
}

.modal-header h5 {
	margin: 0;
	font-size: 1.25rem;
	font-weight: 500;
}

.modal-header .close-btn {
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	cursor: pointer;
	line-height: 1;
}

/* Modal Body */
.modal-body {
	padding: 1.5rem;
}

/* Form Styling */
.form-group {
	margin-bottom: 1rem;
}

.form-label {
	font-weight: 500;
	color: #4a4a4a;
	display: block;
	margin-bottom: 0.5rem;
}

.form-control {
	width: 100%;
	border-radius: 0.75rem;
	border: 1px solid #e0e0e0;
	padding: 0.65rem 1rem;
	box-sizing: border-box;
	transition: border-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.form-control:focus {
	outline: none;
	border-color: #0d6efd;
	box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
}

.btn-submit {
	background-color: #002e74 !important;
	border: none;
	font-weight: bold;
	color: white;
	border-radius: 0.75rem;
	padding: 0.75rem 1.5rem;
	width: 100%;
	cursor: pointer;
	transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

.btn-submit:hover {
	background-color: #128c7e;
	transform: translateY(-2px);
}

/* Corner Modal Specific Styles */
.corner-modal-overlay {
	justify-content: flex-end;
	align-items: flex-end;
	padding: 20px;
}

.corner-modal-overlay .modal-content-wrapper {
	width: 100%;
	max-width: 400px;
	transform: translateY(50px);
	margin: 0;
}

.flip-icon {
	transform: scaleX(-1);
}

/* --- MOBILE RESPONSIVE STYLES --- */
@media (max-width: 768px) {
	.floating-contact-btn {
		bottom: 2rem;
		/* Space from the bottom on mobile */
		right: 1rem;
		/* Space from the right on mobile */
		gap: 0.75rem;
	}

	.floating-contact-btn>div,
	.floating-contact-btn>a {
		width: 50px;
		height: 50px;
	}

	.floating-contact-btn img {
		width: 35px;
	}
}



/******SEO Start*******/
.for-seo{
    padding: 80px 0;
   
}

  .footer-product{
  margin: 0 0 50px 0;
position: relative;
/* z-index: 9; */
}
.footer-product span {
    background: #01225b;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: block;
  font-family: 'Open Sans', sans-serif;
}
.footer-product span{

}

.footer-product ul{
padding-left: 0;
}

.footer-product ul li {
list-style-type: none;
margin: 10px 0;
position: relative;
padding-left: 20px;
}
.footer-product ul li::before {
    content: "";
    height: 12px;
    width: 12px;
    display: block;
    background: #01225b;
    position: absolute;
    top: 7px;
    left: 0px;
    border-radius: 50%;
    border: 2px solid #01225b;
}
.footer-product ul li a {
color: #131e4a;
}

.footer-product ul li a {
color: #131e4a;
font-size: 16px;
font-weight: 700;
    
}
.footer-product ul li a i {
margin-right: 10px;
}

.footer-product span.location {
font-size: 22px;
background: no-repeat;
color: #061e75;
font-weight: 800;
margin-bottom: 20px;
display: block;
text-align: left;
}


.forHeadingOne {
    text-align: center;
    font-size: 30px;
    margin-bottom: 50px;
    background: #efefef;
    padding: 18px;
    border-bottom: 2px solid #01225b;
    border-radius: 3px;
    color: #183b56;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    line-height: 39px;
}

.forHeadingTwo {
    font-size: 22px !important;
    margin-bottom: 15px !important;
    line-height: 32px !important;
    color: #16134e;
    background: #efefef;
    padding: 10px;
    border-left: 2px solid #01225b;
    border-radius: 3px;
    margin-top: 20px;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    line-height: 39px;
    display: block;
}

.forproduct-pe{
  margin: 80px 0 0 0;
}


.for-text {
  color: #000;
  font-size: 16px;
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 26px;
}

.for-text strong{
  font-weight: 800;
}

.product-list-li ul{
  padding-left:0;
}
.product-list-li ul li {
  list-style-type: none;
  margin: 10px 0;
  position: relative;
  padding-left: 20px;
  line-height: 28px;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin-bottom: 15px;
  line-height: 26px;
  list-style-type:none;

    
}

.product-list-li ul li::before {
  content: "";
  height: 12px;
  width: 12px;
  display: block;
  background: #01225b;
  position: absolute;
  top: 7px;
  left: 0px;
  border-radius: 50%;
  border: 2px solid #01225b;
}


.product-pic {
    box-shadow: 0 .5rem 1rem rgba(0, 0, 0, .15) !important;
    border: 2px solid #01225b;
    padding: 10px;
}
.product-pic img {
  width: 100%;
  
}



.accro.for-seo-accro .accordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  border: none;
  text-align: left;
  outline: none;
  font-size: 16px;
  transition: 0.4s;
  margin-bottom: 10px;
  font-weight: 400;
}

.accro.for-seo-accro  .active, .accordion:hover {
background-color: #ccc;
}

.accro.for-seo-accro .accordion:after {
content: '\002B';
color: #777;
font-weight: bold;
float: right;
margin-left: 5px;
}

.accro.for-seo-accro .active:after {
content: "\2212";
}

.accro.for-seo-accro .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    position: relative;
    width: 100%;
}
.product-social-icons{
  margin-top: 20px;
}
.product-social-icons img {
    width: 100%;
}

.location{
    margin: 30px 0;
    position: relative;
  }
  .location-heading {
    background: #01225b;
    padding: 20px 0;
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    display: block;
        font-family: "Oswald", serif;
  }
  
.location-subHeading {
    margin: 0 0 15px;
    font-weight: 700;
    font-family: 'Source Sans Pro', sans-serif;
    color: #333;
    font-size: 18px;
    display: block;
    text-align: center;
    background: #efefef;
    padding: 13px;
}
  hr{
    margin-top: 5px;
    margin-bottom: 5px;
    border: 0;
    border-top: 1px solid #cecece;
  }


  .pricing-block .inner-box div {
    display: flex;
    justify-content: left;
    align-items: center;
    gap: 11px;
}

.pricing-block{

		box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
	padding: 20px;
}
span.page-title{
  font-weight: 700;
}
.for-seo p {
    color: #000;
}
.for-seo p a{
  color: #01225b;
  font-weight: 700;
}
