﻿/* ----------------------------------------------------------------------------------------
* Author        : Awaiken
* Template Name : Hirable - Human Resources & Recruiting HTML Template
* File          : CSS File
* Version       : 1.0
* ---------------------------------------------------------------------------------------- */
/* INDEX
----------------------------------------------------------------------------------------
01. Global Variables
02. General css
03. Header css
04. Hero css
05. Our Scrolling Ticker css
06. About Us css
07. Our Services css
08. Why Choose Us css
09. What We Do css
10. Company Success css
11. Scrolling Ticker Text css
12. Our Benefits css
13. How It Work css
14. Our Testimonials css
15. Our Pricing css
16. Our FAQs css
17. Our Blog css
18. Footer css
19. About Us Page css
20. Services Page css
21. Service Single css
22. Blog Archive css
23. Blog Single css
24. Projects Page css
25. Project Single css
26. Team Page css
27. Team Single css
28. Pricing Page css
29. Testimonials Page css
30. Image Gallery css
31. Video Gallery css
32. FAQs Page css
33. Contact Us Page css
34. 404 Error Page css
-------------------------------------------------------------------------------------- */

/************************************/
/*** 	 01. Global Variables	  ***/
/************************************/

:root {
	--primary-color: #000000;
	--secondary-color: #FAFAFA;
	--text-color: #666666;
	--accent-color: #031536;
	--accent-secondary-color: #1B4F72;
	--navy-deep: #031536;
	--navy-mid: #0A2E4F;
	--navy-soft: #1B4F72;
	--navy-light: #2E6B8A;
	--navy-gradient: linear-gradient(135deg, #031536 0%, #0A2E4F 45%, #1B4F72 100%);
	--navy-gradient-soft: linear-gradient(135deg, #1B4F72 0%, #2E6B8A 50%, #4A87A3 100%);
	--navy-text-gradient: linear-gradient(135deg, #A8C4D8 0%, #E8F0F6 48%, #8FB0C9 100%);
	--white-color: #FFFFFF;
	--divider-color: #6666661A;
	--dark-divider-color: #FFFFFF1A;
	--error-color: rgb(230, 87, 87);
	--default-font: "Archivo", sans-serif;
	--gradient: linear-gradient(135deg, #031536 0%, #0A2E4F 35%, #1B4F72 65%, #2E6B8A 100%);
}

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

body {
	font-family: var(--default-font);
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	color: var(--text-color);
	background-color: var(--white-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-secondary-color);
}

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

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

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

figure {
	margin: 0;
}

img {
	max-width: 100%;
}

a {
	text-decoration: none;
}

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

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

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

.container {
	max-width: 1300px;
}

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

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

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

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

.reveal {
	position: relative;
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	visibility: hidden;
	overflow: hidden;
}

.reveal img {
	height: 100%;
	width: 100%;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform-origin: left;
	transform-origin: left;
}

.row {
	margin-right: -15px;
	margin-left: -15px;
}

.row>* {
	padding-right: 15px;
	padding-left: 15px;
}

.row.no-gutters {
	margin-right: 0px;
	margin-left: 0px;
}

.row.no-gutters>* {
	padding-right: 0px;
	padding-left: 0px;
}

.btn-default {
	position: relative;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	text-transform: capitalize;
	background: var(--navy-gradient);
	color: var(--white-color);
	border: 2px solid var(--navy-mid);
	border-radius: 12px;
	padding: 13px 54px 13px 20px;
	overflow: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.btn-default:hover {
	background: transparent;
	color: var(--accent-color) !important;
	border: 2px solid var(--accent-color);
}

.btn-default::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 10px;
	width: 34px;
	height: 34px;
	background-color: var(--navy-deep);
	background-image: url('../images/arrow-white.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px auto;
	border-radius: 8px;
	transform: translateY(-50%);
	transition: all 0.4s ease-in-out;
}

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

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

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

.btn-default.btn-highlighted {
	background: var(--navy-gradient);
	border-color: var(--navy-mid);
	color: var(--white-color);
}

.btn-default.btn-highlighted::before {
	background-color: rgba(3, 21, 54, 0.55);
	background-image: url('../images/arrow-white.svg');
}

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

.btn-default.btn-highlighted::after {
	background-color: var(--white-color);
}

.readmore-btn {
	position: relative;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4em;
	color: var(--accent-color);
	text-transform: capitalize;
	display: inline-block;
	padding-right: 30px;
	transition: all 0.3s ease-in-out;
}

.readmore-btn::before {
	content: '';
	position: absolute;
	top: 50%;
	right: 0;
	width: 22px;
	height: 22px;
	background-image: url('../images/arrow-accent.svg');
	background-repeat: no-repeat;
	background-position: center right;
	background-size: cover;
	transform: translate(-3px, -50%);
	transition: all 0.4s ease-in-out;
}

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

.readmore-btn:hover::before {
	filter: brightness(0) invert(0);
	transform: translate(0, -50%);
}

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

.preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	height: 100dvh;
	z-index: 99999;
	background: var(--accent-color);
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	-webkit-transform: translateZ(0);
	transform: translateZ(0);
}

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


.loading-container {
	margin: 0 auto;
	flex-shrink: 0;
}

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

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

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

#loading-icon img {
	height: 100px;
	width: auto;
	max-width: 160px;
	object-fit: contain;
	border-radius: 20px;
	box-shadow: 8px 6px 2px;
}

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

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

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

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

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

.section-title h3 {
	position: relative;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.4em;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--accent-color);
	padding-left: 15px;
	margin-bottom: 10px;
}

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

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

.section-title h2 {
	font-size: 30px;
	font-weight: 700;
	letter-spacing: -0.02em;
	margin-bottom: 0;
	cursor: none;
}

.section-title h1 span,
.section-title h1 span * {
	color: #1B4F72 !important;
	background: none !important;
	-webkit-background-clip: border-box !important;
	background-clip: border-box !important;
	-webkit-text-fill-color: #1B4F72 !important;
}

.section-title h2 span,
.section-title h2 span * {
	color: #1B4F72 !important;
	background: none !important;
	-webkit-background-clip: border-box !important;
	background-clip: border-box !important;
	-webkit-text-fill-color: #1B4F72 !important;
}

.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 {
	color: var(--white-color);
}

.dark-section .section-title h1 span,
.dark-section .section-title h1 span *,
.dark-section .section-title h2 span,
.dark-section .section-title h2 span * {
	color: #A8C4D8 !important;
	background: none !important;
	-webkit-background-clip: border-box !important;
	background-clip: border-box !important;
	-webkit-text-fill-color: #A8C4D8 !important;
}

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

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

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

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

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

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

.topbar {
	background: var(--accent-secondary-color);
	padding: 4px 0;
	position: relative;
	z-index: 101;
	will-change: transform, opacity;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		opacity 0.35s ease;
}

.topbar.topbar-hidden {
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
}

.topbar-contact-info ul {
	list-style: none;
	padding: 0;
	margin: 0;
	line-height: 1em;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.topbar-contact-info ul li a {
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

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

.topbar-contact-info ul li a i {
	font-size: 16px;
	color: inherit;
	margin-right: 8px;
}

.topbar-social-links {
	text-align: right;
}

.topbar-right {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
	flex-wrap: wrap;
}

.topbar-login-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-size: 13px;
	font-weight: 500;
	color: var(--white-color);
	white-space: nowrap;
	transition: all 0.3s ease-in-out;
}

.topbar-login-link:hover {
	color: rgba(255, 255, 255, 0.8);
}

.topbar-login-link i {
	font-size: 12px;
}

.topbar-social-links ul {
	list-style: none;
	line-height: 1em;
	padding: 0;
	margin: 0;
}

.topbar-social-links ul li {
	display: inline-block;
	border-right: 1px solid rgba(255, 255, 255, 0.25);
	margin-right: 12px;
	padding-right: 12px;
}

.topbar-social-links ul li:last-child {
	margin-right: 0;
	padding-right: 0;
	border-right: none;
}

.topbar-social-links ul li a {
	display: inline-flex;
	align-items: center;
	font-weight: 500;
	text-transform: capitalize;
	color: var(--white-color);
	transition: all 0.3s ease-in-out;
}

.topbar-social-links ul li a:hover {
	color: rgba(255, 255, 255, 0.8);
}

.topbar-social-links ul li a i {
	font-size: 13px;
	color: inherit;
	margin-right: 0;
}

header.main-header {
	position: relative;
	background-color: var(--accent-color);
	border-bottom: 1px solid var(--dark-divider-color);
	z-index: 100;
}

header.main-header .header-sticky {
	position: relative;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	width: 100%;
	background-color: var(--accent-color);
	will-change: transform, box-shadow;
	transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
		box-shadow 0.45s ease,
		background-color 0.35s ease;
}

header.main-header .header-sticky.hide {
	transform: translateY(-100%);
}

header.main-header .header-sticky.active {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	border-radius: 0;
	transform: translateY(-100%);
	background-color: var(--accent-color);
	border-bottom: 1px solid var(--dark-divider-color);
	box-shadow: none;
	z-index: 999;
}

header.main-header .header-sticky.active.is-visible {
	transform: translateY(0);
	box-shadow: 0 10px 28px rgba(3, 21, 54, 0.16);
}

body.header-is-sticky .topbar {
	position: absolute;
	left: 0;
	right: 0;
	width: 100%;
}

.navbar {
	padding: 10px 0;
	align-items: center;
	background: var(--white-color);
}

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

.navbar-brand img {
	height: 50px;
}

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

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

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

.main-menu ul li.nav-item a {
	font-size: 16px;
	font-weight: 600;
	line-height: normal;
	padding: 15px !important;
	color: var(--accent-color);
	text-transform: capitalize;
	transition: all 0.3s ease-in-out;
}

.main-menu ul li.submenu>a:after {
	content: '\f107';
	font-family: 'FontAwesome';
	font-weight: 900;
	font-size: 14px;
	margin-left: 8px;
	margin-top: 2px;
}

.main-menu ul li a:hover,
.main-menu ul li a:focus {
	color: var(--primary-color);
}

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

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

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

.main-menu ul li:hover>ul {
	visibility: visible;
	opacity: 1;
	transform: 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.nav-item a {
	color: var(--primary-color);
	padding: 8px 20px !important;
	transition: all 0.3s ease-in-out;
}

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

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

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

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

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

.slicknav_btn {
	background: var(--accent-secondary-color);
	padding: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 38px;
	height: 38px;
	margin: 0;
	border-radius: 8px;
	transition: all 0.3s ease-in-out;
}

.slicknav_icon .slicknav_icon-bar {
	display: block;
	width: 100%;
	height: 3px;
	width: 22px;
	background-color: var(--white-color);
	border-radius: 8px;
	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-secondary-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: 8px 20px;
	color: var(--white-color);
	line-height: normal;
	margin: 0;
	border-radius: 0 !important;
	transition: all 0.3s ease-in-out;
}

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

.slicknav_menu ul ul li a {
	padding: 8px 20px 8px 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(--accent-color);
}

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

.hero {
	background: var(--accent-color) url('../images/hero-bg.svg') no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 50px 0 0;
}

.hero.hero-bg-image {
	position: relative;
	background: url('../images/hero-bg.webp') no-repeat;
	background-position: center center;
	background-size: cover;
	padding: 170px 0;
}

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

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

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

.hero.hero-bg-image.hero-slider-layout {
	background: none;
	padding: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide {
	position: relative;
	padding: 170px 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: var(--primary-color);
	opacity: 70%;
	width: 100%;
	height: 100%;
	z-index: 1;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image {
	position: absolute;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
}

.hero.hero-bg-image.hero-slider-layout .hero-slide .hero-slider-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination {
	position: absolute;
	bottom: 50px;
	text-align: center;
	z-index: 2;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet {
	width: 12px;
	height: 12px;
	background: var(--dark-divider-color);
	opacity: 1;
	transition: all 0.3s ease-in-out;
	margin: 0 5px;
}

/* Hero banner treatment */
.hero.hero-bg-image.hero-slider-layout .hero-slide::before {
	display: none;
}

.hero.hero-bg-image.hero-slider-layout .section-title h3 {
	color: rgba(255, 255, 255, 0.8) !important;
}

.hero.hero-bg-image.hero-slider-layout .section-title h3::before {
	background: #1B4F72;
}

.hero.hero-bg-image.hero-slider-layout .section-title h1,
.hero.hero-bg-image.hero-slider-layout .section-title h1 *:not(span):not(span *) {
	color: #ffffff !important;
	background: none !important;
	-webkit-background-clip: border-box !important;
	background-clip: border-box !important;
	-webkit-text-fill-color: #ffffff !important;
}

.hero.hero-bg-image.hero-slider-layout .section-title h1 span,
.hero.hero-bg-image.hero-slider-layout .section-title h1 span * {
	color: #1B4F72 !important;
	-webkit-text-fill-color: #1B4F72 !important;
	background: rgba(255, 255, 255, 0.92) !important;
}

.hero.hero-bg-image.hero-slider-layout .section-title h1 span {
	display: inline-block;
	padding: 2px 10px;
	border-radius: 6px;
	line-height: 1.25;
}

.hero.hero-bg-image.hero-slider-layout .section-title p {
	color: rgba(255, 255, 255, 0.85) !important;
	-webkit-text-fill-color: rgba(255, 255, 255, 0.85) !important;
}

.hero.hero-bg-image.hero-slider-layout .hero-btn .btn-default,
.hero.hero-bg-image.hero-slider-layout .hero-btn .btn-default.btn-highlighted {
	background: linear-gradient(135deg, #031536 0%, #0A2E4F 50%, #1B4F72 100%);
	border-color: #0A2E4F;
	box-shadow: 0 10px 28px rgba(3, 21, 54, 0.35);
}

.hero.hero-bg-image.hero-slider-layout .hero-btn .btn-default:hover,
.hero.hero-bg-image.hero-slider-layout .hero-btn .btn-default.btn-highlighted:hover {
	background: #ffffff;
	color: #031536 !important;
	border-color: #ffffff;
}

.hero.hero-bg-image.hero-slider-layout .hero-pagination .swiper-pagination-bullet-active {
	background: #1B4F72;
}

.hero-content {
	position: relative;
	margin-bottom: 30px;
	z-index: 2;
	padding-left: 80px;
}

.hero.hero-bg-image .hero-content {
	margin-bottom: 0;
}

.hero-body {
	width: 100%;
	max-width: 80%;
	margin: 0 auto;
	margin-bottom: 60px;
}

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

.hero-body ul li {
	position: relative;
	color: var(--white-color);
	line-height: 1.5em;
	padding-left: 30px;
}

.hero-body ul li:before {
	display: none;
	content: none;
}

.hero-body ul li i {
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 16px;
	color: var(--accent-secondary-color);
}

.hero-btn {
	position: relative;
	display: inline-block;
}

.hero-btn::before {
	content: '';
	position: absolute;
	right: -110px;
	top: -20px;
	background: url('../images/hero-btn-arrow.svg') no-repeat;
	background-position: center center;
	background-size: cover;
	width: 100px;
	height: 70px;
	animation: ctaarrow 3s infinite linear;
}

@keyframes ctaarrow {
	50% {
		right: -140px;
	}
}

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

.hero-image img {
	width: 100%;
	max-width: 80%;
	aspect-ratio: 1 / 0.66;
	object-fit: cover;
}

/************************************/
/*** 05. Our Scrolling Ticker css ***/
/************************************/

.our-scrolling-ticker {
	background: var(--accent-secondary-color);
	padding: 20px 0;
}

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

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

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

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

.scrolling-content img {
	width: 100%;
	max-width: 135px;
	height: 30px;
}

/************************************/
/*** 	   06. About Us css 	  ***/
/************************************/

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

.about-us-images {
	display: flex;
	flex-wrap: wrap;
	gap: 0 10px;
}

.about-image-box-1 {
	width: calc(39% - 5px);
}

.about-image figure {
	display: block;
	border-radius: 20px;
}

.about-image img {
	width: 100%;
	aspect-ratio: 1 / 0.96;
	object-fit: cover;
	border-radius: 20px;
}

.successful-circle-img {
	margin-bottom: 20px;
	text-align: center;
}

.successful-circle-img img {
	width: 100%;
	max-width: 170px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
	visibility: hidden;
}

@keyframes infiniterotate {
	to {
		transform: rotate(360deg);
	}
}

.about-image-box-2 {
	width: calc(61% - 5px);
	text-align: right;
}

.about-image-box-2 .about-image img {
	aspect-ratio: 1 / 1.349;
}

.about-image-box-3 {
	display: flex;
	align-items: end;
	gap: 10px;
	margin-top: -80px;
	margin-left: -10px;
}

.about-image-box-3 .about-image {
	position: relative;
	width: 100%;
	max-width: 407px;
	z-index: 1;
	overflow: hidden;
}

.about-image-box-3 .about-image figure {
	border: 10px solid var(--white-color);
	border-radius: 30px;
}

.about-image-box-3 .about-image img {
	aspect-ratio: 1 / 0.49;
}

.years-experience-box {
	position: relative;
	width: 100%;
	max-width: 200px;
	display: inline-flex;
	gap: 10px;
	justify-content: space-between;
	align-items: center;
	text-align: left;
	background-color: var(--accent-secondary-color);
	border-radius: 12px;
	padding: 20px;
	margin: 20px 0;
	overflow: hidden;
	display: none;
}

.years-experience-box:before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.years-experience-box:hover::before {
	height: 100%;
}

.years-experience-box h2,
.years-experience-box p {
	position: relative;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.years-experience-box h2 {
	font-size: 44px;
	font-weight: 600;
	width: calc(40% - 5px);
}

.years-experience-box p {
	width: calc(60% - 5px);
	margin-bottom: 0;
}

.years-experience-box:hover h2,
.years-experience-box:hover p {
	color: var(--white-color);
}

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

.about-body-item {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
}

.about-body-item:last-child {
	margin-bottom: 0;
}

.about-body-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	z-index: 1;
}

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

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

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

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

.about-body-item-content {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

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

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

.about-btn {
	margin-top: 40px;
}

/************************************/
/*** 	  07. Our Services css	  ***/
/************************************/

.our-services {
	background: var(--secondary-color) url('../images/service-bg.svg') no-repeat;
	background-size: 100% auto;
	background-position: center center;
	padding: 50px 0;
}

.service-item {
	position: relative;
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	overflow: hidden;
}

.service-item::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 500px 500px 0 0;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.service-item.active::after,
.service-item:hover::after {
	height: 100%;
	border-radius: 0;
}

.service-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--secondary-color);
	border-radius: 50%;
	margin-bottom: 40px;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.service-item .icon-box img {
	width: 100%;
	max-width: 28px;
}

.service-item-content {
	position: relative;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 20px;
	padding-bottom: 20px;
	transition: all 0.3s ease-in-out;
	z-index: 1;
}

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

.service-item-content h3 {
	font-size: 20px;
	margin-bottom: 15px;
	transition: all 0.3s ease-in-out;
}

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

.service-item-content p {
	margin-bottom: 0;
	transition: all 0.3s ease-in-out;
}

.service-readmore-btn {
	position: relative;
	z-index: 1;
}

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

.service-item.active .readmore-btn::before,
.service-item:hover .readmore-btn::before {
	filter: brightness(0) invert(1);
}

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

.section-footer-text p {
	font-size: 18px;
	margin-bottom: 0;
}

.section-footer-text span {
	font-size: 16px;
	font-weight: 700;
	text-transform: capitalize;
	color: var(--white-color);
	background: var(--accent-color);
	padding: 4px 10px;
	border-radius: 4px;
	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);
}

/************************************/
/*** 	 08. Why Choose us css	  ***/
/************************************/

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

.why-choose-content {
	margin-right: 15px;
}

.why-choose-list ul {
	position: relative;
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.why-choose-list ul li {
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	text-transform: capitalize;
	padding-left: 30px;
}

.why-choose-list ul li::before {
	display: none;
	content: none;
}

.why-choose-list ul li i {
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 16px;
	color: var(--accent-color);
}

.why-choose-image {
	position: relative;
}

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

.why-choose-image figure img {
	width: 100%;
	aspect-ratio: 1 / 0.68;
	object-fit: cover;
	filter: brightness(70%);
	border-radius: 20px;
}

.video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
}

.video-play-button a {
	display: block;
	background-color: var(--accent-secondary-color);
	border-radius: 50%;
	width: 70px;
	height: 70px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: none;
}

.video-play-button i {
	font-size: 30px;
	margin-left: 3px;
	color: var(--white-color);
}

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

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

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

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

.why-choose-item {
	position: relative;
	width: calc(25% - 60px);
}

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

.why-choose-item:nth-child(4n + 4):before,
.why-choose-item:last-child:before {
	display: none;
}

.why-choose-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--secondary-color);
	border-radius: 50%;
	margin-bottom: 40px;
}

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

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

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

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

.why-choose-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

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

/************************************/
/*** 	  09. What We Do css 	  ***/
/************************************/

.what-we-do .container-fluid {
	padding: 0;
}

.what-we-do-image {
	height: 100%;
}

.what-we-do-image figure {
	display: block;
	height: 100%;
}

.what-we-do-image img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.8;
	object-fit: cover;
}

.what-we-do-content {
	background: var(--gradient);
	height: 100%;
	align-content: center;
	padding: 50px 5.208vw;
}

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

.what-do-body-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	width: calc(50% - 15px);
}

.what-do-body-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--dark-divider-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	z-index: 1;
}

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

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

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

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

.what-do-body-content {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.what-do-body-content h3 {
	font-size: 20px;
	line-height: 1.3em;
	text-transform: capitalize;
	color: var(--white-color);
}

.what-we-do-footer {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 20px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 50px;
	padding-top: 50px;
}

/* .what-we-do-list {
	width: calc(100% - 180px);
} */

.what-we-do-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.what-we-do-list ul li {
	position: relative;
	line-height: 1.5em;
	color: var(--white-color);
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 25px;
}

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

.what-we-do-list ul li::before {
	display: none;
	content: none;
}

.what-we-do-list ul li i {
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 16px;
	color: #fff;
}

.what-we-do-circle a {
	border-radius: 50%;
	display: block;
}

.what-we-do-circle img {
	width: 100%;
	max-width: 160px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
	display: none;
}

/************************************/
/*** 	10. Company Success css	  ***/
/************************************/

.company-success {
	padding: 50px 0;
}

.company-success-item {
	height: calc(100% - 30px);
	margin-bottom: 30px;
}

.company-success-header {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.company-success-header .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--accent-color);
	border-radius: 50%;
	margin-right: 15px;
	transition: all 0.6s ease-in-out;
}

.company-success-item:hover .company-success-header .icon-box {
	background: transparent;
}

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

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

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

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

.company-success-title {
	width: calc(100% - 65px);
}

.company-success-title h3 {
	font-size: 20px;
}

.company-success-content h2 {
	font-size: 60px;
	margin-bottom: 10px;
}

.company-success-content p {
	margin-bottom: 0;
}

/*************************************/
/*** 11. Scrolling Ticker Text css ***/
/*************************************/

.scrolling-ticker-text {
	margin-bottom: -10px;
}

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

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

.scrolling-ticker-text-content span {
	display: flex;
	align-items: center;
	text-transform: uppercase;
	font-size: 80px;
	font-weight: 600;
	line-height: 1em;
	letter-spacing: -0.02em;
	color: var(--white-color);
	background: var(--text-color);
	background-clip: text;
	-webkit-background-clip: text;
	-webkit-text-stroke: 2px transparent;
}

.scrolling-ticker-text-content span img {
	width: 40px;
	margin-right: 40px;
}

/************************************/
/*** 	 12. Our Benefits css	  ***/
/************************************/

.our-benefits {
	background: var(--secondary-color) url('../images/benefits-bg.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 50px 0 50px;
}

.benefits-content {
	margin-right: 20px;
}

.benefits-body {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-bottom: 30px;
}

.benefits-body-item {
	width: calc(50% - 15px);
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 20px;
}

.benefits-body-item h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.benefits-body-item p {
	margin-bottom: 0;
}

.benefits-body-list {
	width: 100%;
}

.benefits-body-list ul {
	position: relative;
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
	list-style: none;
	margin: 0;
	padding: 0;
}

.benefits-body-list ul li {
	position: relative;
	width: calc(50% - 15px);
	line-height: 1.5em;
	text-transform: capitalize;
	padding-left: 30px;
}

.benefits-body-list ul li::before {
	display: none;
	content: none;
}

.benefits-body-list ul li i {
	position: absolute;
	left: 0;
	top: 2px;
	font-size: 16px;
	color: var(--accent-color);
}

.benefits-images {
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
}

.benefit-image-1 {
	position: relative;
	width: 100%;
	margin-right: 207px;
}

.benefit-image figure {
	display: block;
	border-radius: 20px;
}

.benefit-image img {
	width: 100%;
	aspect-ratio: 1 / 0.775;
	object-fit: cover;
	border-radius: 20px;
}

.benefit-image-circle {
	position: absolute;
	right: 0;
	top: 50px;
	transform: translateX(50%);
}

.benefit-image-circle a {
	display: block;
	border-radius: 50%;
}

.benefit-image-circle img {
	width: 100%;
	max-width: 140px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

.benefit-image-2 {
	position: relative;
	margin-top: -90px;
	z-index: 1;
}

.benefit-image-2 .benefit-image {
	width: 100%;
	max-width: 544px;
	border: 10px solid var(--secondary-color);
	border-radius: 30px;
}

.benefit-image-2 .benefit-image img {
	aspect-ratio: 1 / 0.611;
}

.benefit-project-info {
	position: absolute;
	bottom: 80px;
	left: -75px;
	width: 100%;
	max-width: 235px;
	display: flex;
	align-items: center;
	background: var(--white-color);
	box-shadow: 0px 0px 20px 0px #0000001A;
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 18px;
	animation: infiniteboxmove 2.5s infinite linear alternate;
	overflow: hidden;
	z-index: 1;
}

@keyframes infiniteboxmove {
	50% {
		left: -30px;
	}
}

.benefit-project-info::after {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-secondary-color);
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.benefit-project-info:hover::after {
	height: 100%;
}

.benefit-project-info .icon-box {
	width: 50px;
	height: 50px;
	background-color: var(--accent-color);
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	margin-right: 15px;
	transition: all 0.4s ease-in-out;
}

.benefit-project-info:hover .icon-box {
	background: var(--primary-color);
}

.benefit-project-info .icon-box img {
	max-width: 25px;
}

.benefit-project-content {
	width: calc(100% - 65px);
}

.benefit-project-content h3 {
	font-size: 22px;
	color: var(--primary-color);
	margin-bottom: 5px;
}

.benefit-project-content p {
	color: var(--dark-color);
	margin-bottom: 0;
	transition: all 0.4s ease-in-out;
}

.benefit-project-info:hover .benefit-project-content p {
	color: var(--primary-color);
}

/************************************/
/*** 	 13. How It Work css	  ***/
/************************************/

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

.how-work-content {
	position: sticky;
	margin-right: 20px;
	top: 30px;
}

.work-process-item {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 30px;
	border: 1px solid var(--divider-color);
	padding: 30px;
	border-radius: 20px;
	margin-bottom: 40px;
}

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

.work-process-content {
	width: calc(51% - 15px);
}

.work-process-content h3 {
	font-size: 14px;
	font-weight: 500;
	color: var(--accent-color);
	text-transform: uppercase;
	display: inline-block;
	background: var(--secondary-color);
	border-radius: 10px;
	padding: 10px 20px;
	margin-bottom: 20px;
	transition: all 0.3s ease-in-out;
}

.work-process-item:hover .work-process-content h3 {
	background: var(--accent-secondary-color);
	color: #fff;
}

.work-process-content h2 {
	font-size: 20px;
	margin-bottom: 15px;
}

.work-process-content p {
	margin-bottom: 0;
}

.work-process-image {
	width: calc(49% - 15px);
}

.work-process-image figure {
	display: block;
	border-radius: 20px;
}

.work-process-image img {
	width: 100%;
	aspect-ratio: 1 / 0.775;
	object-fit: cover;
	border-radius: 20px;
	transition: all 0.4s ease-in-out;
}

.work-process-item:hover .work-process-image img {
	transform: scale(1.1);
}

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

.our-testimonials {
	background: url('../images/testimonials-bg.webp'), var(--gradient);
	background-repeat: repeat-x;
	background-size: cover;
	/* animation: testimonialbgmove 60s infinite linear; */
	padding: 50px 0;
}

@keyframes testimonialbgmove {
	from {
		background-position: right center;
	}

	to {
		background-position: right 200vw center;
	}
}

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

.testimonial-rating {
	margin-bottom: 20px;
}

.testimonial-rating i {
	font-size: 18px;
	color: #fff;
}

.testimonial-content {
	margin-bottom: 40px;
}

.testimonial-content p {
	color: var(--white-color);
	font-size: 20px;
	margin: 0;
}

.testimonial-author {
	display: flex;
	align-items: center;
}

.author-image {
	position: relative;
	margin-right: 15px;
}

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

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

.testimonial-quote {
	position: absolute;
	width: 16px;
	height: 16px;
	background-color: var(--accent-secondary-color);
	border: 1px solid var(--accent-color);
	border-radius: 50%;
	right: 0;
	bottom: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.testimonial-quote img {
	width: 100%;
	max-width: 10px;
}

.author-content {
	width: calc(100% - 75px);
}

.author-content h3 {
	font-size: 20px;
	margin-bottom: 5px;
	color: var(--white-color);
	text-transform: capitalize;
}

.author-content p {
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

.testimonial-pagination {
	position: absolute;
	bottom: 0;
	right: 0;
	display: flex;
	align-items: center;
	justify-content: right;
	z-index: 2;
}

.testimonial-pagination .swiper-pagination-bullet {
	height: 14px;
	width: 14px;
	background: var(--dark-divider-color);
	border-radius: 50%;
	opacity: 1;
	margin: 0 3px;
	transition: all 0.4s ease-in-out;
}

.testimonial-pagination .swiper-pagination-bullet-active {
	background: var(--accent-secondary-color);
	border-radius: 50%;
}

.testimonials-counter-list {
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
	border-top: 1px solid var(--dark-divider-color);
	margin-top: 80px;
	padding-top: 50px;
}

.testimonials-counter-item {
	width: calc(25% - 22.5px);
	display: flex;
	align-items: center;
}

.testimonials-counter-item h2 {
	width: 60%;
	color: var(--white-color);
	font-size: 60px;
}

.testimonials-counter-item p {
	color: var(--white-color);
	text-transform: capitalize;
	margin: 0;
}

/************************************/
/*** 	 15. Our Pricing css	  ***/
/************************************/

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

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

.pricing-header {
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 30px;
	padding-bottom: 30px;
}

.pricing-header img {
	width: 100%;
	max-width: 50px;
	margin-bottom: 30px;
}

.pricing-header h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.pricing-header p {
	margin-bottom: 30px;
}

.pricing-header h2 {
	font-size: 46px;
	color: var(--accent-color);
}

.pricing-header sub {
	font-size: 16px;
	font-weight: 400;
	text-transform: capitalize;
	color: var(--text-color);
	bottom: 0;
}

.pricing-body {
	margin-bottom: 30px;
}

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

.pricing-body ul li {
	position: relative;
	line-height: 1.5em;
	text-transform: capitalize;
	padding-left: 30px;
	margin-bottom: 15px;
}

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

.pricing-body ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'FontAwesome';
	font-weight: 900;
	left: 0;
	top: 0;
	font-size: 18px;
	color: var(--accent-color);
}

.pricing-footer .btn-default {
	padding: 18px 20px;
	display: block;
	text-align: center;
}

.pricing-footer .btn-default::before {
	display: none;
}

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

.pricing-item.highlighted-box .pricing-header {
	border-bottom-color: var(--dark-divider-color);
}

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

.pricing-item.highlighted-box .pricing-header h3,
.pricing-item.highlighted-box .pricing-header p,
.pricing-item.highlighted-box .pricing-header h2,
.pricing-item.highlighted-box .pricing-header h2 sub,
.pricing-item.highlighted-box .pricing-body ul li {
	color: var(--white-color);
}

.pricing-item.highlighted-box .pricing-body ul li::before {
	color: var(--accent-secondary-color);
}

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

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

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

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

/************************************/
/*** 	  16. Our Faqs css  	  ***/
/************************************/

.our-faqs {
	padding: 50px 0;
	background: url('../images/faqs-bg.svg'), var(--secondary-color);
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% auto;
}

.faqs-image {
	position: relative;
	padding: 10px 35px 0 0;
	margin-right: 20px;
}

.faqs-img figure {
	display: block;
	border-radius: 20px;
}

.faqs-img img {
	width: 100%;
	aspect-ratio: 1 / 1.034;
	object-fit: cover;
	border-radius: 20px;
}

.faq-contact-circle {
	position: absolute;
	top: 0;
	right: 0;
	border: 10px solid var(--secondary-color);
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

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

.faq-contact-circle img {
	width: 100%;
	max-width: 160px;
	animation: infiniterotate 20s infinite linear;
}

.faqs-cta-box {
	width: 260px;
	position: absolute;
	display: flex;
	align-items: center;
	bottom: 20px;
	left: 20px;
	background-color: var(--accent-secondary-color);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
	z-index: 1;
}

.faqs-cta-box:before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.faqs-cta-box:hover:before {
	height: 100%;
}

.faqs-cta-box .icon-box {
	position: relative;
	margin-right: 15px;
	z-index: 1;
}

.faqs-cta-box .icon-box img {
	width: 100%;
	max-width: 40px;
	transition: all 0.3s ease-in-out;
}

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

.faqs-cta-box-content {
	position: relative;
	width: calc(100% - 55px);
	z-index: 1;
}

.faqs-cta-box-content h3 {
	font-size: 16px;
	line-height: 1.3em;
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
	color: #fff;
}

.faqs-cta-box:hover .faqs-cta-box-content h3 {
	color: var(--white-color);
}

.faq-accordion .accordion-item {
	position: relative;
	border: 1px solid var(--divider-color);
	background: var(--white-color);
	border-radius: 10px;
	margin-bottom: 25px;
	padding: 0;
	transition: all 0.3s ease-in-out;
	overflow: hidden;
}

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

.faq-accordion .accordion-header .accordion-button {
	font-size: 20px;
	font-weight: 600;
	line-height: 1.4em;
	background: var(--accent-color);
	color: var(--white-color);
	padding: 20px 60px 20px 30px;
	transition: all 0.3s ease-in-out;
}

.faq-accordion .accordion-header .accordion-button.collapsed {
	color: var(--primary-color);
	background: transparent;
}

.faq-accordion .accordion-button:not(.collapsed) {
	padding-bottom: 14px;
}

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

.faq-accordion .accordion-item .accordion-button.collapsed::after {
	background-color: var(--accent-color);
	background-image: url('../images/arrow-white.svg');
	transform: rotate(90deg);
}

.faq-accordion .accordion-item .accordion-body {
	background: var(--accent-color);
	border-top: 1px solid var(--dark-divider-color);
	padding: 14px 60px 30px 30px;
}

.faq-accordion .accordion-item .accordion-body p {
	color: var(--white-color);
	margin: 0;
}

/************************************/
/*** 	   17. Our Blog css 	  ***/
/************************************/

.our-blog {
	padding: 50px 0;
}

.post-item {
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	overflow: hidden;
}

.post-featured-image a {
	display: block;
	cursor: none;
}

.post-featured-image figure {
	overflow: hidden;
}

.post-featured-image img {
	width: 100%;
	aspect-ratio: 1 / 0.695;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

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

.blog-item-body {
	padding: 30px 25px;
}

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

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

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

/************************************/
/*** 	 	18. Footer css		  ***/
/************************************/

.footer-scrolling-ticker .scrolling-ticker-box {
	--gap: 25px;
}

.footer-scrolling-ticker .scrolling-content span {
	display: flex;
	align-items: center;
	font-size: 20px;
	font-weight: 700;
	letter-spacing: -0.02em;
	text-transform: capitalize;
	line-height: 1.1em;
	color: var(--white-color);
}

.footer-scrolling-ticker .scrolling-content span img {
	max-width: 20px;
	height: 100%;
	margin-right: 25px;
}

.footer-scrolling-ticker .scrolling-content span i {
	font-size: 14px;
	margin-right: 18px;
	color: var(--accent-secondary-color, #DCFD7D);
}

.main-footer {
	background-color: var(--gradient);
	background-image: url('../images/footer-bg.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 50px 0 0;
}

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

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

.footer-social-links {
	display: flex;
	align-items: center;
	gap: 20px;
}

.footer-social-links span {
	font-size: 20px;
	font-weight: 600;
	color: var(--white-color);
}

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

.footer-social-links ul li {
	display: inline-block;
	margin-right: 15px;
}

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

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

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

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

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

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

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

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

.footer-links ul li {
	color: var(--white-color);
	text-transform: capitalize;
	line-height: 1.6em;
	margin-bottom: 10px;
}

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

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

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

.footer-contact-item {
	display: flex;
	align-items: baseline;
	margin-bottom: 20px;
}

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

.footer-contact-item .icon-box {
	width: 30px;
	height: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--white-color);
	border-radius: 50%;
	margin-right: 15px;
}

.footer-contact-item .icon-box i {
	font-size: 12px;
	color: var(--white-color);
}

.footer-contact-content {
	width: calc(100% - 45px);
}

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

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

.footer-contact-content p a:hover {
	color: var(--primary-color);
}

.newsletter-form .form-group {
	display: flex;
	border-radius: 8px;
	overflow: hidden;
}

.newsletter-form .form-group .form-control {
	width: 85%;
	border: none;
	border-radius: 0;
	font-size: 16px;
	line-height: 1.2em;
	font-weight: 400;
	color: var(--text-color);
	outline: none;
	box-shadow: none;
	padding: 15px 0 15px 15px;
}

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

.newsletter-form .form-group .newsletter-btn {
	background-color: var(--white-color);
	width: 15%;
	border: none;
	padding: 0;
}

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

.newsletter-form .form-group .newsletter-btn:hover img {
	filter: brightness(0) invert(0);
}

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

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


/*==================================================
    Footer CTA
==================================================*/

.footer-cta {
	position: relative;
	margin-bottom: -80px;
	z-index: 10;
}

.footer-cta-box {
	background: linear-gradient(135deg, #031536, #1B4F72);
	border-radius: 20px;
	padding: 55px;
	color: #fff;
	box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.footer-cta-content span {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 2px;
	opacity: .8;
	margin-bottom: 15px;
}

.footer-cta-content h2 {
	color: #fff;
	font-size: 42px;
	margin-bottom: 20px;
}

.footer-cta-content p {
	color: rgba(255, 255, 255, .85);
	margin: 0;
	max-width: 700px;
}

.footer-cta .btn-default {
	background: #fff;
	color: #0b3d91;
	border-radius: 50px;
	padding: 16px 35px;
	font-weight: 600;
	transition: .4s;
}

.footer-cta .btn-default:hover {
	transform: translateY(-4px);
}


/*==================================================
    Footer
==================================================*/

.main-footer {
	background: var(--accent-color);
	padding: 50px 0 5px;
	color: #c7d1db;
}

.footer-widget {
	height: 100%;
}

.footer-widget h3 {
	color: #fff;
	font-size: 22px;
	margin-bottom: 35px;
	position: relative;
	padding-bottom: 15px;
}

.footer-widget h3:after {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 55px;
	height: 3px;
	background: #1B4F72;
	border-radius: 30px;
}


/*==================================================
    About
==================================================*/

.footer-about img {
	max-width: 270px;
	background: #fff;
	padding: 10px;
	margin-bottom: 30px;
	border-radius: 20px;
	box-shadow: 8px 6px 2px;
}

.footer-about p {
	line-height: 30px;
	margin-bottom: 30px;
}


/*==================================================
    Social
==================================================*/

.footer-social {
	display: flex;
	gap: 15px;
}

.footer-social a {
	width: 45px;
	height: 45px;
	border-radius: 50%;
	border: 1px solid rgba(255, 255, 255, .12);

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

	color: #fff;

	transition: .4s;
}

.footer-social a:hover {
	background: #1B4F72;
	border-color: #1B4F72;
	transform: translateY(-6px);
}


/*==================================================
    Links
==================================================*/

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

.footer-widget ul li {
	margin-bottom: 16px;
}

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

.footer-widget ul li a {
	color: #c7d1db;
	display: flex;
	align-items: center;
	gap: 10px;
	transition: .35s;
}

.footer-widget ul li a i {
	color: #1B4F72;
	font-size: 12px;
	transition: .35s;
}

.footer-widget ul li:hover a {
	color: #fff;
	padding-left: 8px;
}

.footer-widget ul li:hover a i {
	transform: translateX(6px);
}


/*==================================================
    Contact
==================================================*/

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	margin-bottom: 25px;
}

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

.contact-item .icon {
	width: 52px;
	height: 52px;

	border-radius: 14px;

	background: rgba(255, 255, 255, .05);

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

	color: #fff;

	transition: .35s;
}

.contact-item:hover .icon {
	background: #1B4F72;
	color: #fff;
	transform: translateY(-4px);
}

.contact-item span {
	display: block;
	color: #8f9ba8;
	font-size: 13px;
	margin-bottom: 5px;
}

.contact-item a {
	color: #fff;
}

.contact-item p {
	color: #c7d1db;
	margin: 0;
}


/*==================================================
    Footer Bottom
==================================================*/

.footer-bottom {
	margin-top: 40px;
	padding-top: 8px;
	border-top: 1px solid rgba(255, 255, 255, .08);
}

.footer-bottom a {
	color: #c7d1db;
	margin-left: 25px;
	transition: .3s;
}

.footer-bottom a:hover {
	color: #1B4F72;
}

/************************************/
/*** 	 19. About Us Page css	  ***/
/************************************/

.page-header {
	background: url('../images/page-header-bg.svg'), var(--accent-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 40px 0;
}

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

.page-header-box h1 {
	display: inline-block;
	color: var(--white-color);
	font-size: 30px;
	font-weight: 700;
	line-height: 1.2em;
	letter-spacing: -0.02em;
	margin-bottom: 8px;
	cursor: none;
}

.page-header-box h1 span {
	color: #1B4F72 !important;
	-webkit-text-fill-color: #1B4F72 !important;
}

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

.page-header-box ol li.breadcrumb-item {
	font-size: 16px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: normal;
	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-mission-vision {
	background: var(--secondary-color) url('../images/mission-vision-bg.svg') no-repeat;
	background-position: center center;
	background-size: 100% auto;
	padding: 50px 0;
}

.mission-vision-box {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 30px;
}

.mission-vision-content {
	position: sticky;
	top: 30px;
	width: calc(33% - 20px);
}

.mission-vision-content .section-title {
	margin-bottom: 0;
}

.mission-vision-list {
	width: calc(40% - 20px);
	background-color: var(--white-color);
	border-radius: 20px;
	overflow: hidden;
}

.mission-vision-item {
	position: relative;
	display: flex;
	border-bottom: 1px solid var(--divider-color);
	padding: 30px;
	overflow: hidden;
}

.mission-vision-item:last-child {
	border-bottom: none;
}

.mission-vision-item:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-secondary-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.mission-vision-item:hover:before,
.mission-vision-item.active:before {
	top: auto;
	height: 100%;
}

.mission-vision-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	z-index: 1;
}

.mission-vision-item .icon-box img {
	position: relative;
	width: 100%;
	max-width: 28px;
	z-index: 1;
}

.mission-vision-item-content {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.mission-vision-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.mission-vision-item-content p {
	margin: 0;
}

.mission-vision-image {
	width: calc(27% - 20px);
}

.mission-vision-image figure {
	display: block;
	border-radius: 20px;
}

.mission-vision-image img {
	width: 100%;
	aspect-ratio: 1 / 1.39;
	object-fit: cover;
	border-radius: 20px;
}

.our-commitment {
	padding: 50px 0;
}

.our-commitment-image {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}

.our-commitment-img-1,
.our-commitment-img-2 {
	width: calc(50% - 15px);
}

.our-commitment-img-2 {
	padding-top: 50px;
}

.our-commitment-img-1 figure,
.our-commitment-img-2 figure {
	display: block;
	border-radius: 20px;
}

.our-commitment-img-1 img,
.our-commitment-img-2 img {
	width: 100%;
	aspect-ratio: 1 / 1.64;
	object-fit: cover;
	border-radius: 20px;
}

.commitment-contact-circle {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	border: 10px solid var(--white-color);
	border-radius: 50%;
	overflow: hidden;
	z-index: 1;
}

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

.commitment-contact-circle a img {
	width: 100%;
	max-width: 160px;
	border-radius: 50%;
	animation: infiniterotate 20s infinite linear;
}

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

.our-commitment-list {
	margin-bottom: 40px;
}

.our-commitment-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.our-commitment-list ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

.our-commitment-list ul li:last-child {
	margin-bottom: 0;
}

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

.our-commitment-body {
	display: flex;
	flex-wrap: wrap;
	background-color: var(--accent-color);
	border-radius: 20px;
	overflow: hidden;
}

.commitment-intro-video {
	position: relative;
	width: 50%;
}

.commitment-intro-video figure {
	height: 100%;
}

.commitment-intro-video img {
	width: 100%;
	height: 100%;
	aspect-ratio: 1 / 0.61;
	object-fit: cover;
}

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

.commitment-intro-video .video-play-button i {
	font-size: 20px;
}

.commitment-intro-video .video-play-button a:after,
.commitment-intro-video .video-play-button a:before {
	top: -50%;
	left: -50%;
}

.commitment-body-content {
	width: 50%;
	padding: 20px;
	align-content: center;
}

.commitment-body-content img {
	width: 100%;
	max-width: 32px;
	margin-bottom: 15px;
}

.commitment-body-content h3 {
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 15px;
}

.commitment-body-content p {
	color: var(--white-color);
	margin: 0;
}

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

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

.team-item .team-image {
	position: relative;
	margin-bottom: 20px;
}

.team-item .team-social-icon {
	position: absolute;
	right: 30px;
	bottom: 0;
	left: 30px;
	opacity: 0;
	visibility: hidden;
	transition: all 0.4s ease-in-out;
	z-index: 1;
}

.team-item:hover .team-social-icon {
	bottom: 30px;
	opacity: 1;
	visibility: visible;
}

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

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

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

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

.team-item .team-social-icon ul {
	justify-content: center;
}

.team-item .team-social-icon ul a {
	display: flex;
	cursor: pointer;
}

.team-item .team-image a {
	border-radius: 20px;
	display: block;
	cursor: none;
	overflow: hidden;
}

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

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

.team-item .team-content {
	text-align: center;
	margin-bottom: 0;
}

.team-item .team-content h2 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

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

.team-item .team-content p {
	text-transform: capitalize;
	margin: 0;
}

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

.values-list {
	margin-bottom: 40px;
}

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

.values-list ul li {
	position: relative;
	color: var(--primary-color);
	font-size: 20px;
	font-weight: 500;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 15px;
}

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

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

.values-body {
	background: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 30px;
	display: flex;
	flex-wrap: wrap;
	gap: 20px 30px;
}

.values-body-item {
	width: calc(50% - 15px);
	display: flex;
	align-items: center;
}

.values-body-item .icon-box {
	position: relative;
	height: 50px;
	width: 50px;
	background-color: var(--secondary-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	z-index: 1;
}

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

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

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

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

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

.values-body-item-content h3 {
	font-size: 20px;
	line-height: 1.3em;
	text-transform: capitalize;
}

.values-image {
	position: relative;
	background: url('../images/values-image-bg.svg') no-repeat;
	background-position: bottom 85px right 62px;
	background-size: auto;
	padding-right: 111px;
	margin-left: 15px;
}

.values-image:before {
	content: '';
	position: absolute;
	top: 0;
	right: 60px;
	width: 40px;
	height: 240px;
	background-color: var(--accent-secondary-color);
	border-radius: 12px;
}

.values-img figure {
	display: block;
	border-radius: 20px;
}

.values-img img {
	width: 100%;
	aspect-ratio: 1 / 1.05;
	object-fit: cover;
	border-radius: 20px;
}

.award-winning-box {
	position: absolute;
	right: 0;
	bottom: 30px;
	display: flex;
	align-items: center;
	background-color: var(--accent-color);
	border: 5px solid var(--white-color);
	border-radius: 20px;
	padding: 15px;
	overflow: hidden;
	z-index: 1;
}

.award-winning-box:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 0;
	height: 100%;
	background: var(--accent-secondary-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.award-winning-box:hover:before {
	right: auto;
	left: 0;
	width: 100%;
}

.award-winning-box .icon-box {
	margin-right: 10px;
}

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

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

.award-winning-content {
	position: relative;
	width: calc(100% - 70px);
	z-index: 1;
}

.award-winning-content h3 {
	color: var(--white-color);
	font-size: 20px;
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
}

.award-winning-box:hover .award-winning-content h3 {
	color: var(--primary-color);
}

/************************************/
/*** 	 20. Services Page css	  ***/
/************************************/

.page-services {
	padding: 50px 0;
}

/************************************/
/*** 	 21. Service Single css	  ***/
/************************************/

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

.page-single-sidebar {
	position: sticky;
	top: 20px;
	margin-right: 20px;
}

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

.page-catagery-list h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 30px;
}

.page-catagery-list ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.page-catagery-list ul li {
	margin-bottom: 20px;
}

.page-catagery-list ul li:last-child {
	margin: 0;
}

.page-catagery-list ul li a {
	position: relative;
	display: block;
	line-height: normal;
	text-transform: capitalize;
	color: var(--text-color);
	background-color: var(--white-color);
	border-radius: 12px;
	line-height: 1.5em;
	padding: 16px 50px 16px 20px;
	transition: all 0.4s ease-in-out;
	overflow: hidden;
	z-index: 1;
}

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

.page-catagery-list ul li a::before {
	content: '';
	position: absolute;
	right: 20px;
	top: 50%;
	transform: translate(0px, -50%);
	background-image: url('../images/arrow-accent.svg');
	background-color: var(--secondary-color);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 20px auto;
	border-radius: 4px;
	width: 24px;
	height: 24px;
	transition: all 0.3s ease-in-out;
}

.page-catagery-list ul li a::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	transition: all 0.4s ease-in-out;
	z-index: -1;
}

.page-catagery-list ul li:hover a::after {
	top: 0;
	height: 100%;
}

.sidebar-cta-box {
	position: relative;
	background: url('../images/sidebar-cta-bg.webp') no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 30px;
	padding: 30px;
	overflow: hidden;
}

.sidebar-cta-box: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: 0;
}

.sidebar-cta-logo,
.sidebar-cta-content {
	position: relative;
	z-index: 1;
}

.sidebar-cta-logo {
	margin-bottom: 120px;
}

.sidebar-cta-logo img {
	width: 100%;
	max-width: 60px;

}

.sidebar-cta-content h3 {
	font-size: 20px;
	line-height: 1.3em;
	text-transform: capitalize;
	color: var(--white-color);
	margin-bottom: 40px;
}

.sidebar-cta-content .btn-default img {
	width: 100%;
	max-width: 20px;
	margin-right: 10px;
}

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

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

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

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

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

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

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

.service-entry h2 span {
	color: #1B4F72 !important;
	-webkit-text-fill-color: #1B4F72 !important;
}

.service-entry ul {
	display: flex;
	flex-wrap: wrap;
	gap: 16px 24px;
	background: var(--secondary-color);
	border-radius: 20px;
	list-style: none;
	margin-bottom: 20px;
	padding: 24px;
}

.service-entry ul li {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 12px;
	width: calc(50% - 12px);
	line-height: 1.55em;
	padding-left: 0;
}

.service-entry ul li::before {
	display: none;
	content: none;
}

.service-entry ul li>i {
	color: var(--accent-secondary-color);
	font-size: 16px;
	line-height: 1.55em;
	margin-top: 2px;
	flex-shrink: 0;
	width: 20px;
	text-align: center;
}

.service-entry ul li span,
.service-entry ul li>strong {
	flex: 1;
}

.service-expert-box,
.service-approach-box,
.service-solution-box {
	margin-top: 60px;
}

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

.service-expert-list .about-body-item {
	width: calc(50% - 15px);
	margin-bottom: 0;
}

.service-approach-box ul {
	margin-top: 40px;
}

.service-solution-image-content,
.service-solution-item-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.service-solution-image-content {
	align-items: center;
}

.service-solution-image,
.service-solution-image-content .why-choose-item {
	width: calc(50% - 15px);
}

.service-solution-image figure {
	display: block;
	border-radius: 20px;
}

.service-solution-image img {
	width: 100%;
	aspect-ratio: 1 / 0.66;
	object-fit: cover;
	border-radius: 20px;
}

.service-solution-image-content .why-choose-item::before,
.service-solution-item-list .why-choose-item::before {
	display: none;
}

.service-solution-item-list .why-choose-item {
	width: calc(33.33% - 20px);
}

/************************************/
/*** 	 22. Blog Archive css	  ***/
/************************************/

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

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

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

.page-pagination ul li a,
.page-pagination ul li span {
	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: 700;
	line-height: 1em;
	transition: all 0.3s ease-in-out;
}

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

/************************************/
/*** 	 23. Blog Single css	  ***/
/************************************/

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

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

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

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

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

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

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

.post-content {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
}

.post-entry {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.post-entry:after {
	content: '';
	display: block;
	clear: both;
}

.post-entry a {
	color: var(--accent-color);
}

.post-entry h1,
.post-entry h2,
.post-entry h3,
.post-entry h4,
.post-entry h5,
.post-entry h6 {
	font-weight: 600;
	letter-spacing: -0.02em;
	line-height: 1.2em;
	margin: 0 0 0.417em;
}

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

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

.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: 16px;
	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: url('../images/icon-blockquote.svg'), var(--accent-secondary-color);
	background-repeat: no-repeat;
	background-position: 30px 30px;
	background-size: 45px;
	border-radius: 20px;
	padding: 30px 30px 30px 90px;
	margin-bottom: 30px;
}

.post-entry blockquote p {
	font-size: 22px;
	font-weight: 600;
	line-height: 1.5em;
	color: var(--primary-color);
}

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

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

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

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

.post-social-sharing {
	text-align: right;
}

.post-social-sharing ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.post-social-sharing ul li {
	display: inline-block;
	margin-right: 10px;
}

.post-social-sharing ul li:last-child {
	margin-right: 0;
}

.post-social-sharing ul li a {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	background: var(--accent-color);
	color: var(--white-color);
	border-radius: 12px;
	width: 40px;
	height: 40px;
	transition: all 0.3s ease-in-out;
}

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

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

/************************************/
/*** 	 24. Projects Page css	  ***/
/************************************/

.page-projects {
	padding: 5px 0 3px;
}

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

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

.project-image figure::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 60.16%, rgba(0, 0, 0, 0.9) 100%);
	width: 100%;
	height: 100%;
	z-index: 1;
}

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

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

.project-body {
	position: absolute;
	left: 20px;
	bottom: 20px;
	right: 20px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 20px;
	z-index: 1;
}

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

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

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

.project-readmore-btn a {
	width: 40px;
	height: 40px;
	background: var(--accent-secondary-color);
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease-in-out;
}

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

.project-readmore-btn a img {
	width: 100%;
	max-width: 24px;
}

.project-readmore-btn a i {
	font-size: 14px;
	color: var(--white-color);
	transition: color 0.3s ease;
}

.project-readmore-btn a:hover i {
	color: var(--primary-color, #031536);
}

/************************************/
/*** 	 25. Project Single css	  ***/
/************************************/

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

.project-catagery-list {
	background: var(--secondary-color);
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	margin-bottom: 60px;
}

.project-catagery-list h3 {
	font-size: 20px;
	margin-bottom: 30px;
}

.project-catagery-list ul {
	background-color: var(--white-color);
	border-radius: 20px;
	text-align: left;
	padding: 30px;
	margin-bottom: 30px;
}

.project-catagery-list ul li {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.5em;
	color: var(--primary-color);
	display: flex;
	justify-content: space-between;
	border-bottom: 1px solid var(--divider-color);
	margin-bottom: 16px;
	padding-bottom: 16px;
}

.project-catagery-list ul li:last-child {
	margin-bottom: 0px;
	padding-bottom: 0px;
	border-bottom: none;
}

.project-catagery-list ul li span {
	width: 56%;
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
	color: var(--text-color);
}

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

.sidebar-social-list ol li {
	display: inline-block;
}

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

.sidebar-social-list ol li a:hover {
	background: var(--accent-secondary-color);
	color: var(--primary-color);
}

.sidebar-social-list a i {
	font-size: 20px;
	color: inherit
}

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

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

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

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

.project-entry h2 span {
	color: var(--accent-color);
}

.project-entry ul {
	list-style: none;
	margin-bottom: 20px;
	padding: 0;
}

.project-entry ul li {
	position: relative;
	line-height: 1.5em;
	padding-left: 30px;
	margin-bottom: 20px;
}

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

.project-entry ul li::before {
	content: '\f058';
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	font-size: 20px;
	color: var(--accent-color);
	top: 0px;
	left: 0;
}

.project-measurable-box,
.projects-solution-box {
	margin-top: 60px;
}

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

.project-measurable-item {
	position: relative;
	width: calc(50% - 15px);
	display: flex;
	flex-wrap: wrap;
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
}

.project-measurable-item::before {
	content: '';
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-secondary-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.project-measurable-item:hover::before {
	height: 100%;
}

.project-measurable-item .icon-box {
	position: relative;
	height: 60px;
	width: 60px;
	background-color: var(--white-color);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 20px;
	z-index: 1;
}

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

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

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

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

.project-measurable-item-content {
	position: relative;
	width: calc(100% - 80px);
	z-index: 1;
}

.project-measurable-item-content h3 {
	font-size: 20px;
	margin-bottom: 15px;
}

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

.project-measurable-item:hover .project-measurable-item-content p {
	color: var(--primary-color);
}

.projects-solution-list-box {
	display: flex;
	gap: 20px 30px;
	flex-wrap: wrap;
	margin-top: 40px;
}

.projects-solution-list {
	width: calc(50% - 15px);
}

.projects-solution-list h3 {
	font-size: 20px;
	margin-bottom: 30px;
}

.projects-solution-list-box ul {
	margin: 0;
}

/************************************/
/*** 	  26. Team Page css 	  ***/
/************************************/

.page-team {
	padding: 50px 0;
}

/************************************/
/*** 	 27. Team Single css	  ***/
/************************************/

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

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

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

.team-sidebar-image img {
	width: 100%;
	aspect-ratio: 1 / 1.044;
	object-fit: cover;
	transition: all 0.4s ease-in-out;
}

.team-sidebar-box:hover .team-sidebar-image img {
	transform: scale(1.1);
}

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

.team-sidebar-body h3 {
	font-size: 20px;
	color: var(--white-color);
	border-bottom: 1px solid var(--dark-divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

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

.team-sidebar-body ul li {
	font-size: 20px;
	font-weight: 600;
	text-transform: capitalize;
	line-height: 1.5em;
	color: var(--white-color);
	display: flex;
	justify-content: space-between;
	margin-bottom: 20px;
}

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

.team-sidebar-body ul li span {
	width: 67%;
	font-size: 16px;
	font-weight: 400;
	text-transform: none;
	opacity: 80%;
}

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

.team-sidebar-footer h3 {
	font-size: 20px;
	text-transform: capitalize;
}

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

.team-sidebar-footer ul li {
	display: inline-block;
	border-radius: 50%;
	margin-right: 10px;
}

.team-sidebar-footer ul li:last-child {
	margin-right: 0;
}

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

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

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

.team-member-qualification,
.team-member-skills,
.team-contact-form {
	margin-top: 60px;
}

.member-info-list {
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}

.member-info-item {
	position: relative;
	width: calc(25% - 22.5px);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 20px;
	overflow: hidden;
}

.member-info-item::before {
	content: '';
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	background: var(--accent-color);
	border-radius: 500px 500px 0 0;
	height: 0;
	width: 100%;
	transition: all 0.4s ease-in-out;
	z-index: 0;
}

.member-info-item:hover::before {
	height: 100%;
	border-radius: 0;
}

.member-info-item .icon-box,
.member-info-item-content {
	position: relative;
	z-index: 1;
}

.member-info-item .icon-box {
	height: 50px;
	width: 50px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--secondary-color);
	border-radius: 50%;
	margin-bottom: 20px;
}

.member-info-item .icon-box img {
	width: 100%;
	max-width: 28px;
	transition: all 0.4s ease-in-out;
}

.member-info-item-content h3 {
	font-size: 20px;
	line-height: 1.3em;
	text-transform: capitalize;
	transition: all 0.4s ease-in-out;
}

.member-info-item:hover .member-info-item-content h3 {
	color: var(--white-color);
}

.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;
	gap: 10px;
	margin-bottom: 15px;
}

.skills-progress-bar .skillbar .skill-progress {
	position: relative;
	width: 100%;
	height: 16px;
	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;
}

/************************************/
/*** 	 28. Pricing Page css	  ***/
/************************************/

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

/************************************/
/***   29. Testimonials Page css  ***/
/************************************/

.page-testimonials {
	padding: 50px 0;
}

.page-testimonials .testimonial-item {
	position: relative;
	background-color: var(--secondary-color);
	border-radius: 20px;
	height: calc(100% - 30px);
	margin-bottom: 30px;
	padding: 30px;
	overflow: hidden;
}

.page-testimonials .testimonial-item:before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0;
	background: var(--accent-color);
	z-index: 0;
	transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonial-item:hover::before {
	top: auto;
	height: 100%;
}

.page-testimonials .testimonial-item .testimonial-rating,
.page-testimonials .testimonial-item .testimonial-content,
.page-testimonials .testimonial-item .testimonial-author {
	position: relative;
	z-index: 1;
}

.page-testimonials .testimonial-item .testimonial-content p,
.page-testimonials .testimonial-item .author-content p {
	color: var(--text-color);
	transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonial-item .author-content h3 {
	color: var(--primary-color);
	transition: all 0.4s ease-in-out;
}

.page-testimonials .testimonial-item:hover .testimonial-content p,
.page-testimonials .testimonial-item:hover .author-content h3,
.page-testimonials .testimonial-item:hover .author-content p {
	color: var(--white-color);
}

/************************************/
/*** 	 30. Image Gallery css	  ***/
/************************************/

.page-gallery {
	padding: 50px 0;
}

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

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

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

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

/************************************/
/*** 	 31. Video Gallery css	  ***/
/************************************/

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

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

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

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

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

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

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

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

/************************************/
/*** 	 32. FAQs Page css  	  ***/
/************************************/

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

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

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

/************************************/
/*** 	33. Contact Us Page css	  ***/
/************************************/

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

.contact-us-form {
	background-color: var(--secondary-color);
	border-radius: 20px;
	padding: 40px;
}

.page-contact-us .contact-us-form .section-title {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 40px;
}

.contact-form .form-control {
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5em;
	color: var(--text-color);
	background-color: var(--white-color);
	border: 1px solid var(--divider-color);
	border-radius: 12px;
	padding: 17px 20px;
	box-shadow: none;
	outline: none;
}

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

.google-map {
	margin-bottom: 40px;
}

.google-map iframe {
	width: 100%;
	height: 500px;
	border-radius: 20px;
}

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

.contact-info-item {
	width: calc(50% - 15px);
	border: 1px solid var(--divider-color);
	border-radius: 20px;
	padding: 20px;
	display: flex;
	align-items: center;
}

.contact-info-item.location-item {
	width: 100%;
}

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

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

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

.contact-info-item .icon-box img {
	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-item-content {
	width: calc(100% - 70px);
}

.contact-item-content h3 {
	font-size: 20px;
	text-transform: capitalize;
	margin-bottom: 5px;
}

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

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

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

/************************************/
/*** 	 34. 404 Error Page css	  ***/
/************************************/

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

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

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

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

.error-page-content .section-title,
.error-page-content-body p {
	margin-bottom: 20px;
}

/************************************/
/*** 	 Thank You Page css	  ***/
/************************************/

.thank-you-page {
	padding: 50px 0;
}

.thank-you-box {
	text-align: center;
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 24px;
	padding: 60px 40px;
}

.thank-you-icon {
	width: 84px;
	height: 84px;
	margin: 0 auto 28px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--navy-gradient);
	color: #DCFD7D;
	font-size: 36px;
	box-shadow: 0 14px 30px rgba(3, 21, 54, 0.18);
}

.thank-you-box .section-title {
	margin-bottom: 18px;
}

.thank-you-box .section-title h2 {
	margin-bottom: 0;
}

.thank-you-text {
	max-width: 560px;
	margin: 0 auto 30px;
	font-size: 16px;
	line-height: 1.7;
	color: var(--text-color);
}

.thank-you-actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 14px;
}

/************************************/
/*** 	 Cookie Consent css	  ***/
/************************************/

.cookie-consent {
	position: fixed;
	left: 20px;
	right: 20px;
	bottom: 20px;
	z-index: 100000;
	margin: 0 auto;
	opacity: 0;
	visibility: hidden;
	transform: translateY(24px);
	transition: opacity 0.35s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.35s ease;
}

.cookie-consent.is-visible {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.cookie-consent.is-hiding {
	opacity: 0;
	visibility: hidden;
	transform: translateY(24px);
}

.cookie-consent-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 22px 26px;
	background: var(--accent-color);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 18px;
	box-shadow: 0 18px 40px rgba(3, 21, 54, 0.28);
}

.cookie-consent-content {
	display: flex;
	align-items: flex-start;
	gap: 16px;
	flex: 1;
	min-width: 0;
}

.cookie-consent-icon {
	width: 46px;
	height: 46px;
	min-width: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(220, 253, 125, 0.16);
	color: #DCFD7D;
	font-size: 20px;
}

.cookie-consent-text h4 {
	color: #ffffff;
	font-size: 18px;
	margin-bottom: 6px;
}

.cookie-consent-text p {
	color: rgba(255, 255, 255, 0.82);
	font-size: 14px;
	line-height: 1.6;
	margin: 0;
}

.cookie-consent-actions {
	display: flex;
	align-items: center;
	gap: 10px;
	flex-shrink: 0;
}

.cookie-consent-actions .btn-default {
	font-size: 13px;
	padding: 12px 28px 12px 14px;
	white-space: nowrap;
	width: 180px;
}

.cookie-consent-actions .cookie-decline-btn {
	background: transparent;
	border: 1px solid rgba(255, 255, 255, 0.35);
	color: #ffffff;
}

.cookie-consent-actions .cookie-decline-btn::before {
	background-color: rgba(255, 255, 255, 0.18);
	background-image: url('../images/arrow-white.svg');
}

.cookie-consent-actions .cookie-decline-btn:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: #000000;
}

.cookie-consent-actions .cookie-decline-btn:hover::before {
	background-color: #000000;
}

/************************************/
/* About page - Mission & Vision */
.about-mv {
	padding: 50px 0;
	background-color: var(--secondary-color);
}

.about-mv .section-row {
	margin-bottom: 50px;
}

.about-mv-card {
	height: 100%;
	background-color: var(--white-color);
	border: 1px solid rgba(27, 79, 114, 0.08);
	border-radius: 20px;
	padding: 40px 36px;
	transition: all 0.3s ease;
}

.about-mv-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(3, 21, 54, 0.08);
}

.about-mv-card-accent {
	background: var(--navy-gradient);
	border-color: transparent;
}

.about-mv-card-accent h3,
.about-mv-card-accent p {
	color: #ffffff;
}

.about-mv-icon {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: rgba(27, 79, 114, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 24px;
}

.about-mv-card-accent .about-mv-icon {
	background-color: rgba(255, 255, 255, 0.15);
}

.about-mv-icon img {
	width: 28px;
	height: auto;
}

.about-mv-card h3 {
	font-size: 24px;
	margin-bottom: 16px;
}

.about-mv-card p {
	margin: 0;
	line-height: 1.7;
}

.about-mv-card-accent .about-mv-icon img {
	filter: brightness(0) invert(1);
}

/* Services page detail blocks */
.service-detail-block {
	padding-top: 50px;
	margin-top: 50px;
	border-top: 1px solid var(--divider-color);
	scroll-margin-top: 120px;
}

.service-detail-block:first-of-type {
	border-top: none;
	padding-top: 20px;
	margin-top: 30px;
}

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

.sidebar-cta-text {
	color: rgba(255, 255, 255, 0.85);
	margin-bottom: 20px;
}

.sidebar-cta-mail {
	display: block;
	margin-top: 14px;
	color: var(--white-color);
	font-size: 15px;
	text-decoration: underline;
	text-underline-offset: 3px;
}

.sidebar-cta-mail:hover {
	color: var(--white-color);
	opacity: 0.85;
}

/* Services page tabs */
.page-catagery-list ul li a.active {
	color: var(--white-color);
}

.page-catagery-list ul li a.active::after {
	top: 0;
	height: 100%;
	background: var(--accent-secondary-color);
}

.page-catagery-list ul li:hover a::after {
	background: var(--accent-secondary-color);
}

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

.services-tab-content .tab-pane {
	outline: none;
}

.service-entry h3 {
	font-size: 14px;
	margin: 20px 0 14px;
	font-weight: 600;
}

/* Logo-color concept cards (Solutions - Architecture) */
.concept-heading {
	margin-top: 40px;
	margin-bottom: 24px;
}

.concept-card-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
}

.concept-card {
	border-radius: 18px;
	padding: 28px 24px;
	min-height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.concept-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 16px 36px rgba(3, 21, 54, 0.12);
}

.concept-card-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	margin-bottom: 18px;
}

.concept-card h4 {
	font-size: 18px;
	margin-bottom: 12px;
	line-height: 1.35;
}

.concept-card p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
}

/* Logo lime */
.concept-card-lime {
	background: #DCFD7D;
	color: #000000;
}

.concept-card-lime .concept-card-icon {
	background: #000000;
	color: #DCFD7D;
}

.concept-card-lime h4,
.concept-card-lime p {
	color: #000000;
}

/* Logo purple */
.concept-card-purple {
	background: #6A52E0;
	color: #ffffff;
}

.concept-card-purple .concept-card-icon {
	background: rgba(255, 255, 255, 0.2);
	color: #ffffff;
}

.concept-card-purple h4,
.concept-card-purple p {
	color: #ffffff;
}

/* Logo black */
.concept-card-dark {
	background: #000000;
	color: #ffffff;
}

.concept-card-dark .concept-card-icon {
	background: #DCFD7D;
	color: #000000;
}

.concept-card-dark h4,
.concept-card-dark p {
	color: #ffffff;
}

/* Brand navy */
.concept-card-navy {
	background: var(--navy-gradient);
	color: #ffffff;
}

.concept-card-navy .concept-card-icon {
	background: rgba(255, 255, 255, 0.18);
	color: #DCFD7D;
}

.concept-card-navy h4,
.concept-card-navy p {
	color: #ffffff;
}

.service-entry .section-title {
	margin-bottom: 24px;
}

.service-entry .section-title h2 {
	font-size: 36px;
}

.page-service-single .section-row {
	margin-bottom: 50px;
}

/* About page improvements */
.about-page-intro .about-intro-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 28px;
}

.about-page-intro .about-intro-pills span {
	display: inline-flex;
	align-items: center;
	padding: 8px 14px;
	border-radius: 999px;
	background: rgba(3, 21, 54, 0.06);
	color: var(--accent-color);
	font-size: 13px;
	font-weight: 600;
	line-height: 1.3;
	letter-spacing: 0.02em;
}

.about-page-intro .about-intro-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
	align-items: center;
}

.about-purpose {
	padding: 70px 0;
	background:
		radial-gradient(circle at top right, rgba(106, 82, 224, 0.08), transparent 42%),
		radial-gradient(circle at bottom left, rgba(220, 253, 125, 0.18), transparent 40%),
		var(--secondary-color);
}

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

.about-purpose-note {
	display: flex;
	gap: 14px;
	align-items: flex-start;
	padding: 22px 24px;
	border-radius: 18px;
	background: #ffffff;
	border: 1px solid rgba(3, 21, 54, 0.08);
	box-shadow: 0 10px 28px rgba(3, 21, 54, 0.05);
}

.about-purpose-note i {
	color: #6A52E0;
	font-size: 20px;
	margin-top: 2px;
}

.about-purpose-note p {
	margin: 0;
	font-size: 15px;
	line-height: 1.6;
	color: var(--accent-color);
	font-weight: 500;
}

.about-purpose-featured {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 20px;
	margin-bottom: 20px;
}

.about-purpose-panel {
	border-radius: 22px;
	padding: 32px 28px;
	min-height: 100%;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-purpose-panel:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 40px rgba(3, 21, 54, 0.14);
}

.about-purpose-panel-top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 22px;
}

.about-purpose-panel-top span {
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	opacity: 0.35;
}

.about-purpose-panel h4 {
	font-size: 24px;
	margin-bottom: 14px;
	line-height: 1.3;
}

.about-purpose-panel p {
	margin: 0;
	font-size: 15px;
	line-height: 1.7;
}

.about-purpose-mission {
	background: #DCFD7D;
	color: #000000;
}

.about-purpose-mission .concept-card-icon {
	background: #000000;
	color: #DCFD7D;
}

.about-purpose-mission h4,
.about-purpose-mission p,
.about-purpose-mission .about-purpose-panel-top span {
	color: #000000;
}

.about-purpose-vision {
	background: var(--navy-gradient);
	color: #ffffff;
}

.about-purpose-vision .concept-card-icon {
	background: rgba(255, 255, 255, 0.16);
	color: #DCFD7D;
}

.about-purpose-vision h4,
.about-purpose-vision p,
.about-purpose-vision .about-purpose-panel-top span {
	color: #ffffff;
}

.about-values-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 18px;
}

.about-value-item {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	padding: 24px 22px;
	border-radius: 18px;
	background: #ffffff;
	border: 1px solid rgba(3, 21, 54, 0.07);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-value-item:hover {
	transform: translateY(-3px);
	box-shadow: 0 14px 32px rgba(3, 21, 54, 0.08);
}

.about-value-icon {
	width: 46px;
	height: 46px;
	min-width: 46px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(106, 82, 224, 0.12);
	color: #6A52E0;
	font-size: 17px;
}

.about-value-content h4 {
	font-size: 18px;
	margin-bottom: 8px;
	color: var(--accent-color);
}

.about-value-content p {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
}

.about-why-choose {
	padding: 70px 0 80px;
}

.about-why-top {
	margin-bottom: 10px;
}

.about-why-checklist ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 14px 20px;
}

.about-why-checklist ul li {
	position: relative;
	display: flex;
	align-items: flex-start;
	gap: 10px;
	padding: 14px 16px;
	border-radius: 14px;
	background: var(--secondary-color);
	color: var(--accent-color);
	font-size: 15px;
	font-weight: 600;
	line-height: 1.45;
}

.about-why-checklist ul li i {
	color: #6A52E0;
	margin-top: 2px;
	font-size: 15px;
}

.about-why-cta {
	margin-top: 28px;
}

.about-why-visual {
	position: relative;
	padding-left: 10px;
}

.about-why-visual .why-choose-image figure img {
	filter: brightness(0.82);
	border-radius: 24px;
}

.about-why-float-card {
	position: absolute;
	left: 0;
	bottom: 28px;
	max-width: 230px;
	padding: 22px 20px;
	border-radius: 18px;
	background: #DCFD7D;
	box-shadow: 0 16px 36px rgba(3, 21, 54, 0.18);
	z-index: 2;
}

.about-why-float-card h3 {
	font-size: 42px;
	line-height: 1;
	margin-bottom: 10px;
	color: #000000;
}

.about-why-float-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.5;
	color: #000000;
	font-weight: 500;
}

.about-why-mini-stats {
	position: absolute;
	top: 22px;
	right: 22px;
	display: flex;
	flex-direction: column;
	gap: 10px;
	z-index: 2;
}

.about-why-mini-stat {
	padding: 12px 16px;
	border-radius: 14px;
	background: rgba(3, 21, 54, 0.88);
	backdrop-filter: blur(6px);
	color: #ffffff;
	min-width: 148px;
}

.about-why-mini-stat strong {
	display: block;
	font-size: 15px;
	line-height: 1.2;
	color: #DCFD7D;
	margin-bottom: 4px;
}

.about-why-mini-stat span {
	font-size: 12px;
	line-height: 1.3;
	opacity: 0.9;
}

.about-choose-heading {
	margin-top: 70px;
	margin-bottom: 34px;
	max-width: 720px;
}

.about-choose-heading p {
	margin-top: 12px;
}

.about-why-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}

