:root{
    --lightColor : #EDE1D2;
    --brownColor : #412F26;
    --brown-HoverColor: #6E594F;
    --whiteColor : #FFFFFF;
    --blackColor : #222323;
    --whiteBorderColor : #ffffffb8;
    --greyBorderColor : #c1c1c14a;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&display=swap');
a{
    text-decoration: none !important;
}
p{
    color: var(--blackColor);
}
ul{
    list-style: none;
}
.my-container{
    margin: 0 5rem;
}
.montserrat-font{
    font-family: "Montserrat", sans-serif;
}
.cinzel-font{
    font-family: "Cinzel", serif;
}
.btn-fill-white{
    background-color: #fff;
    display: inline-block;
    padding: 11px 25px;
    color: var(--blackColor);
    transition: .3s all;
}
.btn-fill-white:hover{
    background-color: var(--brown-HoverColor);
    color: var(--whiteColor);
}

.btn-bordered-white{
    border: 1px solid var(--whiteColor);
    color: var(--whiteColor);
    display: inline-block;
    padding: 10px 25px;
    transition: .3s all;
}
.btn-bordered-white:hover{
    background-color: var(--whiteColor);
    color: var(--blackColor);
}

.btn-fill-brown{
    background-color: var(--brownColor);
    display: inline-block;
    padding: 11px 25px;
    color: var(--whiteColor);
    transition: .3s all;
}
.btn-fill-brown:hover{
    background-color: var(--brown-HoverColor);
    color: var(--whiteColor);
}

.btn-bordered-brown{
    border: 1px solid var(--brownColor);
    display: inline-block;
    color: var(--brownColor);
    padding: 10px 25px;
    transition: .3s all;
}
.btn-bordered-brown:hover{
    background-color: var(--brownColor);
    color: var(--whiteColor);
}

  
  /* HEADER STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .page-header1 {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    /* padding: 20px 0; */
    z-index: 1;
    /* background-color: rgba(255, 255, 255, 0.15); */
    animation: slideDown 0.35s ease-out;
    transition: .3s all;
  }
  
  .page-header1 .line1 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    border-bottom: 1px solid var(--whiteBorderColor);
    padding: 25px 0;
  }
  .page-header1 .line1 ul{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .page-header1 .line1 ul a{
    color: var(--whiteColor);
    display: flex;
    align-items: center;
  }
  .page-header1 .line1 ul a i{
    padding-right: 5px;
  }
  .book-header{
    color: var(--whiteColor);
    border: 1px solid var(--whiteColor);
    padding: 15px 20px;
    transition: .3s all;
  }
  .book-header:hover{
    background-color: var(--whiteColor);
    color: var(--blackColor);
  }
  .page-header1 .line1 .logo-header{
    height: 7vh;
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .page-header1 .line2{
    padding: 15px 0;
  }
  .page-header1 .line2 ul{
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
  }
  .page-header1 .line2 ul a{
    color: var(--whiteColor);
  }
  .page-header1 .line2 ul a::after,
  .page-header2.is-sticky .line ul a::after{
    display: block;
	content: " ";
	width: 0;
	transition: width cubic-bezier(0.25, 0.41, 0.32, 0.95) 0.4s;
	border-bottom: 2px solid var(--whiteColor);
  }
  .page-header1 .line2 ul a:hover::after,
  .page-header2.is-sticky .line ul a:hover::after{
    transition: width cubic-bezier(0.25, 0.41, 0.32, 0.95) 0.4s;
	width: 100%;
  }
  
  
  /* STICKY STYLES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  .page-header2{
    display: none;
  }
  .page-header2.is-sticky {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    padding: 25px 0;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    /* padding: 8px 0; */
    backdrop-filter: blur(10px);
    animation: slideDown 0.35s ease-out;
    z-index: 2;
    background: #2525254f;
  }
  .page-header2.is-sticky .line{
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .page-header2.is-sticky .line .logo-header-sticky{
    height: 5vh;
    margin-right: 15px;
  }
  .page-header2.is-sticky .line div:nth-child(1){
    display: flex;
    align-items: center;
  }
  .page-header2.is-sticky .line ul{
    padding: 0;
    margin: 0;
    display: flex;
    gap: 25px;
  }
  .page-header2.is-sticky .line ul a{
    color: var(--whiteColor);
    font-size: 1vw;
  }
   
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
    }
    to {
      transform: translateY(0);
    }
  }
  .page-header2.is-sticky .line .burger-button{
    display: none;
  }
  


