*,
*::before,
*::after {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
	font: inherit;
}

:root {
	--theme-bg-color: #0068af;
	--theme-fore-color: #fff;
	--theme-text-color: #0163a4;
	--theme-dark-color: #03548b;
	--theme-color-min: rgba(3, 85, 139, 0.5);
	--theme-color-light: rgba(12, 128, 204, 0.2);
	--light-bg: #f4f7fc;
}

::selection {
	background-color: var(--theme-color-min);
	/* color: #fff; */
}

html {
	font-size: 16px;
	scroll-behavior: smooth;
	overflow-x: hidden;
	width: 100%;
}

body {
	/* font-family: "Roboto", sans-serif; */
	font-family: "Nunito", sans-serif;
	font-size: 16px;
	line-height: 1.75;
	line-height: 28px;
	font-weight: 500;
	color: #42474c;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Nunito", sans-serif;
	font-weight: 700;
	line-height: 1.3;
}

a {
	text-decoration: none;
	color: inherit;
	transition: ease 0.25s color;
	outline: none;
}

img {
	display: block;
	width: 100%;
}

ul,
ol {
	list-style: none;
}

input,
select,
button,
textarea {
	border: 0;
	font: inherit;
	border-radius: 0;
	outline: none;
	line-height: normal;
}

b {
	font-weight: bold;
}

i {
	font-style: italic;
}

.container {
	padding-left: 10px;
	padding-right: 10px;
	width: 100%;
	max-width: 1160px;
	margin-left: auto;
	margin-right: auto;
}

.container-sm {
	max-width: 1000px;
}

.light-bg {
	background-color: var(--light-bg);
}

.top-header {
	background-color: #252525;
	padding-top: 12px;
	padding-bottom: 12px;
	color: #fff;
	position: relative;
	z-index: 0;
}

.top-header::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 60%;
	background-color: var(--theme-bg-color);
	transform: skew(40deg);
	transform-origin: bottom;
	z-index: -1;
}

.top-header-row {
	display: flex;
	font-size: 15px;
	padding-left: 14px;
}

.header-contact-links {
	display: flex;
}

.header-link-group {
	margin-right: 20px;
}

.header-link-text {
	margin-left: 10px;
}

.header-social-links {
	margin-left: auto;
}

.header-social-link {
	margin-left: 13px;
}

.header-social-link:hover {
	transition: ease 0.3s color;
	color: var(--theme-text-color);
}

.main-header {
	background-color: #fff;
	position: sticky;
	top: 0;
	z-index: 15;
	box-shadow: 0 2px 5px -2px rgb(0 0 0 / 10%);
	transition: ease 0.5s;
	transition-property: background-color, color;
}

/* .page-scroll .main-header {
	background-color: var(--theme-bg-color);
	color: #fff;
} */

.main-header-row {
	display: flex;
	align-items: center;
}

.header-brand {
	max-width: 250px;
	position: relative;
}

.header-brand img {
	transition: ease 0.5s opacity;
	max-height: 80px;
}

.header-brand-alt {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}

/* .page-scroll .header-brand-primary {
	opacity: 0;
}

.page-scroll .header-brand-alt {
	opacity: 1;
} */

.header-menu {
	margin-left: auto;
	display: flex;
	align-items: center;
	color: #252525;
	transition-property: background-color, color;
	font-family: "Nunito", sans-serif;
	font-size: 16px;
}

.header-menu-links {
	display: flex;
}

.header-menu-links li {
	transition: ease 0.4s background-color;
}

.header-menu-links li.active {
	background-color: var(--theme-color-light);
}

.header-menu-link {
	padding: 30px 10px;
	display: block;
	font-weight: 600;
	transition: ease 0.4s color;
}

.header-menu-links li:hover {
	background-color: var(--light-bg);
}

.header-menu-link:hover {
	color: var(--theme-text-color);
}

.menu-dropdown .header-menu-link::after {
	margin-left: 5px;
	content: "\f107";
	font-family: FontAwesome;
	font-size: 13px;
	opacity: 0.5;
}

.header-cta-link {
	margin-left: 15px;
	font-size: 14px;
	padding: 8px 28px;
	border-radius: 3px;
	background-color: var(--theme-bg-color);
	color: #fff;
	display: block;
	border: 2px solid var(--theme-bg-color);
	transition: ease 0.5s;
	transition-property: color, background-color, border-color;
}

