/* HERO BANNER */
.hero-banner {
	width: 100%;
	height: 100vh;
	min-height: 700px;
	overflow: hidden;
	position: relative;
	top: -80px;
	margin-bottom: -80px;
}

.hero-banner img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	margin-left: 0;
}

.hero-content {
	position: absolute;
	top: 50%;
	left: 8%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 815px;
	z-index: 2;
}

.hero-content h1 {
	font-family: 'Archivo', sans-serif;
	color: #fff;
	font-size: 54px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0px;
	margin: 25px 0;
	text-shadow: 0 4px 20px rgba(0, 0, 0, .25);
}

.hero-desc {
	font-family: 'Archivo', sans-serif;
	color: rgba(255, 255, 255, .88);
	font-size: 22px;
	line-height: 1.6;
	max-width: 650px;
	margin-bottom: 40px;
}

/* HERO FEATURE LIST */

.hero-feature .hero-content {
	position: absolute;
	top: 50%;
	left: 30%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	width: 100%;
	max-width: 1320px;
	padding: 0 40px;
	display: flex;
	justify-content: center;
	z-index: 2;
}

.hero-feature-list {
	width: 100%;
	max-width: 850px;
}

.hero-feature-item {
	display: block;
	padding: 0 0 28px;
	margin-bottom: 28px;
	text-decoration: none;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.hero-feature-item:last-child {
	margin-bottom: 0;
	padding-bottom: 0;
	border-bottom: none;
}

.hero-feature-item {
	-webkit-transition: all .3s ease;
	transition: all .3s ease;
}

.hero-feature-item:hover {
	-webkit-transform: translateX(8px);
	-ms-transform: translateX(8px);
	transform: translateX(8px);
}

.hero-feature-item h2 {
	-webkit-transition: color .3s ease;
	transition: color .3s ease;
}

.hero-feature-item:hover h2 {
	color: #7dc3ff;
}

.hero-feature-meta {
	margin-bottom: 8px;
	font-size: 16px;
	color: rgba(255, 255, 255, .75);
	letter-spacing: .5px;
}

.hero-feature-item h2 {
	margin: 0 0 12px;
	font-size: 28px;
	line-height: 1.25;
	font-weight: 600;
	color: #fff;
	-webkit-transition: color .3s ease;
	transition: color .3s ease;
}


.hero-feature-text {
	font-size: 17px;
	line-height: 1.7;
	color: rgba(255, 255, 255, .88);

	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media (max-width:991px) {

	.hero-feature .hero-content {
		left: 50%;
		padding: 0 30px;
	}

	.hero-feature-list {
		max-width: 100%;
	}

	.hero-feature-item h2 {
		font-size: 22px;
	}

	.hero-feature-text {
		display: none;
	}
}

@media (max-width:991px) {

	.hero-feature .hero-content {
		left: 50%;
		padding: 0 20px;
	}

	.hero-feature-item {
		margin-bottom: 20px;
		padding-bottom: 20px;
	}

	.hero-feature-item h2 {
		font-size: 18px;
		margin-bottom: 6px;
	}

	.hero-feature-meta {
		font-size: 11px;
	}

	.hero-feature-text {
		display: none;
	}
}


.hero-about-content {
	max-width: 950px;
}

.hero-subtitle {
	font-family: 'Archivo', sans-serif;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .75);
	margin-bottom: 18px;
}

.hero-overview {
	margin-top: 40px;
	text-align: left;
}

.hero-overview-block {
	margin-bottom: 30px;
}

.hero-overview-block:last-child {
	margin-bottom: 0;
}

.hero-overview-heading {
	font-family: 'Archivo', sans-serif;
	font-size: 26px;
	font-weight: 700;
	color: #fff;
	margin-bottom: 12px;
}

.hero-overview-text {
	font-family: 'Archivo', sans-serif;
	font-size: 20px;
	line-height: 1.8;
	color: rgba(255, 255, 255, .9);
	max-width: 900px;
}

/* CONTACT DETAILS */

.hero-contact-details {
	display: flex;
	flex-direction: column;
	gap: 26px;
	margin-top: 10px;
}

.hero-contact-item {
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.hero-contact-item .hero-label {
	font-family: 'Archivo', sans-serif;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: rgba(255, 255, 255, .72);
}

.hero-contact-item>span:not(.hero-label),
.hero-contact-item>a {
	font-family: 'Archivo', sans-serif;
	font-size: 21px;
	font-weight: 700;
	color: #ffffff;
	text-decoration: none;
	-webkit-transition: opacity .3s ease;
	transition: opacity .3s ease;
}

.hero-contact-item a:hover {
	opacity: .75;
}