#hero-home{
    background-color: #222323;
    height: 100vh;
    width: 100%;
    position: relative;
}

#hero-home .hero-video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}
#hero-home .cover{
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--whiteColor);
    background-color: #2525256b;
}
.title-hero{
    animation: fade .8s forwards;
}
@keyframes fade{
    0%{
        opacity: 0;
        transform: translateY(20px);
    }
    100%{
        opacity: 1;
        transform: translateY(0px);
    }
}


/* ============================= Booking Widget  */

.book-frame{
    bottom: 70px;
}
.book-widget {
    position: absolute;
    z-index: 1;
    bottom: 3%;
    left: 0;
    right: 0;
    /* height: 15vh; */
    /* border-radius: 10px; */
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.41);
    backdrop-filter: blur(10px);
    padding: 15px 35px;
    color: #fff;
    animation: slideUp 0.5s ease-out;
}
@keyframes slideUp {
    from {
      transform: translateY(100%);
    }
    to {
      transform: translateY(0);
    }
}
.book-widget form{
    display: flex;
    justify-content: space-between;
    align-items: center;
}


.book-widget .t-dates{
    height: unset;
    /* width: 20vw; */
    padding: 0;
    background: unset;
    display: flex;
    color: #fff;
}

.t-datepicker {
    display: flex !important;
}

.t-check-in,
.t-check-out{
    font-size: 1rem !important;
    width: unset !important;
    border: none !important;
    /* font-family: 'Lato', sans-serif; */
}

.t-check-in .t-date-info-title, .t-check-out .t-date-info-title {
    /* top: 0 !important; */
    position: unset !important;
    font-size: 1.2rem !important;
    /* background: #fff; */
}
.t-highlighted{
    color: var(--brownColor);
}

.t-day-check-in,
.t-month-check-in,
.t-day-check-out,
.t-month-check-out{
    padding-right: 5px;
    font-size: 1.2rem;
}
.t-year-check-in,
.t-year-check-out{
    font-size: 1.2rem;
}

.field-checkin,
.field-checkout {
    /* background: rgb(255, 255, 255); */
    /* border: 1px solid #fff; */
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    /* padding: 10px 15px; */
    border-radius: 10px;
    /* width: 220px; */
}

.field-checkin p,
.field-checkout p{
    padding-right: 10px;
    padding-bottom: 1vh;
}

.field-checkin p,
.field-checkout p{
    font-size: 1vw;
    margin-bottom: 0;
}

/* .field-checkin{
    margin-right: 10px;
} */

/* .t-check-in, .t-check-out{
    
} */

.t-arrow-top{
    top: 90% !important;
}
.t-datepicker-day{
  color: black;
}

.book-widget .field{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* width: 150px; */
    /* padding: 0 25px; */
    justify-content: flex-end;
    border-radius: 10px;
}
.book-widget .field label{
    padding-right: 10px;
    font-size: 1vw;
}
.book-widget .field select{
    font-size: 1.2rem;
    background: none;
    color: var(--whiteColor);
    border: none !important;
}
.book-widget .field input{
    background: unset;
    border: unset;
    color: #fff;
    font-size: 1.2rem;
    width: 135px;
}
.book-widget .field input:focus{
    outline: unset;
}
.book-widget .field input::placeholder{
    color: #fff;
    opacity: .5;
}
.book-widget .field select:focus{
    outline: unset !important;
}
.book-widget .field select option{
    margin: 40px;
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}

.book-widget button{
    /* background: #B99911; */
    background-color: #fff;
    border: none;
    /* font-size: 1vw; */
    color: #000;
    padding: 15px 20px;
    transition: 0.3s all;
}

.book-widget button:hover{
    background: #252525;
    color: #fff;
}

.t-day:hover{
    background-color: var(--brownColor) !important;
    color: #fff !important;
}
.t-start,
.t-end{
    background-color: var(--brownColor) !important;
    color: #fff !important;
}
.t-range{
    background-color: #412f2666 !important;
    color: var(--brownColor) !important;
}
.t-range-limit{
    background-color: #412f2666 !important;
    color: var(--brownColor) !important;
}


/* ============================== Home About */
#home-about{
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;

}
#home-about .cover{
    background: linear-gradient(180deg, rgba(237, 225, 210, 0.00) 0%, #EDE1D2 95.38%);
    padding-top: 23vh;
    padding-bottom: 23vh;
}
#home-about .desc{
    line-height: 190%;
    margin-bottom: 0;
}