.about-why-card {
	position: relative;
	padding: 28px 24px 26px;
	border-radius: 20px;
	background: #ffffff;
	border: 1px solid rgba(3, 21, 54, 0.08);
	box-shadow: 0 10px 28px rgba(3, 21, 54, 0.04);
	overflow: hidden;
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.about-why-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 18px 40px rgba(3, 21, 54, 0.1);
	border-color: rgba(106, 82, 224, 0.25);
}

.about-why-card-num {
	position: absolute;
	top: 18px;
	right: 20px;
	font-size: 28px;
	font-weight: 700;
	line-height: 1;
	color: rgba(3, 21, 54, 0.08);
}

.about-why-card-icon {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(106, 82, 224, 0.12);
	color: #6A52E0;
	font-size: 18px;
	margin-bottom: 20px;
	transition: background 0.3s ease, color 0.3s ease;
}

.about-why-card:hover .about-why-card-icon {
	background: #6A52E0;
	color: #ffffff;
}

.about-why-card h4 {
	font-size: 18px;
	margin-bottom: 12px;
	color: var(--accent-color);
	line-height: 1.35;
}

.about-why-card p {
	margin: 0;
	font-size: 14px;
	line-height: 1.65;
}

.about-why-card:nth-child(1) .about-why-card-icon {
	background: rgba(220, 253, 125, 0.45);
	color: #000000;
}