.header-cta-link:hover
/* .page-scroll .header-cta-link */ {
	background-color: #fff;
	color: var(--theme-text-color);
}

/* .page-scroll .header-cta-link {
	border-color: #fff;
} */

.banner-section {
	position: relative;
	height: 90vh;
	min-height: 650px;
	color: #fff;
}

.banner-swiper {
	width: 100%;
	height: 100%;
}

.banner-slide {
	position: relative;
	width: 100%;
	display: grid;
}

.banner-bg {
	object-fit: cover;
	z-index: 0;
}

.banner-section::before {
	z-index: 1;
}

.banner-section::before,
.banner-bg {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.banner-section .container {
	position: relative;
	z-index: 10;
	margin-top: auto;
	margin-bottom: auto;
}

.banner-content {
	max-width: 650px;
	background-color: rgba(255, 255, 255, 0.8);
	/* background-color: var(--theme-bg-color); */
	padding: 30px 40px;
	border-radius: 20px;
}

.banner-small-title {
	font-size: 19px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 24px;
}

.banner-main-title {
	font-size: 45px;
	margin-bottom: 20px;
	font-weight: 800;
	line-height: 1;
	color: var(--theme-text-color);
}

.banner-text {
	font-size: 20px;
	color: #626771;
	font-weight: 500;
}

.banner-links {
	margin-top: 35px;
}

.banner-link {
	display: inline-block;
	padding: 12px 35px;
	border-radius: 5px;
	background-color: var(--theme-bg-color);
	color: #fff;
	font-weight: 500;
	margin-right: 25px;
	transition: ease 0.5s;
	transition-property: background-color;
}

.banner-link:hover {
	background-color: var(--theme-dark-color);
}

.banner-link-alt {
	background-color: var(--theme-dark-color);
}

.banner-link-alt:hover {
	background-color: var(--theme-bg-color);
}

.banner-nav-btn {
	background-color: #000;
	opacity: 0.5;
	transition: ease 0.3s;
	transition-property: background-color, opacity, left, right;
	color: var(--theme-fore-color);
	width: 60px;
	height: 60px;
	text-align: center;
	/* line-height: 60px; */
	border-radius: 6px;
	--swiper-navigation-size: 26px;
	font-weight: 800;
}

.banner-nav-btn:hover,
.banner-nav-btn:focus {
	background-color: var(--theme-bg-color);
	opacity: 1;
}

.page-section {
	padding-top: 80px;
	padding-bottom: 80px;
	clear: both;
}

.section-header {
	margin-bottom: 50px;
	text-align: center;
}

.section-small-title {
	font-size: 16px;
	font-weight: 600;
	letter-spacing: 1px;
	margin-bottom: 10px;
	color: var(--theme-text-color);
	text-transform: uppercase;
}

.section-title {
	font-size: 38px;
	font-weight: 800;
	color: var(--theme-dark-color);
	margin-bottom: 20px;
	line-height: 1.1;
	text-transform: capitalize;
}

.section-title-divider {
	width: 55px;
	margin-left: auto;
	margin-right: auto;
	border: 4px solid transparent;
	border-top-color: var(--theme-bg-color);
}

.section-header-text {
	max-width: 750px;
	margin-left: auto;
	margin-right: auto;
	margin-top: 20px;
	font-size: 17px;
}

.services-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.service-col {
	padding: 20px;
	border-radius: 10px;
	box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.service-img {
	border-radius: 10px;
	overflow: hidden;
}

.service-col-content {
	padding-top: 30px;
	position: relative;
}

.service-icon {
	width: 70px;
	height: 70px;
	background-color: #fff;
	border-radius: 50px;
	box-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
	position: absolute;
	top: 0;
	right: 0;
	transform: translate(-20px, -50%);
	font-size: 35px;
	line-height: 70px;
	text-align: center;
	color: var(--theme-text-color);
}

.service-title {
	font-size: 22px;
	margin-bottom: 20px;
	color: var(--theme-dark-color);
}

.service-text {
	margin-bottom: 30px;
}

.service-action {
	display: block;
	padding: 16px 22px;
	font-weight: 500;
	background-color: var(--light-bg);
	position: relative;
	overflow: hidden;
	transition: ease 0.5s;
	transition-property: color, background-color;
}

.service-link-arrow {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	width: 70px;
	text-align: center;
	line-height: 60px;
	font-size: 25px;
	color: #fff;
}

.service-link-arrow i {
	position: relative;
	z-index: 5;
	margin-left: 10px;
}

.service-link-arrow::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: skew(-30deg);
	background-color: var(--theme-bg-color);
	z-index: 0;
	transform-origin: bottom;
	transition: ease 0.5s;
	transition-property: background-color;
}

.service-col:hover .service-action {
	color: #fff;
	background-color: var(--theme-bg-color);
}

.service-col:hover .service-link-arrow::before {
	background-color: #232323;
}

.about-section {
	background-size: cover;
	background-position: center;
}

.about-row {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 40px;
	/* color: #fff; */
}

/* .about-img-col {} */

.about-content-col .section-header {
	text-align: left;
	margin-bottom: 30px;
}

.about-content-col .section-small-title,
.about-content-col .section-title {
	/* color: #fff; */
}

.about-content-col .section-title-divider {
	margin-left: 0;
	/* border-top-color: #fff; */
}

.about-list {
	margin-top: 30px;
}

.about-list li {
	display: flex;
	align-items: center;
	font-weight: 700;
	margin-bottom: 15px;
	line-height: 1.3;
}

.about-list-icon {
	margin-right: 25px;
	font-size: 30px;
	color: var(--theme-text-color);
}

.features-section {
	background-color: var(--light-bg);
}

.features-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.feature-col {
	position: relative;
	box-shadow: 0 5px 40px rgba(0, 0, 0, 0.1);
	background-color: #fff;
	border-radius: 10px;
	overflow: hidden;
}

.feature-col::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--theme-bg-color);
	z-index: 1;
	transform: translateY(-105%);
	transition: ease 0.5s transform;
	border-radius: 10px;
}

