/* acacia inner intro */
.inner-hero-section .inner-hero-container{
  position: relative;
  max-height: 685px;
  height: 30vw;
  min-height: 320px;
  display: flex;
  overflow: hidden;
}

.inner-hero-section .inner-hero-img{
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
}
.inner-hero-section .inner-hero-img .image-wrap{
  height: 100%;
}
.inner-hero-section .inner-hero-img .image-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inner-hero-section .inner-hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.inner-hero-section .inner-hero-content .text-wrap{
  width: 100%;
  text-align: center;
  padding: 24px;
  position: relative;
}
.inner-hero-section .inner-hero-content h1.inner-hero-title{
  margin-bottom: 0; 
  z-index: 1; 
  position: relative;

}
.inner-hero-section .text-overlay{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(0, 0, 0, 0.4);
}

.inner-hero-section.no-hero-img .inner-hero-container{
 height: auto;
    min-height: auto;
    padding-top: 70px;
    padding-left: 0;
    padding-right: 0;
}
.inner-hero-section.no-hero-img .inner-hero-content{
position: relative;
transform: none;
left: auto;
}
/* Large screens (1440px and below) */
@media screen and (max-width: 1440px) {
  .inner-hero-section .inner-hero-container {
    max-height: 540px;
    height: 35vw;
  }
  .inner-hero-section .inner-hero-content .text-wrap {
    padding: 20px;
  }
  
}

/* Tablet */
@media screen and (max-width: 1024px) {
  .inner-hero-section .inner-hero-container {
    max-height: 450px;
     height: 40vw;
  }
  .inner-hero-section .inner-hero-content .text-wrap {
    padding: 18px;
  }
  
}

/* Mobile */
@media screen and (max-width: 767px) {
  .inner-hero-section .inner-hero-container {
    max-height: 400px;
  height: 100vh;
  }
  .inner-hero-section .inner-hero-content .text-wrap {
    padding: 10px;
  }
  .inner-hero-section.no-hero-img .inner-hero-container{
    padding-top: 74px;
  }
}