.banner-landing {
  position: relative;

  .banner_image {
    width: 100%;
    height: 436px;

    @media screen and (max-width: 767px) {
      height: 515px;
    }

    &:before {
      content: "";
      background-image: linear-gradient(to bottom, #000 103%, rgba(0, 0, 0, 0) 5%), linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3));
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      opacity: 0.6;
    }

    img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }
  }

  .title {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 540px;
    height: 110px;

    @media screen and (max-width:767px) {
      width: 100%;
      padding: 0 12px;
    }

    .banner-heading {
      font-family: $font-family-sora;
      font-size: 32px;
      font-weight: bold;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.5;
      letter-spacing: normal;
      text-align: center;
      color: $color-text-white;
      margin-bottom: 16px;

      @media screen and (max-width: 768px) {
        font-size: 24px;
      }
    }

    .banner-subheading {
      font-family: $font-family-hk;
      font-size: 18px;
      font-weight: 500;
      font-stretch: normal;
      font-style: normal;
      line-height: 1.5;
      letter-spacing: normal;
      text-align: center;
      color: $color-text-white;

      @media screen and (max-width: 768px) {
        font-size: 18px;
      }
    }
  }
}

.amenities-card-wrap {
  padding: 80px 0 0 0;

  @media screen and (max-width:768px) {
    padding: 56px 0 0 0;
  }

  .card-amenities {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 80px;

    @media screen and (max-width: 768px) {
      margin-bottom: 32px;

      &.mb-56 {
        margin-bottom: 56px;
      }
    }

    .card-box {
      display: flex;
      justify-content: center;
      width: 100%;

      @media screen and (max-width: 768px) {
        align-items: center;
        text-align: center;
      }

      .btn-circle {
        display: flex;
        align-items: center;
        margin-bottom: 12px;
        justify-content: center;

        @media screen and (max-width: 768px) {
          margin-bottom: 16px;
        }

        .btn-title {
          font-size: 24px;
          font-weight: 700;
          color: $color-primary;
          margin-right: 8px;
          line-height: 1.5;
          font-family: $font-family-sora;
        }

        .arrow-circle {
          background-color: $color-text-white;
          border: solid 1px $color-primary;
          border-radius: 50%;
          display: inline-block;
          height: 32px;
          width: 32px;
          overflow: hidden;
          position: relative;
          right: 0;
          top: 0;
          transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);

          &::after {
            content: "";
            left: -100%;
            background-image: url(../../../assets/img/arrow-blue.svg);
            width: 24px;
            height: 25px;
            position: absolute;
            transform: translate(-50%, -50%);
            transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
            background-repeat: no-repeat;
            top: 50%;
          }

          &::before {
            content: "";
            background-image: url(../../../assets/img/arrow-blue.svg);
            width: 24px;
            height: 25px;
            top: 50%;
            left: 50%;
            position: absolute;
            transform: translate(-50%, -50%);
            transition: all 0.6s cubic-bezier(0.86, 0, 0.07, 1);
            background-repeat: no-repeat;
          }
        }

      }

      &:hover {
        .arrow-circle {
          &::before {
            left: 50px;
          }

          &::after {
            left: 50%;
            transform: translate(-50%, -50%);
          }

        }
      }
    }

    .card-img {
      background-color: $color-text-white;
      display: flex;
      justify-content: center;

      img {
        width: 315px;
        height: 315px;

        @media screen and (max-width: 768px) {
          width: 100%;
        }
      }
    }

    .card-subtext {
      font-family: $font-family-hk;
      font-size: 16px;
      font-weight: 500;
      color: $color-dark;

      @media screen and (max-width: 768px) {
        text-align: center;
      }
    }
  }
}