.feature-col:hover::before {
	transform: translateY(0);
}

.feature-col-content {
	padding: 40px;
	text-align: center;
	position: relative;
	z-index: 2;
}

.feature-icon {
	width: 90px;
	height: 70px;
	margin-bottom: 25px;
	border-radius: 30px 5px;
	background-color: var(--light-bg);
	font-size: 30px;
	line-height: 70px;
	margin-left: auto;
	margin-right: auto;
	color: var(--theme-text-color);
}

.feature-icon img {
	width: 100%;
	height: 100%;
	padding: 5px;
	object-fit: contain;
}

.feature-title {
	font-size: 24px;
	color: var(--theme-dark-color);
	margin-bottom: 20px;
	transition: ease 0.5s color;
}

.feature-text {
	margin-bottom: 15px;
	line-height: 1.4;
	transition: ease 0.5s color;
}

.feature-link {
	font-size: 16px;
	font-weight: 500;
	color: var(--theme-text-color);
	transition: ease 0.5s color;
}

.feature-col:hover,
.feature-col:hover .feature-title,
.feature-col:hover .feature-link {
	color: #fff;
}

.solutions-section {
	background-size: cover;
	background-position: center;
	padding-bottom: 200px;
}

.solutions-section .section-title {
	color: #fff;
}

.solutions-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
	color: #fff;
}

.solution-col {
	border: 1px solid #555;
	position: relative;
	transition: ease 0.5s border-color;
	overflow: hidden;
}

.solution-col::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: var(--theme-bg-color);
	z-index: 0;
	transition: ease 0.5s transform;
	transform: translateY(-105%);
}

.solution-col:hover {
	border-color: transparent;
}

.solution-col:hover::before {
	transform: none;
}

.solution-col-content {
	padding: 40px 30px;
	position: relative;
	z-index: 1;
}

.solution-icon {
	font-size: 35px;
	margin-bottom: 20px;
}

.solution-title {
	font-size: 22px;
	margin-bottom: 20px;
}

.solution-link {
	font-weight: 500;
}

.enquiry-section {
	position: relative;
	background-color: var(--light-bg);
	float: left;
	clear: both;
	width: 100%;
}

.enquiry-container {
	/* margin-top: -100px; */
	background-color: #fff;
	box-shadow: 0 0 5px rgba(205, 205, 205, 0.7);
	display: flex;
	border-radius: 3px;
	overflow: hidden;
	/* align-items: center; */
}