/* ============================== Home Rooms */
#home-rooms{
    padding-top: 5rem;
    padding-bottom: 0;
    background-color: var(--lightColor);
}
#home-rooms .title{
    margin-bottom: 0;
    display: inline-block;
}
#home-rooms .title::after{
    content: "";
    display: block;
    width: 40%;
    height: 1px;
    background-color: var(--blackColor);
    margin: 0 auto;
}
.mySwiperHomeRoom .room-img{
    /* aspect-ratio: 16/11; */
    height: 75vh;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.mySwiperHomeRoom .swiper-slide .title-room{
    font-size: 2.3vw;
}
@media screen and (max-width: 1275px){
    .mySwiperHomeRoom .room-img{
        height: 85vh;
    }
}
.mySwiperHomeRoom .room-desc{
    color: #fff;
    padding: 40px;
    height: 90%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5vh;
}
.mySwiperHomeRoom .right{
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    position: relative;
}
.mySwiperHomeRoom .room-desc ul{
    padding: 0;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.mySwiperHomeRoom .room-desc li{
    text-align: center;
}
.mySwiperHomeRoom .room-desc li i{
    font-size: 1.5rem;
}
.mySwiperHomeRoom .room-desc li p{
    line-height: 120%;
}
.mySwiperHomeRoom .excerpt{
    line-clamp: 4;
    -webkit-line-clamp: 4;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    font-weight: 200;
}
.mySwiperHomeRoom .action{
    display: flex;
    justify-content: center;
    gap: 10px;
}
.navigation-rooms{
    width: 41.66666667%;
    position: absolute;
    height: 30px;
    right: 0;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    font-size: 1.2rem;
}
.mySwiperHomeRoom .swiper-pagination{
    width: unset !important;
    right: 0;
    left: unset !important;
    display: flex;
    justify-content: center;
    bottom: 30px !important;
    gap: 10px;
    position: static !important;
}
.mySwiperHomeRoom .swiper-pagination-bullet{
    height: 1px !important;
    display: flex;
    flex-direction: column-reverse;
    background-color: unset;
    color: var(--whiteColor);
    opacity: unset;
}
.mySwiperHomeRoom .swiper-pagination-bullet-active{
    background: var(--whiteColor) !important;
    color: var(--whiteColor) !important;
}
.mySwiperHomeRoom .swiper-button-prev:after,
.mySwiperHomeRoom .swiper-button-next:after{
    content: unset;
}
.mySwiperHomeRoom .swiper-button-next,
.mySwiperHomeRoom .swiper-button-prev{
    color: var(--whiteColor);
    font-size: 1.5rem;
    position: static !important;
}
.mySwiperHomeRoom .swiper-button-prev{
    left: unset;
    right: 30.333333%;
    bottom: 20px;
    top: unset;
}
.mySwiperHomeRoom .swiper-button-next{
    top: unset;
    bottom: 20px;
}

@media screen and (max-width: 1280px){
    .mySwiperHomeRoom .room-img{
        height: 85vh;
    }
}



#home-text1{
    background-size: cover !important;
    background-position: center bottom !important;
}
#home-text1 .cover{
    padding-top: 8rem;
    padding-bottom: 8rem;
    background: linear-gradient(180deg, rgba(237, 225, 210, 0.00) 0%, #EDE1D2 95.38%);
}


#home-wedding{
    padding-top: 5rem;
    padding-bottom: 3rem;
    background-color: var(--lightColor);
}
#home-wedding .title{
    margin-bottom: 0;
    display: inline-block;
}
#home-wedding .title::after{
    content: "";
    display: block;
    width: 40%;
    height: 1px;
    background-color: var(--blackColor);
    margin: 0 auto;
    margin-top: 10px;
}
#home-wedding .video-frame{
    aspect-ratio: 16/9;
    width: 100%;
    overflow: hidden;
}
#home-wedding .video-frame img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
#home-wedding .video-frame .play{
    color: var(--whiteColor);
    height: 80px;
    width: 80px;
    background: rgb(0 0 0 / 52%);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    border-radius: 100%;
    border: 2px solid var(--whiteColor);
    transition: .3s all;
}
#home-wedding .video-frame .play:hover{
    background: var(--whiteColor);
    color: var(--brownColor);
}


/* =========================== Home Wedding  */
/* .mySwiperHomeWedding .swiper-slide{
    display: flex;
} */
.mySwiperHomeWedding .swiper-slide img{
    height: 70vh;
    /* width: calc( 100% / 3 ); */
    width: 100%;
    object-fit: cover;
    object-position: center;
}