.about-why-card:nth-child(1):hover .about-why-card-icon {
	background: #DCFD7D;
	color: #000000;
}

.about-why-card:nth-child(3) .about-why-card-icon {
	background: rgba(3, 21, 54, 0.1);
	color: var(--accent-color);
}

.about-why-card:nth-child(3):hover .about-why-card-icon {
	background: var(--accent-color);
	color: #ffffff;
}

.about-why-card:nth-child(4) .about-why-card-icon {
	background: rgba(27, 79, 114, 0.12);
	color: var(--accent-secondary-color);
}

.about-why-card:nth-child(4):hover .about-why-card-icon {
	background: var(--accent-secondary-color);
	color: #ffffff;
}

.about-cta {
	padding: 30px 0 70px;
}

.about-cta-box {
	background: var(--navy-gradient);
	border-radius: 24px;
	padding: 56px 52px;
	position: relative;
	overflow: hidden;
}

.about-cta-box::before {
	content: '';
	position: absolute;
	width: 280px;
	height: 280px;
	border-radius: 50%;
	background: rgba(220, 253, 125, 0.12);
	top: -90px;
	right: -60px;
	pointer-events: none;
}

.about-cta-box::after {
	content: '';
	position: absolute;
	width: 180px;
	height: 180px;
	border-radius: 50%;
	background: rgba(106, 82, 224, 0.22);
	bottom: -70px;
	right: 18%;
	pointer-events: none;
}