.enquiry-img-col {
	position: relative;
	width: 30%;
	/* height: 100%; */
}

.enquiry-img-col img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 0;
	object-fit: cover;
}

.enquiry-img-col::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 2;
	/* background-color: var(--theme-bg-color); */
	opacity: 0.7;
}

.enquiry-img-content {
	position: relative;
	z-index: 5;
	padding: 50px 40px;
	color: #fff;
	height: 100%;
}

.enquiry-img-title {
	font-size: 38px;
	margin-bottom: 20px;
	font-weight: 800;
}

.enquiry-img-text {
	font-size: 17px;
	margin-bottom: 45px;
}

.enquiry-img-list li {
	margin-bottom: 15px;
	display: flex;
	align-items: center;
}

.enquiry-list-icon {
	margin-right: 25px;
	font-size: 20px;
}

.enquiry-list-label {
	font-weight: 600;
}

.enquiry-form {
	flex: 1 1 auto;
	padding: 40px;
}

.enquiry-form-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 15px;
}

.enquiry-form-input {
	display: block;
	width: 100%;
	border: 1px solid #e6e6e6;
	padding: 10px 20px;
	border-radius: 5px;
	line-height: 2;
	font-size: 16px;
	outline: none;
	resize: vertical;
	transition: ease 0.5s;
	transition-property: border-color, box-shadow;
}

.enquiry-form-input:focus {
	border-color: var(--theme-bg-color);
	/* box-shadow: 0 0 0 0.2rem rgb(37 19 209 / 25%); */
}

.enquiry-input-group {
	display: flex;
}

.enquiry-input-group .enquiry-form-input:not(:first-child) {
	border-top-left-radius: 0;
	border-bottom-left-radius: 0;
	margin-left: -1px;
}

.enquiry-input-group .enquiry-form-input:not(:last-child) {
	border-top-right-radius: 0;
	border-bottom-right-radius: 0;
}

.enquiry-form-col label {
	line-height: 1.2;
	display: inline-block;
}

.enquiry-form-col label.error {
	color: red;
	font-size: 0.9em;
}

.enquiry-form-col-lg {
	grid-column: 1 / 3;
}

.enquiry-form-btn {
	margin-top: 10px;
	background-color: var(--theme-bg-color);
	color: #fff;
	border: 2px solid var(--theme-bg-color);
	border-radius: 4px;
	font-weight: 500;
	padding: 14px 40px;
	cursor: pointer;
	transition: ease 0.4s;
	transition-property: background-color, color;
}

.enquiry-form-btn:hover {
	background-color: var(--theme-fore-color);
	color: var(--theme-text-color);
}

.team-section {
	background-color: var(--theme-dark-color);
	background-size: cover;
	background-position: center;
}

.team-section .section-title {
	color: var(--theme-fore-color);
}

.team-section .section-title-divider {
	border-top-color: var(--theme-fore-color);
}

.team-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 30px;
}

.team-col {
	background-color: #fff;
	position: relative;
	overflow: hidden;
}

.team-img {
	overflow: hidden;
}

.team-img img {
	transition: ease 0.5s transform;
}

.team-col:hover .team-img img {
	transform: scale(1.15);
}

.team-socials {
	position: absolute;
	top: 0;
	left: 15px;
	background-color: #fff;
	color: var(--theme-text-color);
	display: flex;
	flex-direction: column;
	padding: 18px 16px;
	text-align: center;
	border-radius: 0 0 50px 50px;
	transform: translateY(-30px);
	opacity: 0;
	transition: ease 0.5s;
	z-index: 1;
	transition-property: opacity, transform;
}

.team-social-link {
	line-height: 2;
	display: block;
}

.team-col:hover .team-socials {
	transform: translateY(0);
	opacity: 1;
}

.team-content {
	padding: 20px;
	text-align: center;
}

.team-title {
	font-size: 24px;
	margin-bottom: 5px;
	color: var(--theme-dark-color);
}

.home-career-section {
	background-color: var(--theme-fore-color);
}

.home-career-section .section-header {
	color: var(--theme-text-color);
}

.home-career-slide {
	border: 1px solid #dadada;
	padding: 20px;
	height: auto;
	border-radius: 4px;
}