/* =========================== Home About  */
#home-about2{
    background-color: var(--lightColor);
    padding-top: 4rem;
    padding-bottom: 5rem;
}
#home-about2 img{
    width: 100%;
    height: 75vh;
    /* aspect-ratio: .8; */
    object-fit: cover;
    object-position: center;
}
#home-about2 .col-md-6:nth-child(2){
    background-position: center bottom !important;
    background-size: cover !important;
    display: flex;
    justify-content: center;
    align-items: center;
}
#home-about2 .cover{
    padding: 20px 50px;
}


/* =========================== Home Attractions  */
#home-attractions{
    background-color: var(--lightColor);
    padding-top: 5rem;
    padding-bottom: 5rem;
}
#home-attractions .frame-box{
    aspect-ratio: 16/11;
    /* height: 40vh; */
    width: 100%;
    overflow: hidden;
}
#home-attractions .frame-box img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center bottom;
}
#home-attractions .frame-height{
    height: 100%;
    width: 100%;
    overflow: hidden;
}
#home-attractions .frame-height img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* ================================ Footer  */
footer{
    padding-top: 4rem;
    /* padding-bottom: 3rem; */
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}
footer .main{
    justify-content: center;
    border-top: 1px solid var(--greyBorderColor);
    border-bottom: 1px solid var(--greyBorderColor);
}
footer .my-border-right{
    border-right: 1px solid var(--greyBorderColor);
}
footer .frame-sitemap{
    border-bottom: 1px solid var(--greyBorderColor);
}
/* footer .my-border-bottom{
    border-bottom: 1px solid var(--greyBorderColor);
} */
.logo-footer{
    height: 10vh;
}
footer .site-map{
    padding: 10px 20px;
    margin: 0;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
footer .site-map a,
.link-copyright{
    color: var(--whiteColor);
    display: inline-block;
}
footer .site-map a::after,
.link-copyright::after{
    display: block;
	content: " ";
	width: 0;
	transition: width cubic-bezier(0.25, 0.41, 0.32, 0.95) 0.4s;
	border-bottom: 2px solid var(--whiteColor);
}
footer .site-map a:hover::after,
.link-copyright:hover::after{
    transition: width cubic-bezier(0.25, 0.41, 0.32, 0.95) 0.4s;
	width: 100%;
}
footer .footer-contact{
    padding: 0;
    margin: 0;
}
footer .footer-contact li{
    margin-bottom: 5px;
}
footer .footer-contact a{
    color: var(--whiteColor);
}
footer .footer-sosmed{
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}
footer .footer-sosmed a{
    color: var(--whiteColor);
    font-size: 1.8rem;
    transition: .3s all;
    height: 40px;
    width: 40px;
    /* background-color: pink; */
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 100%;
}
footer .footer-sosmed a:hover{
    background-color: var(--lightColor);
    color: var(--brownColor);
}

footer form input[type=text],
footer form input[type=email]{
    width: 100%;
    margin-bottom: 10px;
    background: unset;
    border: 1px solid var(--whiteColor);
    padding: 10px;
    color: var(--whiteColor);
}
footer form .action{
    display: flex;
    justify-content: space-between;
}
footer form button{
    background: var(--whiteColor);
    color: #252525;
    border: unset;
    padding: 10px 25px;
    transition: .3s all;
}
footer form button:hover{
    background: var(--brown-HoverColor);
    color: #fff;
}
footer .add-section{
    justify-content: space-between;
    flex-direction: column;
    height: 100%;
}
/* footer .my-border-top{

} */


/* ============================== Page Rooms  */
#primary-hero{
    height: 100vh;
    width: 100%;
    /* overflow: hidden; */
    position: relative;
}
#primary-hero img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
#primary-hero .cover{
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.22) 15.9%, rgba(0, 0, 0, 0.07) 24.67%, rgba(0, 0, 0, 0.00) 32.93%, rgba(0, 0, 0, 0.00) 46.66%, rgba(0, 0, 0, 0.07) 58.13%, rgba(0, 0, 0, 0.24) 71.17%, rgba(0, 0, 0, 0.53) 100%); */
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.22) 15.9%, rgba(0, 0, 0, 0.07) 24.67%, rgba(0, 0, 0, 0.00) 31.17%, rgba(0, 0, 0, 0.00) 39.18%, rgba(0, 0, 0, 0.07) 45.33%, rgba(0, 0, 0, 0.24) 60.78%, rgba(0, 0, 0, 0.53) 100%); */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.22) 15.9%, rgba(0, 0, 0, 0.08) 24.67%, rgba(0, 0, 0, 0.00) 31.17%, rgba(0, 0, 0, 0.06) 41.04%, rgba(0, 0, 0, 0.30) 57.77%, rgba(0, 0, 0, 0.39) 73.65%, rgba(0, 0, 0, 0.53) 100%);
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 15%;
}

