@font-face {
	font-family: 'TASA Orbiter';
	src: url('../fonts/tasa-orbiter/TASAOrbiter-Regular.woff2') format('woff2'),
		url('../fonts/tasa-orbiter/TASAOrbiter-Regular.woff') format('woff');
	font-weight: normal;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Archivo';
	src: url('../fonts/archivo/Archivo-SemiBold.woff2') format('woff2'),
		url('../fonts/archivo/Archivo-SemiBold.woff') format('woff');
	font-weight: 600;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: 'Archivo';
	src: url('../fonts/archivo/Archivo-SemiBoldItalic.woff') format('woff2'),
		url('../fonts/archivo/Archivo-SemiBoldItalic.woff2') format('woff');
	font-weight: 600;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: 'Archivo';
	src: url('../fonts/archivo/ArchivoBlack-Regular.woff2') format('woff2'),
		url('../fonts/archivo/ArchivoBlack-Regular.woff') format('woff');
	font-weight: 900;
	font-style: normal;
	font-display: swap;
}



* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'TASA Orbiter';
	color: var(--primerry);
}

:root {
	--black: #000000;
	--white: #fff;
	--grey: #f5f8fb;
	--darkBlue: #101E2F;
	--darkNavyBlue: #162A41;
	--lightNavy: #326095;
	--skyBlue: #1374B2;
	--textColor: #020202;
	--para: #333333;

	--transition: all 0.3ms linear;

	/* font-family */
	--archivo: 'Archivo';
	--tasa_orbiter: 'TASA Orbiter';

	/* font-size */
	--size-14: clamp(12px, 1.5vw, 14px);
	--size-16: clamp(16px, 1.5vw, 16px);
	--size-18: clamp(16px, 1.5vw, 18px);
	--size-20: clamp(16px, 1.5vw, 20px);

	--size-24: clamp(20px, 3vw, 24px);
	--size-28: clamp(24px, 3vw, 28px);
	--size-32: clamp(26px, 3vw, 32px);
	--size-48: clamp(30px, 3vw, 48px);
	--size-64: clamp(35px, 3vw, 64px);

}


body {
	padding: 0;
	margin: 0;
	overflow-x: hidden;
	color: var(--textColor);
	background: var(--white);
	font-family: var(--tasa_orbiter);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--archivo);
}

p {
	font-weight: 500;
	line-height: normal;
	margin-bottom: 1rem;
	color: var(--para);
	font-size: var(--size-20);
	font-family: var(--tasa_orbiter);
}

h1 {
	font-weight: 700;
	line-height: 1;
	text-transform: uppercase;
	font-size: var(--size-64);
}

h2 {
	font-weight: 700;
	line-height: 1.4;
	font-size: var(--size-48);
}

h3 {
	font-weight: 700;
	line-height: 1.4;
	font-size: var(--size-32);
}

h4 {
	font-weight: 700;
	line-height: 1.4;
	font-size: var(--size-28);
}

h5 {
	font-weight: 700;
	line-height: 1.4;
	font-size: var(--size-24);
}

a {
	text-decoration: none;
	color: var(--black);
}

img {
	width: 100%;
	height: auto;
}

.btnStyle_one {
	font-size: var(--size-20);
	padding: 1.6rem 2.4rem;
	font-weight: 600;
	text-transform: uppercase;
	color: var(--white);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	transition: 0.1s ease-in-out;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%, 0 80%);
	background: linear-gradient(320deg, rgba(50, 96, 149, 1) 45%, rgba(16, 30, 47, 1) 100%);

	img {
		width: 30px;
		margin-left: 10px;
	}
}

.btnStyle_one:hover {
	background: linear-gradient(320deg, rgba(16, 30, 47, 1) 100%, rgba(50, 96, 149, 1) 45%);
	transition: 0.1s ease-in-out;
}

.mt-30 {
	margin-top: 40px;
}

.mb-30 {
	margin-bottom: 40px;
}

.white-text {
	color: var(--white);
}

/* navbar */
#navbar {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	transform: translateY(-100%);
	opacity: 0;
	background: var(--white);
	z-index: 1030;
	box-shadow: 0 1px 10px -6px #000;
	transition: transform 0.5s ease, opacity 0.3s ease;
}

.navbar a {
	color: var(--black);
}

#navbar.visible {
	transform: translateY(0);
	opacity: 1;
}

.navbar-expand-lg .navbar-collapse {
	gap: 20px;
	justify-content: flex-end;
}

.navbar-brand {
	width: 200px;
	display: inline-block;
}

.navbar .navbar-nav .nav-item {
	padding: 0 10px;
}

.navbar a {
	text-transform: uppercase;
	font-weight: 600;
	color: var(--para);
	font-size: var(--size-20);
}


.navbar .navbar-toggler {
	border: none;
	width: 50px;
	padding: 0;
}

.navbar .navbar-toggler i {
	font-size: var(--size-30);
}

.navbar button:focus:not(:focus-visible) {
	outline: 0;
	box-shadow: none;
}