.home-career-title {
	font-size: 22px;
	font-weight: 800;
	color: var(--theme-text-color);
	margin-bottom: 15px;
}

.home-career-desc {
	margin-bottom: 20px;
}

.home-career-link {
	border: 2px solid var(--theme-bg-color);
	display: inline-block;
	padding: 8px 16px;
	background-color: var(--theme-bg-color);
	color: var(--theme-fore-color);
	border-radius: 4px;
}

.career-explore-slide {
	background-color: var(--theme-bg-color);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	border-color: var(--theme-bg-color);
	overflow: hidden;
}

.career-explore-text {
	color: var(--theme-fore-color);
	font-size: 22px;
	font-weight: 600;
	margin-bottom: 8px;
	position: relative;
	z-index: 2;
}

.career-explore-icon {
	width: 44px;
	height: 44px;
	line-height: 25px;
	text-align: center;
	border-radius: 50px;
	background-color: var(--theme-fore-color);
	color: var(--theme-text-color);
	font-size: 22px;
	padding: 10px;
	position: relative;
	z-index: 0;
}

.career-explore-icon i {
	position: relative;
	z-index: 1;
}

.career-explore-icon::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 50%;
	width: 100%;
	height: auto;
	aspect-ratio: 1 / 1;
	background-color: var(--theme-fore-color);
	transform: translate(-50%, -50%);
	transition: ease 0.7s transform;
	transform-origin: center;
	z-index: 0;
	border-radius: 50%;
}

.career-explore-slide:hover .career-explore-text {
	color: var(--theme-text-color);
}

.career-explore-slide:hover .career-explore-icon::before {
	transform: scale(15);
}

.clients-section {
	background-size: cover;
	background-position: center;
}

.clients-section .section-header,
.clients-section .section-title {
	color: var(--theme-fore-color);
}

.clients-section .section-title-divider {
	border-top-color: var(--theme-fore-color);
}

.client-slide {
	padding-top: 50px;
}

.client-slide-content {
	padding: 30px;
	padding-top: 80px;
	width: 100%;
	max-width: 350px;
	margin-left: auto;
	margin-right: auto;
	position: relative;
}

.client-slide-content,
.client-slide-content::before,
.client-slide-content::after {
	border-radius: 100px 70px 70px 200px;
	background-color: #fff;
}

.client-slide-content::before,
.client-slide-content::after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.client-slide-content::before {
	z-index: -1;
	opacity: 0.8;
	transform: skew(-8deg);
}

.client-slide-content::after {
	z-index: -2;
	opacity: 0.6;
	transform: skew(-16deg);
}

.client-slide-img {
	width: 90px;
	height: 90px;
	border-radius: 50px;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translate(-50%, -50%);
	object-fit: cover;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.25);
}

.client-slide-text {
	text-align: center;
	margin-bottom: 20px;
	height: calc(7 * 1.6em);
	overflow: hidden;
	line-height: 1.6;
}

.client-slide-name {
	color: var(--theme-dark-color);
	font-size: 18px;
	font-weight: 700;
	display: flex;
	align-items: flex-start;
	justify-content: flex-end;
	padding-left: 50px;
	text-align: right;
	line-height: 1.1;
	height: calc(2 * 1.1em);
	overflow: hidden;
}

.client-slide-quote {
	font-size: 55px;
	margin-left: 15px;
	line-height: 50px;
	color: #dae6f9;
	margin-top: -10px;
}

.client-nav .client-nav-btn {
	color: var(--theme-fore-color);
	--swiper-navigation-size: 26px;
}

.client-nav .swiper-pagination-bullet-active {
	--swiper-pagination-color: var(--theme-fore-color);
}

.client-nav .swiper-pagination {
	position: static;
}

.blog-section {
	background-color: var(--light-bg);
}

.blog-cards {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 30px;
}

.blog-card {
	background-color: #fff;
	padding: 15px;
	position: relative;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
	transition: ease 0.5s box-shadow;
}

.blog-card:hover {
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.3);
}

.blog-img {
	position: relative;
}

.blog-img::before {
	content: "";
	display: block;
	width: 100%;
	padding-top: 75%;
}

.blog-img img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.blog-tag {
	position: absolute;
	top: 25px;
	left: 25px;
	background-color: var(--theme-bg-color);
	color: #fff;
	padding: 1px 15px;
	font-weight: 500;
	font-size: 12px;
	letter-spacing: 1px;
	min-width: 180px;
	text-align: center;
}

