.hero-slider {
	position: relative;
	height: 440px;
	max-height: 100%;
	overflow: hidden;
	font-family: Arial, sans-serif;
}

.hero-slide {
	position: absolute;
	width: 100%;
	top: 0;
	left: 0;
	opacity: 0;
	transition: opacity 0.5s ease-in-out;
	pointer-events: none;
	background: center center / contain no-repeat;
}

.hero-slide.active {
	opacity: 1;
	position: relative;
	pointer-events: auto;
	background-size: cover;
	height: inherit;

}

.overlay {
	position: absolute;
	inset: 0;
	z-index: 1;
}

.hero-content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: black;
	height: 100%;
	max-height: 100%;
	top: 10rem;
}

.hero-content h1 {
	font-size: 2.2rem;
	margin-bottom: 10px;
}

.hero-content p {
	font-size: 1.1rem;
	margin-bottom: 20px;
}

.btn-wrapper {
	margin-top: 3.375rem;
}

.arrow {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	font-size: 2rem;
	background: none;
	border: none;
	cursor: pointer;
	color: black;
	padding: 0 15px;
}

.arrow.left {
	left: 15px;
	transition: transform 0.2s ease, filter 0.2s ease;
}



.arrow.right {
	right: 15px;
	transition: transform 0.2s ease, filter 0.2s ease;
}

.arrow svg path {
	transition: fill 0.2s ease;
}

.arrow:hover svg path {
	fill: #F08E34;
	transform: scale(1.10);
}




.page-hero {
	position: relative;
	background-color: #fff;
	border-top: 1px solid #80808036;
	overflow: hidden;
}

.hero-pattern {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url('https://cdn.erply.com/images/542157/brk-banner-with-bg.webp');
	background-repeat: no-repeat;
	background-size: cover;

}

.hero-content-bg {
	position: relative;
	z-index: 1;
	margin: 0 auto;
	max-width: 1200px;
	height: 150px;
}

.about-us {
	margin-top: 2rem;
	max-width: 1240px;
}

.about-us p {
	margin-top: 1rem;
	font-size: 1.125rem;
}


/* Responsive */


@media (max-width: 768px) {
	.hero-pattern {
		height: 100%;
		background-size: auto;
	}

	.hero-content-bg {
		padding: 0;
	}

	.about-us p {
		font-size: 18px;
	}

	.page-hero {
		padding: 2rem 1rem;
	}
}

.divider {
	margin: 2rem 0;
}

@media (max-width:640px) {
	.page-hero.compact {
		padding-block: 4px;
	}

	.page-hero.compact .hero-content-bg {
		padding: 6px 10px;
	}
}