#room-list{
    background-color: var(--lightColor);
}
#room-list .item{
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.mySwiperRoom .swiper-slide{
    /* aspect-ratio: 16/10; */
    width: 100%;
    height: 65vh;
}
.mySwiperRoom .swiper-slide img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
/* .mySwiperRoom .swiper-pagination{
    width: unset !important;
    right: 70px;
    left: unset !important;
    display: flex;
    justify-content: center;
    bottom: 30px !important;
}
.mySwiperRoom .swiper-pagination-bullet{
    height: 1px !important;
    display: flex;
    flex-direction: column-reverse;
    background-color: unset;
    color: var(--whiteColor);
    opacity: unset;
}
.mySwiperRoom .swiper-pagination-bullet-active{
    background: var(--whiteColor) !important;
    color: var(--whiteColor) !important;
} */
.mySwiperRoom .swiper-button-prev:after,
.mySwiperRoom .swiper-button-next:after{
    content: unset;
}
.mySwiperRoom .swiper-button-next,
.mySwiperRoom .swiper-button-prev{
    color: var(--whiteColor);
    font-size: 1.5rem;
}
.mySwiperRoom .swiper-button-prev{
    left: unset;
    right: 30.333333%;
    bottom: 20px;
    top: unset;
}
.mySwiperRoom .swiper-button-next{
    top: unset;
    bottom: 20px;
}
/* ===============================================  */
.pagin-room{
    padding-left: 15px;
    padding-right: 15px;
    top: unset;
    padding-bottom: 0;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}
.pagin-room .swiper-pagination{
    position: static;
    width: unset !important;
    right: unset !important;
    left: unset !important;
    bottom: unset !important;
    display: flex;
    gap: 10px;
    padding: 0 20px;
    height: 45px;
    /* justify-content: center; */
}
.pagin-room .swiper-pagination-bullet{
    height: 0 !important;
    display: inline-grid;
    flex-direction: column-reverse;
    justify-content: center;
    background-color: unset;
    color: var(--whiteColor);
    font-size: 1.5rem;
    opacity: unset;
}
.pagin-room .swiper-pagination-bullet-active{
    background: var(--whiteColor) !important;
    color: var(--whiteColor) !important;
}
.pagin-room .swiper-pagination-bullet-active::after{
    content: "";
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--whiteColor);
}
.pagin-room .swiper-button-next, 
.pagin-room .swiper-button-prev{
    position: static;
    margin-top: unset;
    color: var(--whiteColor);
    font-size: 1.5rem;
}
.pagin-room .swiper-button-prev:after,
.pagin-room .swiper-button-next:after{
    content: unset;
}
#room-list .room-name{
    line-height: 130%;
    font-size: 3.8vw;
}
#room-list .feature{
    padding: 0;
    margin: 20px 0;
    display: flex;
    gap: 40px;
    /* justify-content: space-between; */
}
#room-list .feature li{
    text-align: center;
}
#room-list .feature li i{
    font-size: 1.5rem;
}
#room-list .feature li p{
    margin-bottom: 0;
}
#room-list .excerpt{
    line-clamp: 5;
    -webkit-line-clamp: 5;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    line-height: 190%;
}


/* ======================================= Page Room Details  */
#room-detail {
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}
#room-detail  .cover{
    background: linear-gradient(180deg, rgba(237, 225, 210, 0.00) 0%, #EDE1D2 95.38%);
    padding-top: 10rem;
    /* padding-bottom: 10rem; */
}
#room-detail  .pagin{
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
#room-detail  .pagin a{
    background-color: #E3D2BE;
    color: var(--blackColor);
    padding: 10px 20px;
    font-size: 1.2vw;
    transition: .3s all;
}
#room-detail  .pagin a:hover{
    background-color: var(--brownColor);
    color: var(--whiteColor);
}
#room-detail  .pagin a.active{
    background-color: var(--brownColor);
    color: var(--whiteColor);
}
#room-detail .room-name{
    padding-top: 10rem;
}
#room-detail .room-name p{
    line-height: 120%;
    margin-top: 10px;
    padding-bottom: 30px;
}
#room-information{
    background-color: var(--lightColor);
}
#room-information .frame-portrait{
    aspect-ratio: 1/1;
    width: 100%;
    overflow: hidden;
}
#room-information .frame-portrait img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
#room-information .feature{
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-between;
}
#room-information .feature li{
    text-align: center;
}
#room-information .feature li i{
    font-size: 1.5rem;
}
#room-information .feature li p{
    margin-bottom: 0;
}
#room-information .amenities{
    padding: 0;
    padding-bottom: 6rem;
    margin: 0;
    columns: 4;
    column-gap: 75px;
}
#room-information .amenities li{
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 110%;
}
/* #room-information .amenities li i{
    padding-top: 10px;
} */