.blog-meta {
	width: 95%;
	margin-left: auto;
	margin-right: auto;
	margin-top: -25px;
	position: relative;
	z-index: 1;
	border-radius: 3px;
	font-size: 14px;
	text-align: center;
	background-color: #fff;
	box-shadow: 0 0 35px rgba(0, 0, 0, 0.1);
	padding: 12px 20px;
	line-height: 1.5;
}

.blog-meta .blog-author {
	display: block;
	width: 100%;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.blog-card-content {
	padding: 20px;
	text-align: center;
}

.blog-title {
	color: var(--theme-dark-color);
	font-size: 22px;
	margin-bottom: 10px;
	height: calc(2 * 1.3em);
	line-height: 1.3;
	overflow: hidden;
}

.blog-text {
	margin-bottom: 10px;
	height: calc(3 * 1.7em);
	line-height: 1.7;
	overflow: hidden;
}

.blog-more-link {
	color: var(--theme-text-color);
	font-weight: 500;
	position: relative;
	display: inline-block;
	text-underline-offset: 5px;
}

.blog-more-link:hover {
	text-decoration: underline;
}

/* .blog-more-link::before {
	position: absolute;
} */

.page-footer-section {
	background-color: var(--theme-dark-color);
	color: #fff;
	text-align: center;
}

.footer-brand {
	width: 200px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 50px;
}

.footer-row {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 60px;
}

.footer-col {
	flex: 1 1 30%;
}

.footer-col-icon {
	width: 45px;
	height: 45px;
	line-height: 45px;
	border-radius: 4px;
	background-color: var(--theme-bg-color);
	font-size: 18px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 20px;
}

.footer-col-title {
	font-size: 20px;
	margin-bottom: 10px;
}

.footer-nav-links {
	margin-bottom: 20px;
}

.footer-nav-link {
	margin: 0 20px;
	font-size: 16px;
	font-weight: 400;
	text-underline-offset: 5px;
}

.footer-nav-link:hover {
	text-decoration: underline;
}

.footer-copy-text {
	margin-bottom: 0;
}

.footer-social-links {
	margin-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-social-link {
	width: 45px;
	height: 45px;
	margin-left: 8px;
	margin-right: 8px;
	border-radius: 50px;
	background-color: var(--theme-bg-color);
	line-height: 45px;
	transition: ease 0.3s;
	transition-property: color, background-color;
}

.footer-social-link:hover {
	background-color: #fff;
	color: var(--theme-text-color);
}

.page-popup-wrapper {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 50;
    visibility: hidden;
}

.page-popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #000;
	opacity: 0.5;
	z-index: 60;
	transition: ease 0.3s opacity;
	transition-delay: 0.3s;
	pointer-events: none;
}

.page-popup-container {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 700px;
	height: 500px;
	max-width: calc(100vw - 20px);
	max-height: calc(100vh - 20px);
	transform: translate(-50%, -50%);
	z-index: 70;
	background-color: #fff;
	border-radius: 6px;
	overflow: hidden;
	box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.15);
    transition: ease 0.25s transform 0.2s, ease 0.3s opacity 0s;
    opacity: 0;
}

.page-popup-close {
	font-size: 2rem;
	line-height: 0.5;
	position: absolute;
	top: 0;
	right: 0;
	padding: 10px;
	font-weight: 600;
	z-index: 2;
	cursor: pointer;
}

.page-popup-content,
.page-popup-container .swiper {
	height: 100%;
}

.popup-slide-img {
	height: 100%;
	object-fit: cover;
}

.popup-nav-btn {
	--swiper-navigation-size: 28px;
}

.popup-nav-btn::after {
	font-weight: 600;
}

.page-popup-wrapper.popup-closing,
.page-popup-wrapper.popup-active {
	/* display: block; */
	visibility: visible;
}

.page-popup-wrapper.popup-active .page-popup-overlay {
	opacity: 0.5;
	transition-delay: 0s;
	pointer-events: all;
}

.popup-active .page-popup-container {
	transform: translate(-50%, -50%);
	transition-delay: 0s, 0s;
	opacity: 1;
}