.about-cta-content {
	max-width: 860px;
	position: relative;
	z-index: 1;
}

.about-cta-box .section-title {
	margin-bottom: 28px;
}

.about-cta-box .section-title h3,
.about-cta-box .section-title h2,
.about-cta-box .section-title p {
	color: #ffffff;
}

.about-cta-box .section-title h2 {
	font-size: 40px;
	line-height: 1.25em;
	margin-bottom: 16px;
}

.about-cta-box .section-title h3::before {
	background: #DCFD7D;
}

.about-cta-box .section-title h2 span {
	color: #DCFD7D !important;
	-webkit-text-fill-color: #DCFD7D !important;
	background: none !important;
}

.about-cta-box .section-title p {
	opacity: 0.92;
	margin-bottom: 0;
	max-width: 640px;
}

.about-cta-contacts {
	display: flex;
	flex-wrap: wrap;
	gap: 18px 32px;
	margin-bottom: 28px;
}

.about-cta-contacts a {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	color: #ffffff;
	font-size: 16px;
	font-weight: 600;
	transition: color 0.3s ease;
}

.about-cta-contacts a:hover {
	color: #DCFD7D;
	opacity: 1;
}

.about-cta-contacts a i {
	color: #DCFD7D;
	width: 18px;
	text-align: center;
}

