@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gulzar&display=swap');
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Helvetica', sans-serif;
}

html{
    scroll-behavior: smooth;
}
.page-wrapper{
    /* position: fixed; */
    z-index: 2;
    top: 95px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    overflow-y: auto;
    overflow-x: hidden;
    transition: all 0.2s linear;

    background-size: cover;
    background-repeat: no-repeat;
  }

  .page-wrapper.extended{
    top: 96px;
  }

  .page-wrapper::-webkit-scrollbar-track
  {
      -webkit-box-shadow: inset 0 0 6px rgba(10,10,10,0);
      border-radius: 0px;
      background: transparent;
  }

  .page-wrapper::-webkit-scrollbar
  {
      width: 0px;
      background: transparent;
  }

  .page-wrapper::-webkit-scrollbar-thumb
  {
      border-radius: 10px;
      -webkit-box-shadow: inset 0 0 6px rgba(105,184,178,.3);
      background-color: transparent;
  }
/* navbar mobile */

/* .wrapper{
width: 100%;
} */
.navbar-mobile#mainNavbar{
    position: fixed;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: transparent; 
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease; 
    z-index: 1000; 
    width: 100%;
    border-end-end-radius: 16px;
    border-end-start-radius: 16px;
}

.navbar-mobile#mainNavbar.scroll-nav {
    background-color: rgba(255, 255, 255, 0.1); 
    backdrop-filter: blur(10px); 
    -webkit-backdrop-filter: blur(10px); 
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
    border-end-end-radius: 16px;
    border-end-start-radius: 16px;
}

.navbar-mobile .container-flex{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    height: 77px;
    padding: 17px;
    column-gap: 20px;
}
.navbar-mobile .container-flex .brand-mobile{
    width: 59px;
    height: 94px;
}
.navbar-mobile .container-flex .brand-mobile a img{
    width: 100%;
}
.navbar-mobile .container-flex .menu-navbar{
    display: flex;
    flex-direction: row;
    margin-left: auto;
}
.navbar-mobile .container-flex .menu-navbar ul.menu{
    text-decoration: none;
    display: flex;
    flex-direction: row;
    column-gap: 11px;
    margin-left: auto;
}
.navbar-mobile .container-flex .menu-navbar ul.menu li{

    display: block;

}
.navbar-mobile .container-flex .menu-navbar ul.menu li .icon{

   width: 20px;

}
.navbar-mobile .container-flex .menu-navbar ul.menu li .icon.love{

   width: 25px;

}
.navbar-mobile .container-flex .menu-navbar ul.menu li .icon-header-noti{

    position: absolute;
    width: 16px;
    height: 18px;
    border-radius: 11px;
    background: #ff0400;
    top: 20px;
    /* left: 221px; */
    text-align: center;
    color: white;
    font-size: 10px;
    margin-left: -8px;

}
.navbar-mobile .container-flex .burger{
    width: 28px;
    height: 27px;

    display: flex;
}
.navbar-mobile .container-flex .burger img{
    width: 100%;
}
/* -- Latar Belakang Overlay -- */
.bg-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1011;
    opacity: 0;
    visibility: hidden; 
    pointer-events: none;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

/* -- Sidebar Menu -- */
.sidebar {
    position: fixed;
    top: 0;
    right: 0; 
    width: 280px; 
    height: 100%;
    padding: 20px;
    background-color: rgb(20, 20, 20);
    box-shadow: -4px 0px 15px rgba(0, 0, 0, 0.25);
    color: #fafafa;
    z-index: 1012;
    list-style: none;
    transform: translateX(100%);
    transition: transform 0.4s ease-in-out;
}


.bg-sidebar.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


.sidebar.is-active {
    transform: translateX(0);
}

.bg-sidebar ul.sidebar li {
    list-style: none;
    font-size: 19px;
}
.bg-sidebar ul.sidebar li a{
    display: block;
    text-decoration: none;
    color: white;
    font-size: 19px;
    font-weight: 500;
    padding-bottom: 10px;
    transition:all 0.5s ease 0s;
    -webkit-transition:all 0.5s ease 0s;
    -moz-transition:all 0.5s ease 0s;
    -ms-transition:all 0.5s ease 0s;
    -o-transition:all 0.5s ease 0s;
}
.bg-sidebar ul.sidebar li a:hover{
    border-bottom: 1px solid white;
    margin-left: 20px;
    font-weight: 800;
}