.page-popup-wrapper.popup-active .page-popup-container {
	transform: translate(-50%, -50%);
	transition-delay: 0s, 0s;
	opacity: 1;
}

.page-popup-wrapper.popup-closing .page-popup-overlay {
	opacity: 0;
	transition: ease 0.3s opacity;
	pointer-events: none;
}

.page-popup-wrapper.popup-closing .page-popup-container {
	opacity: 0;
	transform: translate(-50%, -30%);
	transition: ease 0.25s transform 0s, ease 0.3s opacity 0s;
}

@media (min-width: 601px) {
	.header-menu-btn {
		display: none;
	}

	/* .page-scroll .header-menu-link {
		color: #fff;
	} */

	.menu-dropdown {
		position: relative;
	}

	.dropdown-container {
		position: absolute;
		top: 100%;
		left: 0;
		width: 320px;
		opacity: 0;
		pointer-events: none;
		transition: ease 0.5s opacity;
	}

	.menu-dropdown:hover .dropdown-container {
		opacity: 1;
		pointer-events: all;
	}

	.dropdown-links {
		background-color: #fff;
		transform: translateY(20px);
		transition: ease 0.5s transform;
		box-shadow: 0 3px 6px rgba(0, 0, 0, 0.2);
	}

	.menu-dropdown:hover .dropdown-links {
		transform: translateY(0);
	}

	.menu-dropdown-link {
		padding: 6px 25px;
		display: block;
		transition: ease 0.25s;
		transition-property: background-color, color;
	}

	.dropdown-container-sm {
		width: 250px;
	}

	.dropdown-submenu {
		position: relative;
	}

	.dropdown-submenu-container {
		position: absolute;
		top: 0;
		left: 100%;
		width: 320px;
		opacity: 0;
		transform: translateY(20px);
		transition: ease 0.5s;
		transition-property: transform, opacity;
		pointer-events: none;
	}

	.dropdown-submenu-link {
		position: relative;
	}

	.dropdown-submenu-link::after {
		content: "\f105";
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translate(-50%, -50%);
	}

	.dropdown-submenu:hover .dropdown-submenu-container {
		transform: translateY(0);
		opacity: 1;
		pointer-events: all;
	}

	.menu-dropdown-link:hover {
		color: #fff;
		background-color: var(--theme-bg-color);
	}

	.banner-swiper .swiper-button-prev {
		left: -65px;
	}

	.banner-swiper .swiper-button-next {
		right: -65px;
	}

	.banner-swiper:hover .swiper-button-prev {
		left: 50px;
	}

	.banner-swiper:hover .swiper-button-next {
		right: 50px;
	}

	.client-slide-content {
		padding-top: 60px;
	}
}

