.mban-image-empty {
    width: 100%;
    height: 1080px;
}

.mban-image-container {
    position: relative;
    width: 100%;
    height: auto;
  }
  
  .mban-image-container::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  
  .mban-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .mban-text-overlay {
    top: 0;
    left: 0;
    z-index: 3;
    color: white;
  }
  
  .mban-text-overlay h1 {
    font-size: 81.15px;
    line-height: 100px;
    font-weight: 400;
  }
  
  .mban-text-overlay p {
    font-size: 26px;
    font-weight: 300;
    line-height: 40.7px;
    padding-top: 2.5rem;
    padding-bottom: 6rem;
  }
  
  .mban-text-overlay a {
    font-size: 16px;
    font-weight: 700;
  }
  
  .mban-text-overlay .btn {
    height: 46px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: center;
    padding: 0rem 2.5rem;
  }
  
  .btn-outline-light:hover {
    color: black!important;
  }
  
  .colored-btn:hover {
    background-color: #0061AC!important;
  }
  
  @media (max-width: 767.98px) {
    .mban-image-empty {
        height: 50vh;
      }
    .mban-image-container::before {
      background: linear-gradient(0deg, #000, transparent 25%);
    }
  
    .mban-text-overlay {
      padding: 1rem 1.5rem;
    }  

    .mban-text-overlay h1 {
      font-size: 40px;
      font-weight: 400;
      line-height: 51.5px;
    }
    
    .mban-text-overlay p {
      font-size: 16px;
      line-height: 25px;
      font-weight: 400;
      padding-top: 2rem;
      padding-bottom: 2rem;
    }
  
    .mban-text-overlay .btn {
      width: 240px;
      align-self: center;
    }
  }
  
  @media (min-width: 768px) {
    .mban-image-container::before {
      /* background: linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.00) 100%); */
      background: linear-gradient(90deg, rgba(0, 0, 0, 0.52) 0%, rgba(0, 0, 0, 0.00) 100%), linear-gradient(0deg, #000, transparent 50%), linear-gradient(90deg, #000, transparent 50%);
    }
    
    .mban-text-overlay {
      padding-left: 5%;
      padding-bottom: 12%;
    }
  }
  
  @media (min-width: 769px) and (max-width: 1499.98px) {
    .mban-text-width {
      width: 70%;
    }
    .mban-text-overlay h1 {
        font-size: calc(55px + 19*(100vw - 768px)/832);
    }
    .mban-text-overlay p {
        font-size: calc(16px + 7.3*(100vw - 768px)/832);
    }
}
  
  @media (min-width: 1500px) and (max-width: 1699.98px) {
    .mban-text-width {
      width: 50%;
    }
}
  @media (min-width: 1700px){
    .mban-text-width {
      width: 40%;
    }
  }