.nav-button {
	gap: 15px;
	padding: 12px 20px;
	display: inline-flex;
	align-items: center;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 10% 100%, 0 80%);
	background: linear-gradient(320deg, rgba(50, 96, 149, 1) 45%, rgba(16, 30, 47, 1) 100%);

	img {
		width: 40px;
	}

	span,
	strong {
		color: var(--white);
	}
}

.textBlock {
	display: flex;
	flex-direction: column;
}

/* banner section */
.bannerSec {
	height: 900px;
	padding: 150px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: var(--white);

	.container {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

.aboutSec {
	position: relative;
	padding: 100px 0 125px;
}

.aboutSec .row {
	row-gap: 40px;
	align-items: center;
}

.aboutSec p {
    max-width: 520px;
}

.smallLogoIcon {
	width: 100px;
	z-index: -1;
	right: 50%;
	bottom: 110px;
	position: absolute;
}

.secIcon {
	width: 300px;
	margin-bottom: 20px;
}

.secheading {
	font-weight: 700;
	margin-bottom: 20px;
	display: block;
	color: var(--lightNavy);
	text-transform: uppercase;
	font-size: var(--size-20);
}

.serviceSec {
	padding: 100px 0;
	/*margin-top: -100px;*/
	background-size: cover;
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;

	h2 {
		text-transform: uppercase;
	}

	.white-text {
		color: var(--white);
	}
}

.service-carousel {
	gap: 15px;
	display: flex;

	overflow-x: hidden;
	scroll-behavior: smooth;
	-webkit-overflow-scrolling: touch;
	padding-bottom: 8px;
}

.service-card-container {
	flex: 0 0 auto;
	width: 300px;
	scroll-snap-align: start;
	scroll-snap-type: x mandatory;
	padding: 20px;
	background-color: var(--white);
	transition: var(--transition);
}

.service-card-container.active-card {
	color: var(--white);
	transition: var(--transition);
	background-color: var(--darkNavyBlue);

	p,
	.read-more {
		color: var(--white);
	}
}

@media (min-width: 768px) {
	.service-card-container {
		flex: 0 0 33.3333%;
	}
}

.theme-blue {
	background-color: #0b4f8a;
}

.tab-active {
	border-bottom: 3px solid white;
}

.thumbnailsBox {
	margin-bottom: 25px;
	position: relative;
}

.icon_box {
	width: 80px;
	height: 80px;
	background-color: #245d99;
	border-radius: 50%;
	position: absolute;
	bottom: 20px;
	right: 20px;
	display: flex;
	justify-content: center;
	align-items: center;

	img {
		width: 40px;
	}
}

.read-more {
	font-weight: 900;
	font-size: var(--size-18);
	font-family: var(--tasa_orbiter);
	transition: var(--transition);

	&:hover {
		color: var(--lightNavy);
	}
}

.read-more svg {
	width: 35px;
}

.service-tabs {
	gap: 5px;
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 30px;
}

.tab-button {
	border: 0;
	padding: 15px;
	font-size: var(--size-20);
	color: var(--white);
	background-color: var(--darkNavyBlue);
	transition: var(--transition);

	&:hover {
		background-color: #279AD0;
	}
}

.tab-button.tab-active {
	background-color: #279AD0;
}

.slider-navigation {
	margin-top: 30px;
}

.slider-nav {
	width: 50px;
	height: 50px;
	border: 0;
	padding: 10px;
	border-radius: 50%;
	background-color: var(--white);
	transition: var(--transition);

	&:hover {
		color: var(--white);
		background-color: #279AD0;
	}
}

.testimonialSec {
	padding: 100px 0;
	text-align: center;
	position: relative;

	h2 {
		text-transform: uppercase;
	}
}

.testimonialCard {
	padding: 50px;
	height: 100%;
	background-color: var(--white);
	border: 1px solid var(--lightNavy);

	.testimonial_icon {
		width: 80px;
		margin: 0 auto 20px auto;
	}

	.stars {
		color: #FFD700;
		margin-bottom: 10px;
		font-size: var(--size-24);
	}

	.reviews {
		font-size: var(--size-18);
		margin-bottom: 15px;
	}

	h3 {
		color: var(--lightNavy);
		font-size: var(--size-24);
		margin-bottom: 20px;
		text-transform: uppercase;
		font-weight: 700;
	}
}

.mediumLogoIcon {
	width: 150px;
	bottom: 0;
	z-index: -1;
	right: 0;
	position: absolute;
}

.ctaSec {
	padding: 100px 0;
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
	/* background-attachment: fixed; */
	text-align: center;
	color: var(--white);

	.secIcon {
		width: 300px;
		margin-bottom: 20px;
	}

	h2 {
		text-transform: uppercase;
	}
}

.ctaContent {
	max-width: 800px;
	margin: 0 auto;

	p {
		color: var(--white);
	}
}

.contectSec {
	padding: 100px 0 0;
	position: relative;
	background-color: var(--skyBlue);

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

	.row {
		row-gap: 40px;
		align-items: center;
	}

	.secheading {
		color: var(--white);
	}

	h2 {
		text-transform: uppercase;
	}
}

.contectSec .location_info .located-info {
	color: var(--white);

	&:hover {
		color: var(--darkBlue);
	}
}

.contectSec .location_info .located-info img {
	filter: invert(1) brightness(5);
}

.contectSec .location_info .located-info:hover img {
	filter: brightness(0);
}

.largeLogoIcon {
	width: 500px;
	bottom: 0;
	position: absolute;
}

.location_info {
	display: flex;
	flex-direction: column;
}

.getInTouchForm_container {
	padding: 30px !important;
	margin-bottom: -30px;
	border-bottom: 3px solid var(--lightNavy);
	background-color: var(--white) !important;

	h3 {
		color: var(--darkBlue);
		font-size: var(--size-24);
	}

	.getInTouchForm {

		.custom-field input,
		.custom-select .choices__inner,
		.custom-select select {
			width: 100%;
			height: 60px;
			border: none !important;
			border-radius: 0 !important;
			padding: 12px 15px !important;
			font-size: var(--size-18);
			background-color: #F2F2F2 !important;
		}

		.choices__list {
			background-color: #F2F2F2 !important;
		}

		.custom-textarea textarea {
			border: none;
			border-radius: 0;
			padding: 12px 15px;
			font-size: var(--size-18);
			background-color: #F2F2F2;
		}

		.getInTouchBtn {
			font-size: var(--size-20);
			padding: 2rem 2.4rem;
			font-weight: 600;
			text-transform: uppercase;
			color: var(--white);
			display: inline-flex;
			align-items: center;
			border-radius: 0;
			justify-content: center;
			transition: 0.1s ease-in-out;
			background: linear-gradient(320deg, rgba(50, 96, 149, 1) 45%, rgba(16, 30, 47, 1) 100%);
		}
	}
}


footer {
	padding: 60px 0 0;
}

.footer-brand {
	padding-bottom: 30px;
	margin-bottom: 30px;
	border-bottom: 1px solid #00000057;

	img {
		width: 320px;
	}
}

footer h5 {
	font-weight: 700;
	margin-bottom: 20px;
	font-size: var(--size-24);
	color: var(--darkNavyBlue);
	text-transform: uppercase;
}

.footer-navbar p {
	text-transform: uppercase;
}

.footer-navbar ul {
	list-style: none;
	padding-left: 0;
}

.footer-navbar ul li {
	margin-bottom: 10px;
}

.footer-navbar ul li a {
	font-weight: 500;
	color: var(--para);
	text-transform: uppercase;
	font-size: var(--size-20);
}

/* .navbar-nav li.current_page_item a,
.footer-navbar ul li.current_page_item a{
	font-weight: 700;
	color: var(--lightNavy);
} */

.location_info .located-info {
	gap: 15px;
	margin-bottom: 15px;
	color: var(--para);
	font-size: var(--size-20);
	display: inline-flex;
	transition: var(--transition);

	&:hover {
		color: var(--darkBlue);
	}
}

.location_info .located-info img {
	width: 30px;
	margin-right: 10px;
}

footer .row {
	row-gap: 40px;
}

.footer-last-box {
	display: flex;
	margin-top: 20px;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid #00000057;

	p {
		margin-bottom: 0;
	}
}

.social_media {
	list-style: none;
	padding-left: 0;
	display: flex;
	gap: 15px;
	margin-top: 20px;
}

.social_media li a {
	display: inline-block;
}


/*********************** Service Page ***********************/
/* Banner section */
.inner-bannerSec {
	padding: 200px 0;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	color: var(--white);

	.container {
		height: 100%;
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
}

/* Service Term Section */
.service-termsec {
	padding: 100px 0;
}

.service-termsec .container {
	display: flex;
	flex-direction: column;
	gap: 70px;
}

.service-details-card {
	padding: 40px;
	background: var(--grey);
	border: 1px solid #3f7abd33;
	display: flex;
	flex-direction: column;
	gap: 37px;
}

.service-heading {
	display: flex;
	align-items: center;
	gap: 37px;
}

.service-heading h2 {
	text-transform: uppercase;
}

.inner-icon_box {
	width: 80px;
	height: 80px;
	background-color: #1D416C;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;

	img {
		width: 55px;
	}
}

.service-para {
	display: flex;
	flex-direction: column;
	gap: 25px;
}

.service-para p {
	margin: 0;
}

.service-main-content {
	display: flex;
	justify-content: space-between;
}

.service-list {
	display: flex;
	flex-direction: column;
	gap: 30px;
	padding-left: 36px;
}

.service-list h5 {
	text-transform: uppercase;
	margin: 0;
}

.service-list ul, .service-list ol {
	list-style-type: none;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	margin: 0;
}

.service-list ul li, .service-list ol li {
	position: relative;
	padding-left: 35px;
}

.service-list ul li::before, .service-list ol li::before {
	content: "";
	background: url(https://ecommercewebhub.com/dev/wrightway/wp-content/uploads/2026/01/service-arrow.svg) no-repeat;
	background-size: 100%;
	width: 25px;
	height: 25px;
	position: absolute;
	left: 0;
}

.defaultPage-inr-bnr {
    padding-block: 80px;
}