.mySwiperRoomImg .swiper-slide{
    height: 85vh;
    width: 100%;
    overflow: hidden;
}
.mySwiperRoomImg .swiper-slide img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.mySwiperRoomImg .swiper-button-next, 
.mySwiperRoomImg .swiper-button-prev{
    color: var(--whiteColor);
    background: rgba(0, 0, 0, 0.50);
    height: 60px;
    width: 60px;
    border-radius: 100%;
}
.mySwiperRoomImg .swiper-button-next:after, 
.mySwiperRoomImg .swiper-button-prev:after{
    font-size: 1.5rem;
}

#other-rooms{
    padding-top: 6rem;
    padding-bottom: 6rem;
    background-color: var(--lightColor);
}
#other-rooms .title{
    margin-bottom: 0;
    display: inline-block;
}
#other-rooms .title::after{
    content: "";
    display: block;
    width: 40%;
    height: 1px;
    background-color: var(--blackColor);
    margin: 0 auto;
}
/* .otherRoom .swiper-slide{
    height: 20vh;
    background-color: pink;
} */
.otherRoom .swiper-slide .frame{
    aspect-ratio: 16/11;
    width: 100%;
    overflow: hidden;
}
.otherRoom .swiper-slide .frame img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.otherRoom .swiper-slide .desc{
    background-size: cover !important;
    background-position: center bottom !important;
    color: var(--whiteColor);
    padding: 30px 1.5vw;
    height: 25vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.otherRoom .swiper-slide .desc .name{
    font-size: 1.5vw;
    line-height: 120%;
}
.otherRoom .swiper-slide .desc p{
    color: var(--whiteColor);
}
.otherRoom .swiper-slide .desc .feature{
    padding: 0;
    padding-top: 10px;
    margin: 0;
    display: flex;
    gap: 10px;
    justify-content: space-between;
}
.otherRoom .swiper-slide .desc .feature li{
    text-align: center;
    width: calc(100% / 4);
}
.otherRoom .swiper-slide .desc .feature li i{
    font-size: 1.5rem;
}
.otherRoom .swiper-slide .desc .feature li p{
    font-size: 1vw;
    margin-bottom: 0;
    line-height: 115%;
}
.otherRoom .swiper-button-next, 
.otherRoom .swiper-button-prev{
    color: var(--whiteColor);
    background: rgba(0, 0, 0, 0.50);
    height: 60px;
    width: 60px;
    border-radius: 100%;
}
.otherRoom .swiper-button-next:after, 
.otherRoom .swiper-button-prev:after{
    font-size: 1.5rem;
}

/* ===================================== Villa Detail  */
#villa-detail {
    background-color: #EDE1D2 !important;
    background-size: contain !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
}
#villa-detail  .cover{
    background: linear-gradient(180deg, rgba(237, 225, 210, 0.00) 0%, #EDE1D2 95.38%);
    padding-top: 10rem;
    /* padding-bottom: 10rem; */
}
#villa-detail  .pagin{
    padding: 0;
    margin: 0;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