.about-cta-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 14px;
}

.about-cta-actions .about-cta-btn-primary {
	background: #DCFD7D;
	border-color: #DCFD7D;
	color: #000000;
}

.about-cta-actions .about-cta-btn-primary::before {
	background-color: #000000;
	background-image: url('../images/arrow-white.svg');
}

.about-cta-actions .about-cta-btn-primary:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: #000000 !important;
}

.about-cta-actions .about-cta-btn-primary:hover::before {
	background-color: #000000;
}

.about-cta-actions .about-cta-btn-secondary {
	background: transparent;
	border-color: rgba(255, 255, 255, 0.55);
	color: #ffffff;
}

.about-cta-actions .about-cta-btn-secondary::before {
	background-color: rgba(255, 255, 255, 0.18);
	background-image: url('../images/arrow-white.svg');
}

.about-cta-actions .about-cta-btn-secondary:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: #000000 !important;
}

.about-cta-actions .about-cta-btn-secondary:hover::before {
	background-color: #000000;
}

/* Careers page */
.careers-intro {
	padding: 50px 0;
}

.careers-apply-box {
	background: var(--navy-gradient);
	border-radius: 24px;
	padding: 40px 36px;
	color: #ffffff;
}

.careers-apply-box h3 {
	color: #ffffff;
	font-size: 24px;
	margin-bottom: 18px;
}

