.banner-slider-section {
  position: relative;
  h1 {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-size: 65px;
    width: 100%;
    padding: 0 25px;
    img {
      filter: invert(1);
    }
  }
  padding: 0;
  .banner-slider {
    .item {
      height: 100vh;
      background-size: cover;
      background-position: center;
      position: relative;
      &::after {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0, 0, 0, 0.45);
      }
      .banner-content {
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translateX(-50%);
        text-align: center;
        color: #fff;
        z-index: 2;
        width: 100%;
        padding: 0 25px;
        h4 {
          margin-top: 20px;
          font-size: 26px;
          font-weight: 600;
          color: var(--white-color);
        }
        a {
          display: inline-block;
          margin-top: 10px;
          text-decoration: none;
          color: var(--white-color);
          font-size: 14px;
          letter-spacing: 2px;
          padding-bottom: 6px;
          text-transform: uppercase;
        }
      }
    }
    .owl-nav {
      position: absolute;
      bottom: 50px;
      width: 100%;
      display: flex;
      justify-content: space-between;
      padding: 0 235px;
      pointer-events: none;

      button {
        pointer-events: auto;
        background: none !important;
        border: none;
        color: var(--white-color) !important;
        img {
          width: 115px;
        }
        /* span {
                font-size: 60px;
                color: var(--white-color);
                opacity: 0.8;
                &:hover {
                opacity: 1;
                }
            } */
        &.owl-next {
          transform: rotate(180deg);
        }
      }
    }
    .owl-dots {
      display: none;
    }
  }
}

.wel-landscape-sec {
  padding: var(--p120) 0;
}

.split-wrapper {
  padding: 0;
  .room-section {
    position: relative;
    height: 520px;
    background-size: cover;
    background-position: center;
    cursor: pointer;
  }

  .room-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0, 0, 0, 0.65),
      rgba(0, 0, 0, 0.25),
      rgba(0, 0, 0, 0)
    );
  }

  .room-content {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }

  .room-text h2 {
    color: var(--white-color);
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 6px;
    text-align: left;
  }

  .room-text p {
    color: var(--white-color);
    font-style: italic;
    margin: 0;
    font-size: var(--f12);
  }

  .btn-room {
    background: var(--secondary-color);
    color: var(--white-color);
    padding: 10px 30px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 5px;
    font-size: var(--f15);
    font-family: var(--primary-font);
    min-width: 142px;
    border: none;
  }

  .btn-room:hover {
    background: var(--btn-hover);
    color: var(--white-color);
  }
}

.map-section {
  img {
    height: 1000px;
  }
}

.faq-section {
  padding: 0 0 80px;
  .faq-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 80px;
  }

  .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #000;
    border-radius: 0;
  }

  .accordion-header {
    margin: 0;
  }

  .accordion-button {
    background: transparent;
    box-shadow: none;
    padding: 35px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
  }

  .accordion-button:focus {
    box-shadow: none;
  }

  .accordion-button:not(.collapsed) {
    background: transparent;
  }

  .accordion-button::after {
    display: none;
  }

  .accordion-button span {
    font-size: 28px;
    transition: transform 0.3s ease;
  }

  .accordion-button:not(.collapsed) span {
    transform: rotate(45deg);
  }

  .accordion-body {
    padding: 0 0 40px 0;
    font-size: 16px;
    line-height: 1.8;
    max-width: 900px;
  }
}


@media (max-width: 991px){
  .banner-slider-section{
    h1{
      top: 20%;
    }
    .banner-slider{
      .item{
        height:300px;
      }
      .item{
        .banner-content{
          h4{
            font-size: 20px;
            margin-bottom: 10px;
          }
          a{
            margin-top: 0;
            font-size: 14px;
          }
        }
      }
      .owl-nav{
        button {
          img{
            width: 70px;
          }
        }
      }
    }
  }
  .split-wrapper {
    .room-section {
      height: 305px;
    }
    .room-content{
      left: 12px;
      right: 12px;
    }
  }
  .map-section {
    img {
      height: 685px;
    }
  }
  .faq-section {
    .accordion-button {
      font-size: 16px;
    }
    .accordion-body{
      font-size: 15px;
    }
  }
}

.hero-btn {
  display: inline-block;
  background: var(--secondary-color);
  border-radius: 5px;
  font-weight: bold;
  color: var(--white-color);
  padding: 10px 30px;
  border: 2px solid var(--secondary-color);
  transition: all .3s;
  font-size: var(--f15);
  font-family: var(--primary-font);
  text-decoration: none;
}

@media (max-width: 767px){
  .banner-slider-section {
    h1{
      font-size: 36px;
      top: 20%;
    }
    .banner-slider{
      .owl-nav{
        padding: 0 26px;
      }
    }
  }
  .wel-landscape-sec{
    padding: var(--p50) 0;
    text-align: center;
    h3{
      font-size: var(--f26);
    }
    p{
      font-size: 15px;
    }
  }
  .map-section{
    padding: var(--p50) 0;
    img{
      height: auto;
    }
  }
  .faq-section{
    padding: 0 0 50px;
    h2.underline-h2{
      font-size: 32px;
    }
  }
}