.banner-img-swiper {
    position: relative;
}
.banner-img-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}
.banner-img-swiper .slide-image-wrapper {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0%;
    left: 0%;
    will-change: transform;
}
.banner-img-swiper .slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}
/* Main Content */
.main-content {
	position: relative;
	z-index: 5;
	padding: 9rem 4.75rem 0;
	margin: 0 auto;
	/* min-height: calc(100vh - 5.8rem); */
	min-height: 100vh;
}
.main-content::before {
	content: "";
	position: absolute;
	top: -5.813rem;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -1;
	background-image: linear-gradient(180deg, #00072f 0%, #061676 100%);
	opacity: 0.5;
}
.banner-img {
	position: absolute;
	top: -5.813rem;
	left: 0;
	right: 0;
	bottom: 0;
	width: 100%;
	height: calc(100% + 5.8rem);
	object-fit: cover;
	z-index: -2;
}
.brand-name {
	color: #22d3ee;
	margin-bottom: 1.5rem;
	font-style: italic;
}

.main-heading {
	font-size: 4.5rem;
	font-weight: 700;
	line-height: 1.1;
	margin-bottom: 1.5rem;
	max-width: 65rem;
}

.sub-heading {
	font-weight: 600;
	margin-bottom: 1rem;
	color: white;
	line-height: 1;
	font-family: "Plus Jakarta Sans", Sans-serif;
}

.description {
	font-size: 1.125rem;
	line-height: 1.7;
	margin-bottom: 2rem;
	max-width: 56rem;
	color: white;
}
.description p {
	margin-bottom: 1rem;
}
.contact-info {
	display: flex;
	align-items: center;
	gap: 2rem;
	margin-top: 3rem;
	margin-left: 2rem;
}

.phone-info {
	font-size: 1.125rem;
}

.phone-number {
	color: #22d3ee;
	font-weight: 600;
	font-size: 1.25rem;
}

.contact-button {
	background: #213acb;
	color: white;
	padding: 1rem 2rem;
	border-radius: 2rem;
	text-decoration: none;
	font-weight: 600;
	font-size: 1.125rem;
	transition: all 0.3s ease;
	border-style: solid;
	border-width: 1px 1px 1px 1px;
	border-color: #213acb;
}

.contact-button:hover {
	background: #02010100;
}
@media (max-width: 639px) {
	.main-content {
		padding: 3rem 1.188rem 4.88rem;
		height: calc(100vh - 3rem);
	}
	.main-heading {
		font-size: 1.9rem;
	}
	.sub-heading {
		font-size: 1.125rem;
		line-height: 1.5rem;
	}
	.description {
		font-size: 1rem;
		line-height: 1.5;
		color: white;
	}
	.description p {
		margin-bottom: 0.875rem;
	}
	.contact-info {
		margin-left: 0;
		flex-direction: column;
		gap: 1.25rem;
		align-items: start;
	}
}