#villa-detail  .pagin a{
    background-color: #E3D2BE;
    color: var(--blackColor);
    padding: 10px 20px;
    font-size: 1.2vw;
    transition: .3s all;
}
#villa-detail  .pagin a:hover{
    background-color: var(--brownColor);
    color: var(--whiteColor);
}
#villa-detail  .pagin a.active{
    background-color: var(--brownColor);
    color: var(--whiteColor);
}
#villa-detail .villa-description{
    padding-top: 15rem;
    padding-bottom: 15rem;
}
#villa-detail .villa-description .tag{
    font-size: 1.5vw;
}
#villa-detail .villa-description .name{
    font-size: 3vw;
    color: #866F5A;
}
#villa-detail .feature{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
#villa-detail .feature p{
    margin-bottom: 0;
    background-color: #E6D6C4;
    color: #866F5A;
    display: inline-flex;
    align-items: center;
    font-size: 1vw;
    padding: 10px 20px;
    line-height: 100%;
    gap: 10px;
    border-radius: 10px;
}
#villa-detail .feature .my-row{
    display: flex;
    gap: 10px;
}
#villa-detail .desc{
    font-size: 1vw;
    line-height: 220%;
}
#villa-detail .villaImg .swiper-slide{
    width: 100%;
    aspect-ratio: .8;
    overflow: hidden;
}
#villa-detail .villaImg .swiper-slide img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
#villa-detail .villaImg .swiper-button-prev,
#villa-detail .villaImg .swiper-button-next{
    height: 70px;
    width: 70px;
    background: rgba(0, 0, 0, 0.50);
    border-radius: 100%;
}
#villa-detail .villaImg .swiper-button-prev::after,
#villa-detail .villaImg .swiper-button-next::after{
    font-size: 2rem;
    color: #fff;
}

#villa-amenities{
    background-color: #EDE1D2;
}
#villa-amenities .highlight-amenities{
    display: flex;
    justify-content: center;
    gap: 6vw;
    padding-top: 8rem;
    padding-bottom: 8rem;
}
#villa-amenities .highlight-amenities li{
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #866F5A;
    gap: 20px;
}
#villa-amenities .highlight-amenities li i{
    font-size: 4rem;
}
#villa-amenities .highlight-amenities li p{
    color: #866F5A;
    font-size: 1.2rem;
}
#villa-amenities .quote::after{
    content: "";
    display: block;
    width: 20vw;
    height: 2px;
    background-color: #866F5A;
    margin: 25px auto;
}
#villa-amenities .detail{
    padding-top: 8rem;
    padding-bottom: 8rem;
}
#villa-amenities .ame-img{
    width: 100%;
    aspect-ratio: .8;
    object-fit: cover;
    object-position: center;
}
#villa-amenities .amenities-title{
    margin-left: 80px;
    color: #866F5A;
}
#villa-amenities .amenities1{
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 50px;
    /* padding: 0 30px; */
    margin-left: 80px;
}
#villa-amenities .amenities2{
    padding: 0;
    margin: 0;
    columns: 2;
    column-gap: 50px;
    /* padding: 0 30px; */
    margin-right: 80px;
}
#villa-amenities .amenities1 li,
#villa-amenities .amenities2 li {
    border-bottom: 1px solid #866F5A;
    padding: 13px 0;
    /* margin-bottom: 10px; */
    font-size: .8vw;
}







/* =========================== Page Attractions  */
#attraction-list{
    background-color: var(--lightColor);
    /* padding-top: 4rem; */
    padding-bottom: 5rem;
}
#attraction-list .item{
    padding-top: 5rem;
    /* padding-bottom: 5rem; */
}
#attraction-list img{
    width: 100%;
    height: 75vh;
    /* aspect-ratio: .8; */
    object-fit: cover;
    object-position: center;
}
#attraction-list .desc{
    background-position: center bottom !important;
    background-size: cover !important;
    display: flex;
    /* justify-content: center; */
    align-items: center;
}
#attraction-list .cover{
    padding: 20px 5vw;
    color: var(--whiteColor);
}
#attraction-list .cover p{
    color: var(--whiteColor);
}
#attraction-list .btn-bordered-white{
    display: inline-flex;
    align-items: center;
}
#attraction-list .btn-bordered-white i{
    margin-left: 15px;
}