.sub{
    width: 150px;
    height: 0px;
    opacity: 0;
    visibility: hidden;
    transition:all 0.5s ease 0s;
    -webkit-transition:all 0.5s ease 0s;
    -moz-transition:all 0.5s ease 0s;
    -ms-transition:all 0.5s ease 0s;
    -o-transition:all 0.5s ease 0s;
}
.sub-show{
    height: 100%;
    opacity: 1;
    visibility: visible;
}

.sub-hidde{
    height: 0px;
    opacity: 0;
    visibility: hidden;
}

.sub .item-sub{
    padding-bottom: 2px;
    transition:all 0.5s ease 0s;
    -webkit-transition:all 0.5s ease 0s;
    -moz-transition:all 0.5s ease 0s;
    -ms-transition:all 0.5s ease 0s;
    -o-transition:all 0.5s ease 0s;
}
.sub .item-sub a:hover{
 border-bottom: 1px solid white;
 margin-left: 10px;
}




/* end navbar */
/* content home */

/* banner home */
.banner-home{


}
.banner-home .img-banner-home{
    display: inline-block;
    overflow: hidden;
    height: 239px;
    width: 100%;
    position: relative;
    cursor: pointer;
    z-index: 0;

}
.banner-home .img-banner-home img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.banner-home .img-banner-home .motive {
    margin-block: 488px;
    margin-left: 4px;
}
.img-banner-home .motive .tage-line-banner {
    margin-top: -700px;
    padding: 15px;
    font-size: 5px;
    font-weight: 700;
    background-color: #80808091;
    width: 21%;
    position: absolute;
    margin-left: 19px;
    border-radius: 134px;
    box-shadow: 1px -2px 3px rgb(171 171 171 / 88%);
    color: white;
    z-index: 1;

}
.img-banner-home .motive .tage-line-banner2 {

    margin-top: -673px;
    padding: 38px;
    font-size: 16px;
    font-weight: 700;
    background-color: #80808091;
    width: 19%;
    position: absolute;
    margin-left: -33px;
    border-radius: 134px;
    box-shadow: 2px 6px 8px rgb(171 171 171 / 88%);

}
.img-banner-home .motive .tage-line-banner3 {

    margin-top: -736px;
    padding: 38px;
    font-size: 16px;
    font-weight: 700;
    background-color: #80808091;
    width: 19%;
    position: absolute;
    margin-left: -32px;
    border-radius: 134px;
    box-shadow: 4px -6px 4px rgb(171 171 171 / 62%);
}
.banner-home .img-banner-home .container{


}
.img-banner-home .container .hero-text{
    display: block;
    position: relative;
    align-content: center;
    justify-items: center;
    text-align: center;
    width: 45px;
    height: 79px;
    margin-top: 117px;
    left: 27%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

}
.img-banner-home .container .hero-text .text-header{
    padding-left: 1px;
    border-top: 3px solid #f8fafa;

}
.img-banner-home .container .hero-text .text-header .txt-banner{
    font-weight: 700;
    color: #fff;
    font-size: 31px;
    line-height: 1;
    letter-spacing: 3px;
    padding-top: 3px;

}
/* end banner home */

/* conetnt */
.text-menu-banner {
    display: flex;
}
.text-menu-banner .text-header {
    display: flex;
    flex-direction: row;
    padding-left: 9px;
    padding-top: 10px;
    font-size: 33px;
    font-weight: 700;
    width: 293px;
}
.text-menu-banner .text-header::before {
    content: "";
    width: 10px;
    height: 145px;
    background: white;
    display: block;
    position: absolute;
    margin-top: -268px;
}

.text-menu-banner .text-header p.txt-banner {
    margin-top: -271px;
    margin-left: 37px;
    color: white;
}
.border-header{
    position: relative;
    width: 10%;
    border-top: 4px solid;
}
.border-header .bst-text-tittel{
    width: 341px;
    line-height: 0.5;
    padding-top: 14px;
}
.border-header .bst-text-tittel p{
    font-size: 22px;
    font-weight: 700;
}

 .isi-about{

}
.isi-about p{

}
.isi-about a{
    background: black;
    color: white;
}
.isi-about a:hover{
    background: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}