.careers-apply-company {
	margin-bottom: 22px;
}

.careers-apply-company strong {
	display: inline-block;
	background: #DCFD7D;
	color: #000000;
	border-radius: 8px;
	padding: 8px 14px;
	font-size: 15px;
}

.careers-apply-list {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

.careers-apply-list li {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	margin-bottom: 16px;
	color: rgba(255, 255, 255, 0.92);
	line-height: 1.5;
}

.careers-apply-list li:last-child {
	margin-bottom: 0;
}

.careers-apply-list li i {
	color: #DCFD7D;
	margin-top: 4px;
	width: 18px;
	text-align: center;
	flex-shrink: 0;
}

.careers-apply-list li a {
	color: #ffffff;
}

.careers-apply-list li a:hover {
	color: #DCFD7D;
}

.careers-apply-box .btn-default {
	background: #DCFD7D;
	border-color: #DCFD7D;
	color: #000000;
}

.careers-apply-box .btn-default::before {
	background-color: #000000;
}

.careers-apply-box .btn-default:hover {
	background: #ffffff;
	border-color: #ffffff;
	color: #000000 !important;
}

.careers-apply-box .btn-default:hover::before {
	background-color: #000000;
}

.careers-openings {
	padding: 50px 0;
	background-color: var(--secondary-color);
}

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

.career-meta-grid {
	margin-bottom: 30px;
}

.career-job-block {
	margin-bottom: 24px;
}

.career-job-block h3 {
	font-size: 20px;
	margin-bottom: 10px;
	color: #fff;
}

.career-job-block p {
	margin-bottom: 0;
}

.careers-accordion .accordion-body {
	padding-top: 24px;
}

.careers-accordion .concept-card-lime h4,
.careers-accordion .accordion-body .concept-card-lime p {
	color: #000000;
}

/* Careers application form */
.careers-form-section {
	padding: 50px 0;
}

.careers-form-box {
	margin-top: 0;
}

.careers-form-box .section-title {
	border-bottom: 1px solid var(--divider-color);
	padding-bottom: 30px;
	margin-bottom: 30px;
}

.career-form-alert {
	border-radius: 12px;
	padding: 14px 18px;
	margin-bottom: 24px;
	font-weight: 500;
}

.career-form-success {
	background: rgba(220, 253, 125, 0.35);
	color: #031536;
	border: 1px solid #DCFD7D;
}

.career-form-error {
	background: rgba(220, 53, 69, 0.08);
	color: #842029;
	border: 1px solid rgba(220, 53, 69, 0.25);
}

.careers-icon-form .career-input-icon {
	position: relative;
}

.careers-icon-form .career-input-icon>i {
	position: absolute;
	left: 14px;
	top: 50%;
	transform: translateY(-50%);
	color: var(--accent-secondary-color);
	font-size: 14px;
	width: 16px;
	text-align: center;
	z-index: 2;
	pointer-events: none;
}

.careers-icon-form .career-input-textarea>i {
	top: 14px;
	transform: none;
}

.careers-icon-form .form-control {
	height: 40px;
	min-height: 40px;
	font-size: 14px;
	line-height: 40px;
	padding: 0 16px 0 42px;
	border-radius: 10px;
}

.careers-icon-form select.form-control {
	appearance: none;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%231B4F72' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px auto;
	padding-right: 36px;
	cursor: pointer;
}

.careers-icon-form textarea.form-control {
	height: auto;
	min-height: 110px;
	line-height: 1.5;
	padding: 12px 16px 12px 42px;
	resize: vertical;
}

.careers-icon-form .career-file-input {
	padding-top: 7px;
	padding-bottom: 7px;
	line-height: normal;
}

.career-file-hint {
	display: block;
	margin-top: 8px;
	font-size: 13px;
	color: var(--text-color);
}

.careers-icon-form .btn-default i {
	margin-right: 8px;
}

#career-form {
	scroll-margin-top: 120px;
}

