/* Hive 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: 10px;
  left: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: 1305px;
  min-width: 975px;
  margin: 0 auto;
  transform: translateX(-50%);
}

.inner-hero-section .inner-hero-content .text-wrap {
  width: 100%;
  text-align: center;
  padding: 16px;
position: relative;
}

.inner-hero-section .inner-hero-content h1.inner-hero-title {
  margin-bottom: 0;
  z-index: 1;
  position: relative;
  color: #fff;
  font-weight: 400;
  line-height: 1;
}

.inner-hero-section .text-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  backdrop-filter: blur(12px);
  background: #759294CC;

}
.inner-hero-section.no-hero-img .inner-hero-container {
  height: auto;
  min-height: auto;
  padding-top: 94px;
  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 {  
    max-width: 1024px;
    min-width: 768px;
  }
}

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

  
 .inner-hero-section .inner-hero-content{
    max-width: 750px;
     min-width: 425px;
  }
 
}

/* 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: 16px;
  }
  .inner-hero-section .inner-hero-content{
    max-width: 100%;   
    min-width: 351px;
  }
     .inner-hero-section.no-hero-img .inner-hero-container {
    padding-top: 74px;
  }
}