:root {
	--primary-color: #0D0D0D;
	--secondary-color: #F5F5F5;
	--bg-color: #FFFFFF;
	--text-color: #666666;
	--accent-color: #FED403;
	--white-color: #FFFFFF;
	--divider-color: #0D0D0D1A;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Poppins", sans-serif;
	--accent-font: "Poppins", sans-serif;
}

/************************************/
/*** 	   02. General css		  ***/
/************************************/

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

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background: var(--bg-color);
}

::-webkit-scrollbar-track {
	background-color: var(--primary-color);
	border-left: 1px solid var(--primary-color);
}

::-webkit-scrollbar {
	width: 7px;
	background-color: var(--primary-color);
}

::-webkit-scrollbar-thumb {
	background: var(--accent-color);
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--accent-font);
	font-weight: 700;
	line-height: 1.1em;
	color: var(--primary-color);
	margin: 0;
}

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

a:hover {
	text-decoration: none;
	outline: 0;
}

a:focus {
	text-decoration: none;
	outline: 0;
}

.container {
	max-width: 1500px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
	padding-right: 15px;
	padding-left: 15px;
}

.image-anime {
	position: relative;
	overflow: hidden;
}

.image-anime:after {
	content: "";
	position: absolute;
	width: 200%;
	height: 0%;
	left: 50%;
	top: 50%;
	background-color: rgba(255, 255, 255, .3);
	transform: translate(-50%, -50%) rotate(-45deg);
	z-index: 1;
}

.image-anime:hover:after {
	height: 250%;
	transition: all 600ms linear;
	background-color: transparent;
}

.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 {
	font-family: var(--accent-font);
	position: relative;
	display: inline-block;
	font-size: 18px;
	font-weight: 600;
	line-height: 1em;
	text-transform: capitalize;
	color: #ffffff;
	background: #dc3545;
	/* border-radius: 5px; */
	padding: 17px 57px 17px 20px;
	border: none;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover {
	color: var(--white-color);
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 5px;
	width: 42px;
	height: 42px;
	background-color: #ffffff;
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px auto;
	border-radius: 5px;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

.btn-default:hover:before {
	background-color: var(--accent-color);
	background-image: url('../images/arrow-primary.svg');
}

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

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

.btn-default.btn-highlighted:hover {
	color: var(--primary-color);
}

.btn-default.btn-highlighted:hover:before {
	background-color: var(--primary-color);
	background-image: url('../images/arrow-white.svg');
}

.btn-default.btn-highlighted::after {
	background-color: var(--white-color);
	border: 1px solid red;
}

.readmore-btn {
	font-family: var(--accent-font);
	position: relative;
	display: inline-block;
	font-weight: 600;
	line-height: normal;
	color: var(--primary-color);
	text-transform: capitalize;
	padding-right: 34px;
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
	right: 10px;
	height: 24px;
	width: 24px;
	background-color: #ffffff;
	border-radius: 100px;
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 12px auto;
	transition: all 0.4s ease-in-out;
}

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

.cb-cursor:before {
	background: var(--accent-color);
}

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1000;
	background: var(--primary-color);
	display: flex;
	align-items: center;
	justify-content: center;
}

.loading-container,
.loading {
	height: 100px;
	position: relative;
	width: 100px;
	border-radius: 100%;
}

.loading-container {
	margin: 40px auto;
}

.loading {
	border: 1px solid transparent;
	border-color: transparent var(--white-color) transparent var(--white-color);
	animation: rotate-loading 1.5s linear 0s infinite normal;
	transform-origin: 50% 50%;
}

.loading-container:hover .loading,
.loading-container .loading {
	transition: all 0.5s ease-in-out;
}

#loading-icon {
	position: absolute;
	top: 50%;
	left: 50%;
	max-width: 66px;
	transform: translate(-50%, -50%);
}

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

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

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

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

.section-row .section-title {
	margin-bottom: 0;
}

.section-row .section-title.section-title-center {
	width: 100%;
	max-width: 990px;
	margin: 0 auto;
	text-align: center;
}

.section-btn {
	text-align: right;
}

.section-content-btn .section-btn {
	margin-top: 30px;
	text-align: left;
}

.section-title-content p {
	margin-bottom: 20px;
}

.section-title-content p:last-child {
	margin-bottom: 0;
}

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

.section-title h3 {
	position: relative;
	display: inline-block;
	font-size: 14px;
	line-height: 1.2em;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding-left: 16px;
	margin-bottom: 10px;
	color: #1a4d85;
}

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

.section-title h1 {
	font-size: 52px;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h2 {
	font-size: 44px;
	letter-spacing: -0.04em;
	margin-bottom: 0;
	color: #09396d;
}

.section-title p {
	margin-top: 20px;
	margin-bottom: 0;
}

.dark-section .section-title h3,
.dark-section .section-title h1,
.dark-section .section-title h2,
.dark-section .section-title p,
.dark-section .section-title-content p {
	color: var(--white-color);
}

.help-block.with-errors ul {
	margin: 0;
	text-align: left;
}

.help-block.with-errors ul li {
	color: var(--error-color);
	font-weight: 500;
	font-size: 14px;
}

/************************************/
/**** 	   03. Header css		 ****/
/************************************/

header.main-header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: #ffffff00;
	/* border-bottom: 1px solid #ffffff94; */
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	/* background: var(--dark-divider-color); */
	/* backdrop-filter: blur(30px) saturate(100%); */
	-webkit-backdrop-filter: blur(30px) saturate(100%);
	z-index: 100;
}

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

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	transform: translateY(0);
	background: var(--primary-color);
}

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

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

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

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

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

.main-menu ul li {
	margin: 0 13px;
	position: relative;
}

.main-menu ul li a {
	font-family: var(--accent-font);
	font-size: 17px;
	font-weight: 600;
	line-height: 1.2em;
	text-transform: uppercase;
	color: #2b2b2b;
	padding: 38px 10px !important;
	background: transparent;
	border-radius: 0px;
	transition: all 0.3s ease-in-out;
	/* border-bottom: 1px solid #fff; */
}

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

.main-menu ul ul {
	visibility: hidden;
	opacity: 0;
	transform: scale(1, 0.8);
	transform-origin: top;
	padding: 0;
	margin: 0;
	list-style: none;
	width: 235px;
	border-radius: 10px;
	position: absolute;
	left: 0;
	top: 100%;
	background: #1a4d85;
	transition: all 0.3s ease-in-out;
	text-align: left;
}

.main-menu ul ul li a {
	color: #fff !important;
	font-size: 15px;
	text-transform: inherit !important;
	font-weight: 500;
	border-bottom: 1px solid #dadada21;
}

.main-menu ul li.submenu:first-child ul {
	width: 235px;
}

.main-menu ul ul ul {
	left: 100%;
	top: 0;
	text-align: left;
}

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: scale(1, 1);
	padding: 5px 0;
}

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

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

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

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

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

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

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

.slicknav_btn {
	background: var(--accent-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 6px;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--primary-color);
	border-radius: 6px;
	margin: 4px auto !important;
	transition: all 0.1s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar:first-child {
	margin-top: 0 !important;
}

.slicknav_icon .slicknav_icon-bar:last-child {
	margin-bottom: 0 !important;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(1) {
	transform: rotate(-45deg) translate(-5px, 5px);
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(2) {
	opacity: 0;
}

.navbar-toggle a.slicknav_btn.slicknav_open .slicknav_icon span.slicknav_icon-bar:nth-child(3) {
	transform: rotate(45deg) translate(-5px, -5px);
}

.slicknav_menu {
	position: absolute;
	width: 100%;
	padding: 0;
	background: var(--accent-color);
}

.slicknav_menu ul {
	margin: 5px 0;
}

.slicknav_menu ul ul {
	margin: 0;
}

.slicknav_nav .slicknav_row,
.slicknav_nav li a {
	position: relative;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	padding: 7px 20px;
	color: var(--primary-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

.slicknav_nav a:hover,
.slicknav_nav a:focus,
.slicknav_nav .slicknav_row:hover {
	background-color: transparent;
	color: var(--white-color);
}

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

.slicknav_arrow {
	font-size: 0 !important;
}

.slicknav_arrow:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 12px;
	margin-left: 8px;
	color: var(--primary-color);
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
	transition: all 0.3s ease-out;
}

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

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

.hero {
	position: relative;
	background-image: url('../images/hero-bg-image.jpg');
	padding: 265px 0 300px;
}

.hero::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

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

.video-play-button {
	position: relative;
	display: inline-flex;
	align-items: center;
	gap: 20px;
	z-index: 1;
}

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

.video-play-button:hover a {
	background: var(--accent-color);
}

.video-play-button a:before,
.video-play-button a:after {
	content: '';
	position: absolute;
	top: -30%;
	left: -30%;
	width: 100%;
	height: 100%;
	border: 32px solid var(--white-color);
	opacity: 50%;
	border-radius: 50%;
	transform: scale(0.6);
	z-index: -1;
	animation: border-zooming 1.2s infinite linear;
}

.video-play-button a:after {
	animation-delay: .3s;
}

@keyframes border-zooming {
	100% {
		transform: scale(1);
		opacity: 0;
	}
}

.video-play-button a i {
	font-size: 14px;
	color: var(--white-color);
	margin-left: 2px;
	transition: all 0.3s ease-in-out;
}

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

.video-play-button h3 {
	font-size: 18px;
	color: var(--white-color);
}

.hero .year-experience-circle {
	text-align: center;
}

.year-experience-circle img {
	width: 100%;
	/* max-width: 130px; */
	border-radius: 50%;
}

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

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

.hero-info-box {
	position: relative;
	margin-top: -145px;
	z-index: 2;
}

.hero-info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.hero-info-item {
	position: relative;
	width: calc(33.33% - 20px);
	border-radius: 10px;
	overflow: hidden;
}

.hero-info-item.box-1 {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	background: var(--secondary-color);
	padding: 10px;
}

.hero-info-content-box {
	width: calc(48% - 5px);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	padding: 20px;
}

.hero-info-item-content ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 15px;
	padding: 0;
	list-style: none;
}

.hero-info-item-content ul li {
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	color: var(--primary-color);
	border: 1px solid var(--divider-color);
	border-radius: 5px;
	padding: 5px 14px;
}

.hero-info-item-content h3 {
	font-size: 20px;
	line-height: 1.4em;
}

.hero-info-btn {
	border-top: 1px solid var(--divider-color);
	padding-top: 25px;
}

.hero-info-image {
	width: calc(52% - 5px);
}

.hero-info-image figure,
.hero-info-item.box-2 figure {
	display: block;
	height: 100%;
	border-radius: 10px;
}

.hero-info-image img,
.hero-info-item.box-2 img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.62;
	object-fit: cover;
	border-radius: 10px;
}

.hero-info-item.box-3 {
	background: var(--primary-color);
	padding: 40px;
}

.hero-info-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	margin-bottom: 50px;
}

.hero-info-header .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 5px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

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

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

.hero-info-header .icon-box img {
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

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

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

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

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

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

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

.satisfy-client-image.add-more i {
	font-size: 20px;
	color: var(--primary-color);
	line-height: normal;
	transition: all 0.3s ease-in-out;
}

.satisfy-client-image.add-more h3 {
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
}

.hero-info-counter-box h3 {
	font-size: 20px;
	color: var(--white-color);
	line-height: 1.4em;
	margin-bottom: 10px;
}

.hero-info-counter-box h2 {
	font-size: 52px;
	color: var(--white-color);
}

.hero-info-bg-icon {
	position: absolute;
	bottom: -15px;
	right: -15px;
}

.hero-info-bg-icon img {
	width: 100%;
	max-width: 100px;
}

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

.about-us {
	padding: 100px 0;
	background-image: url(../images/about-us.png);
}

.about-us-image-box {
	height: 100%;
	display: flex;
	flex-wrap: wrap;
}

.about-us-image-box-1 {
	width: 74%;
}

.about-us-image {
	height: 100%;
	border-radius: 10px;
}

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

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

.about-us-image-box-2 {
	position: relative;
	width: 26%;
	z-index: 1;
}

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

.about-us-image-box-2 .about-us-image {
	margin-top: 80px;
	margin-left: -150px;
}

.about-us-image-box-2 .about-us-image figure {
	border: 4px solid var(--white-color);
}

.about-us-image-box-2 .year-experience-circle {
	position: relative;
	display: inline-block;
	transform: translate(-50%, -50%);
	border: 4px solid var(--white-color);
	border-radius: 50%;
	z-index: 1;
}

.about-us-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	background-color: var(--secondary-color);
	border-left: 10px solid var(--accent-color);
	border-radius: 10px;
	padding: 25px 40px 25px 30px;
}

.about-body-item {
	display: flex;
	flex-wrap: wrap;
	width: calc(50% - 15px);
	gap: 20px;
}

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

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

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

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

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

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

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

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

.about-us-footer {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.about-us-footer-content {
	width: calc(53% - 15px);
}

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

.about-footer-content-list ul li {
	position: relative;
	line-height: 1.5em;
	color: var(--primary-color);
	padding-left: 16px;
	margin-bottom: 20px;
}

.about-footer-content-list ul li:last-child {
	margin-bottom: 0;
}

.about-footer-content-list ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	background: var(--accent-color);
	width: 6px;
	height: 6px;
}

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

.about-us-video-box {
	position: relative;
	width: calc(47% - 15px);
}

.about-video-image {
	height: 100%;
}

.about-video-image figure {
	display: block;
	height: 100%;
	border-radius: 10px;
	overflow: hidden;
}

.about-video-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	border-radius: 10px;
	opacity: 40%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.about-video-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.65;
	object-fit: cover;
	border-radius: 10px;
	transition: all 0.5s ease-in-out;
}

.about-us-video-box:hover .about-video-image img {
	transform: scale(1.08);
}

.about-us-video-box .video-play-button {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	text-align: center;
	z-index: 1;
}

.about-us-video-box .video-play-button a {
	height: 46px;
	width: 46px;
	background: var(--accent-color);
}

.about-us-video-box .video-play-button a i {
	font-size: 16px;
	color: var(--primary-color);
}

.about-us-video-box .video-play-button a:before,
.about-us-video-box .video-play-button a:after {
	border-width: 36px;
}

/************************************/
/*** 	06. Our Servicves css 	  ***/
/************************************/

.our-services {
	background: var(--secondary-color) url('../images/service-bg-shape.png') no-repeat;
	background-position: top right;
	background-size: auto;
	padding: 100px 0;
}

.service-item {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 25px;
	background: var(--white-color);
	border-radius: 10px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 15px;
}

.service-item-header {
	padding: 15px;
}

.service-item-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px 20px;
}

.service-item-title h2,
.service-item-title h3 {
	font-size: 20px;
	line-height: 1.4em;
}

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

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

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

.service-image-box {
	position: relative;
}

.service-item-image figure {
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

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

.service-item.active .service-item-image img,
.service-item:hover .service-item-image img {
	transform: scale(1.08);
}

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

.service-item.active .service-item-btn,
.service-item:hover .service-item-btn {
	opacity: 1;
	transform: translate(-50%, -50%) scale(1);
}

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

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

.service-item-btn a img {
	width: 100%;
	max-width: 20px;
	transition: all 0.4s ease-in-out;
	transform: rotate(-45deg);
}

.service-item-btn a:hover img {
	transform: rotate(0);
}

.service-benefit-box {
	margin-top: 30px;
}

.service-benefit-list ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 25px;
	max-width: 900px;
	list-style: none;
	padding: 0;
	margin: 0 auto;
}

.service-benefit-list ul li {
	position: relative;
	background: var(--white-color);
	font-size: 16px;
	line-height: 1.5em;
	color: var(--primary-color);
	padding: 10px 16px 10px 32px;
	border-radius: 100px;
	transition: all 0.4s ease-in-out;
}

.service-benefit-list ul li:hover {
	background: var(--primary-color);
	color: var(--white-color);
}

.service-benefit-list ul li::before {
	content: '';
	position: absolute;
	left: 16px;
	top: 50%;
	transform: translateY(-50%);
	background: var(--accent-color);
	width: 6px;
	height: 6px;
}

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

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

.section-footer-text p span {
	font-size: 14px;
	font-weight: 500;
	background: var(--accent-color);
	color: var(--primary-color);
	padding: 3px 10px;
	border-radius: 20px;
	margin-right: 10px;
}

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

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

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

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

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

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

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

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

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

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

.section-footer-text.section-footer-contact span img {
	max-width: 14px;
}

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

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

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

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

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

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

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

/************************************/
/*** 	   07. What We Do css 	  ***/
/************************************/

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

.what-we-do-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.what-we-do-item {
	width: calc(50% - 15px);
	background-color: var(--secondary-color);
	padding: 30px;
	border-radius: 10px;
}

.what-we-do-item .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 5px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 60px;
}

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

.what-we-do-item:hover .icon-box::before {
	transform: rotate(0) scale(1);
}

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

.what-we-do-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.what-we-do-item-body h3 {
	font-size: 20px;
}

.what-we-do-item-body p {
	margin: 10px 0 0;
}

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

.what-we-do-item-body ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 16px;
	margin-bottom: 15px;
}

.what-we-do-item-body ul li:last-child {
	margin-bottom: 0;
}

.what-we-do-item-body ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	background: var(--accent-color);
	width: 6px;
	height: 6px;
}

.what-we-do-btn {
	margin-top: 40px;
}

.what-we-do-image {
	margin-left: 15px;
}

.what-we-do-image figure {
	display: block;
	border-radius: 10px;
}

.what-we-do-image img {
	width: 100%;
	aspect-ratio: 1 / 1.18;
	object-fit: cover;
	border-radius: 10px;
}

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

/************************************/
/*** 	   08. Our Story css 	  ***/
/************************************/

.our-story {
	position: relative;
	background-image: url('../images/our-story-bg-image.jpg');
	padding: 200px 0;
}

.our-story::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

.our-story-content {
	max-width: 990px;
	text-align: center;
	margin: 0 auto;
}

.our-story-content .section-title {
	margin-bottom: 0;
}

.watch-video-circle {
	margin-top: 180px;
}

.watch-video-circle a {
	display: inline-block;
	border-radius: 50%;
	cursor: none;
}