/* Contact page Font Awesome info icons */
.contact-info-item .icon-box i {
	position: relative;
	z-index: 1;
	color: var(--accent-secondary-color);
	font-size: 18px;
	transition: color 0.3s ease;
}

.contact-info-item:hover .icon-box i {
	color: #ffffff;
}

.page-contact-us .careers-icon-form .btn-default i {
	margin-right: 8px;
}

/* Contact page layout: form left, info right, map bottom */
.contact-info-sidebar {
	padding-left: 10px;
}

.contact-info-list-sidebar {
	gap: 16px;
}

.contact-info-list-sidebar .contact-info-item {
	width: 100%;
	background-color: var(--secondary-color);
}

.contact-map-section {
	margin-top: 0;
	padding: 50px 0;
}

.contact-map-section .section-row {
	margin-bottom: 30px;
	align-items: center;
}

.contact-map-card {
	background: var(--secondary-color);
	border: 1px solid var(--divider-color);
	border-radius: 24px;
	padding: 20px;
	overflow: hidden;
}

.contact-map-address {
	display: flex;
	align-items: center;
	gap: 16px;
	background: var(--navy-gradient);
	border-radius: 16px;
	padding: 18px 22px;
	margin-bottom: 18px;
}

.contact-map-address-icon {
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background: #DCFD7D;
	color: #000000;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	flex-shrink: 0;
}