/* =============================================== Page Gallery  */
#gallery{
    background-color: var(--lightColor);
}
#gallery .navigasi{
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
}
#gallery .cover{
    background: linear-gradient(180deg, rgba(237, 225, 210, 0.00) 0%, #EDE1D2 95.38%);
    padding: 6rem 0 5rem 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    /* padding-top: 3rem;
    padding-top: 5rem; */
}
#gallery .btn-border{
    background: none;
    /* border: 1px solid var; */
    background-color: #E3D2BE;
    color: var(--brownColor);
    padding: 10px 20px;
    /* margin-right: 10px; */
    border-radius: 0px;
    border: unset;
    transition: .3s all;
    font-size: 1.5rem;
}
#gallery .btn-border:hover{
    background-color: var(--brownColor);
    color: var(--whiteColor);
}
#gallery .btn-border.active{
    background: var(--brownColor) !important;
    color: var(--whiteColor) !important;
}
#gallery .grid-item,
#gallery .grid-sizer {
    width: 50%
}
#gallery .grid-item {
    margin-top: 0px;
    padding: 0px
}
#gallery .grid-item img {
    width: 100%;
    height: 100%!important;
    max-height: 300px;
    object-fit: cover;
    display: block;
    height: auto;
    cursor: pointer;
}
#gallery .lg-backdrop,
#gallery .lg-outer {
    z-index: 99999
}
#gallery .filter-button-group {
    margin-bottom: 20px;
    text-align: left;
}
#gallery .filter-button {
    display: inline-block;
    color: #252525;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    padding: 10px 15px;
    margin: 0px 5px;
    border-bottom: 1px solid rgb(204, 204, 204);
}
#gallery .filter-button a {
    display: block;
    padding: 7px
}
#gallery .filter-button.is-checked {
    color: rgb(255, 255, 255);
    background-color: #252525 !important;
    border-color: #252525 !important;
}
#gallery .filter-button:hover {
    cursor: pointer;
}
#gallery .gallery-container p {
    font-size: 19px;
    margin-bottom: 50px;
}
@media screen and (min-width: 768px) {
    #gallery .gallery-container {
        padding: 0px 25px;
        /*margin-top: 50px;*/
    }
}
@media screen and (min-width: 992px){
    #gallery .grid-item, .grid-sizer {
        width: 25%;
        height: 300px;
    }
    #gallery .grid-item {
        margin-top: 0px;
        padding: 5px;
    }
    #gallery .gallery-container p {
        color: rgba(0,0,0,0.40);
        width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    #gallery .activities-txt {
        padding-top: 50px;
    }
}
@media screen and (max-width: 500px)  {
    #gallery .grid-item img {
        padding: 3px;
    }
    #gallery .filter-button {
        display: block;
    }
}

/* ================================== Contact Us  */
#contact-us{
    /* margin-top: -150px; */
    padding-bottom: 8rem;
    background-color: var(--lightColor);
}
#contact-us .address{
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 50px;
}
#contact-us .address p{
    color: var(--brown-HoverColor);
}
#contact-us .address a{
    color: #252525;
    display: inline-block;
    transition: .3s all;
}
#contact-us .address a:hover{
    color: var(--brown-HoverColor);
}


/* ================================== Page Spa  */
#spa-img{
    background-color: var(--lightColor);
    padding-bottom: 6rem;
}
#spa-img .frame-1{
    /* aspect-ratio: .8; */
    width: 100%;
    height: calc(70vh + 1.5rem);
    overflow: hidden;
}
#spa-img .frame-2{
    /* aspect-ratio: 16 / 9; */
    width: 100%;
    height: 35vh;
    overflow: hidden;
}
#spa-img .frame-1 img,
#spa-img .frame-2 img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

/* ========================== Awards  */
#award{
    padding-top: 5rem;
    padding-bottom: 5rem;
    background-color: var(--lightColor);
}
#frame-carousel,
#frame-carousel2{
    /* width: 50vw; */
    mask: linear-gradient(90deg, transparent, white 40%, white 60%, transparent);
    -webkit-mask: linear-gradient(90deg, transparent, white 40%, white 60%, transparent);
}
#frame-carousel ul,
#frame-carousel2 ul{
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
  align-items: center;
}
#frame-carousel li,
#frame-carousel2 li{
    background: var(--light-blue);
    color: var(--text-color);
    padding: 10px 35px;
    /* border-radius: 7px; */
/* 	border: 1px outset var(--text-color); */
    box-shadow: 
        2px 2px 2px var(--dark-blue-shadow),		
        2px 3px 3px var(--dark-blue-shadow),
        2px 5px 5px var(--dark-blue-shadow),
        2px 8px 8px var(--dark-blue-shadow);
}
  
#frame-carousel ul li img{
  width: 20vw;
  aspect-ratio: 3/2;
  object-fit: contain;
}
  
#frame-carousel[data-animated],
#frame-carousel2[data-animated]{
    overflow: hidden;
}
#frame-carousel[data-animated] #list{
    width: max-content;
    animation: scroll 50s linear infinite;
}
  
@keyframes scroll{
    to{
        translate: calc(-50% - 5px);
    }
}


/* ========================== Featured Item Images  */
.itemImages .swiper-pagination-bullet{
    width: 30px;
    height: 5px;
    border-radius: unset;
    background: #fff;
}