/* CSS Document */


      .carousel {
        position: relative;
        /*overflow: hidden;*/
          aspect-ratio: 1005 / 739;
          /*margin-top: 100px;*/

      }

      .carousel__viewport {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: scroll;
        scroll-behavior: smooth;
        scroll-snap-type: x mandatory;
        width: 100%;
          aspect-ratio: 1005 / 739;
        /*height: 100%;*/
        position: absolute;
        top: 0;
        left: 0;
          list-style: none;
          margin: 0;
          padding: 0;
          overflow: hidden;
      }

      .carousel__slide {
        flex: 0 0 100%;
        width: 100%;
        position: relative;
        scroll-snap-align: center;
          padding-top: 100px;
      }

      .carousel__slide img {
        width: 100%;
        height: auto;
        display: block;
      }

      .carousel__navigation {
    /*margin-top: -100px;*/
    z-index: 999;
    position: absolute;

      }

      .carousel__navigation-list {
        display: flex;
        gap: 10px;
        padding: 0;
        margin: 0;
        list-style: none;
      }

      .carousel__navigation-button {
        display: flex;
        width: 195px;
        height: 65px;
        background-color: #74343a;
        border-radius: 100px;
        cursor: pointer;
              justify-content: center;
    align-items: center;
          color: #fff;
          text-decoration: none;
      }
.carousel__navigation-list .carousel__navigation-item a{
    color: #fff!important;
}

      .carousel__snapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
      }

      .carousel__prev,
      .carousel__next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        text-indent: -9999px;
        width: 30px;
        height: 30px;
        background-color: rgba(0, 0, 0, 0.5);
        border-radius: 50%;
      }

      .carousel__prev {
        left: 10px;
      }

      .carousel__next {
        right: 10px;
      }
        .amenities-gallery{
                flex-wrap: wrap;
            display: flex;
            justify-content: space-between;
            
        }
        .amenities-gallery img{
            width: 31%;
            margin-bottom: 20px;
        }
        .room-details h2{
            color: #74343a;
            font-size: 22px;
            margin: 12px 8px;
        }
.room-details p{
    font-size: 18px;
    line-height: 1.8em;
    margin: 0 8px 26px 8px;
}