.contact-map-address-content h4 {
	color: #ffffff;
	font-size: 18px;
	margin-bottom: 4px;
}

.contact-map-address-content p {
	color: rgba(255, 255, 255, 0.88);
	margin: 0;
	font-size: 15px;
	line-height: 1.5;
}

.contact-map-frame {
	margin-bottom: 0;
	border-radius: 16px;
	overflow: hidden;
	border: 1px solid var(--divider-color);
	background: #ffffff;
}

.contact-map-frame iframe {
	display: block;
	width: 100%;
	height: 380px;
	border: 0;
	border-radius: 16px;
	filter: grayscale(0.15) contrast(1.02);
}

.contact-map-section .btn-default i {
	margin-right: 8px;
}

/************************************/
/***   Homepage Font Awesome css  ***/
/************************************/

.about-body-item .icon-box i,
.what-do-body-item .icon-box i,
.benefit-project-info .icon-box i,
.faqs-cta-box .icon-box i {
	position: relative;
	z-index: 1;
	font-size: 20px;
	color: var(--accent-color);
	transition: color 0.3s ease-in-out;
}

.about-body-item:hover .icon-box i,
.what-do-body-item:hover .icon-box i,
.faqs-cta-box:hover .icon-box i {
	color: var(--white-color);
}

.benefit-project-info .icon-box {
	width: 48px;
	height: 48px;
	min-width: 48px;
	border-radius: 50%;
	background: var(--accent-secondary-color);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 14px;
}

.benefit-project-info .icon-box i {
	color: #fff;
	font-size: 18px;
}

.what-do-body-item .icon-box {
	background-color: rgba(255, 255, 255, 0.12);
}

.what-do-body-item .icon-box i {
	color: #fff;
}

.what-do-body-item:hover .icon-box i {
	color: var(--white-color);
}

.home-why-grid {
	margin-top: 50px;
	grid-template-columns: repeat(4, 1fr);
}

.benefits-fa-icon {
	width: 42px;
	height: 42px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(27, 79, 114, 0.1);
	color: var(--accent-color);
	font-size: 18px;
	margin-bottom: 14px;
}

.work-process-fa {
	width: 44px;
	height: 44px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(27, 79, 114, 0.1);
	color: var(--accent-color);
	font-size: 18px;
	margin-bottom: 14px;
}

.project-image {
	position: relative;
}

.project-fa-badge {
	position: absolute;
	top: 18px;
	left: 18px;
	width: 46px;
	height: 46px;
	border-radius: 50%;
	background: rgba(3, 21, 54, 0.85);
	color: #DCFD7D;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	z-index: 2;
	pointer-events: none;
	transition: background 0.3s ease, transform 0.3s ease;
}

.project-item:hover .project-fa-badge {
	background: #6A52E0;
	color: #ffffff;
	transform: scale(1.06);
}

.faqs-cta-box .icon-box {
	display: flex;
	align-items: center;
	justify-content: center;
}