@media (max-width: 600px) {
	.top-header,
	.header-cta-link {
		display: none;
	}

	.container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.main-header {
		/* background-color: var(--theme-bg-color); */
		padding-top: 15px;
		padding-bottom: 15px;
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
	}

	.page-content {
		padding-top: 75px;
	}

	.header-brand {
		width: 120px;
	}

	.header-brand-primary {
		opacity: 0;
	}

	.header-brand-alt {
		opacity: 1;
	}

	.header-menu {
		color: #000;
	}

	.header-menu-btn {
		background-color: transparent;
		border: 0;
		color: var(--theme-text-color);
		font-size: 24px;
		padding: 6px;
		line-height: 1;
		width: 32px;
		text-align: center;
	}

	.header-menu-btn .menu-icon::before {
		content: "\f0c9";
	}

	.menu-open .header-menu-btn .menu-icon::before {
		content: "\f00d";
	}

	.header-menu-links {
		position: absolute;
		top: 100%;
		left: 0;
		width: 100%;
		height: calc(100vh - 75px);
		display: block;
		background-color: #fff;
		transform: translateX(100%);
		transition: ease 0.4s transform;
		overflow: auto;
	}

	.menu-open .header-menu-links {
		transform: none;
	}

	.header-menu-link,
	.menu-dropdown-link {
		padding: 10px 20px;
		color: #000;
		display: block;
		font-weight: 400;
		border-bottom: 1px solid #eaeaea;
	}

	.dropdown-submenu-link::after {
		margin-left: 5px;
		content: "\f107";
		font-family: FontAwesome;
		font-size: 13px;
		opacity: 0.5;
	}

	.dropdown-links {
		padding-left: 20px;
	}

	.dropdown-submenu-container,
	.dropdown-container {
		display: none;
	}

	.services-row,
	.about-row,
	.features-grid,
	.solutions-grid,
	.team-grid,
	.blog-cards {
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.banner-section {
		min-height: auto;
		height: 500px;
	}

	.banner-slide {
		align-content: flex-end;
	}

	.banner-bg {
		object-position: right;
	}

	.banner-content {
		text-align: center;
		/* max-width: 85%; */
		margin-left: auto;
		margin-right: auto;
		margin-bottom: 25px;
		padding: 20px;
	}

	.banner-main-title {
		font-size: 22px;
		margin-bottom: 0;
	}

	.banner-text {
		/* font-size: 15px; */
		display: none;
	}

	.banner-links {
		margin-top: 15px;
	}

	.banner-link {
		margin-right: 0;
		font-size: 14px;
		padding: 8px 15px;
	}

	.banner-link-alt {
		/* display: none; */
	}

	.banner-nav-btn {
		width: 45px;
		height: 45px;
		bottom: auto;
		top: 50%;
		transform: translateY(-50%);
	}

	.page-section {
		padding-top: 50px;
		padding-bottom: 50px;
	}

	.section-header {
		margin-bottom: 35px;
	}

	.section-header-text {
		font-size: 16px;
		line-height: 1.7;
	}

	.section-small-title {
		font-size: 14px;
	}

	.section-title {
		font-size: 20px;
	}

	.section-title br {
		display: none;
	}

	.feature-title {
		font-size: 20px;
	}

	.features-grid {
		gap: 25px;
	}

	.team-grid {
		gap: 25px;
	}

	.home-career-title {
		font-size: 20px;
		margin-bottom: 6px;
	}

	.home-career-desc {
		margin-bottom: 15px;
	}

	.home-career-link {
		line-height: 1.4;
		font-size: 15px;
	}

	.client-slide-content {
		padding: 20px;
		padding-top: 60px;
	}

	.client-slide-text {
		font-size: 14px;
	}

	.client-slide-name {
		margin-bottom: 20px;
		font-size: 16px;
	}

	.blog-cards {
		gap: 20px;
	}

	.blog-card-content {
		padding-left: 0;
		padding-right: 0;
		padding-bottom: 10px;
	}

	.blog-title {
		font-size: 20px;
		height: auto;
	}

	.blog-meta {
		color: #000;
	}

	.blog-text,
	.blog-more-link {
		font-size: 16px;
	}

	.about-content-col {
		padding-left: 15px;
		padding-right: 15px;
	}

	.enquiry-container {
		margin-top: 10px;
		flex-direction: column;
	}

	.enquiry-img-col,
	.enquiry-form {
		width: 100%;
	}

	.enquiry-form {
		padding: 20px;
	}

	.enquiry-img-col img {
		object-position: top center;
	}

	.enquiry-img-content {
		padding: 40px 25px;
		min-height: 200px;
	}

	.enquiry-img-title {
		font-size: 28px;
	}

	.enquiry-form-grid {
		grid-template-columns: 1fr;
	}

	.enquiry-form-col-lg {
		grid-column: 1;
	}

	.enquiry-form-input {
		padding: 8px 18px;
	}

	.enquiry-form-col label {
		display: block;
		padding-left: 1.2rem;
		font-size: 12px;
	}

	.enquiry-form-col input[type="checkbox"] {
		display: inline-block;
		margin-left: -1.2rem;
		vertical-align: middle;
		margin-right: 0.2rem;
	}

	.enquiry-form-btn {
		font-size: 14px;
		padding: 10px 25px;
		margin-top: 0;
	}

	.client-slide {
		padding-left: 5px;
		padding-right: 35px;
	}

	.page-footer-section {
		padding-bottom: 80px;
		padding-top: 80px;
	}

	.footer-row {
		flex-direction: column;
		margin-bottom: 45px;
	}

	.footer-col {
		width: 100%;
		margin-bottom: 30px;
	}

	.footer-copy-text {
		margin-bottom: 40px;
	}

	.footer-nav-links,
	.footer-social-links {
		margin-bottom: 40px;
	}

	.footer-nav-link {
		margin-left: 13px;
		margin-right: 13px;
	}
}
