/* Tupelo 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: 18px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 1164px;
  min-width: 538px;
  margin: 0 auto;
  transform: translateX(-50%);
}
.inner-hero-section .inner-hero-content .text-wrap{
  width: 100%;
  text-align: center;
  padding: 16px;
 
}
.inner-hero-section .inner-hero-content h1.inner-hero-title{
  margin-bottom: 0; 
  z-index: 1; 
  position: relative;
  color: #494949;
  font-weight: 500;
}
.inner-hero-section .text-overlay{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  backdrop-filter: blur(8px);
  background: #FFFFFF;
}
.inner-hero-section.no-hero-img .inner-hero-container {
  height: auto;
  min-height: auto;
  padding-top: 114px;
  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 0;
  }
  .inner-hero-section .inner-hero-content {
    max-width: 1024px;
}
}

/* 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: 16px;
  }
  .inner-hero-section .inner-hero-content {
    max-width: 750px;
  }
}

/* Mobile */
@media screen and (max-width: 767px) {
  .inner-hero-section .inner-hero-container {
    max-height: 343px;
     height: 100vh;
  }
  .inner-hero-section .inner-hero-content .text-wrap {
    padding: 12px;
  }
  .inner-hero-section .inner-hero-content{
    max-width: 100%;
    min-width: 260px;
    bottom: 6px;
  }
   .inner-hero-section.no-hero-img .inner-hero-container {
    padding-top: 74px;
  }
}