.image-actifitas{
    display: flex;
    flex-direction: row;
    column-gap: 10px;
    position: relative;
    width: 100%;
    padding-bottom: 23px;
}
.image-actifitas .image{
    width: 200px;
    height: 200px;
}
.image-actifitas .image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-home{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0px 0px;
    gap: 6px;
}
.menu-home .card-menu{

   border-radius: 10px;
    width: 49%;
    height: 48vh;
    padding: 10px;
    padding-bottom: 10px;
    background: #222;
}
.menu-home .card-menu .image-card-menu{
    width: 100%;
    height: 21vh;
}
.menu-home .card-menu .image-card-menu img{
    width: 100%;
    height: 100%;
    border-radius: 10px;
}
.menu-home .card-menu .isi-card-menu{
   padding-left: 9px;
    height: 142px;
}
.menu-home .card-menu .isi-card-menu .titel-menu{
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 6px;


}
.menu-home .card-menu .isi-card-menu .dsc-menu{
    color: white;

    padding-right: 14px;
    font-size: 11px;
    margin-top: -7px;
    margin-bottom: 3px;
}
.card-menu a {
    display: flex;
    justify-content: flex-end;
}
.menu-home .card-menu .btn-card-home{
    color: #0f0f0f;
    text-decoration-line: none;
    width: 42px;
    height: 28px;
    padding: 3px;
    font-size: 13px;
    font-weight: 500;
    margin-top: -7px;
    /* margin-left: 131px; */
    background: white;
}


.banner-vip{
    display: flex;
    flex-direction: column;
    position: relative;
    background-image: url('../img/image room vip.png');
    background-position: center;
    background-size: cover;
    max-width: 100%;
    height: 324px;
    padding: 21px;
}
.banner-vip .judul-vip-room{
    color: white;
    border-top: 4px solid;
    width: 54px;
    margin-top: 44px;
}
.banner-vip .judul-vip-room p{
    width: 560px;
    font-size: 31px;
    font-weight: 600;
}
.banner-vip .des-room{
    width: 265px;
    color: white;
    font-size: 12px;
}
.banner-vip .des-room .btn-view-room{
    background-color: black;
    color: white;
}

.place{
    display: block;
    position: relative;
    /* background-image: url('../img/Group 7.png'); */
    background-size: cover;
    max-width: 100%;
    height: 229px;
    /* overflow: auto; */
    justify-content: center;
    /* text-align: center; */
}
.place .isi-place{
    color: rgb(7, 7, 7);
    /* padding-top: 20px; */
}
.place .isi-place .judul-palce{
    font-size: 22px;
    font-weight: 600;
}
.place .isi-place  p{
    font-size: 21px;
    width: 95%;
}
.place .isi-place  p img{
 width: 30px;
}

.pb-5{
    padding: 17px;
    padding-bottom: 0;
}
.contact-us{
    display: flex;
    position: relative;
    overflow: hidden;
    background-image: url('../img/bg contect us.png');
    background-size: cover;
    /* background-position: center; */
    height: 422px;
    width: 100%;
    justify-content: center;
}
.contact-us .card-contact{
    display: flex;
    position: relative;
    background: rgba(31, 31, 31, 0.5);
    border-radius: 19px;
    top: 192px;
    width: 327px;
    height: 190px;
}
.contact-us .card-contact .isi-contact{
    position: relative;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    width: 100%;
}

.contact-us .card-contact .isi-contact .contact-header{
    text-align: center;
    justify-items: center;
    align-content: center;
    padding-left: -28px;
    color: white;
    font-size: 16px;
    font-weight: 600;
}
.contact-us .card-contact .isi-contact .list-contact{
    display: flex;
    position: relative;
    flex-wrap: wrap;
    width: 100%;
}
.isi-contact .list-contact .isi-list{
    display: flex;
    width: 141px;
    color: white;
    font-weight: 600;
    column-gap: 4px;
}
.isi-contact .list-contact .isi-list .image{
    width: 56px;
    height: 32px;
}
.isi-contact .list-contact .isi-list .image img{
    width: 100%;
    height: 100%;
    object-fit: scale-down;
}
.isi-contact .list-contact .isi-list p a{
    color: white;
    font-size: 11px;
}
/* end content */

/* footer */
.footer{
    display: block;
    position: relative;
    width: 100%;
    background-color: black;
    color: white;
    background-size: cover;
}
.footer .base-part{
    display: inline-flex;
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-left: 1px;
}
.footer .base-part .part-menu-footer{
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 14px 6px;

}
@media screen and (min-width:1024px) and (max-width:1180px){
.footer .base-part .part-menu-footer .image-logo {
    width: 17%;
    height: auto;
}
}
.footer .base-part .part-menu-footer .image-logo{
    width: 31%;
    height: auto;
}
.footer .base-part .part-menu-footer .image-logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.footer .base-part .part-menu-footer .isi-footer{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
}
.footer .base-part .part-menu-footer .isi-footer img{

}