.watch-video-circle a img {
	width: 100%;
	max-width: 150px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.watch-video-circle a:hover img {
	animation-play-state: paused;
}

/************************************/
/*** 	 09. Our Features css 	  ***/
/************************************/

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

.our-features .section-row .section-title.section-title-center {
	max-width: 1050px;
}

.our-features .section-title h2 .feature-title-img-1 {
	width: 44px;
	height: 44px;
	border-radius: 100px;
	background: var(--accent-color);
	display: inline-flex;
	justify-content: center;
	align-items: center;
}

.our-features .section-title h2 .feature-title-img-1 img {
	width: 100%;
	max-width: 22px;
}

.our-features .section-title h2 .feature-title-img-2 img {
	width: 100%;
	max-width: 44px;
}

.our-features .section-title h2 .feature-title-img-3 {
	display: inline-block;
}

.our-features .section-title h2 .feature-title-img-3 img {
	width: 100%;
	max-width: 40px;
	border-radius: 50%;
	border: 1px solid var(--white-color);
	margin-left: -8px;
}

.our-features .section-title h2 .feature-title-img-3 img:first-child {
	margin: 0;
}

.feature-item {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	flex-direction: column;
	gap: 60px;
	background: var(--secondary-color);
	border-radius: 10px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
}

.feature-item.box-1 {
	background: var(--primary-color);
}

.feature-item-shape-image figure {
	display: block;
	mask-image: url('../images/feature-item-image-shape-1.svg');
	background-image: url('../images/feature-item-image-shape-1.svg');
	mask-size: cover;
	mask-position: center center;
	mask-repeat: no-repeat;
	width: 220px;
	height: 110px;
}

.feature-item-shape-image img {
	width: 100%;
	object-fit: cover;
}

.feature-item-content {
	border-bottom: 1px solid var(--dark-divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

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

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

.feature-item.box-1 .feature-item-content h3,
.feature-item.box-1 .feature-item-content p {
	color: var(--white-color);
}

.feature-item-content h2 {
	font-size: 54px;
	margin-bottom: 10px;
}

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

.feature-item-list ul li {
	position: relative;
	color: var(--white-color);
	line-height: 1.5em;
	padding-left: 16px;
	margin-bottom: 15px;
}

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

.feature-item-list ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 8px;
	background: var(--accent-color);
	width: 6px;
	height: 6px;
}

.feature-item.box-2 {
	flex-direction: initial;
	gap: 0;
}

.feature-item-info {
	width: 75%;
}

.feature-item-info-content p {
	font-weight: 600;
	margin-bottom: 10px;
}

.feature-item-info-content h3 {
	font-size: 30px;
	line-height: 1.4em;
}

.feature-item-btn {
	margin-top: 40px;
}

.feature-item-btn .readmore-btn {
	text-decoration: underline;
}

.feature-item-image {
	width: 25%;
	text-align: right;
	align-content: end;
}

.feature-item-image figure {
	display: block;
	margin: 0 -40px -40px -100px;
}

.feature-item-image img {
	width: 100%;
	max-width: 250px;
}

.feature-item.box-3 {
	background: var(--accent-color);
}

.feature-item.box-3 .feature-item-content-box .feature-item-content {
	border-color: var(--divider-color);
}

.feature-item-counter-info p {
	color: var(--primary-color);
	margin-bottom: 10px;
}

.feature-item-counter-info p:last-child {
	margin-bottom: 0;
}

.feature-item-tag-list ul {
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.feature-item-tag-list ul li {
	color: var(--primary-color);
	font-weight: 500;
	line-height: 1.5em;
	border: 1px solid var(--divider-color);
	border-radius: 5px;
	padding: 6px 14px;
}

/************************************/
/***  10. Our Pricing Plans css   ***/
/************************************/

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

.pricing-item {
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 10px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 20px;
}

.pricing-item-header {
	position: relative;
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	border-radius: 10px;
	padding: 30px;
}

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

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

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

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

.pricing-item-content p {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 15px;
}

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

.pricing-item-content h2 sub {
	font-size: 20px;
	bottom: 0;
}

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

.pricing-item-list h3 {
	font-size: 20px;
	color: var(--white-color);
}

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

.pricing-item-list ul li {
	position: relative;
	line-height: 1.5em;
	color: var(--white-color);
	padding-left: 16px;
	margin-bottom: 15px;
}

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

.pricing-item-list ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	background: var(--accent-color);
	width: 6px;
	height: 6px;
}

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

.pricing-item-btn .btn-default {
	display: block;
}

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

.pricing-item.highlighted-box .pricing-item-header::before {
	content: 'Most Popular';
	font-family: var(--accent-font);
	position: absolute;
	top: 20px;
	right: 20px;
	font-size: 16px;
	font-weight: 500;
	color: var(--white-color);
	background: var(--primary-color);
	border-radius: 5px;
	line-height: 1.5em;
	padding: 8px 14px;
}

.pricing-item.highlighted-box .pricing-item-header .icon-box {
	background: var(--primary-color);
}

.pricing-item.highlighted-box .pricing-item-header .icon-box img {
	filter: brightness(0) invert(1);
}

.pricing-item.highlighted-box:hover .pricing-item-header .icon-box img {
	filter: brightness(0) invert(0);
}

.pricing-item.highlighted-box .pricing-item-content p,
.pricing-item.highlighted-box .pricing-item-content h2 {
	color: var(--primary-color);
}

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

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

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

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

/************************************/
/*** 	 11. Our Projects css 	  ***/
/************************************/

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

.project-nav {
	text-align: center;
	margin-bottom: 60px;
}

.project-nav ul {
	list-style: none;
	display: inline-flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px 50px;
	padding: 0;
	margin: 0;
}

.project-nav ul li a {
	position: relative;
	font-size: 18px;
	line-height: 1.4em;
	text-transform: capitalize;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.project-nav ul li a:before {
	content: '';
	position: absolute;
	top: 9px;
	right: -28px;
	background-color: var(--divider-color);
	border-radius: 50%;
	height: 8px;
	width: 8px;
}

.project-nav ul li:last-child a:before {
	display: none;
}

.project-nav ul li a.active-btn,
.project-nav ul li a:hover {
	color: var(--accent-color);
}

.project-item {
	position: relative;
	border-radius: 10px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.project-item-image a,
.project-item-image figure {
	position: relative;
	display: block;
	cursor: none;
}

.project-item-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(13, 13, 13, 0.00) 37.36%, var(--primary-color) 87.69%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

.project-item:hover .project-item-image img {
	transform: scale(1.08);
}

.project-item-content {
	position: absolute;
	bottom: 40px;
	right: 40px;
	left: 40px;
	z-index: 1;
}

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

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

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

.project-item-btn {
	position: absolute;
	top: 40px;
	right: 40px;
	opacity: 0;
	transform: scale(0);
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.project-item:hover .project-item-btn {
	opacity: 1;
	transform: scale(1);
}

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

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

.project-item-btn a img {
	width: 100%;
	max-width: 24px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

.project-item-btn a:hover img {
	filter: brightness(0) invert(0);
}

.project-item-btn a:hover img {
	transform: rotate(0);
}

/************************************/
/*** 		12. CTA Box css		  ***/
/************************************/

.cta-box {
	position: relative;
	background-image: url('../images/cta-box-bg-img.jpg');
	padding: 150px 0;
	overflow: hidden;
}

.cta-box::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

.cta-box-content {
	margin-right: 4.167vw;
}

.cta-box-items-list {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 40px;
}

.cta-box-item {
	width: calc(50% - 20px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.cta-box-item .icon-box {
	position: relative;
	width: 60px;
	height: 60px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px) saturate(100%);
	-webkit-backdrop-filter: blur(30px) saturate(100%);
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

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

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

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

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

.cta-box-item-content {
	width: calc(100% - 80px);
}

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

.cta-box-btn {
	margin-top: 60px;
}

.cta-box-image {
	text-align: center;
	margin-top: -150px;
}

.cta-box-image figure {
	display: block;
}

.cta-box-image figure img {
	width: 100%;
	max-width: 165px;
}

/************************************/
/*** 	   13. Our FAQs css 	  ***/
/************************************/

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

.our-faqs-content {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: 100%;
	padding: 20px 0;
}

.faq-contact-box {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
}

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

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

.faq-contact-box:hover .icon-box::before {
	transform: rotate(0) scale(1);
}

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

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

.faq-contact-box-content {
	width: calc(100% - 70px)
}

.faq-contact-box-content h3 {
	font-size: 20px;
	margin-bottom: 5px;
}

.faq-contact-box-content p {
	margin-bottom: 0;
}

.faq-contact-box-content p a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.faq-contact-box-content p a:hover {
	color: var(--accent-color);
}

.faq-accordion {
	background: var(--secondary-color);
	border-radius: 10px;
	padding: 40px;
}

.faq-accordion .accordion-item {
	position: relative;
	background: var(--bg-color);
	border-radius: 10px;
	margin-bottom: 40px;
	overflow: hidden;
}

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

.faq-accordion .accordion-header .accordion-button {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	background: transparent;
	color: var(--primary-color);
	padding: 20px 54px 20px 30px;
}

.faq-accordion .accordion-item .accordion-button::after,
.faq-accordion .accordion-item .accordion-button.collapsed::after {
	content: '\2b';
	font-family: 'FontAwesome';
	position: absolute;
	right: 30px;
	top: 50%;
	font-size: 20px;
	font-weight: 400;
	transform: translateY(-50%);
	color: var(--accent-color);
	transition: all 0.4s ease-in-out;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
	content: '\f068';
	color: var(--primary-color);
}

.faq-accordion .accordion-item .accordion-body {
	border-top: 1px solid var(--divider-color);
	background: transparent;
	padding: 20px 30px;
}

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

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

.our-testimonials {
	background: #ffffff url(../images/testimonial-image-bg.png) no-repeat;
	background-position: bottom left;
	background-size: auto;
	padding: 100px 0;
	background-attachment: fixed;
}

.our-testimonial-content {
	position: sticky;
	top: 20px;
}

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

.testimonial-item {
	background-color: var(--white-color);
	border-radius: 10px;
	min-height: 520px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	padding: 40px;
}

.testimonial-company-logo img {
	width: 100%;
	max-width: 170px;
}

.testimonial-item-content p {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin-bottom: 0;
}

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

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

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

.testimonial-slider .testimonial-pagination {
	text-align: center;
	display: flex;
	margin-top: 40px;
	padding-bottom: 2px;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet {
	position: relative;
	height: 3px;
	width: 100%;
	background: var(--divider-color);
	border-radius: 0;
	opacity: 1;
	margin: 0;
	transition: all 0.3s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet:before {
	content: '';
	display: block;
	position: absolute;
	top: 0px;
	left: auto;
	right: 0;
	background: var(--accent-color);
	border-radius: 0;
	width: 0;
	height: 3px;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider .testimonial-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:before {
	width: 100%;
	right: auto;
	left: 0;
}

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

.our-blog {
	padding: 53px 0 70px;
	background: #f5f5f5;
}

.post-item {
    border-radius: 10px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: 0.4s;
}
.post-item:hover {
    transform: translateY(-5px);
}

.post-featured-image a,
.post-featured-image figure {
	position: relative;
	display: block;
	cursor: none;
}

.post-featured-image figure::before {
	/* content: ''; */
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	height: 100%;
	width: 100%;
	/* background: var(--primary-color); */
	/* opacity: 40%; */
	z-index: 1;
}

.post-featured-image img {
    width: 100%;
    /* aspect-ratio: 1 / 1.064; */
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: 0.6s;
    cursor: pointer;
}


.post-item:hover .post-featured-image img {
	/* transform: scale(1.08); */
}

.post-item-tags {
	position: absolute;
	top: 40px;
	left: 40px;
	z-index: 1;
}

.post-item-tags a {
	display: inline-block;
	font-family: var(--accent-font);
	font-weight: 500;
	line-height: 1.5em;
	color: var(--white-color);
	background: var(--divider-color);
	backdrop-filter: blur(30px) saturate(100%);
	-webkit-backdrop-filter: blur(30px) saturate(100%);
	border-radius: 5px;
	padding: 5px 14px;
	transition: all 0.4s ease-in-out;
}

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

.post-item-body {
    position: relative;   /* REMOVE absolute */
    padding: 25px;
    height: 310px;
}

.post-content-box {
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 25px;
	margin-bottom: 25px;
}

.post-item-meta ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.post-item-meta ul li {
	font-weight: 600;
	text-transform: uppercase;
	color: var(--white-color);
	margin-bottom: 10px;
}

.post-item-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #222;
}

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

.post-item-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}
.page-blog .readmore-btn {
    display: inline-block;
    padding: 10px 50px;
    background: #1a4d85;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.page-blog .readmore-btn:hover {
    background: var(--primary-color);
}
.post-item-btn a {
	color: var(--white-color);
}

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

.main-footer {
	position: relative;
	background-image: url('../images/footer-bg-image.jpg');
	overflow: hidden;
}

.main-footer::before,
.main-footer::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	z-index: 0;
}

.main-footer::before {
	background: var(--primary-color);
	opacity: 85%;
}

.main-footer::after {
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
}

.footer-scrolling-ticker {
	position: relative;
	background: #1d4b7d;
	padding: 23px 0;
	z-index: 1;
}

.scrolling-ticker-box {
	--gap: 20px;
	display: flex;
	overflow: hidden;
	user-select: none;
	gap: var(--gap);
	align-items: center;
}

.scrolling-content {
	flex-shrink: 0;
	display: flex;
	gap: var(--gap);
	min-width: 100%;
	animation: scroll 80s linear infinite;
}

.scrolling-content span {
	display: inline-flex;
	align-items: center;
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2em;
	color: #f7f7f7;
	text-transform: capitalize;
}

.scrolling-content span img {
	width: 100%;
	max-width: 30px;
	margin-right: 20px;
	animation: sparkelotate 3s linear infinite;
	filter: brightness(1) invert(1);
}

@keyframes sparkelotate {
	0% {
		transform: rotate(0) scale(1);
	}

	50% {
		transform: rotate(180deg) scale(0.5);
	}

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

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

	to {
		transform: translateX(calc(-100% - var(--gap)));
	}
}

.footer-box {
	position: relative;
	padding: 100px 0 0;
	z-index: 1;
}

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

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

.footer-working-hours {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 30px;
	padding-top: 30px;
}

.footer-working-hours h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 20px;
}

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

.footer-working-hours ul li {
	color: var(--white-color);
	font-weight: 500;
	line-height: 1.4em;
	margin-bottom: 10px;
}

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

.footer-links-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 40px 30px;
}

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

.footer-links p {
	color: var(--white-color);
	margin-bottom: 20px;
}

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

.footer-location-info {
	max-width: calc(26% - 20px);
}

.footer-contact-links {
	max-width: calc(34% - 20px);
}

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

.footer-contact-links ul li {
	display: flex;
	align-items: center;
	font-weight: 500;
	line-height: 1.5em;
	color: var(--white-color);
	margin-bottom: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid var(--dark-divider-color);
}

.footer-contact-links ul li:last-child {
	margin: 0;
	padding: 0;
	border-bottom: none;
}

.footer-contact-links ul li img {
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

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

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

.footer-newsletter-form {
	max-width: calc(40% - 20px);
}

.footer-newsletter-form .form-group {
	display: flex;
	background: transparent;
	border: 1px solid var(--dark-divider-color);
	border-radius: 10px;
	padding: 5px;
}

.footer-newsletter-form .form-group .form-control {
	width: calc(100% - 40px);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 6px 15px;
}

.footer-newsletter-form .form-group .form-control::placeholder {
	color: var(--white-color);
	opacity: 20%;
}

.footer-newsletter-form .form-group .newsletter-btn {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border: none;
	border-radius: 5px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn i {
	font-size: 20px;
	color: var(--primary-color);
	margin-right: 2px;
}

.footer-newsletter-form .form-group .newsletter-btn:hover {
	background-color: var(--white-color);
}

.footer-newsletter-form .form-group .newsletter-btn img {
	max-width: 16px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form .form-group .newsletter-btn:hover img {
	transform: rotate(45deg);
}

.footer-social-links {
	width: 100%;
	padding-top: 40px;
	border-top: 1px solid var(--dark-divider-color);
}

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

.footer-social-links ul li a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: var(--white-color);
	line-height: normal;
	background: var(--dark-divider-color);
	backdrop-filter: blur(180px);
	-webkit-backdrop-filter: blur(180px);
	border-radius: 10px;
	padding: 10px 16px;
	transition: all 0.4s ease-in-out;
}

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

.footer-social-links ul li a i {
	font-size: 20px;
	line-height: normal;
	color: inherit;
}

.footer-copyright {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 15px 30px;
	border-top: 1px solid var(--dark-divider-color);
	padding: 40px 0 60px;
	margin-top: 60px;
}

.footer-menu ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 40px;
	list-style: none;
	margin: 0;
	padding: 0;
}

.footer-menu ul li {
	color: var(--white-color);
	text-transform: capitalize;
	line-height: 1.5em;
}

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

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

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

/************************************/
/*** 	 17. About Us Page css 	  ***/
/************************************/

.page-header {
	position: relative;
	background: url('../images/page-header-bg.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 275px 0 170px;
}

.page-header:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	opacity: 60%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

.page-header-box {
	text-align: center;
}

.page-header-box h1 {
	display: inline-block;
	font-size: 52px;
	letter-spacing: -0.02em;
	color: var(--white-color);
	margin-bottom: 10px;
	cursor: none;
}

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

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

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

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

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

.approach-item {
	position: relative;
	background-color: var(--dark-divider-color);
	padding: 50px;
	border-radius: 10px;
	backdrop-filter: blur(30px);
	-webkit-backdrop-filter: blur(30px);
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.approach-item .icon-box {
	position: absolute;
	top: -20px;
	right: -20px;
}

.approach-item .icon-box img {
	width: 100%;
	max-width: 120px;
}

.approach-item-image {
	margin-bottom: 80px;
}

.approach-item-image figure {
	display: block;
	mask-repeat: no-repeat;
	mask-size: cover;
	mask-position: center center;
	width: 100%;
	max-width: 120px;
}

.approach-item.box-1 .approach-item-image figure {
	mask-image: url('../images/approach-item-shape-1.svg');
	background-image: url('../images/approach-item-shape-1.svg');
}

.approach-item.box-2 .approach-item-image figure {
	mask-image: url('../images/approach-item-shape-2.svg');
	background-image: url('../images/approach-item-shape-2.svg');
}

.approach-item.box-3 .approach-item-image figure {
	mask-image: url('../images/approach-item-shape-3.svg');
	background-image: url('../images/approach-item-shape-3.svg');
}

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

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

.approach-item-content p {
	color: var(--white-color);
	margin: 15px 0 0 0;
}

.approach-item-content ul {
	color: var(--white-color);
	list-style: none;
	margin: 30px 0 0 0;
	padding: 0;
}

.approach-item-content ul li {
	position: relative;
	line-height: 1.5em;
	margin-bottom: 15px;
	padding-left: 16px;
}

.approach-item-content ul li:last-child {
	margin-bottom: 0;
}

.approach-item-content ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	background: var(--accent-color);
	width: 6px;
	height: 6px;
}

.approach-item-list {
	border-top: 1px solid var(--dark-divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.approach-item-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.approach-item-list ul li {
	background-color: var(--dark-divider-color);
	padding: 12px 15px;
	border-radius: 5px;
	color: var(--white-color);
}

.our-values {
	padding: 100px 0;
}

.values-image-box {
	position: relative;
	height: 100%;
	padding: 30px 30px 0 0;
}

.values-image {
	height: 100%;
}

.values-image figure {
	display: block;
	height: 100%;
	border-radius: 10px;
}

.values-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.15;
	object-fit: cover;
	border-radius: 10px;
}

.lets-together-circle {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

.lets-together-circle a {
	display: inline-block;
	border: 5px solid var(--white-color);
	border-radius: 50%;
}

.lets-together-circle a img {
	width: 100%;
	max-width: 150px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.lets-together-circle a:hover img {
	animation-play-state: paused;
}

.value-counter-box {
	position: absolute;
	left: 20px;
	bottom: 20px;
	background-color: var(--divider-color);
	backdrop-filter: blur(30px) saturate(100%);
	-webkit-backdrop-filter: blur(30px) saturate(100%);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	border-radius: 10px;
	padding: 30px;
	z-index: 1;
}

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

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

.value-counter-box:hover .icon-box::before {
	border-radius: 0;
	transform: rotate(0) scale(1);
}

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

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

.value-counter-box-content {
	width: calc(100% - 75px);
}

.value-counter-box-content h2 {
	color: var(--white-color);
	font-size: 52px;
	line-height: 1em;
}

.value-counter-box-content p {
	color: var(--white-color);
	margin: 5px 0 0 0;
}

.our-values-content {
	margin-left: 15px;
}

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

.skills-progress-bar:last-child {
	margin-bottom: 0;
}

.skills-progress-bar .skill-data {
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

.skills-progress-bar .skill-data .skill-title,
.skills-progress-bar .skill-data .skill-no {
	line-height: normal;
	color: var(--primary-color);
	font-weight: 600;
	font-size: 20px;
	font-family: var(--accent-font);
}

.skills-progress-bar .skillbar .skill-progress {
	position: relative;
	width: 100%;
	height: 10px;
	background: var(--secondary-color);
	border-radius: 100px;
	overflow: hidden;
}

.skills-progress-bar .skillbar .skill-progress .count-bar {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 100px;
}

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

.values-item-author {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

.values-author-image figure {
	display: block;
	border-radius: 50%;
}

.values-author-image img {
	width: 100%;
	max-width: 50px;
	border-radius: 50%;
}

.values-author-content h3 {
	font-size: 20px;
}

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

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

.team-item {
	position: relative;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	border-radius: 10px;
	overflow: hidden;
}

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

.team-item-image figure {
	position: relative;
	display: block;
	border-radius: 10px;
}

.team-item-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 42.71%, rgba(0, 0, 0, 0.80) 85.3%);
	z-index: 1;
}

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

.team-item:hover .team-item-image img {
	transform: scale(1.08);
}

.team-item-content {
	position: absolute;
	left: 30px;
	right: 30px;
	bottom: 30px;
	text-align: center;
	z-index: 1;
}

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

.team-item-content h3 a {
	color: inherit;
}

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

.team-social-list {
	position: absolute;
	right: 20px;
	left: 20px;
	top: 50%;
	opacity: 0;
	visibility: hidden;
	transform: translateY(50%);
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-social-list {
	opacity: 1;
	visibility: visible;
	transform: translateY(-50%);
}

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

.team-social-list ul li a {
	background: var(--white-color);
	border-radius: 50%;
	color: var(--accent-color);
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-social-list ul li a i {
	font-size: 18px;
	color: inherit;
}

.team-social-list ul li a:hover {
	background: var(--accent-color);
	color: var(--primary-color);
}

/************************************/
/*** 	 18. Services Page css 	  ***/
/************************************/

.page-services {
	padding: 100px 0 70px;
}

.page-services .service-item {
	background-color: var(--secondary-color);
}

/************************************/
/*** 	19. Service Single css 	  ***/
/************************************/

.page-service-single {
	padding: 0px 0px 70px 0px;
}
.page-blog-single{
	padding: 70px 0;
}
.page-single-sidebar {
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

.page-category-list {
	background: var(--secondary-color);
	border-radius: 10px;
	margin-bottom: 60px;
	overflow: hidden;
}

.page-category-list h3 {
	font-size: 20px;
	background: #1a4d85;
	line-height: normal;
	color: #fff;
	padding: 20px 30px;
}

.page-category-list ul {
	list-style: none;
	margin: 0;
	padding: 30px;
}

.page-category-list ul li {
	line-height: 1.5em;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.page-category-list ul li:last-child {
	border-bottom: none;
	margin: 0;
	padding: 0;
}

.page-category-list ul li a {
	position: relative;
	display: block;
	text-transform: capitalize;
	color: var(--text-color);
	padding-right: 30px;
	transition: all 0.4s ease-in-out;
}

.page-category-list ul li a:hover {
	color: var(--primary-color);
}

.page-category-list ul li a::before {
	content: '';
	position: absolute;
	top: 2px;
	right: 0;
	background: url('../images/arrow-primary.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 18px;
	height: 18px;
	transition: all 0.4s ease-in-out;
	transform: rotate(-45deg);
}

.page-category-list ul li a:hover::before {
	transform: rotate(0);
}

.sidebar-cta-box {
	background: #1a4d85ab;
	color: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.sidebar-cta-title {
	background: #1d4b7d;
	padding: 20px 40px;
}

.sidebar-cta-title h3 {
	font-size: 20px;
	line-height: normal;
	color: var(--white-color);
}

.sidebar-cta-body {
	padding: 40px;
}

.sidebar-cta-body-content ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.sidebar-cta-body-content ul li {
	display: flex;
	align-items: center;
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.5em;
	color: #ffffff;
	align-items: center;
	margin-bottom: 25px;
}

.sidebar-cta-body-content ul li:last-child {
	margin-bottom: 0;
}

.sidebar-cta-body-content ul li img {
	width: 100%;
	max-width: 30px;
	margin-right: 15px;
	filter: brightness(0) invert(1);
}

.sidebar-cta-body-content ul li a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.sidebar-cta-body-content ul li a:hover {
	color: var(--white-color);
}

.sidebar-cta-body-image {
	margin-top: 50px;
	text-align: right;
}

.sidebar-cta-body-image figure {
	display: block;
	margin: 0 -40px -40px 0;
}

.sidebar-cta-body-image img {
	width: 100%;
	max-width: 240px;
}

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

.page-single-image figure {
	display: block;
	border-radius: 10px;
}

.page-single-image img {
	width: 100%;
	/* aspect-ratio: 1 / 0.568; */
	object-fit: cover;
	border-radius: 10px;
}

.service-entry {
	/* margin-bottom: 60px; */
}

.service-entry p {
	margin-bottom: 20px;
	text-align: justify;
}

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

.service-entry h2 {
	font-size: 38px;
	letter-spacing: -0.04em;
	margin-bottom: 20px;
}

.service-entry h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.service-entry ul {
	/* display: flex; */
	/* flex-wrap: wrap; */
	gap: 15px 20px;
	list-style: none;
	padding: 0;
	margin: 20px 0 0 0;
}

.service-entry ul li {
	position: relative;
	/* width: calc(50% - 10px); */
	line-height: 1.5em;
	padding-left: 16px;
}

.service-entry ul li::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	background: var(--accent-color);
	width: 6px;
	height: 6px;
}
.service-entry a{
	color: #1a4d85;
}
.service-why-choose-box,
.service-offer-box,
.service-process-box {
	margin-top: 60px;
}

.service-why-choose-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-why-choose-item {
	display: flex;
	flex-wrap: wrap;
	width: calc(50% - 15px);
	gap: 20px;
}

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

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

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

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

.service-why-choose-item:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.service-why-choose-item-content {
	width: calc(100% - 80px);
}

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

.service-offer-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-offer-item {
	position: relative;
	width: calc(50% - 15px);
}

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

.service-offer-item-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 60.52%, rgba(0, 0, 0, 0.80) 88.79%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

.service-offer-item-image img {
	width: 100%;
	aspect-ratio: 1 / 0.7;
	object-fit: cover;
	border-radius: 10px;
}

.service-offer-item-content {
	position: absolute;
	right: 30px;
	bottom: 30px;
	left: 30px;
	z-index: 1;
}

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

.service-process-box {
	background: var(--secondary-color);
	border-radius: 10px;
	padding: 40px;
}

.service-process-image-content {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-process-content,
.service-process-image {
	width: calc(50% - 15px);
}

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

.service-process-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

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

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

.service-process-item:hover .icon-box::before {
	border-radius: 0%;
	transform: rotate(0) scale(1);
}

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

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

.service-process-item-content {
	width: calc(100% - 80px);
}

.service-process-image figure {
	display: block;
	height: 100%;
	border-radius: 10px;
}

.service-process-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
	border-radius: 10px;
}

/************************************/
/*** 	 20. Blog Archive css 	  ***/
/************************************/

.page-blog {
	padding: 100px 0;
}

.page-pagination {
	margin-top: 30px;
	text-align: center;
}

.page-pagination ul {
	justify-content: center;
	padding: 0;
	margin: 0;
}

.page-pagination ul li a,
.page-pagination ul li span {
	display: flex;
	text-decoration: none;
	justify-content: center;
	align-items: center;
	background: var(--secondary-color);
	color: var(--primary-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	margin: 0 5px;
	font-weight: 600;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

.page-pagination ul li.active a,
.page-pagination ul li a:hover {
	background: var(--accent-color);
}

/************************************/
/*** 	21. Blog Single css 	  ***/
/************************************/

.page-single-post {
	padding: 100px 0;
}

.post-single-meta {
	margin-top: 5px;
}

.post-single-meta ol li {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 15px;
}

.post-single-meta ol li:last-child {
	margin-right: 0;
}

.post-single-meta ol li i {
	font-size: 18px;
	color: var(--white-color);
	margin-right: 5px;
}

.post-image {
	position: relative;
	margin-bottom: 30px;
}

.post-image figure {
	display: block;
	border-radius: 10px;
	overflow: hidden;
}

.post-image img {
	width: 100%;
	aspect-ratio: 1 / 0.50;
	object-fit: cover;
	border-radius: 10px;
}

.post-content {
	width: 100%;
	max-width: 1250px;
	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: 600;
	line-height: 1.2em;
	margin: 0 0 0.42em;
}

.post-entry h1 {
	font-size: 52px;
}

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

.post-entry h3 {
	font-size: 40px;
}

.post-entry h4 {
	font-size: 30px;
}

.post-entry h5 {
	font-size: 24px;
}

.post-entry h6 {
	font-size: 20px;
}

.post-entry p {
	margin-bottom: 20px;
}

.post-entry p:last-child {
	margin-bottom: 0;
}

.post-entry p strong {
	color: var(--primary-color);
	font-size: 18px;
	font-weight: 600;
}

.post-entry ol {
	margin: 0 0 30px;
}

.post-entry ul {
	padding: 0;
	margin: 20px 0 20px;
	padding-left: 20px;
}

.post-entry ol li,
.post-entry ul li {
	position: relative;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.5em;
	color: var(--text-color);
	margin-bottom: 15px;
}

.post-entry ul li:last-child {
	margin-bottom: 0;
}

.post-entry ul ul,
.post-entry ul ol,
.post-entry ol ol,
.post-entry ol ul {
	margin-top: 20px;
	margin-bottom: 0;
}

.post-entry ul ul li:last-child,
.post-entry ul ol li:last-child,
.post-entry ol ol li:last-child,
.post-entry ol ul li:last-child {
	margin-bottom: 0;
}

.post-entry blockquote {
	background: var(--accent-color) url('../images/icon-blockquote.svg');
	background-repeat: no-repeat;
	background-position: 30px 30px;
	background-size: 45px;
	border-radius: 10px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	color: var(--primary-color);
}

.post-entry blockquote p:last-child {
	margin-bottom: 0;
}

.tag-links {
	font-family: var(--accent-font);
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	color: var(--primary-color);
	display: inline-flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 15px;
}

.post-tags .tag-links a {
	display: inline-block;
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1em;
	background: var(--accent-color);
	color: var(--primary-color);
	border-radius: 10px;
	padding: 12px 20px;
	transition: all 0.4s ease-in-out;
}

.post-tags .tag-links a:hover {
	background: var(--primary-color);
	color: var(--white-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(--primary-color);
	border-radius: 10px;
	width: 40px;
	height: 40px;
	transition: all 0.4s ease-in-out;
}

.post-social-sharing ul li:hover a {
	background: var(--primary-color);
	color: var(--white-color);
}

.post-social-sharing ul li a i {
	font-size: 18px;
	color: inherit;
}

/************************************/
/*** 	 22. Projects Page css 	  ***/
/************************************/

.page-projects {
	padding: 100px 0 70px;
}

/************************************/
/*** 	23. Project Single css 	  ***/
/************************************/

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

.project-category-item-list {
	padding: 30px;
}

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

.project-category-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.project-category-item .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 5px;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

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

.project-category-item:hover .icon-box::before {
	transform: rotate(0) scale(1);
}

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

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

.project-category-item-content {
	width: calc(100% - 45px);
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 5px;
}

.project-category-item-content h4 {
	font-size: 16px;
	line-height: normal;
}

.project-category-item-content p {
	margin-bottom: 0;
}

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

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

.project-entry h2 {
	font-size: 48px;
	letter-spacing: -0.04em;
	margin-bottom: 20px;
}

.project-entry h3 {
	font-size: 20px;
	margin-bottom: 10px;
}

.project-entry p:last-child,
.project-entry h2:last-child,
.project-entry h3:last-child {
	margin-bottom: 0;
}

.project-features-box,
.project-process-box,
.project-issue-box {
	margin-top: 60px;
}

.project-feature-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.project-feature-item {
	width: calc(33.33% - 20px);
	background: var(--secondary-color);
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 40px;
	text-align: center;
	border-radius: 10px;
	overflow: hidden;
	padding: 30px;
}

.project-feature-item-body .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 5px;
	width: 50px;
	height: 50px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-bottom: 30px;
}

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

.project-feature-item:hover .project-feature-item-body .icon-box::before {
	transform: rotate(0) scale(1);
}

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

.project-feature-item:hover .project-feature-item-body .icon-box img {
	filter: brightness(0) invert(1);
}

.project-feature-item-image {
	margin: 0 -30px -30px;
}

.project-feature-item-image figure {
	mask-image: url('../images/project-feature-image-shape.svg');
	background-image: url('../images/project-feature-image-shape.svg');
	display: block;
	mask-size: cover;
	mask-position: center center;
	mask-repeat: no-repeat;
	width: 100%;
	height: 100%;
}

.project-feature-item-image img {
	width: 100%;
	object-fit: cover;
}

.project-features-box .section-footer-text {
	margin-top: 60px;
}

.project-process-item-list {
	margin-top: 40px;
}

.project-process-item {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	background: var(--secondary-color);
	border-radius: 10px;
	padding: 30px;
	margin-bottom: 30px;
}

.project-process-item:last-child {
	margin-bottom: 0;
}

.project-process-item-no {
	position: relative;
	background: var(--accent-color);
	border-radius: 5px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

.project-process-item-no::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: var(--primary-color);
	width: 100%;
	height: 100%;
	transform: rotate(180deg) scale(0);
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.project-process-item:hover .project-process-item-no::before {
	transform: rotate(0) scale(1);
}

.project-process-item-no h4 {
	position: relative;
	font-size: 30px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.project-process-item:hover .project-process-item-no h4 {
	color: var(--white-color);
}

.project-process-item-content {
	width: calc(100% - 80px);
}

.project-issue-boxes {
	display: flex;
	flex-wrap: wrap;
	gap: 30px 60px;
	margin-top: 40px;
}

.project-issue-box-item {
	position: relative;
	width: calc(50% - 30px);
}

.project-issue-box-item::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -30px;
	background: var(--divider-color);
	width: 1px;
	height: 100%;
}

.project-issue-box-item:nth-child(2n + 2):before,
.project-issue-box-item:last-child:before {
	display: none;
}

.project-issue-box-title {
	margin-bottom: 30px;
}

.project-issue-item {
	margin-bottom: 25px;
}

.project-issue-item:last-child {
	margin-bottom: 0;
}

.project-issue-item h4 {
	position: relative;
	font-size: 16px;
	line-height: normal;
	padding-left: 25px;
	margin-bottom: 10px;
}

.project-issue-item h4::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 7 Free';
	font-size: 16px;
	font-weight: 900;
	color: var(--accent-color);
	top: 3px;
	left: 0;
}

/************************************/
/*** 	  24. Team Page css 	  ***/
/************************************/

.page-team {
	padding: 100px 0 70px;
}

/************************************/
/*** 	25. Team Single css 	  ***/
/************************************/

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

.team-sidebar-box {
	border-radius: 10px;
	overflow: hidden;
}

.team-sidebar-image figure {
	display: block;
}

.team-sidebar-image img {
	width: 100%;
	aspect-ratio: 1 / 1.03;
	object-fit: cover;
}

.team-sidebar-body {
	background-color: var(--secondary-color);
	padding: 30px;
}

.team-sidebar-body ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.team-sidebar-body ul li {
	width: 100%;
	display: inline-flex;
	gap: 10px;
	line-height: 1.4em;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
}

.team-sidebar-body ul li:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.team-sidebar-body ul li span {
	min-width: 30%;
	font-family: var(--accent-font);
	text-transform: capitalize;
	font-weight: 600;
	color: var(--primary-color);
}

.team-sidebar-footer {
	background-color: var(--accent-color);
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 20px 30px;
}

.team-sidebar-footer h3 {
	font-size: 16px;
	min-width: 30%;
}

.team-sidebar-footer ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.team-sidebar-footer ul li a {
	border: 1px solid var(--primary-color);
	border-radius: 50%;
	width: 36px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.team-sidebar-footer ul li a:hover {
	background-color: var(--primary-color);
}

.team-sidebar-footer ul li a i {
	font-size: 18px;
	color: var(--primary-color);
	transition: all 0.3s ease-in-out;
}

.team-sidebar-footer ul li a:hover i {
	color: var(--accent-color);
}

.team-member-about,
.team-experience-box,
.team-member-info-box {
	margin-bottom: 60px;
}

.team-member-about .section-title {
	margin-bottom: 0;
}

.team-experience-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.team-experience-item {
	width: calc(50% - 15px);
	background: var(--secondary-color);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	padding: 20px;
}

.team-experience-item .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 5px;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

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

.team-experience-item:hover .icon-box::before {
	transform: rotate(0) scale(1);
}

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

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

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

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

.team-member-info-box {
	display: flex;
	flex-wrap: wrap;
	gap: 60px 50px;
}

.team-skills-box {
	width: calc(48% - 25px);
}

.team-values-info {
	width: calc(52% - 25px);
}

.team-values-info-list ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.team-values-info-list ul li {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	line-height: 1.5em;
	margin-bottom: 30px;
	padding-left: 25px;
}

.team-values-info-list ul li:last-child {
	margin-bottom: 0;
}

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

.team-values-info-list ul li span {
	font-family: var(--accent-font);
	width: 36%;
	font-weight: 600;
	color: var(--primary-color);
}

.team-contact-form.contact-us-form {
	margin: 0;
}

/************************************/
/*** 	 26. Pricing Page css 	  ***/
/************************************/

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

.page-pricing .pricing-item {
	background-color: var(--secondary-color);
}

.page-pricing .pricing-item-header {
	background-color: var(--white-color);
}

.page-pricing .pricing-item-header .icon-box::before {
	background-color: var(--secondary-color);
}

.page-pricing .pricing-item-header p,
.page-pricing .pricing-item-header h2 sub,
.page-pricing .pricing-item-list ul li,
.page-pricing .pricing-benefit-list ul li {
	color: var(--text-color);
}

.page-pricing .pricing-item-header h2,
.page-pricing .pricing-item-list h3,
.page-pricing .pricing-item.highlighted-box .pricing-item-header h2 sub {
	color: var(--primary-color);
}

.page-pricing .pricing-item-list ul {
	border-color: var(--divider-color);
}

/************************************/
/***  27. Testimonials Page css   ***/
/************************************/

.page-testimonials {
	padding: 100px 0 70px;
}

.page-testimonials .testimonial-item {
	background-color: var(--secondary-color);
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

/************************************/
/*** 	 28. Image Gallery css 	  ***/
/************************************/

.page-gallery {
	padding: 100px 0 70px;
}

.page-gallery-box .photo-gallery {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.page-gallery-box .photo-gallery a {
	cursor: none;
}

.page-gallery-box .photo-gallery figure {
	display: block;
	border-radius: 12px;
}

.page-gallery-box .photo-gallery img {
	width: 100%;
	aspect-ratio: 1 / 0.81;
	object-fit: cover;
	border-radius: 12px;
}

/************************************/
/*** 	29. Video Gallery css 	  ***/
/************************************/

.page-video-gallery {
	padding: 100px 0 70px;
}

.video-gallery-image {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.video-gallery-image a {
	position: relative;
	display: block;
	cursor: none;
}

.video-gallery-image a::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: var(--primary-color);
	border-radius: 10px;
	opacity: 0%;
	visibility: hidden;
	width: 100%;
	height: 100%;
	z-index: 1;
	transform: scale(0);
	transition: all 0.4s ease-in-out;
}

.video-gallery-image:hover a::before {
	opacity: 50%;
	visibility: visible;
	transform: scale(1);
}

.video-gallery-image a::after {
	content: '\f04b';
	font-family: 'FontAwesome';
	position: absolute;
	top: 50%;
	left: 50%;
	right: 0;
	transform: translate(-50%, -50%);
	font-size: 20px;
	background: var(--accent-color);
	color: var(--primary-color);
	border-radius: 50%;
	height: 60px;
	width: 60px;
	cursor: none;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	visibility: hidden;
	transition: all 0.5s ease-in-out;
	z-index: 1;
}

.video-gallery-image:hover a::after {
	opacity: 1;
	visibility: visible;
}

.video-gallery-image img {
	width: 100%;
	aspect-ratio: 1 / 0.81;
	object-fit: cover;
	border-radius: 10px;
}

/************************************/
/*** 	 30. FAQs Page css 		  ***/
/************************************/

.page-faqs {
	padding: 100px 0;
}

.page-faqs-catagery .page-single-faqs {
	margin-bottom: 60px;
}

.page-faqs-catagery .page-single-faqs:last-child {
	margin-bottom: 0px;
}

/************************************/
/***   31. Contact Us Page css 	  ***/
/************************************/

.page-contact-us {
	padding: 100px 0;
}

.contact-info-list {
	max-width: 510px;
}

.contact-info-item {
	display: flex;
	/* flex-wrap: wrap; */
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 6px;
	margin-bottom: 40px;
}

.contact-info-item:last-child {
	padding-bottom: 0px;
	margin-bottom: 0px;
	border-bottom: none;
}

.contact-info-item .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 5px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	overflow: hidden;
}

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

.contact-info-item:hover .icon-box::before {
	border-radius: 0;
	transform: rotate(0) scale(1);
}

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

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

.contact-info-item-content {
	width: calc(100% - 80px);
}

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

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

.contact-info-item-content p a {
	color: inherit;
	transition: all 0.4s ease-in-out;
}

.contact-info-item-content p a:hover {
	color: var(--accent-color);
}

.contact-us-form {
	background-color: var(--secondary-color);
	border-radius: 10px;
	padding: 3.125vw;
	margin-left: 30px;
}


.contact-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.125em;
	color: var(--text-color);
	background: var(--white-color);
	border: none;
	border-radius: 10px;
	padding: 21px 20px;
	box-shadow: none;
	outline: none;
}

.contact-form .form-control::placeholder {
	color: var(--text-color);
}

.google-map .container-fluid {
	padding: 0;
}

.google-map-iframe,
.google-map-iframe iframe {
	width: 100%;
	height: 700px;
}

/************************************/
/***   32. 404 Error Page css	  ***/
/************************************/

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

.error-page-image {
	text-align: center;
	margin-bottom: 30px;
}

.error-page-image img {
	width: 100%;
	max-width: 830px;
}

.error-page-content {
	text-align: center;
}

.error-page-content .section-title {
	margin-bottom: 15px;
}

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

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

	.container {
		max-width: 1300px;
	}

	.hero-info-content-box {
		padding: 10px;
	}

	.hero-info-item.box-3 {
		padding: 30px;
	}

	.about-us-body {
		padding: 25px 30px 25px 20px;
	}

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

	.about-us-footer-content {
		width: calc(56% - 10px);
	}

	.about-footer-content-list ul li {
		margin-bottom: 15px;
	}

	.about-us-video-box {
		width: calc(44% - 10px);
	}

	.service-item-header {
		padding: 5px;
	}

	.what-we-do-item {
		padding: 20px;
	}

	.what-we-do-item .icon-box {
		margin-bottom: 30px;
	}

	.our-story {
		padding: 150px 0;
	}

	.watch-video-circle {
		margin-top: 150px;
	}

	.feature-item {
		padding: 30px;
	}

	.feature-item-info-content h3 {
		font-size: 26px;
	}

	.feature-item-image figure {
		margin: 0 -30px -30px -100px;
	}

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

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

	.cta-box {
		padding: 100px 0;
	}

	.cta-box-image {
		margin-top: -100px;
	}

	.cta-box-image figure img {
		max-width: 150px;
	}

	.faq-accordion {
		padding: 30px;
	}

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

	.testimonial-item {
		min-height: 470px;
		padding: 30px;
	}

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

	.post-item-tags {
		top: 30px;
		left: 30px;
	}

	.post-item-body {
		/* right: 30px; */
		/* bottom: 30px; */
		/* left: 30px; */
	}

	.approach-item {
		padding: 30px;
	}

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

	.approach-item-image {
		margin-bottom: 60px;
	}

	.value-counter-box {
		padding: 20px;
	}

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

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

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

	.page-category-list h3,
	.page-category-list ul {
		padding: 20px;
	}

	.sidebar-cta-title {
		padding: 20px;
	}

	.sidebar-cta-body {
		padding: 30px;
	}

	.sidebar-cta-body-image figure {
		margin: 0 -30px -30px 0;
	}

	.post-content {
		max-width: 1100px;
	}

	.project-category-item-list {
		padding: 20px;
	}

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

	.project-feature-item-image {
		margin: 0 -20px -20px;
	}

	.team-experience-item-list {
		gap: 20px;
	}

	.team-experience-item {
		width: calc(50% - 10px);
		padding: 12px;
		gap: 10px;
	}

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

	.team-skills-box,
	.team-values-info {
		width: 100%;
	}

	.team-values-info-list ul li {
		margin-bottom: 20px;
	}
}

@media (max-width:1366px) {
	.project-image img {
		height: auto !important;
	}

}

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

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

	.hero-info-item {
		width: calc(50% - 15px);
	}

	.hero-info-item.box-1 {
		width: 100%;
	}

	.about-us-image-box {
		height: auto;
		margin: 0 0 30px;
	}

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

	.about-us-image-box-1 .about-us-image img {
		aspect-ratio: 1 / 1.02;
	}

	.about-us-image-box-2 .about-us-image img {
		aspect-ratio: 1 / 1.05;
	}

	.about-video-image img {
		aspect-ratio: 1 / 0.5;
	}

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

	.what-we-do-image {
		max-width: 540px;
		margin: 0 auto;
	}

	.watch-video-circle {
		margin-top: 100px;
	}

	.feature-item {
		gap: 30px;
	}

	.feature-item-shape-image figure {
		width: 170px;
		height: 85px;
	}

	.our-faqs-content {
		height: auto;
		padding: 0;
		margin-bottom: 30px;
	}

	.our-testimonials {
		background-size: 400px auto;
	}

	.our-testimonial-content {
		position: initial;
		margin-bottom: 40px;
	}

	.testimonial-item {
		min-height: 400px;
	}

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

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

	.footer-working-hours {
		margin-top: 20px;
		padding-top: 20px;
	}

	.footer-links-box {
		gap: 30px;
	}

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

	.values-image-box {
		margin: 0 0 30px 0;
		height: auto;
	}

	.values-image {
		height: auto;
	}

	.values-image img {
		height: auto;
		aspect-ratio: 1 / 0.7;
	}

	.our-values-content {
		margin-left: 0;
	}

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

	.team-item-content {
		left: 20px;
		right: 20px;
		bottom: 20px;
	}

	.page-single-sidebar {
		margin: 0;
	}

	.page-category-list ul li {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.sidebar-cta-body {
		padding: 20px;
	}

	.sidebar-cta-body-content ul li {
		font-size: 18px;
		margin-bottom: 15px;
	}

	.sidebar-cta-body-content ul li img {
		max-width: 24px;
		margin-right: 10px;
	}

	.sidebar-cta-body-image figure {
		margin: 0 -20px -20px 0;
	}

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

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

	.service-why-choose-box,
	.service-offer-box,
	.service-process-box {
		margin-top: 40px;
	}

	.service-why-choose-item-list {
		margin-top: 30px;
		gap: 30px 20px;
	}

	.service-why-choose-item {
		width: calc(50% - 10px);
		gap: 15px;
	}

	.service-why-choose-item .icon-box {
		width: 45px;
		height: 45px;
	}

	.service-why-choose-item .icon-box img {
		max-width: 24px;
	}

	.service-why-choose-item-content {
		width: calc(100% - 60px);
	}

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

	.service-offer-item-image img {
		aspect-ratio: 1 / 0.95;
	}

	.service-offer-item-content {
		right: 20px;
		bottom: 20px;
		left: 20px;
	}

	.service-process-box {
		padding: 30px;
	}

	.service-process-image-content {
		margin-top: 30px;
	}

	.service-process-content,
	.service-process-image {
		width: 100%;
	}

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

	.project-category-item {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.project-category-item-content h4 {
		width: 100%;
	}

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

	.project-features-box,
	.project-process-box,
	.project-issue-box {
		margin-top: 40px;
	}

	.project-feature-item-list {
		margin-top: 30px;
	}

	.project-feature-item {
		width: calc(50% - 15px);
		gap: 30px;
	}

	.project-feature-item-body .icon-box {
		margin-bottom: 20px;
	}

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

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

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

	.project-issue-boxes {
		margin-top: 30px;
	}

	.team-sidebar-body,
	.team-sidebar-footer {
		padding: 20px;
	}

	.team-sidebar-body ul li span {
		width: 34%;
	}

	.team-member-about,
	.team-experience-box,
	.team-member-info-box {
		margin-bottom: 60px;
	}

	.team-member-about,
	.team-experience-box,
	.team-member-info-box {
		margin-bottom: 40px;
	}

	.team-member-info-box {
		gap: 40px;
	}

	.contact-us-content {
		margin-bottom: 30px;
	}

	.contact-info-item {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.contact-us-form {
		margin-left: 0;
		padding: 35px;
	}

	.google-map-iframe,
	.google-map-iframe iframe {
		height: 550px;
	}
}

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

	.btn-default {
		font-size: 16px;
		padding: 15px 51px 15px 16px;
	}

	.btn-default::before {
		width: 36px;
		height: 36px;
		right: 5px;
		background-size: 18px auto;
	}

	header.main-header {
		top: 0;
	}

	header.main-header .header-sticky.active {
		border-radius: 0;
	}

	.navbar {
		padding: 20px 0;
	}

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

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

	.header-btn {
		display: none;
	}

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

	.section-content-btn .section-btn {
		margin-top: 20px;
	}

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

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

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

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

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

	.section-btn {
		text-align: left;
		margin-top: 15px;
	}

	.hero {
		padding: 140px 0 150px;
	}

	.year-experience-circle img {
		max-width: 100px;
	}

	.hero-info-box {
		margin-top: -100px;
	}

	.hero-info-item.box-3 {
		padding: 20px;
	}

	.hero-info-header .icon-box {
		width: 50px;
		height: 50px;
	}

	.hero-info-header .icon-box img {
		max-width: 24px;
	}

	.hero-info-counter-box h2 {
		font-size: 40px;
	}

	.hero-info-bg-icon img {
		max-width: 80px;
	}

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

	.about-body-item {
		gap: 15px;
	}

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

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

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

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

	.about-footer-content-list ul li {
		margin-bottom: 10px;
	}

	.our-services {
		background-size: 250px auto;
		padding: 50px 0;
	}

	.service-item {
		gap: 15px;
	}

	.service-benefit-box {
		margin-top: 10px;
	}

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

	.service-benefit-list ul li {
		padding: 6px 14px 6px 30px;
	}

	.service-benefit-list ul li::before {
		left: 14px;
	}

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

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

	.service-benefit-box .section-footer-text {
		margin-top: 20px;
	}

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

	.what-we-do-item {
		padding: 20px;
	}

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

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

	.what-we-do-btn {
		margin-top: 30px;
	}

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

	.our-story {
		padding: 100px 0;
	}

	.watch-video-circle a img {
		max-width: 120px;
	}

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

	.our-features .section-title h2 .feature-title-img-1 {
		width: 30px;
		height: 30px;
	}

	.our-features .section-title h2 .feature-title-img-1 img {
		max-width: 14px;
	}

	.our-features .section-title h2 .feature-title-img-2 img {
		max-width: 30px;
	}

	.our-features .section-title h2 .feature-title-img-3 img {
		max-width: 30px;
	}

	.feature-item {
		padding: 20px;
	}

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

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

	.feature-item-image figure {
		margin: 0 -20px -20px -100px;
	}

	.feature-item-content h2 {
		font-size: 42px;
	}

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

	.pricing-item,
	.pricing-item-header {
		padding: 15px;
	}

	.pricing-item-header .icon-box {
		height: 50px;
		width: 50px;
		margin-bottom: 20px;
	}

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

	.pricing-item-content p {
		margin-bottom: 10px;
	}

	.pricing-item-content h2 {
		font-size: 36px;
	}

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

	.pricing-item-body {
		padding: 30px 5px 5px;
	}

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

	.pricing-item.highlighted-box .pricing-item-header::before {
		top: 15px;
		right: 15px;
		font-size: 14px;
		padding: 6px 12px;
	}

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

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

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

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

	.project-nav ul {
		gap: 10px 32px;
	}

	.project-nav ul li a:before {
		right: -20px;
	}

	.project-item-content {
		bottom: 30px;
		right: 30px;
		left: 30px;
	}

	.project-item-btn {
		top: 30px;
		right: 30px;
	}

	.project-item-btn a {
		width: 50px;
		height: 50px;
	}

	.project-item-btn a img {
		max-width: 20px;
	}

	.cta-box {
		padding: 50px 0;
	}

	.cta-box-content {
		margin-right: 0;
	}

	.cta-box-items-list {
		padding-top: 30px;
	}

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

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

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

	.cta-box-btn {
		margin-top: 40px;
	}

	.cta-box-image {
		margin-top: -50px;
	}

	.cta-box-image figure img {
		max-width: 100px;
	}

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

	.faq-accordion {
		padding: 20px;
	}

	.faq-accordion .accordion-header .accordion-button {
		padding: 15px 44px 15px 20px;
	}

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		right: 20px;
	}

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

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

	.our-testimonial-content {
		margin-bottom: 30px;
	}

	.testimonial-item {
		padding: 30px;
	}

	.testimonial-company-logo img {
		width: 100%;
		max-width: 150px;
	}

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

	.testimonial-slider .testimonial-pagination {
		margin-top: 30px;
	}

	.our-blog {
		padding: 50px 0 20px;
	}

	.post-item-tags {
		top: 20px;
		left: 20px;
	}

	.post-item-body {
		/* right: 20px; */
		/* bottom: 20px; */
		/* left: 20px; */
	}

	.post-content-box {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

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

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

	.footer-box {
		padding: 50px 0 0;
	}

	.footer-location-info,
	.footer-contact-links {
		max-width: 100%;
		width: calc(50% - 15px);
	}

	.footer-newsletter-form {
		max-width: 100%;
		width: 100%;
	}

	.footer-social-links ul li a {
		padding: 8px 12px;
	}

	.footer-social-links ul li a i {
		font-size: 18px;
	}

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

	.footer-menu ul {
		gap: 10px 25px;
	}

	.page-header {
		padding: 170px 0 80px;
	}

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

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

	.approach-item {
		padding: 20px;
	}

	.approach-item .icon-box {
		top: -10px;
		right: -10px;
	}

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

	.approach-item-image {
		margin-bottom: 30px;
	}

	.approach-item-content p {
		margin-top: 10px;
	}

	.approach-item-content ul {
		margin-top: 20px;
	}

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

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

	.our-values {
		padding: 50px 0;
	}

	.lets-together-circle img {
		max-width: 120px;
	}

	.value-counter-box {
		padding: 20px;
	}

	.value-counter-box .icon-box {
		width: 50px;
		height: 50px;
	}

	.value-counter-box .icon-box img {
		max-width: 24px;
	}

	.value-counter-box-content {
		width: calc(100% - 65px);
	}

	.value-counter-box-content h2 {
		font-size: 40px;
		margin-bottom: 5px;
	}

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

	.page-services {
		padding: 50px 0 20px;
	}

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

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

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

	.page-category-list h3,
	.sidebar-cta-title {
		padding: 15px 20px;
	}

	.sidebar-cta-body-image {
		margin-top: 20px;
	}

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

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

	.service-process-item {
		gap: 15px;
	}

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

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

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

	.page-blog {
		padding: 50px 0;
	}

	.page-pagination {
		margin-top: 10px;
	}

	.page-single-post {
		padding: 50px 0;
	}

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

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

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

	.post-entry ol li,
	.post-entry ul li {
		font-size: 16px;
		margin-bottom: 10px;
	}

	.post-entry blockquote {
		background-position: 20px 20px;
		background-size: 40px;
		padding: 20px 20px 20px 70px;
		margin-bottom: 20px;
	}

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

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

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

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

	.page-projects {
		padding: 50px 0 20px;
	}

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

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

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

	.project-process-item {
		gap: 15px;
	}

	.project-process-item-no {
		width: 50px;
		height: 50px;
	}

	.project-process-item-no h4 {
		font-size: 24px;
	}

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

	.project-issue-box-title {
		margin-bottom: 20px;
	}

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

	.page-team {
		padding: 50px 0 20px;
	}

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

	.team-sidebar-body ul li {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.team-sidebar-footer {
		padding: 15px 20px;
	}

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

	.page-testimonials {
		padding: 50px 0 20px;
	}

	.page-gallery {
		padding: 50px 0 20px;
	}

	.page-video-gallery {
		padding: 50px 0 20px;
	}

	.page-faqs {
		padding: 50px 0;
	}

	.page-faqs-catagery .page-single-faqs {
		margin-bottom: 40px;
	}

	.page-contact-us {
		padding: 50px 0;
	}

	.contact-info-item .icon-box {
		width: 50px;
		height: 50px;
	}

	.contact-info-item .icon-box img {
		max-width: 24px;
	}

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

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

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

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

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

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

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

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

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

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

	.video-play-button h3 {
		font-size: 16px;
	}

	.hero .year-experience-circle {
		display: none;
	}

	.hero-info-list {
		gap: 20px;
	}

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

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

	.hero-info-header {
		margin-bottom: 30px;
	}

	.hero-info-counter-box h3 {
		font-size: 18px;
	}

	.hero-info-counter-box h2 {
		font-size: 28px;
	}

	.hero-info-bg-icon {
		bottom: -10px;
		right: -10px;
	}

	.hero-info-bg-icon img {
		max-width: 60px;
	}

	.about-us-image-box-1 .about-us-image img {
		aspect-ratio: 1 / 1.47;
	}

	.about-us-image-box-2 .about-us-image {
		margin-top: 40px;
		margin-left: -110px;
	}

	.about-us-body {
		gap: 20px;
		padding: 20px 15px;
		border-width: 5px;
	}

	.about-body-item {
		width: 100%;
	}

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

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

	.about-us-footer-content {
		width: 100%;
	}

	.about-us-video-box {
		width: 100%;
	}

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

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

	.service-benefit-list ul li {
		padding: 4px 10px 4px 26px;
	}

	.service-benefit-list ul li::before {
		left: 10px;
	}

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

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

	.what-we-do-item {
		width: 100%;
	}

	.our-story {
		padding: 50px 0;
	}

	.watch-video-circle {
		margin-top: 50px;
	}

	.watch-video-circle a img {
		max-width: 100px;
	}

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

	.feature-item-content h2 {
		font-size: 30px;
	}

	.feature-item-info-content p {
		margin-bottom: 5px;
	}

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

	.feature-item-btn {
		margin-top: 20px;
	}

	.feature-item-image figure {
		margin: 50px -20px -20px -50px;
	}

	.feature-item-image img {
		max-width: 200px;
	}

	.feature-item-tag-list ul li {
		padding: 3px 10px;
	}

	.pricing-item-content p,
	.pricing-item-list h3 {
		font-size: 18px;
	}

	.pricing-item-content h2 {
		font-size: 28px;
	}

	.pricing-item-content h2 sub {
		font-size: 16px;
	}

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

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

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

	.project-nav {
		margin-bottom: 30px;
	}

	.project-nav ul {
		gap: 10px 20px;
	}

	.project-nav ul li a {
		font-size: 14px;
	}

	.project-nav ul li a:before {
		width: 6px;
		height: 6px;
		right: -14px;
		top: 7px;
	}

	.project-item-content {
		bottom: 20px;
		right: 20px;
		left: 20px;
	}

	.project-item-btn {
		top: 20px;
		right: 20px;
	}

	.cta-box-items-list {
		gap: 20px;
	}

	.cta-box-item {
		width: 100%;
	}

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

	.cta-box-image {
		display: none;
	}

	.faq-accordion {
		padding: 20px;
	}

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

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

	.faq-accordion .accordion-item .accordion-button::after,
	.faq-accordion .accordion-item .accordion-button.collapsed::after {
		font-size: 18px;
		right: 10px;
	}

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

	.testimonial-item {
		min-height: 300px;
		padding: 20px;
	}

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

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

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

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

	.scrolling-content span img {
		max-width: 24px;
		margin-right: 15px;
	}

	.footer-working-hours h3,
	.footer-links h3,
	.footer-links p {
		margin-bottom: 15px;
	}

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

	.footer-location-info,
	.footer-contact-links {
		width: 100%;
	}

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

	.footer-social-links ul {
		gap: 15px;
	}

	.footer-social-links ul li a {
		font-size: 14px;
		gap: 6px;
		padding: 8px 10px;
	}

	.footer-social-links ul li a i {
		font-size: 16px;
	}

	.footer-copyright {
		justify-content: center;
		padding: 15px 0;
	}

	.footer-menu ul {
		gap: 10px 15px;
	}

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

	.approach-item-list ul li {
		padding: 10px 12px;
	}

	.values-image-box {
		padding: 20px 20px 0 0;
	}

	.values-image img {
		aspect-ratio: 1 / 1.15;
	}

	.lets-together-circle a img {
		max-width: 90px;
	}

	.value-counter-box {
		padding: 15px;
	}

	.value-counter-box-content h2 {
		font-size: 28px;
	}

	.value-counter-box-content p {
		font-size: 14px;
	}

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

	.skills-progress-bar .skill-data .skill-title,
	.skills-progress-bar .skill-data .skill-no {
		font-size: 18px;
	}

	.values-content-footer {
		gap: 20px;
		padding-top: 30px;
		margin-top: 30px;
	}

	.values-item-author {
		gap: 10px;
	}

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

	.sidebar-cta-body-content ul li {
		font-size: 16px;
	}

	.sidebar-cta-body-content ul li img {
		max-width: 20px;
	}

	.sidebar-cta-body-image img {
		max-width: 200px;
	}

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

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

	.service-entry h3 {
		font-size: 18px;
		margin-bottom: 5px;
	}

	.service-entry ul {
		gap: 10px;
	}

	.service-entry ul li {
		width: 100%;
	}

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

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

	.service-process-image-content {
		gap: 20px;
	}

	.service-process-box {
		padding: 20px 15px;
	}

	.service-process-item .icon-box {
		width: 45px;
		height: 45px;
	}

	.service-process-item .icon-box img {
		max-width: 22px;
	}

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

	.post-single-meta ol li,
	.post-single-meta ol li i {
		font-size: 16px;
	}

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

	.post-entry blockquote {
		background-position: 15px 15px;
		padding: 60px 15px 15px 15px;
	}

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

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

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

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

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

	.project-feature-item {
		width: 100%;
	}

	.project-process-item {
		padding: 15px;
	}

	.project-issue-box-item {
		width: 100%;
	}

	.project-issue-box-item::before {
		display: none;
	}

	.project-issue-item h4 {
		margin-bottom: 5px;
	}

	.team-experience-item {
		width: 100%;
	}

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

	.team-values-info-list ul li {
		gap: 5px;
	}

	.team-values-info-list ul li span {
		width: 100%;
	}

	.contact-info-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

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

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

/************************************/
/***   34. Home - Version 2 css	  ***/
/************************************/

header.main-header.header-gold .header-sticky {
	background: transparent;
	backdrop-filter: initial;
	-webkit-backdrop-filter: initial;
	border-bottom: 1px solid var(--dark-divider-color);
}

header.main-header.header-gold .header-sticky.active {
	background: var(--primary-color);
}

.hero-gold {
	background: var(--primary-color) url('../images/hero-gold-bg-shape.png') no-repeat;
	background-position: bottom center;
	background-size: auto;
	padding: 205px 0 100px;
}

.hero-content-gold {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.hero-sub-heading-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-bottom: 10px;
}

.hero-sub-heading-gold .satisfy-client-image {
	border-color: var(--white-color);
}

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

.hero-sub-heading-content-gold p {
	color: var(--white-color);
	text-transform: uppercase;
	font-weight: 600;
	margin: 0;
}

.hero-content-gold .section-title h1 {
	font-size: 70px;
}

.hero-content-gold .section-title p {
	max-width: 740px;
	margin-left: auto;
	margin-right: auto;
}

.hero-content-body-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin-top: 60px;
}

.hero-image-box-gold {
	position: relative;
	margin-top: 100px;
}

.hero-image-gold figure {
	display: block;
	border-radius: 10px;
}

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

.hero-client-box-gold {
	position: absolute;
	bottom: 0;
	right: 0;
	width: 410px;
	background: var(--primary-color);
	border-radius: 10px 0 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	padding: 30px;
	z-index: 2;
}

.hero-client-box-gold::before,
.hero-client-box-gold::after {
	content: '';
	position: absolute;
	width: 20px;
	height: 20px;
	mask: url('../images/hero-client-box-corner-shape-gold.svg');
	-webkit-mask: url('../images/hero-client-box-corner-shape-gold.svg');
	background-color: var(--primary-color);
	mask-repeat: no-repeat;
	mask-size: cover;
}

.hero-client-box-gold::before {
	top: -20px;
	right: 0;
}

.hero-client-box-gold::after {
	bottom: 0;
	left: -20px;
}

.hero-client-box-content-gold {
	max-width: 210px;
}

.hero-client-box-content-gold p {
	color: var(--white-color);
	margin: 0;
}

.hero-video-box-gold {
	position: absolute;
	bottom: 0;
	left: 60px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(20px) saturate(100%);
	-webkit-backdrop-filter: blur(20px) saturate(100%);
	border-radius: 10px 10px 0 0;
	text-align: center;
	width: 100%;
	max-width: 420px;
	padding: 15px;
	z-index: 2;
}

.hero-video-image-gold {
	position: relative;
}

.hero-video-image-gold figure,
.hero-video-image-gold figure a {
	display: block;
	border-radius: 10px;
	overflow: hidden;
	cursor: none;
}

.hero-video-image-gold figure img {
	width: 100%;
	aspect-ratio: 1 / 0.5;
	object-fit: cover;
	transition: 0.5s ease-in-out;
}

.hero-video-box-gold:hover .hero-video-image-gold figure img {
	transform: scale(1.06);
}

.hero-video-image-gold .video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.hero-video-image-gold .video-play-button a {
	background: var(--accent-color);
	width: 50px;
	height: 50px;
}

.hero-video-image-gold .video-play-button a i {
	font-size: 20px;
	color: var(--primary-color);
}

.hero-video-image-gold .video-play-button a::after,
.hero-video-image-gold .video-play-button a::before {
	display: none;
}

.hero-video-content-gold {
	padding: 30px 20px 20px;
}

.hero-video-content-gold h3 {
	font-size: 20px;
	line-height: 1.4em;
	font-weight: 500;
	color: var(--white-color);
}

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

.about-us-images-gold {
	display: flex;
	align-items: end;
	margin-right: 15px;
}

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

.about-us-image-gold figure {
	display: block;
	border-radius: 10px;
}

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

.about-us-image-title-gold h2 {
	font-size: 86px;
	text-transform: uppercase;
	writing-mode: vertical-rl;
	cursor: none;
	color: var(--divider-color);
	-webkit-text-fill-color: transparent;
	-webkit-text-stroke: 1px currentColor;
}

.about-us-hightlighted-content {
	position: relative;
	background: var(--secondary-color);
	border-radius: 10px;
	margin-bottom: 40px;
	padding: 20px 30px;
	overflow: hidden;
}

.about-us-hightlighted-content::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	background: var(--accent-color);
	width: 4px;
	height: 100%;
	transition: all 0.4s ease-in-out;
}

.about-us-hightlighted-content:hover:before {
	width: 100%;
}

.about-us-hightlighted-content h3 {
	position: relative;
	font-size: 20px;
	line-height: 1.4em;
	z-index: 1;
}

.about-body-items-list-gold {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.about-us-body-item-gold {
	width: calc(33.33% - 20px);
}

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

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

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

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

.about-us-body-item-gold:hover .icon-box img {
	filter: brightness(0) invert(1);
}

.about-us-body-item-content-gold h3 {
	font-size: 20px;
	line-height: 1.4em;
}

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

.about-us-counter-box-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
}

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

.about-us-counter-box-gold p {
	max-width: 110px;
	margin: 0;
}

.our-services-gold {
	background: var(--secondary-color) url('../images/services-bg-shape-gold.png') no-repeat;
	background-position: top -18% right -18%;
	background-size: auto;
	padding: 100px 0;
}

.service-item-gold {
	position: relative;
	background: var(--white-color);
	border-radius: 10px;
	min-height: 480px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px;
	overflow: hidden;
}

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

.service-item-gold:hover::before,
.service-item-gold.active::before {
	top: auto;
	height: 100%;
}

.service-item-header-gold {
	position: relative;
	z-index: 1;
}

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

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

.service-item-gold.active .icon-box::before,
.service-item-gold:hover .icon-box::before {
	top: auto;
	height: 100%;
}

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

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

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

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

.service-item-body-gold {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	border-top: 1px solid var(--divider-color);
	padding-top: 30px;
	z-index: 1;
}

.service-item-title-gold {
	width: calc(100% - 50px);
}

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

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

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

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

.service-item-btn-gold a img {
	width: 100%;
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

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

.service-item-btn-gold a:hover img {
	transform: rotate(0deg);
}

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

.what-we-item-gold {
	background: var(--secondary-color);
	border-radius: 10px;
	margin-bottom: 30px;
	padding: 30px;
}

.what-we-item-gold.box-1 {
	padding: 10px;
}

.what-we-item-header-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
	padding: 20px;
}

.what-we-item-gold.box-1 .what-we-item-title-gold {
	width: calc(100% - 55px);
}

.what-we-item-title-gold h3 {
	font-size: 20px;
}

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

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

.what-we-item-gold:hover .what-we-item-header-gold .icon-box::before {
	transform: rotate(0deg) scale(1);
	border-radius: 0;
}

.what-we-item-gold .what-we-item-header-gold .icon-box img {
	position: relative;
	width: 100%;
	max-width: 20px;
	transition: 0.4s ease-in-out;
	z-index: 1;
}

.what-we-item-gold:hover .what-we-item-header-gold .icon-box img {
	filter: brightness(0) invert(1);
}

.what-we-item-image-gold figure {
	display: block;
	border-radius: 10px;
}

.what-we-item-image-gold figure img {
	width: 100%;
	aspect-ratio: 1 / 1.1;
	object-fit: cover;
	border-radius: 10px;
}

.what-we-item-gold.box-2 .what-we-item-header-gold {
	align-items: start;
	margin-bottom: 50px;
	padding: 0;
}

.what-we-item-shape-image-gold figure {
	display: block;
	mask-size: cover;
	mask-position: center center;
	mask-repeat: no-repeat;
	width: 100px;
	height: 70px;
	mask-image: url('../images/what-we-item-bg-shape-image-1-gold.svg');
	background-image: url('../images/what-we-item-bg-shape-image-1-gold.svg');
}

.what-we-item-shape-image-gold img {
	width: 100%;
	object-fit: cover;
}

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

.what-we-item-btn-gold:hover a {
	background: var(--accent-color);
}

.what-we-item-btn-gold a img {
	width: 100%;
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

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

.what-we-counter-box-gold {
	position: relative;
	margin-bottom: 30px;
}

.what-we-counter-item-gold {
	position: absolute;
	bottom: 20px;
	left: 20px;
	background: var(--white-color);
	border-radius: 10px;
	text-align: center;
	padding: 25px;
}

.what-we-counter-item-gold h2 {
	font-size: 50px;
	line-height: 1em;
}

.what-we-counter-item-gold p {
	margin: 5px 0 0 0;
}

.what-we-item-gold.box-4 .what-we-item-title-gold,
.what-we-item-gold.box-4 .what-we-item-shape-image-gold {
	margin-bottom: 20px;
}

.what-we-item-gold.box-4 .what-we-item-shape-image-gold figure {
	width: 100px;
	height: 50px;
	mask-image: url(../images/what-we-item-bg-shape-image-2-gold.svg);
	background-image: url(../images/what-we-item-bg-shape-image-2-gold.svg);
}

.what-we-item-body-gold {
	display: flex;
	align-items: end;
	justify-content: space-between;
	gap: 20px;
}

.learn-more-circle-gold a {
	display: inline-block;
	border-radius: 50%;
}

.learn-more-circle-gold a img {
	width: 100%;
	max-width: 95px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.learn-more-circle-gold a:hover img {
	animation-play-state: paused;
}

.what-we-item-body-image-gold {
	margin: 0 -30px -30px 0;
}

.what-we-item-body-image-gold img {
	width: 100%;
	max-width: 165px;
}

.what-we-contect-list-gold {
	text-align: center;
	margin-top: 30px;
}

.what-we-contect-list-gold h3 {
	font-size: 20px;
}

.what-we-contect-list-gold ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	list-style: none;
	padding: 0;
	margin: 20px 0 0 0;
}

.what-we-contect-list-gold ul li {
	display: inline-block;
}

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

.what-we-contect-list-gold ul li a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.what-we-contect-list-gold ul li a:hover {
	color: var(--accent-color);
}

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

.why-choose-us-boxes-gold {
	margin-right: 15px;
}

.why-choose-item-gold {
	background: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	padding: 20px;
}

.why-choose-item-image-gold {
	width: 50%;
}

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

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

.why-choose-item-body-gold {
	width: 50%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 20px;
	padding: 20px 20px 20px 40px;
}

.why-choose-item-btn-gold a {
	border: 1px solid var(--white-color);
	border-radius: 50%;
	width: 50px;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

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

.why-choose-item-btn-gold a img {
	width: 100%;
	max-width: 24px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
}

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

.why-choose-item-content-gold h3 {
	font-size: 20px;
	color: var(--white-color);
}

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

.why-choose-counter-list-gold {
	background: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 60px;
	padding: 40px;
	margin-top: 30px;
}

.why-choose-counter-item-gold {
	position: relative;
	width: calc(33.33% - 40px);
	text-align: center;
}

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

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

.why-choose-counter-item-gold h2 {
	font-size: 50px;
	line-height: 1em;
	color: var(--white-color);
}

.why-choose-counter-item-gold p {
	color: var(--white-color);
	margin: 5px 0 0 0;
}

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

.why-choose-body-item-gold {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	background: var(--dark-divider-color);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border-radius: 10px;
	padding: 10px;
}

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

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

.why-choose-body-item-gold:hover .icon-box::before {
	transform: rotate(0deg) scale(1);
	border-radius: 0;
}

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

.why-choose-body-item-content-gold {
	width: calc(100% - 100px);
}

.why-choose-body-item-content-gold h2 {
	font-size: 20px;
	color: var(--white-color);
}

.why-choose-body-item-content-gold p {
	color: var(--white-color);
	margin: 10px 0 0 0;
}

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

.our-features-gold {
	background: linear-gradient(180deg, var(--secondary-color)50%, var(--white-color)50%);
	padding: 100px 0;
}

.feature-item-gold {
	background: var(--white-color);
	box-shadow: 0 0 100px 0 rgba(0, 0, 0, 0.05);
	border-radius: 10px;
	min-height: 520px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 40px 40px 0 40px;
}

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

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

.feature-item-image-gold {
	width: 100%;
	max-width: 270px;
	margin: 0 auto;
}

.feature-item-image-gold figure {
	display: block;
	border-radius: 10px 10px 0 0;
}

.feature-item-image-gold img {
	width: 100%;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
}

.cta-box-gold {
	background: var(--secondary-color) url(../images/cta-box-bg-gold.png) no-repeat;
	background-position: bottom center;
	background-size: 100% auto;
	padding: 100px 0 50px;
}

.cta-box-image-gold {
	margin-right: 15px;
}

.cta-box-image-gold figure {
	display: block;
	border-radius: 10px;
}

.cta-box-image-gold img {
	width: 100%;
	aspect-ratio: 1 / 0.754;
	object-fit: cover;
	border-radius: 10px;
}

.cta-box-list-gold ul {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 15px 20px;
}

.cta-box-list-gold ul li {
	position: relative;
	color: var(--primary-color);
	line-height: 1.4em;
	padding-left: 16px;
}

.cta-box-list-gold ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: var(--accent-color);
	width: 6px;
	height: 6px;
}

.cta-box-btn-gold {
	margin-top: 40px;
}

.our-projects {
	padding: 100px 0 70px;
}

.project-item-gold {
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
	border-radius: 25px !important;
	border: 1px solid #d4d4d480;
}

.project-item-image-box-gold {
	position: relative;
}

.project-item-image-gold {
	/* border-radius: 10px 10px 0px 0px; */
	overflow: hidden;
}

.project-item-image-gold figure {
	display: block;
	/* cursor: none; */
}

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

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

.project-item-tag-gold {
	position: absolute;
	top: 30px;
	left: 30px;
	z-index: 1;
}

.project-item-tag-gold a {
	position: relative;
	display: inline-block;
	background: var(--white-color);
	border-radius: 100px;
	padding: 10px 15px 10px 30px;
	font-family: var(--accent-font);
	font-size: 14px;
	font-weight: 600;
	line-height: normal;
	letter-spacing: 0.10em;
	text-transform: uppercase;
	color: var(--primary-color);
	transition: all 0.4s ease-in-out;
}

.project-item-tag-gold a::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 15px;
	transform: translateY(-50%);
	background: var(--accent-color);
	width: 6px;
	height: 6px;
}

.project-item-body-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	padding: 15px 25px;
	background: #f5f5f5;
	/* border-radius: 0px 0px 15px 15px; */
}

.project-item-content-gold {
	max-width: 500px;
}

.project-item-content-gold h2 {
	font-weight: 600;
}

.project-item-content-gold h2 a {
	color: inherit;
	font-size: 23px;
	line-height: 24px;
}

.project-readmore-btn-gold a {
	border: 1px solid #1d4b7d;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
	background: #1d4b7d;
}

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

.project-readmore-btn-gold a img {
	width: 100%;
	max-width: 20px;
	transform: rotate(-45deg);
	transition: all 0.4s ease-in-out;
	filter: brightness(0) invert(1);
}

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

.intro-video-gold {
	position: relative;
	background: url('../images/intro-video-bg-gold.jpg') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 100px 0 0;
	overflow: hidden;
}

.intro-video-gold::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	opacity: 60%;
	z-index: 1;
}

.intro-video-gold .container {
	position: relative;
	z-index: 2;
}

.intro-video-box-gold {
	min-height: 800px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 30px;
}

.intro-video-header-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.intro-video-header-gold .section-title {
	max-width: 750px;
	margin: 0;
}

.intro-video-button-gold {
	text-align: right;
}

.intro-video-button-gold a {
	display: inline-block;
	border-radius: 50%;
	cursor: none;
}

.intro-video-button-gold a img {
	width: 100%;
	max-width: 180px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.intro-video-button-gold a:hover img {
	animation-play-state: paused;
}

.intro-video-counter-box-gold {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 0px 100px;
	border: 1px solid var(--dark-divider-color);
	border-bottom: none;
	border-radius: 10px 10px 0 0;
	padding: 0 20px;
}

.intro-video-counter-item-gold {
	position: relative;
	width: calc(20% - 80px);
	text-align: center;
	padding: 40px 0;
}

.intro-video-counter-item-gold::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: -50px;
	background: var(--dark-divider-color);
	width: 1px;
	height: 100%;
}

.intro-video-counter-item-gold:last-child:before,
.intro-video-counter-item-gold:nth-child(5n + 5):before {
	display: none;
}

.intro-video-counter-item-gold h2 {
	font-size: 50px;
	color: var(--white-color);
}

.intro-video-counter-item-gold p {
	color: var(--white-color);
	margin: 5px 0 0 0;
}

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

.pricing-item-gold {
	background-color: var(--secondary-color);
	border-radius: 10px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 15px;
}

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

.pricing-item-content-gold h3 {
	font-size: 20px;
	margin-bottom: 20px;
}

.pricing-item-content-gold h2 {
	font-size: 50px;
	color: var(--accent-color);
}

.pricing-item-content-gold h2 sub {
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--text-color);
	bottom: 0;
}

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

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

.pricing-item-list-gold {
	background-color: var(--white-color);
	border-radius: 10px;
	padding: 40px;
}

.pricing-item-list-gold h3 {
	font-size: 20px;
}

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

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

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

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

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

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

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

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

.our-testimonials-gold {
	background: var(--secondary-color) url('../images/testimonials-bg-shape-gold.png') no-repeat;
	background-position: bottom left;
	background-size: auto;
	padding: 100px 0;
}

.our-testimonials-content-gold {
	position: sticky;
	top: 40px;
}

.testimonial-item-box-gold {
	background: var(--white-color);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	padding: 20px;
}

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

.testimonials-rating-gold {
	margin-bottom: 20px;
}

.testimonials-rating-gold i {
	color: var(--accent-color);
	font-size: 16px;
}

.testimonial-content-gold p {
	margin: 0;
}

.testimonial-item-body-gold {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	gap: 10px;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
}

.testimonial-author-gold {
	display: flex;
	align-items: center;
	width: calc(100% - 60px);
}

.author-image-gold {
	margin-right: 20px;
}

.author-image-gold figure {
	display: block;
	border-radius: 50%;
}

.author-image-gold img {
	width: 100%;
	max-width: 50px;
	border-radius: 50%;
}

.author-content-gold {
	width: calc(100% - 70px);
}

.author-content-gold h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

.author-content-gold p {
	text-transform: capitalize;
	margin: 0;
}

.testimonial-quote-gold img {
	width: 100%;
	max-width: 40px;
}

.main-footer-gold {
	background-image: url('../images/footer-bg-shape-gold.png');
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	padding: 61px 0 0;
	border-top: 1px solid #1a4d8514;
}

.footer-header-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 80px;
	margin-bottom: 80px;
}

.footer-header-gold .section-title {
	max-width: 730px;
	margin-bottom: 0;
}

.footer-contact-list-gold {
	text-align: right;
}

.footer-contact-list-gold h3 {
	font-size: 30px;
	color: var(--white-color);
	margin-bottom: 10px;
}

.footer-contact-list-gold h3:last-child {
	margin-bottom: 0;
}

.footer-contact-list-gold h3 a {
	color: inherit;
	transition: all 0.3s ease-in-out;
}

.footer-contact-list-gold h3 a:hover {
	color: var(--accent-color);
}

.about-footer-gold {
	margin-right: 5.208vw;
}

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

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

.about-footer-content-gold p {
	color: #003167;
	margin: 0;
}

.footer-links-box-gold {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	gap: 30px;
}

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

.footer-links-gold h3 {
	font-size: 24px;
	color: #1a4d85;
	margin-bottom: 27px;
}

.footer-links-gold p {
	margin-bottom: 15px;
	color: var(--white-color);
}

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

.footer-links-gold ul li {
	position: relative;
	text-transform: capitalize;
	color: #1a4d85;
	line-height: 1.5em;
	padding-left: 16px;
	margin-bottom: 15px;
}

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

.footer-links-gold ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: #1a4d85;
	width: 6px;
	height: 6px;
}

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

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

.footer-newsletter-form-gold p {
	margin-bottom: 20px;
}

.footer-newsletter-form-gold .form-group {
	display: flex;
	flex-wrap: wrap;
}

.footer-newsletter-form-gold .form-group .form-control {
	width: calc(100% - 50px);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.25em;
	color: var(--white-color);
	background: transparent;
	border: 1px solid var(--dark-divider-color);
	border-radius: 100px;
	outline: none;
	box-shadow: none;
	padding: 14px 24px;
}

.footer-newsletter-form-gold .form-group .form-control::placeholder {
	color: var(--white-color);
}

.footer-newsletter-form-gold .form-group .newsletter-btn {
	width: 50px;
	height: 50px;
	background: transparent;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.4s ease-in-out;
}

.footer-newsletter-form-gold .form-group .newsletter-btn:hover {
	background: var(--accent-color);
}

.footer-newsletter-form-gold .form-group .newsletter-btn i {
	font-size: 22px;
	color: var(--accent-color);
	margin-right: 2px;
	transition: all 0.4s ease-in-out;
}

.footer-newsletter-form-gold .form-group .newsletter-btn:hover i {
	color: var(--primary-color);
}

.footer-copyright-gold {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 35px;
	padding: 13px 20px;
	background: #1a4d85;
}

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

.footer-social-links-gold ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-social-links-gold ul li a {
	width: 36px;
	height: 36px;
	border: 1px solid #1a4d85;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
	background: #1a4d85;
}

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

.footer-social-links-gold ul li a i {
	font-size: 18px;
	color: #ffffff;
	transition: all 0.3s ease-in-out;
}

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

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

	.hero-client-box-gold {
		width: 390px;
		padding: 30px 20px;
	}

	.hero-video-box-gold {
		left: 40px;
	}

	.about-body-items-list-gold {
		gap: 20px;
	}

	.about-us-body-item-gold {
		width: calc(33.33% - 13.33px);
	}

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

	.what-we-counter-item-gold {
		padding: 20px;
	}

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

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

	.feature-item-gold {
		min-height: 470px;
		padding: 30px 30px 0 30px;
	}

	.intro-video-box-gold {
		min-height: 600px;
	}

	.intro-video-counter-item-gold {
		padding: 30px 0;
	}

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

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

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

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

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

	.about-us-images-gold {
		max-width: 700px;
		margin: 0 auto 30px;
	}

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

	.what-we-item-body-image-gold img {
		max-width: 130px;
	}

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

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

	.why-choose-us-boxes-gold {
		margin: 0;
	}

	.project-item-content-gold {
		width: calc(100% - 60px);
		max-width: 100%;
	}

	.intro-video-button-gold a img {
		max-width: 140px;
	}

	.intro-video-counter-box-gold {
		gap: 0 30px;
	}

	.intro-video-counter-item-gold {
		width: calc(20% - 24px);
		padding: 20px 0;
	}

	.intro-video-counter-item-gold::before {
		right: -15px;
	}

	.our-testimonials-content-gold {
		position: initial;
		margin-bottom: 40px;
	}

	.footer-header-gold .section-title {
		max-width: 600px;
	}

	.footer-contact-list-gold h3 {
		font-size: 26px;
	}

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

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

@media only screen and (max-width: 991px) {
	.project-body-title h3 {
		margin-bottom: 35px;
	}

	.hero-gold {
		padding: 140px 0 50px;
	}

	.hero-content-gold .section-title h1 {
		font-size: 50px;
	}

	.hero-content-body-gold {
		margin-top: 0;
	}

	.hero-image-box-gold {
		margin-top: 50px;
	}

	.hero-image-gold figure img {
		aspect-ratio: 1 / 0.7;
	}

	.hero-client-box-gold {
		width: 330px;
		padding: 20px 15px;
	}

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

	.hero-client-box-content-gold {
		max-width: 180px;
	}

	.hero-client-box-content-gold p {
		font-size: 14px;
	}

	.hero-video-box-gold {
		left: 15px;
		max-width: 280px;
		padding: 10px;
	}

	.hero-video-content-gold {
		padding: 20px 10px 10px;
	}

	.hero-video-content-gold h3 {
		font-size: 18px;
	}

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

	.about-us-hightlighted-content {
		margin-bottom: 30px;
	}

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

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

	.our-services-gold {
		padding: 50px 0;
		background-size: 350px auto;
	}

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

	.what-we-counter-item-gold h2 {
		font-size: 40px;
	}

	.what-we-contect-list-gold {
		margin-top: 10px;
	}

	.what-we-contect-list-gold ul {
		margin-top: 15px;
	}

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

	.why-choose-body-item-gold {
		gap: 15px;
	}

	.why-choose-body-item-gold .icon-box {
		width: 50px;
		height: 50px;
	}

	.why-choose-body-item-gold .icon-box img {
		max-width: 24px;
	}

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

	.why-choose-item-gold {
		padding: 10px;
	}

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

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

	.cta-box-gold {
		padding: 50px 0;
	}

	.cta-box-image-gold {
		margin: 0 0 30px 0;
	}

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

	.our-projects {
		padding: 50px 0 20px;
	}

	.project-item-tag-gold {
		top: 20px;
		left: 20px;
	}

	.project-item-tag-gold a {
		padding: 8px 10px 8px 24px;
	}

	.project-item-tag-gold a::before {
		left: 10px;
	}

	.project-item-body-gold {
		padding: 15px 5px 15px 9px;
	}

	.project-item-content-gold h2 a {
		color: inherit;
		font-size: 15px;
		line-height: 24px;
	}

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

	.intro-video-gold {
		padding: 50px 0 0;
	}

	.intro-video-box-gold {
		min-height: 500px;
	}

	.intro-video-button-gold {
		width: 100%;
		text-align: center;
	}

	.intro-video-counter-box-gold {
		padding: 0 15px;
	}

	.intro-video-counter-item-gold h2 {
		font-size: 40px;
	}

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

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

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

	.pricing-item-content-gold h3 {
		margin-bottom: 15px;
	}

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

	.pricing-item-content-gold p {
		margin-top: 10px;
	}

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

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

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

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

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

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

	.our-testimonials-gold {
		background-size: 400px auto;
		padding: 50px 0;
	}

	.our-testimonials-content-gold {
		margin-bottom: 30px;
	}

	.testimonial-item-gold {
		min-height: 300px;
		gap: 20px;
	}

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

	.main-footer-gold {
		padding: 50px 0 0 0;
	}

	.footer-header-gold {
		padding-bottom: 40px;
		margin-bottom: 40px;
	}

	.footer-header-gold .section-title {
		max-width: 100%;
	}

	.footer-contact-list-gold {
		text-align: left;
	}

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

	.footer-links-gold h3 {
		margin-bottom: 15px;
	}

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

	.footer-newsletter-form-gold p {
		margin-bottom: 15px;
	}

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

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

	.hero-content-gold .section-title h1 {
		font-size: 30px;
	}

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

	.hero-client-box-gold {
		position: initial;
		width: 100%;
		border-radius: 10px;
		margin-top: 20px;
	}

	.hero-video-box-gold {
		position: initial;
	}

	.hero-client-box-gold::before,
	.hero-client-box-gold::after {
		display: none;
	}

	.hero-video-box-gold {
		max-width: 100%;
		margin: 20px 0 -50px;
	}

	.about-us-image-title-gold h2 {
		font-size: 44px;
	}

	.about-us-hightlighted-content {
		padding: 20px 15px;
	}

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

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

	.about-us-body-item-gold .icon-box {
		margin-bottom: 10px;
	}

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

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

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

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

	.about-us-counter-box-gold p {
		font-size: 14px;
	}

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

	.service-item-gold .icon-box {
		margin-bottom: 15px;
	}

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

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

	.what-we-item-gold {
		padding: 20px;
	}

	.what-we-item-header-gold {
		padding: 15px 15px 20px 15px;
	}

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

	.what-we-counter-item-gold h2 {
		font-size: 30px;
	}

	.what-we-item-body-image-gold {
		margin: 0 -20px -20px 0;
	}

	.what-we-item-body-image-gold img {
		max-width: 100px;
	}

	.what-we-contect-list-gold ul {
		gap: 15px;
	}

	.what-we-contect-list-gold ul li {
		font-size: 14px;
	}

	.what-we-contect-list-gold ul li img {
		max-width: 18px;
		margin-right: 5px;
	}

	.why-choose-body-item-content-gold h2 {
		font-size: 18px;
	}

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

	.why-choose-item-body-gold {
		width: 100%;
		padding: 20px 15px 10px;
		flex-direction: column-reverse;
	}

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

	.why-choose-counter-item-gold {
		width: calc(33.33% - 13.33px);
	}

	.why-choose-counter-item-gold::before {
		right: -10px;
	}

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

	.why-choose-counter-item-gold p {
		font-size: 14px;
	}

	.feature-item-gold {
		min-height: initial;
		padding: 20px 20px 0 20px;
	}

	.feature-item-image-gold {
		max-width: 240px;
	}

	.intro-video-button-gold a img {
		max-width: 100px;
	}

	.intro-video-counter-item-gold {
		width: calc(50% - 15px);
	}

	.intro-video-counter-item-gold:last-child:before,
	.intro-video-counter-item-gold:nth-child(5n + 5):before {
		display: block;
	}

	.intro-video-counter-item-gold:nth-child(2n + 2):before {
		display: none;
	}

	.intro-video-counter-item-gold h2 {
		font-size: 30px;
	}

	.pricing-item-content-gold h2 {
		font-size: 30px;
	}

	.pricing-item-list-gold {
		padding: 20px 15px;
	}

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

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

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

	.testimonial-item-box-gold {
		padding: 10px;
	}

	.testimonial-item-gold {
		padding: 20px;
	}

	.testimonials-rating-gold {
		margin-bottom: 15px;
	}

	.author-image-gold {
		margin-right: 10px;
	}

	.author-content-gold {
		width: calc(100% - 60px);
	}

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

	.footer-header-gold {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-contact-list-gold h3 {
		font-size: 22px;
	}

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

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

	.footer-copyright-gold {
		margin-top: 30px;
		padding: 15px 0;
		flex-direction: column-reverse;
	}
}

/************************************/
/***   35. Home - Version 3 css	  ***/
/************************************/

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

.main-header.header-silver .header-sticky {
	border-radius: 10px;
	max-width: 1500px;
	margin: 0 auto;
}

header.main-header.header-silver .header-sticky.active {
	border-radius: 0 0 10px 10px;
}

.main-header.header-silver .navbar {
	padding: 25px 10px;
}

.hero-silver {
	background-image: url('../images/hero-bg-image-silver.png');
	background-position: center center;
	background-position: center center;
	background-size: cover;
	padding: 230px 0 195px;
	overflow: hidden;
}

.hero-content-silver {
	height: 100%;
	align-content: center;
}

.hero-content-body-silver {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 60px;
}

.hero-body-item-silver {
	width: calc(50% - 15px);
	background: var(--dark-divider-color);
	backdrop-filter: blur(30px) saturate(100%);
	-webkit-backdrop-filter: blur(30px) saturate(100%);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 20px;
}

.hero-body-item-silver .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 5px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin-right: 15px;
}

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

.hero-body-item-silver:hover .icon-box::before {
	transform: rotate(0) scale(1);
}

.hero-body-item-silver .icon-box img {
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

.hero-body-item-content-silver {
	width: calc(100% - 75px);
}

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

.hero-content-footer-silver {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 25px 50px;
}

.hero-image-silver {
	height: 100%;
	align-content: end;
}

.hero-image-silver figure {
	display: block;
	border-radius: 10px 10px 0 0;
}

.hero-image-silver img {
	width: 100%;
	aspect-ratio: 1 / 1.073;
	object-fit: cover;
	border-radius: 10px 10px 0 0;
	margin-bottom: -195px;
}

.about-us-silver {
	padding: 100px 0;
}

.about-us-image-box-silver {
	position: relative;
	height: 100%;
	margin-right: 15px;
}

.about-image-box-1-silver {
	height: 100%;
	padding-top: 40px;
}

.about-image-box-1-silver figure {
	height: 100%;
	display: block;
	border-radius: 10px;
}

.about-image-box-1-silver img {
	height: 100%;
	width: 100%;
	aspect-ratio: 1 / 0.955;
	object-fit: cover;
	border-radius: 10px;
}

.about-image-box-2-silver {
	position: absolute;
	top: 0;
	right: 0;
	z-index: 1;
}

.about-image-box-2-silver figure {
	display: block;
	border-radius: 10px 10px 0 10px;
}

.about-image-box-2-silver img {
	width: 100%;
	aspect-ratio: 1 / 0.6;
	object-fit: cover;
	border-radius: 10px 10px 0 10px;
}

.about-counter-box-silver {
	position: absolute;
	width: 100%;
	max-width: 360px;
	bottom: 30px;
	left: 30px;
	background: var(--divider-color);
	backdrop-filter: blur(15px) saturate(100%);
	-webkit-backdrop-filter: blur(15px) saturate(100%);
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	justify-content: space-between;
	gap: 15px;
	border-radius: 10px;
	padding: 30px;
	z-index: 1;
}

.about-counter-silver h2 {
	font-size: 52px;
	font-weight: 700;
	color: var(--white-color);
}

.about-counter-silver p {
	color: var(--white-color);
	margin: 5px 0 0;
}

.about-counter-box-silver .satisfy-client-image {
	border-color: var(--white-color);
}

.about-counter-box-silver .satisfy-client-image img {
	max-width: 40px;
}

.about-us-content-silver {
	height: 100%;
	align-content: center;
}

.about-us-item-list-silver {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 40px;
}

.about-us-item-silver {
	width: calc(50% - 15px);
	background-color: var(--secondary-color);
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	padding: 20px;
}

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

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

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

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

.about-us-item-silver:hover .icon-box img {
	filter: brightness(0) invert(1);
}

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

.about-us-item-content-silver h3 {
	font-size: 20px;
	line-height: 1.4em;
}

.about-us-body-silver .skills-progress-bar {
	margin-bottom: 40px;
}

.about-us-content-list-silver ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.about-us-content-list-silver ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 25px;
	margin-bottom: 15px;
}

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

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

.about-us-footer-silver {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	margin-top: 60px;
}

.about-author-Box-silver {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
}

.about-author-image-silver figure {
	display: block;
	border-radius: 50px;
}

.about-author-image-silver img {
	width: 100%;
	max-width: 50px;
	border-radius: 50px;
}

.about-author-content-silver h3 {
	font-size: 20px;
}

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

.our-services-silver {
	background: var(--secondary-color) url('../images/service-bg-shape.png') no-repeat;
	background-position: top right;
	background-size: auto;
	padding: 100px 0;
}

.service-item-silver {
	background: var(--bg-color);
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	text-align: center;
	gap: 30px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.service-item-header-silver {
	padding: 30px 30px 0;
}

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

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

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

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

.service-item-silver:hover .service-item-header-silver .icon-box img {
	filter: brightness(0) invert(1);
}

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

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

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

.service-item-image-silver figure {
	display: block;
	mask-image: url('../images/service-image-shap-silver.svg');
	background-image: url('../images/service-image-shap-silver.svg');
	mask-size: cover;
	mask-position: center center;
	mask-repeat: no-repeat;
	max-width: 355px;
	max-height: 175px;
	margin: 0 auto;
}

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

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

.what-we-do-silver {
	padding: 80px 0;
	background-image: url(../images/what-we-do-silver.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	/* background-attachment: fixed; */
}

.what-we-do-box-silver {
	background-color: #f2f2f2;
	border-radius: 10px;
	margin-right: 15px;
	padding: 30px;
	overflow: hidden;
}

.what-we-box-header-silver {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 50px;
}

.what-we-header-counter-silver {
	border-right: 1px solid var(--divider-color);
	padding-right: 20px;
	margin-right: 20px;
}

.what-we-header-counter-silver h2 {
	font-size: 52px;
	font-weight: 700;
}

.what-we-header-counter-silver p {
	margin: 5px 0 0 0;
}

.what-we-counter-info-silver {
	width: 50%;
}

.what-we-counter-info-silver p {
	margin-bottom: 0;
}

.what-we-body-silver {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	gap: 30px;
}

.what-we-body-image-silver {
	width: calc(65% - 15px);
}

.what-we-body-image-silver figure {
	display: block;
	margin: 0 0 -30px -30px;
}

.what-we-body-image-silver img {
	width: 100%;
	aspect-ratio: 1 / 1.54;
	object-fit: cover;
}

.what-we-counter-box-silver {
	width: calc(35% - 15px);
}

.what-we-counter-box-title-silver h3 {
	font-size: 20px;
	line-height: 1.2em;
	margin-bottom: 40px;
}

.what-we-counter-item-silver {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.what-we-counter-item-silver:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.what-we-counter-item-silver h2 {
	font-size: 52px;
	font-weight: 700;
}

.what-we-counter-item-silver p {
	margin: 10px 0 0;
}

.what-we-content-body-silver {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 60px;
}

.what-we-content-image-silver {
	width: calc(44% - 15px);
	border-radius: 10px;
}

.what-we-content-image-silver figure {
	display: block;
	height: 100%;
	border-radius: 10px;
}

.what-we-content-image-silver img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 1.465;
	object-fit: cover;
	border-radius: 10px;
}

.what-we-items-btn-silver {
	width: calc(56% - 15px);
}

.what-we-item-silver {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.what-we-item-silver:last-child {
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.what-we-item-silver .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 5px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
}

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

.what-we-item-silver:hover .icon-box::before {
	transform: rotate(0) scale(1);
}

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

.what-we-item-silver:hover .icon-box img {
	filter: brightness(0) invert(1);
}

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

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

.what-we-item-content-silver p {
	margin: 10px 0 0 0;
}

.what-we-do-btn-silver {
	margin-top: 60px;
}

.our-award-silver {
	background-image: none;
	padding: 100px 0;
}

.award-title-box-silver {
	margin-right: 15px;
}

.award-counter-box-silver {
	background: url('../images/award-counter-bg-silver.png') no-repeat;
	background-position: center center;
	background-size: cover;
	max-width: 600px;
	text-align: center;
	padding: 70px;
	margin: 0 auto;
}

.award-counter-box-silver h2 {
	font-size: 100px;
	color: var(--white-color);
}

.award-counter-box-silver h3 {
	font-size: 20px;
	max-width: 330px;
	line-height: 1.4em;
	color: var(--white-color);
	margin: 10px auto 0;
}

.award-item-silver {
	background-color: var(--dark-divider-color);
	border-radius: 100px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	padding: 20px;
	margin-bottom: 40px;
}

.award-item-silver:last-child {
	margin-bottom: 0;
}

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

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

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

.award-item-silver .icon-box img {
	position: relative;
	width: 100%;
	max-width: 74px;
	z-index: 1;
}

.award-item-content-silver {
	width: calc(100% - 120px);
}

.award-item-content-silver h3 {
	font-size: 20px;
	color: var(--white-color);
}

.award-item-content-silver ul {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	gap: 15px 20px;
	margin: 25px 0 0 0;
	padding: 0;
}

.award-item-content-silver ul li {
	font-size: 14px;
	color: var(--white-color);
	border: 1px solid var(--dark-divider-color);
	border-radius: 30px;
	padding: 8px 20px;
}

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

.pricing-item-silver {
	background-color: var(--secondary-color);
	border-radius: 10px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 15px;
}

.pricing-item-header-silver {
	padding: 15px 15px 30px;
}

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

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

.pricing-item-silver:hover .pricing-item-header-silver .icon-box::before {
	border-radius: 0;
	transform: rotate(0) scale(1);
}

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

.pricing-item-silver:hover .pricing-item-header-silver .icon-box img {
	filter: brightness(1) invert(1);
}

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

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

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

.pricing-item-list-silver h2 {
	font-size: 40px;
	font-weight: 700;
}

.pricing-item-list-silver h2 sub {
	font-size: 20px;
	font-weight: 400;
	text-transform: capitalize;
	bottom: 0;
}

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

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

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

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

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

.pricing-item-btn-silver .btn-default {
	width: 100%;
	padding: 17px;
	text-align: center;
}

.pricing-item-btn-silver .btn-default::before {
	display: none;
}

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

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

.pricing-benefit-list-silver ul li {
	display: inline-flex;
	align-items: center;
}

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

.our-working-process-silver {
	position: relative;
	background-image: url('../images/working-process-bg-silver.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	padding: 100px 0;
	overflow: hidden;
}

.our-working-process-silver::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background-color: var(--primary-color);
	opacity: 80%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.our-working-process-silver .container {
	position: relative;
	z-index: 1;
}

.working-process-item-list-silver {
	display: flex;
	flex-wrap: wrap;
	align-items: end;
	gap: 30px;
}

.working-process-item-silver {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	width: calc(25% - 22.5px);
	gap: 80px;
}

.working-process-item-silver:nth-child(even) {
	flex-direction: column-reverse;
	margin: 0 0 170px;
}

.working-process-no-silver {
	position: relative;
}

.working-process-no-silver::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -40px;
	right: 0;
	width: calc(100% + 30px);
	height: 1px;
	background-color: var(--dark-divider-color);
}

.working-process-item-silver:nth-child(even) .working-process-no-silver::before {
	bottom: auto;
	top: -38px;
}

.working-process-item-silver:nth-child(4n + 4) .working-process-no-silver::before,
.working-process-item-silver:last-child .working-process-no-silver::before {
	width: 100%;
}

.working-process-no-silver h2 {
	color: var(--white-color);
	font-size: 52px;
	line-height: 1em;
	text-align: center;
}

.working-process-body-silver {
	background-color: var(--dark-divider-color);
	backdrop-filter: blur(20px) saturate(100%);
	-webkit-backdrop-filter: blur(20px) saturate(100%);
	padding: 30px;
	border-radius: 10px;
	height: 100%;
	margin-top: 30px;
}

.working-process-body-silver .icon-box {
	position: relative;
	background: var(--accent-color);
	border-radius: 5px;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	margin: -60px auto 20px;
}

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

.working-process-body-silver:hover .icon-box::before {
	border-radius: 0;
	transform: rotate(0) scale(1);
}

.working-process-body-silver .icon-box img {
	position: relative;
	width: 100%;
	max-width: 30px;
	z-index: 1;
}

.working-process-item-content-silver {
	text-align: center;
}

.working-process-item-content-silver h3 {
	color: var(--white-color);
	font-size: 20px;
}

.working-process-item-content-silver p {
	color: var(--white-color);
	margin: 10px 0 0 0;
}

.our-team-silver {
	padding: 100px 0 70px;
}

.team-item-silver {
	position: relative;
	border-radius: 10px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

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

.team-item-image-silver figure {
	display: block;
	border-radius: 10px;
}

.team-item-image-silver img {
	width: 100%;
	aspect-ratio: 1 / 1.20;
	object-fit: cover;
	transition: all 0.6s ease-in-out;
	border-radius: 10px;
}

.team-item-silver:hover .team-item-image-silver img {
	transform: scale(1.06);
}

.team-item-body-silver {
	position: absolute;
	right: 20px;
	bottom: 20px;
	left: 20px;
	background-color: var(--primary-color);
	border-radius: 10px;
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	align-items: center;
	z-index: 2;
}

.team-item-content-silver h3 {
	font-size: 20px;
	color: var(--white-color);
}

.team-item-content-silver h3 a {
	color: inherit;
}

.team-item-content-silver p {
	color: var(--white-color);
	margin: 10px 0 0 0;
}

.team-social-list-box-silver {
	position: relative;
}

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

.team-social-btn-silver a:hover {
	background-color: var(--white-color);
}

.team-social-btn-silver a i {
	font-size: 24px;
	color: var(--primary-color);
}

.team-social-list-silver {
	position: absolute;
	right: 25px;
	bottom: 100%;
	transform: translate(50%, -30px);
	opacity: 0;
	visibility: hidden;
	z-index: 2;
	transition: all 0.4s ease-in-out;
}

.team-item-silver:hover .team-social-list-silver {
	opacity: 1;
	visibility: visible;
	transform: translate(50%, -55px);
}

.team-social-list-silver ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.team-social-list-silver ul li a {
	width: 36px;
	height: 36px;
	color: var(--accent-color);
	background: var(--primary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.4s ease-in-out;
}

.team-social-list-silver ul li a i {
	font-size: 18px;
	color: inherit;
}

.team-social-list-silver ul li a:hover {
	background: var(--white-color);
	color: var(--primary-color);
}

.our-testimonials-silver {
	background: var(--secondary-color);
	padding: 100px 0;
}

.testimonial-image-box-silver {
	position: relative;
	height: 100%;
}

.testimonial-image-silver {
	height: 100%;
}

.testimonial-image-silver figure {
	display: block;
	height: 100%;
	border-radius: 10px;
}

.testimonial-image-silver figure img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1/1.098;
	object-fit: cover;
	border-radius: 10px;
}

.testimonial-content-box-silver {
	height: 100%;
	align-content: center;
	margin-left: 15px;
}

.testimonial-slider-silver {
	margin-top: 60px;
}

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

.testimonial-item-rating {
	margin-bottom: 20px;
}

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

.testimonial-item-content-silver p {
	font-size: 20px;
	font-weight: 600;
	color: var(--primary-color);
	margin: 0;
}

.testimonial-item-author-silver {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px;
	margin-top: 50px;
}

.testimonial-author-image-silver figure {
	display: block;
	border-radius: 50%;
}

.testimonial-author-image-silver figure img {
	width: 100%;
	max-width: 50px;
	border-radius: 50%;
}

.testimonial-author-content-silver {
	width: calc(100% - 65px);
	text-align: left;
}

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

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

.testimonial-btn-silver {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	z-index: 2;
}

.testimonial-slider-silver .testimonial-button-next-silver,
.testimonial-slider-silver .testimonial-button-prev-silver {
	position: relative;
	width: 50px;
	height: 50px;
	background-color: var(--white-color);
	border-radius: 50%;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider-silver .testimonial-button-next-silver {
	margin-left: 15px;
}

.testimonial-slider-silver .testimonial-button-next-silver:hover,
.testimonial-slider-silver .testimonial-button-prev-silver:hover {
	background: var(--accent-color);
}

.testimonial-slider-silver .testimonial-button-next-silver::before,
.testimonial-slider-silver .testimonial-button-prev-silver::before {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-image: url('../images/arrow-primary.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px auto;
	transform: rotate(180deg);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.4s ease-in-out;
}

.testimonial-slider-silver .testimonial-button-next-silver::before {
	transform: rotate(360deg);
}

.testimonial-footer-content-silver {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	justify-content: space-between;
	align-items: center;
	border-top: 1px solid var(--divider-color);
	padding-top: 40px;
	margin-top: 40px;
}

.section-footer-text.section-footer-contact {
	width: calc(72% - 15px);
	justify-content: left;
}

.section-footer-text.section-footer-contact span {
	margin-right: 5px;
}

.testimonial-footer-content-silver .section-footer-text {
	margin-top: 0;
}

.testimonial-review-box-silver {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	width: calc(28% - 15px);
}

.testimonial-review-box-silver .icon-box img {
	width: 100%;
	max-width: 35px;
}

.testimonial-review-box-content-silver h3 {
	font-size: 20px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.testimonial-review-box-content-silver span {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 5px;
}

.testimonial-review-box-content-silver span i {
	font-size: 12px;
	color: var(--accent-color);
}

.testimonial-review-box-content-silver p {
	font-size: 14px;
	margin: 5px 0 0 0;
}

.main-footer-silver {
	background-image: none;
	padding: 100px 0 0;
}

.footer-header-silver {
	text-align: center;
	border-bottom: 1px solid var(--dark-divider-color);
	margin: 0 auto 60px;
	padding-bottom: 60px;
}

.footer-header-silver .section-title {
	max-width: 990px;
	margin: 0 auto;
}

.footer-header-silver .footer-header-btn-silver {
	margin-top: 40px;
}

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

.about-footer-content-silver {
	max-width: 500px;
	margin-top: 40px;
}

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

.about-footer-silver .footer-menu-silver {
	margin-top: 40px;
}

.footer-menu-silver ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 30px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-menu-silver ul li {
	position: relative;
	line-height: 1.5em;
	color: var(--white-color);
}

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

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

.footer-menu-silver.footer-privacy-policy-silver ul li::before {
	content: '';
	position: absolute;
	top: 50%;
	right: -18px;
	background: var(--accent-color);
	transform: translateY(-50%);
	width: 6px;
	height: 6px;
}

.footer-menu-silver.footer-privacy-policy-silver ul li:last-child::before {
	display: none;
}

.footer-newsletter-box-silver {
	max-width: 500px;
	margin: 0 0 0 auto;
}

.footer-newsletter-form-silver h3 {
	font-size: 20px;
	color: var(--white-color);
	margin-bottom: 20px;
}

.footer-newsletter-form-silver .form-group {
	width: 100%;
	display: flex;
	background: transparent;
	border: 1px solid var(--dark-divider-color);
	border-radius: 10px;
	padding: 4px;
}

.footer-newsletter-form-silver .form-group .form-control {
	width: calc(100% - 40px);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2em;
	color: var(--white-color);
	background: transparent;
	border: none;
	border-radius: 0;
	outline: none;
	box-shadow: none;
	padding: 6px 14px;
}

.footer-newsletter-form-silver .form-group .form-control::placeholder {
	color: var(--white-color);
}

.footer-newsletter-form-silver .form-group .newsletter-btn {
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--accent-color);
	border: none;
	border-radius: 6px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-silver .form-group .newsletter-btn i {
	font-size: 20px;
	color: var(--primary-color);
	margin-right: 2px;
}

.footer-newsletter-form-silver .form-group .newsletter-btn:hover {
	background-color: var(--white-color);
}

.footer-newsletter-form-silver .form-group .newsletter-btn img {
	max-width: 16px;
	transition: all 0.3s ease-in-out;
}

.footer-newsletter-form-silver .form-group .newsletter-btn:hover img {
	transform: rotate(45deg);
}

.footer-social-links-silver {
	margin-top: 40px;
}

.footer-social-links-silver ul {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.footer-social-links-silver ul li a {
	width: 36px;
	height: 36px;
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: all 0.3s ease-in-out;
}

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

.footer-social-links-silver ul li a i {
	font-size: 18px;
	color: var(--accent-color);
	transition: all 0.3s ease-in-out;
}

.footer-social-links-silver ul li a:hover i {
	color: var(--primary-color);
}

.footer-copyright-silver {
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 60px;
	padding: 40px 0;
}

.footer-copyright-box-silver {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 10px 30px;
}

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

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

	.main-header.header-silver .header-sticky {
		width: calc(100% - 30px);
	}
}

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

	.about-us-item-list-silver {
		gap: 20px;
	}

	.about-us-item-silver {
		width: calc(50% - 10px);
		padding: 10px;
	}

	.service-item-header-silver {
		padding: 30px 15px 0;
	}

	.service-item-image-silver figure {
		max-height: 145px;
	}

	.what-we-box-header-silver {
		margin-bottom: 30px;
	}

	.what-we-body-image-silver {
		width: calc(62% - 15px);
	}

	.what-we-counter-box-silver {
		width: calc(38% - 15px);
	}

	.what-we-counter-box-title-silver h3 {
		margin-bottom: 30px;
	}

	.what-we-do-btn-silver {
		margin-top: 40px;
	}

	.pricing-item-body-silver {
		padding: 30px 25px;
	}

	.working-process-body-silver {
		padding: 30px 20px;
	}

	.testimonial-review-box-silver {
		gap: 10px;
	}

	.testimonial-review-box-silver .icon-box img {
		max-width: 30px;
	}

	.testimonial-review-box-content-silver span {
		gap: 0px;
	}
}

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

	.hero-content-silver {
		height: auto;
		margin-bottom: 30px;
	}

	.hero-image-silver {
		height: auto;
		max-width: 70%;
		margin: 0 auto;
	}

	.about-us-image-box-silver {
		height: auto;
		margin: 0 0 30px;
	}

	.about-image-box-1-silver,
	.about-us-content-silver {
		height: auto;
	}

	.about-image-box-1-silver img {
		aspect-ratio: 1 / 0.8;
	}

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

	.service-item-image-silver figure {
		max-height: 175px;
	}

	.what-we-do-box-silver {
		margin: 0;
	}

	.what-we-body-image-silver img {
		max-width: 300px;
	}

	.what-we-do-content-silver {
		margin-bottom: 30px;
	}

	.what-we-content-image-silver img {
		aspect-ratio: 1 / 1.065;
	}

	.award-title-box-silver {
		margin: 0 0 30px 0;
	}

	.working-process-item-silver {
		width: calc(50% - 15px);
		gap: 50px;
	}

	.working-process-item-silver:nth-child(odd) {
		margin: 0;
	}

	.working-process-no-silver::before {
		width: calc(100% + 20px);
	}

	.working-process-item-silver:nth-child(even) {
		flex-direction: column;
		margin: 0px;
	}

	.working-process-no-silver::before {
		width: 100%;
		bottom: -25px;
	}

	.working-process-item-silver:nth-child(even) .working-process-no-silver::before {
		top: auto;
		bottom: -25px;
	}

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

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

	.testimonial-image-box-silver {
		height: auto;
		margin-bottom: 30px;
	}

	.testimonial-image-silver figure img {
		aspect-ratio: 1 / 0.8;
	}

	.testimonial-content-box-silver {
		margin-left: 0;
	}

	.testimonial-slider-silver {
		margin: 0;
	}

	.testimonial-item-author-silver {
		margin-top: 40px;
	}
}

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

	.main-header.header-silver {
		top: 0px;
	}

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

	header.main-header.header-silver .header-sticky.active {
		border-radius: 0;
	}

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

	.hero-silver {
		padding: 140px 0 0;
	}

	.hero-content-body-silver {
		margin-bottom: 40px;
	}

	.hero-body-item-silver .icon-box {
		height: 50px;
		width: 50px;
	}

	.hero-body-item-silver .icon-box img {
		max-width: 24px;
	}

	.hero-body-item-content-silver {
		width: calc(100% - 65px);
	}

	.hero-image-silver img {
		margin-bottom: 0;
	}

	.about-us-silver {
		padding: 50px 0;
	}

	.about-counter-box-silver {
		gap: 20px;
		padding: 20px;
	}

	.about-counter-silver h2 {
		font-size: 40px;
	}

	.about-us-item-list-silver {
		margin-bottom: 30px;
	}

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

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

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

	.about-us-body-silver .skills-progress-bar {
		margin-bottom: 30px;
	}

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

	.our-services-silver {
		padding: 50px 0;
		background-size: 250px auto;
	}

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

	.what-we-header-counter-silver h2 {
		font-size: 42px;
	}

	.what-we-counter-item-silver h2 {
		font-size: 42px;
	}

	.what-we-counter-item-silver p {
		margin: 5px 0 0;
	}

	.what-we-content-body-silver {
		margin-top: 0;
	}

	.what-we-item-silver {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

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

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

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

	.our-award-silver {
		padding: 50px 0;
	}

	.award-counter-box-silver {
		padding: 50px;
	}

	.award-counter-box-silver h2 {
		font-size: 70px;
	}

	.award-item-silver {
		margin-bottom: 30px;
		padding: 15px;
	}

	.award-item-silver .icon-box {
		height: 80px;
		width: 80px;
	}

	.award-item-silver .icon-box img {
		max-width: 64px;
	}

	.award-item-content-silver {
		width: calc(100% - 100px);
	}

	.our-pricing-silver {
		padding: 50px 0;
	}

	.pricing-item-header-silver .icon-box {
		height: 50px;
		width: 50px;
		margin-bottom: 30px;
	}

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

	.pricing-item-body-silver {
		padding: 20px 15px;
	}

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

	.pricing-item-list-silver h2 {
		font-size: 36px;
	}

	.pricing-item-list-silver sub {
		font-size: 18px;
	}

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

	.pricing-item-btn-silver .btn-default {
		padding: 14px;
	}

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

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

	.our-working-process-silver {
		padding: 50px 0;
	}

	.working-process-body-silver {
		padding: 20px;
	}

	.working-process-body-silver .icon-box {
		width: 50px;
		height: 50px;
	}

	.working-process-body-silver .icon-box {
		margin: -45px auto 20px;
	}

	.working-process-no-silver h2 {
		font-size: 40px;
	}

	.our-team-silver {
		padding: 50px 0 20px;
	}

	.team-item-body-silver {
		right: 10px;
		bottom: 10px;
		left: 10px;
	}

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

	.our-testimonials-silver {
		padding: 50px 0;
	}

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

	.testimonial-review-box-silver {
		gap: 20px;
	}

	.main-footer-silver {
		padding: 50px 0 0;
	}

	.footer-header-silver {
		margin-bottom: 30px;
		padding-bottom: 30px;
	}

	.footer-header-silver .footer-header-btn-silver {
		margin-top: 30px;
	}

	.about-footer-silver {
		margin-bottom: 30px;
	}

	.about-footer-content-silver {
		max-width: 100%;
		margin-top: 20px;
	}

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

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

	.testimonial-item-author-silver {
		margin-top: 30px;
	}

	.footer-newsletter-box-silver {
		max-width: 100%;
		margin: 0;
	}

	.footer-social-links-silver {
		margin-top: 30px;
	}

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

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

	.hero-content-body-silver {
		margin-bottom: 30px;
	}

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

	.hero-body-item-silver {
		width: 100%;
		padding: 10px;
	}

	.hero-body-item-content-silver h3 {
		font-size: 18px;
	}

	.hero-content-footer-silver {
		gap: 30px;
	}

	.hero-image-silver {
		max-width: 100%;
	}

	.about-image-box-1-silver img {
		aspect-ratio: 1 / 1.01;
	}

	.about-image-box-2-silver {
		max-width: 70%;
	}

	.about-counter-box-silver {
		max-width: 100%;
		width: auto;
		bottom: 15px;
		left: 15px;
		right: 15px;
		padding: 15px;
	}

	.about-counter-silver h2 {
		font-size: 28px;
	}

	.about-counter-silver p {
		margin: 5px 0 0;
	}

	.about-counter-box-silver .satisfy-client-image img {
		max-width: 34px;
		min-width: 0;
	}

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

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

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

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

	.what-we-do-box-silver {
		padding: 20px;
	}

	.what-we-header-counter-silver {
		width: 100%;
		border-right: none;
		border-bottom: 1px solid var(--divider-color);
		padding: 0 0 10px;
		margin: 0 0 10px;
		margin-right: 0;
	}

	.what-we-header-counter-silver p {
		margin: 5px 0 0 0;
	}

	.what-we-counter-info-silver {
		width: 100%;
	}

	.what-we-header-counter-silver h2 {
		font-size: 30px;
	}

	.what-we-body-silver {
		gap: 20px;
	}

	.what-we-body-image-silver {
		width: calc(52% - 10px);
	}

	.what-we-body-image-silver figure {
		margin: 0 0 -20px -20px;
	}

	.what-we-counter-box-silver {
		width: calc(48% - 10px);
	}

	.what-we-counter-box-title-silver h3 {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.what-we-counter-item-silver {
		margin-bottom: 15px;
		padding-bottom: 15px;
	}

	.what-we-counter-item-silver h2 {
		font-size: 30px;
	}

	.what-we-counter-item-silver p {
		font-size: 14px;
	}

	.what-we-content-image-silver,
	.what-we-items-btn-silver {
		width: 100%;
	}

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

	.what-we-item-content-silver p {
		margin: 5px 0 0 0;
	}

	.what-we-do-btn-silver {
		margin-top: 30px;
	}

	.award-counter-box-silver {
		padding: 30px;
	}

	.award-counter-box-silver h2 {
		font-size: 50px;
	}

	.award-counter-box-silver h3 {
		font-size: 18px;
	}

	.award-item-silver {
		border-radius: 12px;
		margin-bottom: 20px;
	}

	.award-item-content-silver ul li {
		padding: 10px;
	}

	.award-item-content-silver {
		width: 100%;
	}

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

	.award-item-content-silver ul {
		display: flex;
		flex-wrap: wrap;
		gap: 10px;
		margin-top: 15px;
	}

	.pricing-item-silver {
		padding: 10px;
	}

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

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

	.pricing-item-list-silver h2 {
		font-size: 28px;
	}

	.pricing-item-list-silver sub {
		font-size: 16px;
	}

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

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

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

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

	.working-process-item-silver {
		width: 100%;
	}

	.team-item-body-silver {
		padding: 15px;
	}

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

	.team-social-btn-silver a {
		width: 40px;
		height: 40px;
	}

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

	.testimonial-author-content-silver h3 {
		font-size: 18px;
	}

	.testimonial-btn-silver {
		position: initial;
		justify-content: left;
		margin-top: 30px;
	}

	.testimonial-footer-content-silver {
		gap: 20px;
	}

	.section-footer-text.section-footer-contact {
		width: 100%;
	}

	.testimonial-review-box-silver {
		width: 100%;
		justify-content: center;
	}

	.footer-menu-silver ul {
		gap: 5px 12px;
	}

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

	.footer-copyright-box-silver {
		justify-content: center;
	}

	.footer-menu-silver.footer-privacy-policy-silver ul li::before {
		display: none;
	}
}








/* ...................banner............ */

/*====banner start=====*/


@media (max-width:991px) {
	.slide-inner {
		& .bannerContent {
			& .bannerInner {
				.bannerBtn {
					margin-top: 10px;
					text-align: center;
				}
			}
		}
	}

	.project-image img {
		height: auto !important;
	}

	.light-bg-section {
		margin: 0px !important;
	}

	.project-body {
		position: absolute;
		bottom: 0 !important;
		right: 0 !important;
		left: 0 !important;
		text-align: center;
		z-index: 2;
		transform: translateY(75%);
		transition: all 0.5s ease-in-out;
		padding: 20px 5px;
		border-radius: 20px;
		backdrop-filter: blur(51px);
		background: #2d6aae;
	}

	.bannerSlider {

		.slide-inner {
			& .bannerContent {
				bottom: auto !important;
				left: 50% !important;
				width: 100% !important;
				top: 50% !important;
				transform: translate(-50%, -50%) !important;

				& .bannerInner {
					max-width: 550px !important;
					margin: 0 auto !important;



					.bannerH {
						font-size: 26px !important;
						margin-bottom: 20px;
						text-align: center;
					}
				}
			}
		}

		.pageHeader {
			.pageHead {
				font-size: 24px;
			}
		}
	}

	.bannerWrap {
		height: 90vh !important;

		& .bannerArrow {
			background-color: #fec62a9c;
			backdrop-filter: blur(3px);

			&.swiper-button-next {
				bottom: 20px !important;
				right: calc(50% - 60px) !important;
				left: auto !important;
				top: auto !important;
			}

			&.swiper-button-prev {
				bottom: 20px !important;
				left: calc(50% - 60px) !important;
				right: auto !important;
				top: auto !important;
			}

		}

	}

	.slide-inner {
		& .bannerContent {
			& .bannerInner {
				.bannerBtn {
					margin-top: 10px;
				}
			}
		}
	}

	.solutionSec {
		padding-bottom: 150px;
	}

	.slide-inner {
		& .bannerContent {
			& .bannerInner {
				.bannerH {
					font-size: 24px;
				}
			}
		}
	}

	.slide-inner {
		& .bannerContent {
			& .bannerInner {
				& .bannerH {
					&::before {
						width: 70%;
						height: 1px;
						content: "";
						position: absolute;
						left: 0;
						bottom: 0;
						transform: translateX(25%);
						background-color: rgba(255, 255, 255, 0.5);
					}
				}
			}
		}
	}

}

.bannerWrap {
	height: 100vh;
	padding: 0px;
	overflow: hidden;
	position: relative;
























	&::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 200px;
		background: linear-gradient(to bottom, #f9f9f9e0 9.82%, rgba(0, 0, 0, 0.00) 92.77%);
		z-index: 1;
	}

	.swiper-button-prev {
		width: 50px;
		height: 50px;
		border-radius: 6px;
		background-color: #ffffff47;
		color: #ffffff;
		position: absolute;
		bottom: 20px;
		right: 80px;
		left: auto;
		top: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 20px;
		border: 1px solid #ffffff36;
		transition: 0.5s;
	}

	.swiper-button-next {
		width: 50px;
		height: 50px;
		border-radius: 6px;
		background-color: #ffffff47;
		color: #ffffff;
		position: absolute;
		bottom: 20px;
		right: 20px;
		left: auto;
		top: auto;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 20px;
		border: 1px solid #ffffff36;
	}

	.bannerArrow {
		width: 50px;
		height: 50px;
		border-radius: 6px;
		background-color: #fec62a78;
		color: #ffffff;
		position: absolute;
		display: flex;
		justify-content: center;
		align-items: center;
		font-size: 20px;
		border: 1px solid #ffffff36;
		transition: 0.5s;

		&:hover {
			background-color: #FFC700;
			color: #000;
		}

		&.swiper-button-prev {
			bottom: 20px;
			right: 80px;
			left: auto;
			top: auto;
		}

		&.swiper-button-next {
			bottom: 20px;
			right: 20px;
			left: auto;
			top: auto;
		}
	}
}

.slide-inner {
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	background-size: cover;
	background-position: center;

	.bannerContent {
		position: absolute;
		bottom: 40px;
		left: 0;
		width: 100%;

		.bannerInner {
			padding: 30px 30px 50px;
			width: 100%;
			max-width: 680px;
			background-color: rgba(0, 0, 0, 0.5);
			border: 1px solid rgb(255 255 255 / 18%);
			border-radius: 25px;
			backdrop-filter: blur(6px);
			transition: 2s all;
			transform: scale(0.7);

			p {
				color: #fff;
			}

			.btnOne:hover {
				background-color: #fff;
				color: #000;
			}

			.bannerBtn {
				margin-top: 10px;
				/* text-align: center; */
			}

			.bannerH {
				font-size: 41px;
				color: #fff;
				margin-bottom: 20px;
				padding-bottom: 15px;
				line-height: normal;
				font-weight: 300;
				position: relative;
				transition: 1.5s;






































				strong {
					font-weight: 700;
					color: #FFC700;
				}

				&::before {
					width: 70%;
					height: 1px;
					content: "";
					position: absolute;
					left: 0;
					bottom: 0;
					background-color: rgba(255, 255, 255, 0.5);
				}
			}
		}
	}
}

.bannerSlider {
	.swiper-slide-active {
		.bannerInner {
			transform: scale(1);
		}
	}
}

.bannerWrap .swiper-wrapper .swiper-slide,
.bannerWrap .swiper-wrapper,
.bannerWrap .bannerSlider,
.bannerImg {
	height: 100%;
}

.bannerImg img {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	object-position: center center;
}

.bannerVideo {
	width: 100%;
	height: 100%;

	video {
		width: 100%;
		height: 100%;
		object-fit: cover;
		object-position: center center;
	}
}

.bannerWrap .swiper-button-prev,
.bannerWrap .swiper-button-next {
	background-image: none;
}

.container-max {
	width: 100%;
	max-width: 90%;
	margin: 0 auto;
}

.btnOne {
	padding: 10px 25px;
	border-radius: 10px;
	background-color: #FFC700;
	font-weight: 500;
	color: #000;
	display: inline-block;
	transition: 0.5s;
}

/* ==============================
   Header Top Bar
============================== */
.header-top {
	background: #1a4d85;
	color: #fff;
	font-size: 14px;
	padding: 6px 0;
}

.header-top i {
	/* margin-right: 6px; */
	color: #ffffff;
	/* change with your theme */
}

.top-right {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 18px;
}

.top-right a {
	color: #fff;
	text-decoration: none;
	transition: all 0.3s ease;
	font-size: 14px;
}

/* Hover animation */
.top-right a:hover {
	color: #ff3d00;
	transform: translateY(-2px);
}

/* Social icons */
.top-social {
	display: flex;
	gap: 10px;
	margin-left: 10px;
}

.top-social a {
	width: 30px;
	height: 30px;
	background: rgb(45 151 145);
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	transition: 0.3s;
}

.top-social a:hover {
	background: #34a5c3;
	color: #fff;
	transform: translateY(-3px);
}

/* Mobile */
@media(max-width: 767px) {
	.top-left {
		text-align: center;
		margin-bottom: 8px;
	}

	.top-right {
		justify-content: center;
		flex-wrap: wrap;
	}
}

.header-number i {
	color: #fff;
	margin-right: 5px;
}

/* ................header-sticky............... */
/* ================================
   Default Header Style
================================ */
.main-header {
	width: 100%;
	z-index: 100;
	transition: all 0.4s ease-in-out;
}

.main-header img,
.main-header .main-menu .navigation>li>a,
.main-header button {
	transition: all 0.4s ease-in-out;
}

/* ================================
   Sticky Active Style
================================ */
.main-header.is-sticky {
	position: fixed;
	background: rgba(255, 255, 255, 0.95);
	border-bottom: 1px solid #e5e5e5;
	animation: slideDown 0.5s ease forwards;
	top: 0;
	left: 0;
	z-index: 100;
}

/* menu color */
.main-header.is-sticky .main-menu .navigation>li>a {
	color: #000 !important;
	font-weight: 500;
}

/* logo size */
.main-header.is-sticky .navbar-brand img {
	width: 151px;
}

.main-header.is-sticky .navbar-brand {
	position: inherit;
}

/* button */
.main-header.is-sticky button {
	padding: 7px 12px;
	font-size: 14px;
}

/* mobile icon */
.main-header.is-sticky span {
	width: 30px !important;
}

/* ================================
   Slide Animation
================================ */
@keyframes slideDown {
	from {
		transform: translateY(-100%);
	}

	to {
		transform: translateY(0);
	}
}

.approach-items-list .icon-box i {
	font-size: 25px;
	color: #fff;
}

.icon-box i {
	font-size: 32px;
	color: #ffffff;
	/* change to your brand color */
	transition: all 0.3s ease;
}

.service-item:hover .icon-box i {
	transform: translateY(-5px);
}

/************************************/
/***     08. Our Projects css     ***/
/************************************/

.our-projects {
	background: url(../images/our-projects-bg.png);
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-size: auto;
	padding: 50px 0;
}

.project-item {
	position: relative;
	overflow: hidden;
	text-align: center;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	transition: all 0.4s ease-in-out;
}

.project-image {
	overflow: hidden;
	border-radius: 40px;
}

.project-image a {
	position: relative;
	display: block;
}

.project-item .project-image a::before {
	content: "";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	background: linear-gradient(180deg, rgba(217, 217, 217, 0) 0%, rgba(217, 217, 217, 0) 13.02%, rgb(0 0 0 / 0%) 42.5%, rgb(0 0 0 / 14%) 70%, #000000 100%);
	border-radius: 40px;
	background-repeat: no-repeat;
	background-position: center center;
	z-index: 1;
	transition: all 0.4s ease-in-out;
}

.project-image img {
	width: 100%;
	border-radius: 40px;
	aspect-ratio: 1 / 1.2;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
	height: 467px;
}

.project-item:hover .service-image img {
	transform: scale(1.1);
}

.project-body {
	position: absolute;
	bottom: 10px;
	right: 40px;
	left: 40px;
	text-align: center;
	z-index: 2;
	transform: translateY(75%);
	transition: all 0.5s ease-in-out;
	padding: 20px 5px;
	border-radius: 20px;
	backdrop-filter: blur(51px);
	background: #2d6aae;
}

.project-item:hover .project-body {
	transform: translateY(0%);
	bottom: 20px;
}

.project-body-title h3 {
	font-size: 20px;
	font-weight: 500;
	color: #e1e1e1;
	text-transform: capitalize;
	margin-bottom: 11px;
}

.project-content {
	opacity: 0;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
}

.project-item:hover .project-content {
	opacity: 1;
}

.project-content p {
	color: var(--white-color);
}

.project-content-footer .readmore-btn {
	position: relative;
	font-family: var(--accent-font);
	font-size: 18px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--accent-color);
	padding-right: 30px;
	transition: 0.4s ease-in-out;
}

.project-content-footer .readmore-btn:hover {
	color: var(--white-color);
}

.project-content-footer .readmore-btn::after {
	content: '';
	position: absolute;
	top: 1px;
	right: 0;
	bottom: 0;
	background-image: url("../images/readmore-arrow.svg");
	background-repeat: no-repeat;
	background-position: center center;
	width: 24px;
	height: 24px;
	transition: 0.4s ease-in-out;
}

.project-content-footer .readmore-btn:hover::after {
	filter: brightness(0) invert(1);
	right: -4px;
}

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

.light-bg-section {
	margin: 0 25px;
}

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

.section-row .section-title {
	text-align: center;
	margin-bottom: 0;
}

.section-row .section-title p {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
	margin-top: 30px;
}


/* Section */
.animated-video-hero {
	position: relative;
	height: 84vh;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	color: #fff;
}

/* Background Video */
.hero-video {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 110%;
	height: 110%;
	object-fit: cover;
	transform: translate(-50%, -50%);
	z-index: -2;
	animation: zoomVideo 20s ease-in-out infinite alternate;
}

/* Zoom Animation */
@keyframes zoomVideo {
	from {
		transform: translate(-50%, -50%) scale(1);
	}

	to {
		transform: translate(-50%, -50%) scale(1.1);
	}
}

/* Gradient Overlay */
.hero-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: linear-gradient(to right, rgb(0 0 0 / 1%), rgb(0 0 0 / 23%));
	z-index: -1;
}

/* Content */
.hero-content {
	max-width: 850px;
	padding: 20px;
}

/* Subtitle Animation */
.subtitle {
	font-size: 18px;
	letter-spacing: 3px;
	margin-bottom: 20px;
	text-transform: uppercase;
	opacity: 0;
	animation: fadeUp 1s ease forwards;
}

/* Title Animation */
.title {
	font-size: 48px;
	font-weight: 700;
	line-height: 1.3;
	margin-bottom: 30px;
	opacity: 0;
	animation: fadeUp 1.5s ease forwards;
	animation-delay: 0.3s;
}

/* Button */
.hero-btn {
	display: inline-block;
	padding: 14px 35px;
	background: #ff3d00;
	color: #fff;
	font-weight: 600;
	text-decoration: none;
	border-radius: 50px;
	transition: 0.4s ease;
	opacity: 0;
	animation: fadeUp 2s ease forwards;
	animation-delay: 0.6s;
}

.hero-btn:hover {
	background: #fff;
	color: #000;
}

/* Fade Up Animation */
@keyframes fadeUp {
	from {
		transform: translateY(40px);
		opacity: 0;
	}

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

/* Responsive */
@media (max-width: 768px) {
	.title {
		font-size: 30px;
	}
}

.bg-new {
	background-image: url(../images/bg-new.png);
	padding: 80px 0px 50px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}


/* Slider Container */
.project-swiper-gold {
	padding-bottom: 80px;
	position: relative;
	overflow: hidden;
}

/* Custom Navigation Layout */
.swiper-controls-gold {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 40px;
	display: inline-block;
	position: absolute;
	bottom: 70px;
	right: 0;
}

.swiper-nav-btns {
	display: flex;
	gap: 15px;
}

/* Button Design */
.project-next,
.project-prev {
	position: static !important;
	/* Reset swiper default pos */
	width: 50px !important;
	height: 50px !important;
	background: #ffffff;
	border: 1px solid #e5e5e5;
	border-radius: 50%;
	transition: all 0.3s ease-in-out;
}

.project-next:after,
.project-prev:after {
	font-size: 20px !important;
	color: #1a1a1a;
	font-weight: bold;
}

/* Hover Effect - Unity Yellow */
.project-next:hover,
.project-prev:hover {
	background: #FFD700 !important;
	/* Yellow Brand Color */
	border-color: #FFD700 !important;
}

/* Pagination Dots */
.project-pagination.swiper-pagination-bullets {
	position: static;
	width: auto !important;
}

.project-pagination .swiper-pagination-bullet {
	width: 10px;
	height: 10px;
	background: #ccc;
	opacity: 1;
	margin: 0 5px !important;
	transition: 0.3s;
}

.project-pagination .swiper-pagination-bullet-active {
	background: #FFD700 !important;
	width: 35px;
	/* Expand effect */
	border-radius: 5px;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
	.project-item-gold {
		margin: 0 10px;
	}

	.swiper-controls-gold {
		flex-direction: column;
		gap: 20px;
	}
}



.floating-contact {
	position: fixed;
	right: 20px;
	bottom: 263px;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	gap: 15px;
}

.floating-contact a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 55px;
	height: 55px;
	color: #fff;
	border-radius: 50%;
	text-decoration: none;
	animation: pulse 2s infinite;
	transition: transform 0.3s ease;
}

.floating-contact a:hover {
	transform: scale(1.1);
}

.call-button {
	background-color: #1b71cf;
}

.whatsapp-button {
	background-color: #25d366;
}

.download-brochure {
	background-color: #ff9800;
}

/* New orange color for brochure */

.floating-contact i {
	font-size: 22px;
	line-height: 0;
}

/* Pulse animation */
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

/* Responsive fix */
@media (max-width: 480px) {


	.floating-contact {
		right: 15px;
		bottom: 105px;
	}

	.floating-contact a {
		width: 48px;
		height: 48px;
	}

	.floating-contact i {
		font-size: 20px;
	}
}

/* Pulse animation */
@keyframes pulse {
	0% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
	}

	70% {
		box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
	}

	100% {
		box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
	}
}

/* Footer Contact Styles */
.footer-contact-gold .contact-info-item {
	display: flex;
	align-items: flex-start;
	margin-bottom: 15px;
	gap: 12px;
}

.footer-contact-gold .contact-info-item i {
	color: #1a4d85;
	/* Match your yellow/gold theme color */
	font-size: 18px;
	margin-top: 4px;
}

.footer-contact-gold .contact-info-item p {
	color: #1a4d85;
	margin: 0;
	line-height: 1.5;
	font-size: 16px;
}

.footer-contact-gold .contact-info-item a {
	color: #1a4d85;
	text-decoration: none;
	transition: color 0.3s ease;
}

.footer-contact-gold .contact-info-item a:hover {
	color: #ffc107;
}


/* Industry Section Styles */
.industries-slider-section {
	position: relative;
}


.gradient {
	width: 500px;
	height: 500px;
	filter: blur(50px);
	background-image: linear-gradient(#ffbb98ab, #c8e0e9, #99b5cacf);
	animation: rotate 10s cubic-bezier(0.8, 0.2, 0.2, 0.8) alternate infinite;
	border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
	position: absolute;
	top: 5%;
	left: 45%;
	transform: translateX(-50%);
}

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

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

.industry-swiper-custom {
	padding-bottom: 50px !important;
}

.industry-card-v2 {
	position: relative;
	border-radius: 15px;
	overflow: hidden;
	height: 350px;
	cursor: pointer;
}

.ind-img-box {
	width: 100%;
	height: 100%;
}

.ind-img-box img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: 0.5s ease;
}

.ind-content-box {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 21px 20px;
	background: linear-gradient(to top, rgb(0 23 49), transparent);
	text-align: center;
	transition: 0.4s;
}

.ind-content-box i {
	color: #ffc107;
	font-size: 35px;
	margin-bottom: 10px;
	display: block;
	transform: translateY(15px);
	transition: 0.4s;
}

.ind-content-box h4 {
	color: #ffffff;
	font-size: 18px;
	font-weight: 500;
	/* text-transform: uppercase; */
	margin: 0;
}

/* Hover Animation */
.industry-card-v2:hover .ind-img-box img {
	transform: scale(1.1);
	transition: 0.4s;
}

.industry-card-v2:hover .ind-content-box {
	background: rgba(0, 51, 102, 0.8);
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	transition: 0.4s;
}

.industry-card-v2:hover .ind-content-box i {
	transform: translateY(0);
	transition: 0.4s;
}

/* Unique Swiper Dots Design */
.industry-dots-custom.swiper-pagination-bullets {
	bottom: 0px !important;
}

.industry-dots-custom .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: #003366;
	/* Your corporate blue */
	opacity: 0.3;
	transition: 0.3s;
}

.industry-dots-custom .swiper-pagination-bullet-active {
	width: 35px;
	/* Long pill shape */
	border-radius: 20px;
	background: #ffc107;
	/* Your gold color */
	opacity: 1;
}

.map-images img {
	width: 100%;
}

/* Global Export Styling */
.global-export-section {
	background-color: #f7f7f7;
	position: relative;
	overflow: hidden;
}



/* ============================= */
/* Modal Header                  */
/* ============================= */
.pop-up-model .modal-header {
	background: linear-gradient(90deg, #303179, #1a4d85);
	/* red to blue */
	color: #fff;
	padding: 8px 25px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.pop-up-model .modal-header h4 {
	margin: 0;
	font-size: 1.6rem;
	font-weight: 600;
	color: #fff;
}

.pop-up-model .modal-header .btn-close {
	background: #fff;
	color: #000000;
	border: none;
	font-size: 1.2rem;
	font-weight: 700;
	padding: 9px 10px;
	border-radius: 50%;
	cursor: pointer;
	transition: all 0.3s ease;
	display: flex;
	justify-content: center;
	align-items: center;
}

.pop-up-model .modal-header .btn-close:hover {
	background: #ea552b;
	color: #fff;
}

/* ============================= */
/* Modal Body                    */
/* ============================= */
.pop-up-model .modal-body {
	padding: 0px;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.pop-up-model .modal-body .pop-img {
	margin-bottom: 20px;
	border-radius: 10px;
	border: 2px solid #1976d2;
	width: 105px;
}

/* Contact Info Boxes */
.pop-up-model .cbox {
	width: 100%;
	padding: 15px 20px;
	margin-bottom: 15px;
	border-radius: 10px;
	background: #f5f5f5;
	border-left: 5px solid #d32f2f;
}

.pop-up-model .cbox h3 {
	margin: 0 0 5px;
	color: #1976d2;
	font-size: 1.1rem;
}

.pop-up-model .cbox p a {
	color: #d32f2f;
	font-weight: 500;
	text-decoration: none;
}

.pop-up-model .cbox p a:hover {
	text-decoration: underline;
}

/* ============================= */
/* Form Styling                  */
/* ============================= */
.pop-up-model .form1 {
	width: 100%;
}

.pop-up-model .form-group {
	margin-bottom: 20px;
	position: relative;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 12px 15px;
	font-size: 1rem;
	border-radius: 8px;
	border: 1px solid #ccc;
	transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
	border-color: #d32f2f;
	box-shadow: 0 0 8px rgba(211, 47, 47, 0.3);
	outline: none;
}

.form-group textarea {
	resize: none;
	min-height: 100px;
}

.form-control-feedback.right-ok {
	position: absolute;
	right: 15px;
	top: 50%;
	transform: translateY(-50%);
}

/* ============================= */
/* Buttons                       */
/* ============================= */
.pop-up-model .Submit-box {
	background: #273c7e;
	border: none;
	color: #fff;
	font-weight: 500;
	padding: 12px 25px;
	border-radius: 50px;
	cursor: pointer;
	transition: all 0.3s ease;
	width: 50%;
	font-size: 1.1rem;
}

.pop-up-model .Submit-box:hover {
	background: linear-gradient(135deg, #1976d2, #077cb3);
}

/* reCAPTCHA Box */
.somn_n .g-recaptcha {
	transform: scale(0.95);
	transform-origin: 0 0;
	margin: 0 auto 20px auto;
}

/* ============================= */
/* Responsive Design              */
/* ============================= */
@media (max-width: 768px) {
	.pop-up-model .modal-dialog {
		max-width: 90%;
		margin: 30px auto;
	}

	.pop-up-model .modal-header h4 {
		font-size: 1.3rem;
	}

	.pop-up-model .Submit-box {
		font-size: 1rem;
		padding: 10px 20px;
	}

	.pop-up-model .cbox h3 {
		font-size: 1rem;
	}
}

/* Icons in contact boxes */
.cbox h3 i {
	color: #d32f2f;
	/* Red icon */
	margin-right: 10px;
	font-size: 1.2rem;
	vertical-align: middle;
}

/* Optional: hover effect for links */
.cbox p a:hover {
	color: #1976d2;
	/* blue on hover */
	text-decoration: underline;
}

/* Adjust spacing for better alignment */
.cbox h3 {
	display: flex;
	align-items: center;
	margin-bottom: 5px;
	color: #1976d2;
	/* heading color */
	font-weight: 600;
}

.modal-body .row {
	width: 100%;
}


/* Floating Enquiry Button */
.inq-btn-home {
	position: fixed;
	bottom: 30px;
	right: 30px;
	width: 70px;
	height: 70px;
	border-radius: 50%;
	background: linear-gradient(135deg, #ff0000, #0044ff);
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	z-index: 9999;
	box-shadow: 0 0 15px rgba(255, 0, 0, 0.6);
	animation: softBlink 1.8s infinite ease-in-out;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Hover Effect */
.inq-btn-home:hover {
	transform: scale(1.15);
	box-shadow: 0 0 35px rgba(0, 68, 255, 0.9), 0 0 60px rgba(255, 0, 0, 0.8);
}

/* Icon Blinking Animation */
@keyframes softBlink {

	0%,
	100% {
		box-shadow: 0 0 10px #ff0000, 0 0 20px #0044ff;
		opacity: 1;
	}

	50% {
		box-shadow: 0 0 25px #ff0000, 0 0 45px #0044ff;
		opacity: 0.8;
	}
}

/* Animated Text */
.inq-btn-home .blink-text {
	position: absolute;
	bottom: 85px;
	font-size: 15px;
	font-weight: 600;
	text-transform: uppercase;
	background: linear-gradient(90deg, #ff0000, #0044ff);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	letter-spacing: 1px;
	animation: blinkText 2s infinite ease-in-out;
}

/* Text Blinking */
@keyframes blinkText {

	0%,
	100% {
		opacity: 0.2;
		transform: scale(1);
	}

	50% {
		opacity: 1;
		transform: scale(1.05);
	}
}

/* Icon Pulse */
.inq-btn-home i {
	animation: iconPulse 2s infinite ease-in-out;
}

@keyframes iconPulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.2);
	}
}

/* Responsive */
@media (max-width: 768px) {
	.inq-btn-home {
		width: 55px;
		height: 55px;
		font-size: 22px;
		bottom: 20px;
		right: 20px;
	}

	.inq-btn-home .blink-text {
		font-size: 13px;
		bottom: 70px;
	}
}

.inquiry-btn {
	position: fixed !important;
	left: 20px !important;
	bottom: 20px !important;
	z-index: 99 !important;
}

.inquiry-btn .ripple-btn {
	position: relative;
	width: 80px;
	height: 80px;
	border-radius: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.inquiry-btn .ripple-btn svg {
	width: 40px;
	height: 40px;
}

.inquiry-btn .pinkBg {
	background: linear-gradient(90deg, #303179, #1a4d85);
}

.inquiry-btn .ripple {
	position: absolute;
	width: 160px;
	height: 160px;
	z-index: -1;
	left: 50%;
	top: 50%;
	opacity: 0;
	margin: -80px 0 0 -80px;
	border-radius: 100px;
	-webkit-animation: ripple 1.8s infinite;
	animation: ripple 1.8s infinite;
}

@-webkit-keyframes ripple {
	0% {
		opacity: 1;
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

@keyframes ripple {
	0% {
		opacity: 1;
		-webkit-transform: scale(0);
		transform: scale(0);
	}

	100% {
		opacity: 0;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
}

.inquiry-btn .ripple:nth-child(2) {
	animation-delay: 0.3s;
	-webkit-animation-delay: 0.3s;
}

.inquiry-btn .ripple:nth-child(3) {
	animation-delay: 0.6s;
	-webkit-animation-delay: 0.6s;
}

/* ============================= */
/* Modal Base & Dialog           */
/* ============================= */

.pop-up-model .modal-dialog {
	margin: 50px auto;
}

.pop-up-model .modal-content {
	background: #fff;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
	border: 3px solid #234280;
	/* red border */
	animation: fadeInModal 0.5s ease;
}

@keyframes fadeInModal {
	0% {
		transform: translateY(-30px);
		opacity: 0;
	}

	100% {
		transform: translateY(0);
		opacity: 1;
	}
}


.clearfix-p p {
	color: #fff !important;
}

.pop-up-model .modal-left {
	/* width: 38%; */
	background: #fffcfcde;
	padding: 35px 13px;
	/* border-right: 1px solid #ddd; */
}

.pop-up-model .modal-left-col {
	background: #fdfbfc;
	border-right: 1px solid #ddd;
}

.pop-up-model .modal-left .modal-logo {
	width: 99%;
	margin-bottom: 20px;
}

.contact-box {
}

.contact-box p {
	font-size: 15px;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	color: #312865;
	font-weight: 600;
}

.contact-box i {
	font-size: 11px;
	margin-right: 10px;
	color: #fbfbfb;
	/* padding: 6px; */
	background: #254080;
	margin-bottom: 0;
	border-radius: 6px;
	width: 33px;
	height: 33px;
	display: flex;
	justify-content: center;
	align-items: center;
}

/* Optional hover effect */
.contact-box p:hover i {
	transform: scale(1.2);
	transition: .3s ease;
}

.widget:last-child {
	margin-bottom: 0;
	padding-top: 14px;
}

.inner-page-header {
	background-color: #ffffff !important;
}

.post-item-btn{
    display: grid;
}

.post-item-content{
	height: 190px;
}
.som-images{
	width: 100%;
}




.abouticon {
  margin: 0px auto;
  margin-top: 20%;
}


.mission-vision-style2-area {
  position: relative;
  display: block;
  margin:0px 0px 70px 0px;
}

.mission-vision-style2-area .container-fluid {
  padding: 0;
}

.mission-vision-style2-area .row {
  margin-left: 0px;
  margin-right: 0px;
}

.mission-vision-style2-area .row [class*=col-] {
  padding-left: 0px;
  padding-right: 0px;
}

.mission-vision-style2_single_box {
  position: relative;
  display: block;
  background: #ffffff;
  padding-top: 85px;
}

.mission-vision-style2_single_box_bg {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-attachment: scroll;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transform: perspective(400px) scaleY(0);
  transform-origin: bottom;
  transform-style: preserve-3d;
  transition: all 0.7s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.mission-vision-style2_single_box_bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.75;
}

.mission-vision-style2_single_box:hover .mission-vision-style2_single_box_bg {
  transform: perspective(400px) scaleY(1.0);
}

.mission-vision-style2_single_box .icon {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 170px;
  height: 170px;
  background: #ffffff;
  border-radius: 50%;
  margin: 0 auto;
  z-index: 1;
}

.mission-vision-style2_single_box .icon::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  bottom: 10px;
  right: 10px;
  border: 2px solid #e7e9f2;
  border-radius: 50%;
  z-index: -1;
}

.mission-vision-style2_single_box .inner_box {
  position: relative;
  display: block;
  background: #e9ebf4;
  height: 400px;
  padding: 144px 50px 70px;
}

.mission-vision-style2_single_box .inner_box.bg2 {
  background: #e3e6f2;
}

.mission-vision-style2_single_box .inner_box .text {
  position: relative;
  display: block;
  max-width: 590px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.mission-vision-style2_single_box .inner_box .text h3 {
  font-size: 26px;
  line-height: 34px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 17px;
  transition: all 0.7s cubic-bezier(0.62, 0.21, 0.45, 1.52);
}

.mission-vision-style2_single_box:hover .inner_box .text h3 {
  color: #ffffff;
}

.mission-vision-style2_single_box .inner_box .text p {
  font-size: 18px;
  line-height: 30px;
  margin: 0;
  transition: all 0.7s cubic-bezier(0.62, 0.21, 0.45, 1.52);
  color: #000;
  text-align: justify;
}

.mission-vision-style2_single_box:hover .inner_box .text p {
  color: #ffffff;
}

.mission-vision-style2_single_box .inner_box .text .button_box {
  position: relative;
  display: block;
  padding-top: 42px;
}

@media only screen and (max-width:767px) {
  .mission-vision-style2_single_box .inner_box {
    padding: 144px 30px 70px;
  }
}

.text-center {
  text-align: center !important;
}

@media (max-width:1440px) {
  .mission-vision-style2_single_box .inner_box {
    padding: 114px 48px 70px !important;
  }
}

@media (max-width:1380px) {
  .mission-vision-style2_single_box .inner_box {
    padding: 111px 25px 0px !important;
  }
}



/* Custom Stats Section Styles */
.unity-stats-section {
    padding: 60px 0;
    background-color: #ffffff;
    font-family: 'Poppins', sans-serif;
}

.unity-stat-card {
    text-align: center;
    padding: 15px;
    transition: transform 0.3s ease;
}

.unity-stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 80px; /* Desktop size */
    font-weight: 800;
    color: #00008B; /* Dark Blue color from image */
    line-height: 1;
    margin-bottom: 10px;
}

.stat-title {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.stat-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    max-width: 200px;
    margin: 0 auto;
}

/* --- Mobile Responsiveness --- */

/* Tablet and Small Screens */
@media (max-width: 991px) {
    .stat-number {
        font-size: 60px;
    }
    .stat-title {
        font-size: 16px;
    }
}

/* Mobile Phones */
@media (max-width: 576px) {
    .unity-stats-section {
        padding: 40px 0;
    }
    .stat-number {
        font-size: 45px; /* Smaller font for mobile */
    }
    .stat-title {
        font-size: 14px;
    }
    .stat-desc {
        font-size: 12px;
        padding: 0 5px;
    }
    .unity-stat-card {
        margin-bottom: 20px;
    }
}



/* Unique About Section Styles */
.unity-about-premium {
    padding: 100px 0;
    background: #fdfdfd;
    overflow: hidden;
}

.mb-100 { margin-bottom: 100px; }

/* Content Styling */
.about-content-box .sub-title {
    color: #00008B;
    font-weight: 700;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.about-content-box .main-title {
    font-size: 42px;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
}

.about-content-box .main-title span {
    color: #00008B;
    position: relative;
}

.about-content-box .desc-text {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Image Wrapper with Overlap Effect */
.about-image-wrapper {
    position: relative;
    padding-bottom: 50px;
}

.about-image-wrapper .img-main {
    width: 85%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image-wrapper .img-sub {
    position: absolute;
    width: 55%;
    bottom: 0;
    right: 0;
    border: 8px solid #fff;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.about-image-wrapper.reverse .img-main {
    margin-left: 15%;
}

.about-image-wrapper.reverse .img-sub {
    left: 0;
    right: auto;
}

/* Experience Badge */
.experience-badge {
    position: absolute;
    top: 20px;
    right: 40px;
    background: #00008B;
    color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    z-index: 2;
}

.experience-badge span {
    font-size: 30px;
    font-weight: 800;
    display: block;
}

.experience-badge p {
    margin: 0;
    font-size: 12px;
    text-transform: uppercase;
}

/* Button & Lists */
.btn-unity-more {
    display: inline-block;
    background: #00008B;
    color: #fff;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-unity-more:hover {
    background: #000;
    color: #fff;
    transform: translateY(-3px);
}

.feature-list {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.feature-list li {
    margin-bottom: 10px;
    font-weight: 600;
    color: #333;
}

.feature-list i {
    color: #00008B;
    margin-right: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .mb-100 { margin-bottom: 60px; }
    .about-content-box { text-align: center; margin-bottom: 40px; }
    .about-image-wrapper .img-main { width: 100%; }
    .about-image-wrapper .img-sub { width: 60%; right: -10px; }
    .about-content-box .main-title { font-size: 32px; }
}




/* Premium Capabilities Section */
.unity-capabilities-section {
    padding: 80px 0;
    background-color: #fcfcfc;
    font-family: 'Poppins', sans-serif;
}


.title-line {
    width: 60px;
    height: 4px;
    background: #00008B;
    margin: 15px auto 40px;
    border-radius: 2px;
}

.mb-100 { margin-bottom: 100px; }

/* Content Styling */
.cap-main-title {
    font-size: 28px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
}

.cap-main-title .highlight {
    color: #00008B;
    display: block;
    font-size: 36px;
}

.cap-subtitle {
    color: #777;
    font-size: 15px;
    margin-bottom: 25px;
}

/* List Styling */
.cap-list {
    list-style: none;
    padding: 0;
}

.cap-list li {
    padding: 12px 20px;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 8px;
    font-weight: 600;
    color: #444;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: 0.3s ease;
    display: flex;
    align-items: center;
}

.cap-list li i {
    color: #00008B;
    margin-right: 15px;
    font-size: 18px;
}

.cap-list li:hover {
    transform: translateX(10px);
    background: #00008B;
    color: #fff;
}

.cap-list li:hover i {
    color: #fff;
}

/* Image Styling */
.cap-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
}

.cap-img {
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.cap-image-container:hover .cap-img {
    transform: scale(1.05);
}

.cap-label {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 139, 0.9);
    color: #fff;
    padding: 10px 25px;
    font-weight: 700;
    border-radius: 50px;
    backdrop-filter: blur(5px);
}

.cap-label.left {
    right: auto;
    left: 20px;
}

/* Mobile Adjustments */
@media (max-width: 991px) {
    .cap-main-title { font-size: 22px; text-align: center; }
    .cap-main-title .highlight { font-size: 28px; }
    .cap-subtitle { text-align: center; }
    .mb-100 { margin-bottom: 60px; }
    .cap-list li:hover { transform: none; }
}




/* Premium Contact Section Styles */
.unity-contact-section {
    padding: 100px 0;
    background-color: #f4f7f6;
    font-family: 'Poppins', sans-serif;
}

.contact-wrapper {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}

/* Left Side Styling */
.contact-info-side {
    background: #1c4b84; /* Corporate Blue */
    padding: 60px 40px;
    height: 100%;
}

.info-item {
    display: flex;
    margin-bottom: 30px;
}

.icon-box {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    margin-right: 20px;
}

.text-box h5 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.text-box p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Form Side Styling */
.contact-form-side {
    padding: 60px 50px;
}

.form-title {
    font-size: 30px;
    font-weight: 800;
    color: #333;
    margin-bottom: 30px;
}

.form-label {
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.form-control {
    border: 1px solid #eee;
    padding: 12px 15px;
    border-radius: 8px;
    background: #fdfdfd;
    transition: 0.3s;
}

.form-control:focus {
    border-color: #00008B;
    box-shadow: 0 0 10px rgba(0,0,139,0.1);
    background: #fff;
}

.btn-submit {
    background: #1c4b84;
    color: #fff;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s;
    width: 100%;
}

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

.social-links a {
    color: #fff;
    font-size: 18px;
    margin-right: 20px;
    transition: 0.3s;
    opacity: 0.8;
}

.social-links a:hover {
    opacity: 1;
    transform: scale(1.2);
}

/* Mobile Responsive Adjustments */
@media (max-width: 991px) {
    .contact-form-side {
        padding: 40px 30px;
    }
    .contact-info-side {
        padding: 40px 30px;
    }
}



.unity-gallery-section {
        padding: 80px 0;
        background-color: #f9f9f9;
        font-family: 'Poppins', sans-serif;
    }

  
    .title-line {
        width: 60px;
        height: 4px;
        background: #00008B;
        margin: 0 auto 50px;
        border-radius: 2px;
    }

    .gallery-item {
        position: relative;
        overflow: hidden;
        border-radius: 15px;
        height: 300px; /* Desktop height */
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        background: #eee;
    }

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

    /* Glass Blur Overlay */
    .gallery-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 139 / 0%);
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        transition: all 0.4s ease;
        backdrop-filter: blur(4px);
    }

    .gallery-item:hover .gallery-overlay {
        opacity: 1;
    }

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

    /* Fancy Zoom Button */
    .view-btn {
        width: 60px;
        height: 60px;
        background: #fff;
        color: #00008B;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
        text-decoration: none;
        transform: translateY(30px);
        transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    }

    .gallery-item:hover .view-btn {
        transform: translateY(0);
    }

    .view-btn:hover {
        background: #000;
        color: #fff;
    }

    /* Mobile Responsive */
    @media (max-width: 768px) {
        .gallery-item { height: 250px; }
    }


	

	/* Portfolio Journey Styling */
.unity-portfolio-showcase {
    background-color: #fcfcfc;
    font-family: 'Poppins', sans-serif;
}

.portfolio-main-title {
    font-weight: 800;
    font-size: 36px;
    color: #333;
    letter-spacing: 1px;
}

.portfolio-main-title .highlight {
    color: #00008B; /* Dark corporate blue */
}

.title-line {
    width: 80px;
    height: 4px;
    background: #00008B;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 15px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.mb-100 { margin-bottom: 100px; }

/* Process Card Common */
.process-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    transition: transform 0.4s ease;
}

.process-card .img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    height: 350px; /* સરખા માપ માટે */
}

.process-img {
    width: 100%;
    height: 100%;
    /* object-fit: cover; */
    /* transition: 0.6s ease; */
}

.process-number {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 80px;
    font-weight: 800;
    color: rgba(0, 0, 139, 0.08); /* Faint large blue number */
    z-index: 1;
}

/* Hover Effects */
.process-card:hover {
    transform: translateY(-5px);
}

/* Label Styling */
.card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px); /* Modern glass effect */
    font-weight: 700;
    color: #444;
    text-align: center;
    border-top: 1px solid rgba(0,0,0,0.05);
}

.card-label.finished {
    background: #00008B;
    color: #fff;
    border-top: none;
}

/* Left Card (Raw) specifics */
.left-card:hover img {
    /* filter: blur(2px) grayscale(50%); */ /* Hover effect on raw side */
}

/* Right Card (Finished) specifics */
.right-card .img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(rgba(0,0,139,0.1), rgba(0,0,139,0.5)); */ /* Blueish finished glow */
    opacity: 0;
    transition: 0.4s;
}

.right-card:hover .img-wrapper::after {
    opacity: 1;
}

/* Middle Arrow Common */
.process-arrow i, .process-arrow-mobile i {
    color: rgba(0, 0, 139, 0.3);
    animation: pulseArrow 2s infinite;
}

@keyframes pulseArrow {
    0% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 0.6; }
    100% { transform: scale(1); opacity: 0.3; }
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .portfolio-main-title { font-size: 28px; }
    .mb-100 { margin-bottom: 60px; }
    .process-card .img-wrapper { height: 280px; }
    .process-number { font-size: 60px; }
}

@media (max-width: 767px) {
    .process-card { margin-bottom: 20px; }
}