
/* Responsive 
.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;
	}
}





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

.hero-inner {
  display: flex;
  width: 100%;
  height: 100%;
  
}

.hero-left {
  width: 50%;
  background-color: #d9cbbc;
  color: black;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 80px;
  padding-right: 80px;
}

.hero-left h1 {
  font-size: 2.2 rem;
  margin-bottom: 100px;
  text-align: center;
}

.hero-left p {
  font-size: 1.2rem;
  margin-bottom: 25px;
}

.primary-btn {
  display: inline-block;
  background-color: #f08e34;
  color: black;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  width: auto;
  align-self: center;
}

.primary-btn:hover {
  background-color: #db7c27;
}

.hero-right {
  width: 50%;
  position: relative;
  overflow: hidden;
}

.hero-right img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; 
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.hero-right img.active {
  opacity: 1;
}

/* Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  background: none;
  border: none;
  cursor: pointer;
}

.arrow.left {
  left: 52%;
}

.arrow.right {
  right: 20px;
}

.arrow:hover svg path {
  fill: #F08E34;
}

@media (max-width: 768px) {
  .brk-hero-slider {
    height: auto; 
  }

  .hero-slide {
    position: relative;
    flex-direction: column;
    height: auto;
  }

  .hero-inner {
    flex-direction: column;
    gap: 0;
  }

  .hero-left {
    width: 100%;
    padding: 40px 20px;
    text-align: center;
    justify-content: center; 
  }

  .hero-right {
    width: 100%;
    height: 350px; 
    background-position: center;
    background-size: cover;
  }

  .arrow {
    top: calc(100% - 150px);
    transform: translateY(-50%);
  }

  .arrow.left {
    left: 10px;
  }

  .arrow.right {
    right: 10px;
  }
}