.isi-footer .list-menu-footer .menu-footer{

}
.isi-footer .list-menu-footer .menu-footer .menu{
    color: white;
    text-decoration: none;
}
.isi-footer .sosial-media{
    display: flex;
    list-style: none;
}
.isi-footer .sosial-media li .icon-image{
    width: 56%;
    height: 90%;
}
.isi-footer .sosial-media li img{
    width: 100%;
    height: 100%;
}

.footer .part-bottom-footer{
    display: flex;
    flex-direction: column;
    padding-top: 10px;
}
.footer .part-bottom-footer .bottom-footer{
    text-align: center;
    padding: 2px;
    width: 100%;
    display: inline-block;
}

/* end footer */
/* end content home */

/* kategori menu */

/* end kategori menu */

/* sub kategori menu  */
.banner-home .img-home{
    width: 100%;
    height: 427px;
}
.banner-home .img-home img{
    height: 100%;
    object-fit: cover;
}
.banner-home .img-home .container .hero-text {
    display: block;
    position: relative;
    align-content: center;
    justify-items: center;
    width: 32px;
    height: 8px;
    margin-top: -152px;
    left: 16%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.banner-home .img-home .container .hero-text .text-header{
    padding-left: 11px;
    border-left: 3px solid #f8fafa;
    width: 100%;
    height: 89px;
}
.banner-home .img-home .container .hero-text .text-header .txt-banner{
    font-weight: 700;
    color: #fff;
    font-size: 24px;
    line-height: 1;
    letter-spacing: 3px;
    padding-top: 6px;
    width: 192px;
}
/* end sub kategori */

.judul2{
        display: flex;
    justify-content: space-between;
}
.judul2 p{

    /* width: 159px; */
    font-size: 20px;
    font-weight: 600;
}

/* card menu  */
.menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0px 0px;
}
.menu .card-menu{
    width: 50%;
    height: 50%;
    padding: 10px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}
.menu .card-menu a{
    color: black;
    text-decoration: none;
}

.menu .card-menu a .product-menu{
    border-radius: 10px;
    padding-bottom: 10px;
    margin-bottom: 58px;
}
.product-menu .img-menu{
    object-fit: cover;
    width: 100%;
    height: 187px;
}
.product-menu .img-menu img{
    width: 100%;
    height: 100%;
    background-size: cover;
    object-fit: scale-down;

}
.menu .card-menu a .product-menu .img-menu .promo{
    position: relative;
    color: white;
    background: rgb(175, 29, 47);
    height: 16px;
    width: 24px;
    padding: 0px 6px;
    font-weight: 600;
    font-size: 8px;
    line-height: 20px;
    white-space: nowrap;
    text-align: center;
    cursor: default;
    display: flex;
    flex-direction: row;
    user-select: none;
    border-radius: 3px;
    z-index: 2;
    top: 16px;
    left: 0px;
}
.product-menu .promo p{

}
.product-menu .img-menu .tittel-menu{
    border-radius: 10px;
    height: 100%;
    width: 100%;
    padding: 7% 11% 7% 11%;
}

.product-menu .img-menu .tittel-menu .footer-name{
    font-size: 11px;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
}
.product-menu .img-menu .tittel-menu .footer-harga{
    font-size: 11px;
    font-weight: 700;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
}
/* end card menu */

