/* collective 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%;
  height: 202px;
}
.inner-hero-section .inner-hero-content .text-wrap{
      width: 100%;
    text-align: center;
    padding: 24px;
    position: relative;
    height: 100%;
    display: flex
;
    justify-content: center;
    align-items: end;
}
.inner-hero-section .inner-hero-content h1.inner-hero-title{
  margin-bottom: 0; 
  z-index: 1; 
  position: relative;
  color: #000000;

}
.inner-hero-section .text-overlay{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 12.44%, #FFFFFF 69.27%);
}
.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;
  height: auto;
}
.inner-hero-section.no-hero-img .inner-hero-content .text-wrap{
  align-items: center;
}
/* 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;
  }
  .inner-hero-section .inner-hero-content{
    height: 120px;
  }
}

/* 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;
  }
  .inner-hero-section .inner-hero-content{
    height: 100px;
  }
}

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