/* detail menu */
.menu-detail{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-top: 37px;
}
.menu-detail .image-detail{

}
.menu-detail .img-detail{
    width: 100%;
    height: 300px;
}
.menu-detail .img-detail img{
    width: 100%;
    height: 100%;
    object-fit: scale-down;
    background: center;
}
.menu-detail .detail{
    padding: 27px;
    background: #1c1c1c;
    margin-top: 22px;
    color: white;
}
.menu-detail .detail .detail-isi{

}
.menu-detail .detail .detail-isi .border-name{
    height: 100px;
    border-left: 7px solid;
    padding-left: 10px;
    margin-bottom: 10px;
}
.detail-isi .border-name .nama-menu{
    font-size: 29px;
    font-weight: 800;
}
.varian-menu {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    justify-content: space-between;
    margin-bottom: 10px;
}
.varian-menu .varian {
    display: flex;
    flex-direction: column;
    border: 1px solid white;
    border-radius: 8px;
    padding: 8px;
    box-sizing: border-box;
    width: 130px;
}
.varian-menu .varian p.nama-var {
    font-size: 15px;
    font-weight: 400;
    margin-bottom: 0;
}
.varian-menu .varian:hover {
    background-color: #b9b9b9;
    color: black;
}
.btn-act-additional {
    display: flex;
    width: 100%;
    justify-content: space-between;
    gap: 10px;
}
.btn-act-additional .addtional-option, .btn-act-additional .add-note {
    display: flex;
    flex-direction: column;
    background: white;
    color: black;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 10px;
    width: 100%;
}
.addtional-option .option {
 color: #666;
 font-size: 10px;
}
.action-order{
    display: flex;
    gap: 9px;
    justify-content: space-between;
}
.pop-up.catatan {
    position: fixed;
    z-index: 1016;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 152px;
}
.content-add {
    background: white;
    border-radius: 10px;
    padding: 14px;
    width: 77%;
}
.header-pop {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 600;
}
.btn-catatan-selesai {
    margin-top: 20px;
    background: black;
    color: white;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    cursor: pointer;
}
/* .detail-isi .border-name .nama-menu{

}
.detail-isi .border-name .nama-menu{

}
.detail-isi .dsc{

}
.detail-isi .dsc p{

}
.detail-isi .dsc p.font-des{

}
.detail-isi .harga{

} */
.detail-footer {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.detail-isi .harga p{
    font-size: 20px;
    font-weight: 600;
}

.wrap-num-product {
    width: 125px;
    height: 38px;
    border-radius: 3px;
    overflow: hidden;
}
.flex-c-m {
    justify-content: center;
    -ms-align-items: center;
    align-items: center;
    display: flex;
}
.cl3 {
    color: #666;
}
.bg-col1 {
    background-color: white;
}
.btn-num-product-down, .btn-num-product-up {
    width: 30px;
    height: 24px;
    cursor: pointer;
    border-radius: 4px;
}
input.num-product {
    -moz-appearance: textfield;
    appearance: none;
    -webkit-appearance: none;
}
.num-product {
    width: calc(100% - 90px);
    height: 37px;
    background-color: #ffffff00;
    border-radius: 9px;
    border: none;
    color: white;
}
button.btn.btn-light.order-now {
    width: 136px;
    margin-top: 0;
}
.txt-center {
    text-align: center;
}
.text-end {
    text-align: right!important;
}
.pop-up.additional {
    position: fixed;
    z-index: 1016;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 152px;
}
.pop-up.additional .content-add {
    background: white;
    padding: 10px;
    border-radius: 10px;
    width: 300px;
    height: auto;
    filter: drop-shadow(1px 6px 6px rgba(22, 22, 22, 0.25));
}
.pop-up.additional .content-add .header-pop {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
}
.header-pop p.close-pop {
    cursor: pointer;
}
.content-option {
    display: flex;
    flex-direction: column;
}
.option-additional {
    display: flex;
    justify-content: space-between;
    border: 1px solid black;
    margin-bottom: 10px;
    padding: 7px;
    cursor: pointer;
}
/* .option-additional:hover {
    background-color: black;
    color: white;
} */
p.name-option {
    margin-bottom: 0px;
}
.option-additional.aktif {
     background-color: black;
     color: white;
}


/* end detail menu */

/* about */
/* banner about */
.ps{
    padding: 13px 20px 20px 10px;
}
.ps .card-bg-about{
    background: rgba(17, 17, 17, 0.51);
    backdrop-filter: blur(2px);
    border-radius: 8px;
    padding: 10px;
    color: white;
    margin-top: -182px;
}
.ps .card-bg-about .border-card{
    border: 2px solid white;
    padding: 10px;
}
.ps .card-bg-about .border-card .judul-about{
    font-size: 20px;
    font-weight: 800;
}
.ps .card-bg-about .border-card .isi-about{
    font-size: 11px;
}

/* end banner about */

.judul-border{
    border-left: 7px solid;
    height: 35px;
    margin-bottom: 10px;
    padding-left: 10px;
}
.judul-border .txt-judul{
    width: 260px;
}
.judul-border .txt-judul .text{
    font-size: 25px;
    font-weight: 800;
}

.content-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.content-about .image-logo{
    text-align: center;
    padding: 20px;
    width: 300px;
}
.image-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.content-about .isi-about{
    padding: 0px 20px 15px;
    font-size: 15px;
}
.show.slick-slide {
    display: block;
    width: 100%;
    height: 166px;
}
.show.slick-slide img{

    width: 100%;
    height: 100%;
    object-fit: contain;
}
.list-img{
           width: 79%;
    height: 72%;
}
.list-img img{
    display: block;
    width: 100%;
    object-fit: cover;
}
.border-h{

}


.row-service{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin: 0px 0px;
}
.row-service .service-card{
    width: 50%;
    height: 100%;
    padding: 5px;
    margin-bottom: 36px;
}
.row-service .service-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.row-service .service-card .dsc-service{
    display: block;
    position: relative;
    margin-top: -95px;
    padding-left: 7px;
    max-width: 140px;
    border-left: 5px solid white;
    margin-left: 13px;
    color: white;
}
.row-service .service-card .dsc-service .judul-service{
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 0;
}
.row-service .service-card .dsc-service .isi-service{
    font-size: 10px;
}

/* end about */

/* vip room  */
.img-banner-vip{
    display: inline-block;
    overflow: hidden;
    height: 394px;
    width: 100%;
    position: relative;
    cursor: pointer;
    background-position: center;
    background-image: url('../img/image room vip.png');
    background-size: cover;
    z-index: 0;

}
.left33 {
    left: 33%;
}
.mr-top-hero {
    margin-top: 105px;
}
.hero-txt-widht {
    width: 17%;
    margin-left: 67px;
}
.br-top-thint {
    border-top: 3px solid #f8fafa;
}
.text-header {
    padding-left: 1px;
    padding-top: 10px;
}
.ls27 {
    letter-spacing: 14px;
}
.fw-400 {
    font-weight: 400;
}
.ft-size-txt-banner {
    height: 60px;
}
.txt-widht {
    width: 200px;
    color: white;
}
.des-banner {
    display: block;
    position: relative;
    margin-top: 86px;
    width: 181px;
    color: white;
    font-size: 15px;
}

.vip-room{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0px 0px;
}
.vip-room .card-room{
    position: relative;
    width: 100%;
    height: 511px;
    padding-bottom: 25px;
}
.vip-room .card-room .img-room{
    width: 100%;
    height: 100%;
}
.vip-room .card-room .img-room img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.vip-room .card-room .isi-card-room{
    margin-top: -282px;
    padding: 0px 21px;
    color: white;
}
.vip-room .card-room .isi-card-room .border-thint{
    border-top: 4px solid white;
    width: 31px;
    position: relative;

}
/* .vip-room .card-room .isi-card-room .border-thint p{


} */
.vip-room .card-room .isi-card-room .border-thint .card-title-room{
    width: 200px;
    font-size: 20px;
    font-weight: 800;
}
.vip-room .card-room .isi-card-room .card-text-room{
    font-size: 14px;
}
.vip-room .card-room .isi-card-room a.btn-card-room{
    cursor: pointer;
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    color: white;
    background: #03030366;
    font-weight: bold;
}
.vip-room .card-room .isi-card-room a.btn-card-room:hover{

    color: #fffefe;
    background: rgb(19, 18, 18);

}
/* end vip room */
/* detail vip room */
.img-banner-room{
    display: inline-block;
    overflow: hidden;
    height: 394px;
    width: 100%;
    position: relative;
    cursor: pointer;
    background-position: center;
    background-size: cover;
    z-index: 0;
}
.img-banner-room img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.img-banner-room .hero-text{
    margin-top: -245px;
    position: relative;
    font-size: 22px;
}
.img-banner-room .hero-txt-widht {
    width: 17%;
    margin-left: -22px;
}
.img-banner-room .bst-text-tittel {
    width: 341px;
    line-height: 1;
    padding-top: 14px;
}
.fw-800 {
    font-weight: 800;
}
.btn-send{
    width: 100%;
    background: black;
    color: white;
}
.btn-send:hover{

    background: rgb(138, 136, 136);
    color: rgb(8, 8, 8);
}
/* end detail vip room */

/* pop up  */
.modal-popup{
    z-index: 1000;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    padding: 23px 20px;
}
.modal-popup-notify{
    z-index: 1000;
    position: fixed;
    top: 50px;
    bottom: 0;
    right: 10px;
    left: 10px;
    padding: 23px 20px;
}
.modal-popup .pesan{
    display: flex;
    background: rgba(19, 19, 19, 0.54);
    backdrop-filter: blur(2px);
    border-radius: 6px;
    height: 484px;
    padding: 31px;
    flex-direction: column;
    align-items: center;
    color: white;
}
.modal-popup-notify .pesan{
    display: flex;
    background: rgba(19, 19, 19, 0.54);
    backdrop-filter: blur(2px);
    border-radius: 6px;
    height: 173px;
    padding: 31px;
    flex-direction: column;
    align-items: center;
    color: white;
}
.modal-popup-notify .btn-action {
    background: black;
    padding: 9px;
    border-radius: 6px;
    cursor: pointer;
}
.modal-popup .pesan .text-popup{
    text-align: center;
}
.modal-popup .pesan .image-cek{
    width: 153px;
    height: 157px;
}
.modal-popup .pesan .image-cek img{
    width: 100%;

}
.modal-popup .pesan .btn-action {
    width: 100%;
    display: flex;
    padding: 10px;
    flex-direction: row;
    justify-content: center;
}
.modal-popup .pesan .btn-action .btn-order {
    cursor: pointer;
    background: white;
    color: black;
    padding: 10px;
    border-radius: 10px;
    font-weight: 900;
}
.modal-popup .pesan .btn-action .close {
    cursor: pointer;
    background: #ff3636;
    color: white;
    padding: 10px;
    border-radius: 10px;
}
/* end pop up */

/* form login */
.pd-30{
    padding: 30px;
}

.card-auth{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: column;
    background: #1a1a1a;
    color: white;
}
.card-auth .image-card{
    height: 437px;
    width: 100%;
}
.card-auth .image-card img{
    height: 415px;
    width: 100%;
    object-fit: cover;
}
.card-auth .form-auth{
    padding: 12px;
    font-size: 19px;
}
.card-auth .form-auth .form{

}
.card-auth .form-auth .form .input-form{
    margin-bottom: 18px;
}
.card-auth .form-auth .form .input-form .label{

}
.card-auth .form-auth .form .button-action .btn-action{
    width: 100%;
    padding: 5px;
    background: white;
    border-radius: 9px;
}
.card-auth .form-auth .form .separator {
    margin-top: 2px;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
}
.separator .line {
    width: 100%;
    height: 2px;
    background-color: #b9b9b9;
    position: absolute;
    z-index: 2;
    top: 30px;
}
.separator .text {
    position: relative;
    z-index: 3;
    color: #b9b9b9;
    padding: 0px 6px;
    font-size: 20px;
    display: inline-block;
    background-color: #1a1a1a;
}
.card-auth .form-auth .form .separator .text a.btn-action {
    /* text-align: center; */
   color: black;
    text-decoration: none;
    background: white;
    padding: 4px 20px;
    border-radius: 10px;
    display: flex;
    gap: 5px;
}
.text a.btn-action img.google {
    width: 24px;
    height: 24px;
}
.card-auth .form-auth .form .smal-txt-action{
    font-size: 12px;
    margin-top: 10px;
    text-align: center;
}
.card-auth .form-auth .form .smal-txt-action a , .forget-pass{
    color: white;
    text-decoration: none;
}
.card-auth .form-auth .form .smal-txt-action a:hover{
    color: rgb(197, 5, 5);

}
.card-auth .form-auth .form .separator {
    margin-top: 2px;
    margin-bottom: 10px;
    position: relative;
    text-align: center;
}
.separator .line {
    width: 100%;
    height: 2px;
    background-color: #b9b9b9;
    position: absolute;
    z-index: 2;
    top: 30px;
}
.separator  .text {
    position: relative;
    z-index: 3;
    color: #b9b9b9;
    padding: 0px 6px;
    font-size: 20px;
    display: inline-block;
    background-color: #1a1a1a;
}


.input-phone, .input-code-otp {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}
.pd-top70 {
    margin-top: 20px;
}
/* end form login */

/* contact us */
.page-content{
    padding: 5px 20px;
}
.m-top-buttom{
    margin: 26px 0;
}
.mapouter{
    position:relative;
    text-align:right;
    width:100%;
    height:400px;
}
.gmap_canvas {
    overflow:hidden;
    background:none!important;
    width:100%;
    height:400px;
}
.gmap_iframe {
    width:100%!important;
    height:400px!important;
}
/* end contect us */


.aktif{
display: flex;
}

.panel-container .panel{
    display: none;
}
.panel-container .panel.active{
    display: flex;
}
.panel-container .panel .panel-navigation-row{
    display: flex;
    padding-top: 20px;
    padding-right: 10px;
}
.panel .panel-navigation-row .next, .back{
    background: black;
    color: white;
    padding: 6px;
    border-radius: 6px;
}


/* notification */
.content-notify {
    position: relative;
    padding: 10px;
}

.content-notify .header-action {
    display: flex;
    justify-content: flex-end;
    border: 1px solid #00000033;
    padding: 4px 6px;

}
.content-notify .header-action .text-action-header{
    font-size: 12px;
    color: red;
    cursor: pointer;
}
.content-notify .list-notify {
    display: flex;
    flex-direction: column;
    /* padding: 0px 10px; */
}
.content-notify .list-notify .part-notify.active {
    background: #80808052;
}
.content-notify .list-notify .part-notify {
    border-bottom: 1px solid #80808038;
    display: flex;
    flex-direction: column;
    background: none;
    padding: 7px 10px;
}
span.action-notif {
    position: relative;
    font-size: 12px;
    margin: 11px 0px;
    align-self: flex-end;
    width: 78px;
    color: #d53636f0;
    border-bottom: 1px solid #d53636c9;
    cursor: pointer;
}

/*  */
.point-user {
    display: flex;
    justify-content: space-between;
}
span.text-point {
    display: flex;
    gap: 7px;
    font-size: 20px;
    font-weight: 600;
}
.text-point .icon {
    width: 30px;
    height: 30px;
}
.point-Aktif {
    margin-top: 4px;
    width: 60px;
    text-align: center;
}
.point-Aktif input.toggle:checked {
    background-color: #e5b225;
}
.point-Aktif input.toggle {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 60px;
    height: 25px;
    display: inline-block;
    position: relative;
    border-radius: 50px;
    overflow: hidden;
    outline: none;
    border: none;
    cursor: pointer;
    background-color: #707070;
    transition: background-color ease 0.3s;
}

.point-Aktif input.toggle:checked:before {
    left: 36px;
}

.point-Aktif input.toggle:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 2;
    width: 20px;
    height: 20px;
    background: #fff;
    left: 2px;
    top: 2px;
    border-radius: 50%;
    font: 10px/28px Helvetica;
    text-transform: uppercase;
    font-weight: bold;
    text-indent: -22px;
    word-spacing: 37px;
    color: #fff;
    text-shadow: -1px -1px rgba(0,0,0,0.15);
    white-space: nowrap;
    box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    transition: all cubic-bezier(0.3, 1.5, 0.7, 1) 0.3s;
}
.header-part {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
}
.header-part p.txt-tittle {
    font-size: 21px;
    font-weight: 600;
}
.point-user-rwd {
    display: flex;
    font-size: 13px;
    font-weight: 600;
    border-radius: 39px;
    border: 1px solid grey;
    align-items: center;
    padding: 9px;
    gap: 10px;
}
.txt-poin {
    color: red;
}
.container-part-card {
    margin-top: 30px;
    margin-bottom: 20px;
}
.part-card-gitf {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 13px;
}
.part-card-gitf .card-gift {
    cursor: pointer;
    border-radius: 5px;
    box-shadow: 0px 7px 11px rgb(134 134 134 / 25%);
    width: 155px;
    height: auto;
    background: white;
    padding: 7px;
}
a.detail-card {
    text-decoration: none;
    color: black;
}
.part-card-gitf .card-gift .img-card {
    height: 164px;
    width: 143px;
}
.part-card-gitf .card-gift .img-card img {
    height: auto;
    width: 100%;
    object-fit: cover;
}
.part-card-gitf .card-gift p.txt-name {
    font-weight: 600;
}
.part-card-gitf .card-gift small.txt-point-buy {
    color: red;
}
/* detail gift */
.part-detail {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 10px;
}
.part-detail .image-detail {
    width: 100%;
    height: 170px;
}
.part-detail .image-detail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.part-detail  .text-detail {
    margin-top: 10px;
}
.part-detail  .text-detail .name-gitf {
    margin-bottom: 0px;
    font-weight: 800;
}
.part-detail  .text-detail .deskrip-gift {
    color: grey;
}
.part-detail .txt {
    text-decoration: underline;
    color: grey;
    font-weight: 700;
}
.part-detail .line {
    content: "";
    border: 0.345px solid grey;
    margin-top: 10px;
}
.qty-part {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 10px;
}
.qty-part .act-qty-part {
    display: flex;
    gap: 10px;
}
.qty-part .act-qty-part .minus, .plus {
    border: 1px solid;
    border-radius: 5px;
    padding: 2px 10px;
}
.part-detail .total-point {
    display: flex;
    justify-content: flex-end;
    margin-top: 5px;
}
.part-detail .action-cekout {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}
.part-detail .action-cekout .cekout {
    cursor: pointer;
    background: black;
    color: white;
    padding: 10px;
    width: 100%;
    text-align: center;
    border-radius: 10px;
}
