/* Part::Font */
@font-face {
  font-family: "Montserrat";
  src: url("../font/Montserrat/Montserrat-VariableFont_wght.ttf") format(truetype);
  font-weight: 100 1000;
}

/* Part::Variable */
:root {
  /* Color */
  --brand-color-brown-primary: #473729;
  --brand-color-brown-secondary: #69594b;
  --brand-color-gold-primary: #886b25;
  --brand-color-gold-secondary: #f1be48;
  --brand-color-grey-neutral: #63666a;
  --color-black-brand: #151515;
  --color-base-page: #f2f2f2;
  --color-white: #ffffff;
  /* --------------------------------------- */
  /* Font */
  --brand-font-1: "Montserrat", sans-serif;
  /* --------------------------------------- */
  /* IMG */
  --img: url(../img/Image0.jpg);
}

/* ------------------------------------------ */

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Part ADD 16-08-22 */
::selection {
  color: white;
  background: #82660d;
}

/* Part::navbar */
#navbar {
  background: transparent;
  transition: 0.5s;
}

#navbar.active {
  background: var(--color-white);
  transition: 0.5s;
  box-shadow: 0px 2px 25px #1515153c;
}

#navbar-wrapp {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 1vw;
  padding: 20px 60px;
}

#navbar-wrapp .logo-hotels {
  width: 15vw;
}

#navbar-wrapp .logo-hotels img {
  max-width: 150px;
}

/* #list-menu {
  width: 75vw;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  justify-content: space-between;
  align-items: center;
  position: relative;
} */

#list-menu a {
  text-decoration: none;
  color: var(--color-white);
  font-family: var(--brand-font-1);
  font-weight: 500;
  font-size: 0.9rem;
  text-transform: uppercase;
  position: relative;
}

#list-menu span {
  text-decoration: none;
  color: var(--color-white);
  font-family: var(--brand-font-1);
  font-weight: 400;
  font-size: 0.9rem;
  text-transform: uppercase;
  position: relative;
}

#navbar.active #list-menu a,
#navbar.active #list-menu span {
  color: var(--brand-color-grey-neutral) !important;
}

#navbar #list-menu .menu-link::after {
  content: "";
  position: absolute;
  /* top: 0; */
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0%;
  margin: auto;
  background-color: var(--color-white);
  transition: 0.3s;
}

#navbar #list-menu .menu-link.active::after {
  background-color: var(--color-white);
  width: 75%;
  transition: 0.3s;
}

#navbar.active #list-menu .menu-link.active::after {
  background-color: var(--brand-color-grey-neutral);
}

#navbar.nobanner #list-menu .menu-link.active::after {
  background-color: var(--brand-color-grey-neutral);
}

#navbar #list-menu .menu-link:hover::after {
  width: 75%;
  transition: 0.3s;
}

#navbar.active #list-menu .menu-link:hover::after {
  background-color: var(--brand-color-grey-neutral);
}

/* Icon in Navbar (dropdown) */
#list-menu .link-dropdown {
  position: relative;
}

#list-menu .link-dropdown span {
  position: relative;
}

i.dropdown {
  width: 25px;
  height: 20px;
  position: absolute;
  right: -25px;
  top: -2px;
}

#navbar.active i.dropdown::before,
#navbar.active i.dropdown::after {
  background-color: var(--brand-color-grey-neutral);
}

i.dropdown::before {
  content: "";
  width: 10px;
  height: 1.8px;
  border-radius: 40px;
  background-color: var(--color-white);
  position: absolute;
  left: 0;
  transform: rotate(54deg) translate(10px, 1px);
  transition: 0.3s linear;
}

i.dropdown::after {
  content: "";
  width: 10px;
  height: 1.8px;
  border-radius: 40px;
  background-color: var(--color-white);
  position: absolute;
  right: 0;
  transform: rotate(-54deg) translate(-10px, 1px);
  transition: 0.3s linear;
}

/* get Hover */
#list-menu .link-dropdown:hover i.dropdown {
  /* background-color: aqua; */
}

#list-menu .link-dropdown:hover i.dropdown::before {
  transition: 0.3s linear;
  transform: rotate(-54deg) translate(-5px, 9.8px);
}

#list-menu .link-dropdown:hover i.dropdown::after {
  transition: 0.3s linear;
  transform: rotate(54deg) translate(5px, 9.8px);
}

#list-menu .link-dropdown:hover .wrapp-sub-link {
  transition: 0.3s ease-in-out;
  transform: translateY(0px) translateX(0px);
  opacity: 1;
}

#navbar.active #list-menu .link-dropdown:hover .wrapp-sub-link {
  background-color: var(--color-white);
  box-shadow: 0 0 8px #15151545;
}

#list-menu .link-dropdown .wrapp-sub-link {
  transition: 0.3s ease-in-out;
  position: absolute !important;
  min-width: 300px;
  padding: 15px 15px;
  display: flex;
  flex-direction: column;
  transform: translateY(-30px) translateX(0px);
  gap: 0.8vw;
  opacity: 0;
}

#list-menu .link-dropdown .wrapp-sub-link a.sub-link {
  transition: 0.3s linear;
  position: relative;
}

#list-menu .link-dropdown .wrapp-sub-link a.sub-link:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  margin: auto;
  border-bottom: 2px solid transparent;
  transition: 0.3s linear;
}

#list-menu .link-dropdown .wrapp-sub-link a.sub-link:hover::after {
  transition: 0.3s linear;
  width: 50% !important;
  border-bottom: 2px solid var(--color-white) !important;
}

#navbar.active #list-menu .link-dropdown .wrapp-sub-link a.sub-link:hover::after {
  border-bottom: 2px solid var(--brand-color-grey-neutral) !important;
}

/* toggle-menu */
#toggle-menu {
  display: none;
}

/* Part::Banner */
#banner-slide {
  height: auto;
}

#booking-engine {
  position: relative;
  z-index: 1;
  padding: 0;
}

/* Part::Commitment */
#commitment-wrapp {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  padding: 0px 15vw;
  gap: 3vw;
}

#commitment-wrapp .hotel {
  /* width: 50vw; */
}

h1 {
  font-size: 1.9rem;
  font-family: var(--brand-font-1);
  font-weight: 400;
  color: var(--brand-color-grey-neutral);
  text-transform: uppercase;
}

h1.jdl-thin {
  padding: 40px 15vw 0;
  font-weight: 300;
}

#commitment-wrapp .description {
  width: 50vw;
  margin: 0;
  font-size: 1rem;
  font-family: var(--brand-font-1);
  font-weight: 300;
  color: var(--brand-color-grey-neutral);
}

.commitment-list {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  gap: 1vw;
  /* margin-bottom: 20px; */
}

.commitment-list span {
  font-size: 1rem;
  font-family: var(--brand-font-1);
  font-weight: 300;
  color: var(--brand-color-gold-primary);
  text-transform: uppercase;
}

.commitment-list p {
  font-size: 0.7rem;
  font-family: var(--brand-font-1);
  font-weight: 300;
  color: var(--brand-color-grey-neutral);
  text-transform: capitalize;
  width: 60%;
}

/* Part::Video */
#video-wrapp {
  overflow: hidden;
  padding: 0;
  margin: 30px 0 60px;
  position: relative;
}

#video-wrapp #video-1 {
  width: 100%;
  aspect-ratio: 16/9;
}

#video-wrapp::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 5px;
  left: 0;
  right: 0;
  background-color: #0000008c !important;
  opacity: 1;
  z-index: 998;
  transition: 0.7s;
}

#video-wrapp.play::after {
  transition: 0.7s;
  opacity: 0;
}

.play-button-outer {
  position: absolute;
  z-index: 999;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 10em;
  height: 10em;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-button {
  margin: 0 auto;
  /* top: 25%; */
  position: relative;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.5em 0 1.5em 3em;
  border-color: transparent transparent transparent var(--color-white);
  opacity: 0.75;
  transition: 0.5s;
}

.active .play-button-outer {
  transition: 0.5s;
  opacity: 0;
}

.play-button-outer:hover .play-button {
  opacity: 1;
}

/* Part::Destination */
#destination-banner {
  background-color: var(--brand-color-grey-neutral);
  position: relative;
}

#destination-banner .background-banner {
  padding: 0;
}

#destination-wrapp {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0;
  /* background-color: coral; */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2vw 4vw 5vw;
  gap: 2vw;
  overflow: hidden;
}

#destination-wrapp .caption {
  display: flex;
  /* flex-direction: column; */
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 45vw;
  color: var(--color-white);
  /* gap: 2vw; */
  /* background-color: aqua; */
}

#destination-wrapp .caption .title-caption,
#destination-wrapp .caption p {
  color: var(--color-white);
  font-family: var(--brand-font-1);
  font-size: 2.1rem;
}

#destination-wrapp .caption p {
  font-weight: 300;
  font-size: 1.2rem;
  margin: 0;
}

#destination-wrapp .slide-destination {
  aspect-ratio: 4 / 2;
  max-width: 40vw;
}

/* Card Destination */
#destination-wrapp .card-destination {
  border-radius: 20px;
  overflow: hidden;
  /* ----------- */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* ----------- */
  position: relative;
  /* box-shadow: 0px 0px 7px 1px #ffffff48 !important; */
  box-shadow: 2px 2px 8px 2px #222 !important;

  /* helloo */
}

#destination-wrapp .card-destination:hover {
  box-shadow: 0px 0px 4px 1px #222 !important;
}

#destination-wrapp .card-destination:hover img {
  transform: scale(1.2);
  transition: 0.7s;
}

#destination-wrapp .card-destination img {
  transition: 0.7s;
  transform: scale(1);
}

#slide-card-destination.swiper {
  padding: 15px !important;
}

#destination-wrapp .card-destination .img-card img::hover {}

/* #destination-wrapp .card-destination .img-card{
} */

#destination-wrapp .card-destination.end {
  display: none;
  width: 50px !important;
}

#destination-wrapp .card-destination.soon {
  justify-content: center;
  align-items: center;
}

#destination-wrapp .card-destination.soon::after {
  content: "";
  min-width: 100px;
  aspect-ratio: 2 / 3;
  background-color: #1515157b;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 20px;
}

#destination-wrapp .card-destination.soon span {
  font-family: var(--brand-font-1);
  font-weight: 800;
  color: var(--color-white);
  position: absolute;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: 1rem;
}

#destination-wrapp .card-destination .nm-destination {
  font-family: var(--brand-font-1);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--color-white);
  position: absolute;
  top: 2vw;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 2;
}

#destination-wrapp .card-destination .nm-destination .nm-city {
  font-weight: 500;
  text-transform: uppercase;
  font-size: 1.15rem;
  letter-spacing: 1px;
}

#destination-wrapp .card-destination .nm-destination .nm-province {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 0.4rem;
  letter-spacing: 1.5px;
}

#destination-wrapp .card-destination .caption-destination {
  font-weight: 300;
  font-size: 0.5rem;
  margin: 0;
  text-align: start;
  color: var(--color-white);
}

/* Part::Special-Promotion */
#special-promotion {
  margin-top: 0px;
}

.title-part {
  font-family: var(--brand-font-1);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--brand-color-grey-neutral);
}

/* Slide Promotion */
#slide-promotion {
  width: 100%;
}

/* Slide Promotion--3 view */
#slide-promotion-wrapp {
  padding: 0;
  position: relative;
}

#slide-promotion-wrapp .swiper-slide {
  transition: 1s;
  opacity: 100%;
}

#slide-promotion-wrapp .swiper-slide:not(.swiper-slide-prev):not(.swiper-slide-active):not(.swiper-slide-next) {
  transition: 1s;
  opacity: 0%;
}

/* --------- */
/* #video-potrait-wrapp .swiper-slide {
  transition: 1s;
  opacity: 100%;
}
#video-potrait-wrapp .swiper-slide:not(.swiper-slide-prev):not(.swiper-slide-active):not(.swiper-slide-next) {
  transition: 1s;
  opacity: 0%;
} */

#slide-promotion-potrait {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#slide-promotion-potrait::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  height: 250px;
  left: 0;
  right: 0;
  margin: auto;
  background-image: url(../img/pattern.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 30%;
}

#slide-promotion-potrait .card-promotion.potrait .caption-card {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -90px;
  margin: auto;
  display: flex;
  flex-direction: column !important;
  min-height: 80px;
  /* background-color: aqua; */
}

#slide-promotion-potrait .card-promotion.potrait .caption-card span {
  width: 100%;
  border: none;
}

#slide-promotion-potrait .card-promotion.potrait .caption-card .title-promotion {
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-color-gold-primary);
  text-align: center;
  letter-spacing: 1px;
}

#slide-promotion-potrait .card-promotion.potrait .caption-card .description-promotion {
  font-size: 0.6rem;
  font-weight: 200;
  color: var(--brand-color-grey-neutral);
  text-align: center;
  text-transform: lowercase;
  letter-spacing: 1px;
}

.card-promotion-wrapp {
  margin-top: 85px;
  margin-bottom: 60px;
}

/* .card-promotion {
  background-image: var(--img);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  aspect-ratio: 4/3;
  width: 28vw !important;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
} */
.card-promotion {
  background-image: var(--img);
  /* background-position: center; */
  /* background-size: 100%; */
  /* background-repeat: no-repeat; */
  /* background-color: aqua; */
  /* aspect-ratio: 2/3; */
  width: 24vw !important;
  width: auto;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card-promotion.card-promo-dinam {
  width: 30vw !important;
}

.card-promotion.card-promo-dinam.vid-reels {
  background-image: none;
  background-color: var(--brand-color-grey-neutral);
  width: 28vw !important;
  min-height: 350px !important;
}

.card-promotion.potrait {
  aspect-ratio: 3 / 4 !important;
  max-width: 57vw;
  /* max-width: 350px; */
  /* height: 200px !important; */
  overflow: visible;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card-promotion span {
  font-family: var(--brand-font-1);
  color: var(--color-white);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  background-color: transparent;
  border: 2px solid var(--color-white);
  width: 80%;
  padding: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 10px !important;
}

.swiper-pagination-bullet-active {
  background: var(--brand-color-gold-primary) !important;
}

.wrap-btn {
  margin: 20px 0;
}

a.btn-more {
  background-color: transparent;
  font-family: var(--brand-font-1);
  font-weight: 300;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 0;
  padding: 25px 50px;
  border-radius: 15px;
  text-decoration: none !important;
  color: var(--brand-color-gold-primary);
  border: 1px solid var(--brand-color-gold-primary) !important;
}

a.btn-more:hover {
  background-color: var(--brand-color-gold-primary);
  color: var(--color-white);
}

a.btn-more:focus {
  background-color: var(--brand-color-gold-primary);
  color: var(--color-white);
}

/* Part::Location-Unit-Hotels */
#location-hotels {
  margin-top: 50px;
  margin-bottom: 30px;
  /* background-color: aqua; */
}

#slide-location-wrapp {
  margin-top: 50px;
  /* background-color: coral; */
  padding: 0;
}

#slide-card-location-unit {
  /* background-color: cornflowerblue; */
}

#slide-card-location-unit .card-location-unit {
  /* background-color: crimson; */
  display: flex;
  justify-content: center;
  align-items: center;
}

#slide-card-location-unit .card-location-unit .unit-content {
  position: relative;
  /* background-color: chocolate; */
  width: 70vw;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

#slide-card-location-unit .card-location-unit .unit-content .info-unit {
  border-radius: 30px;
  background-color: #f4f4f4;
  width: 85%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 30% 50px 50px;
  gap: 15px;
}

.info-unit .nm-unit {
  width: 100%;
}

.info-unit .nm-unit h1 {
  font-weight: 200;
  font-size: 1.5rem;
  margin: 0;
}

.info-unit h1.city-unit {
  font-size: 2rem;
  font-weight: 300 !important;
}

.info-unit .description-unit {
  font-family: var(--brand-font-1);
  font-size: 0.8rem;
  font-weight: 200 !important;
  color: var(--brand-color-grey-neutral);
  width: 100%;
}

.info-unit .frame-map {
  width: 100%;
}

.info-unit .btn-more {
  margin-top: 10px;
  max-width: 20vw;
  font-size: 0.7rem;
  padding: 20px 40px;
  border-radius: 10px;
}

#slide-card-location-unit .card-location-unit .unit-content .img-hotel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 30vw;
  /* background-color: aqua; */
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

#slide-card-location-unit .card-location-unit .unit-content .img-hotel .img-hotel-wrapp {
  border-radius: 20px;
  overflow: hidden;
}

#slide-card-location-unit .card-location-unit .unit-content .img-hotel .img-hotel-wrapp .address-unit {
  background-color: var(--brand-color-gold-primary);
  padding: 20px;
  font-family: var(--brand-font-1);
  font-weight: 200;
  font-size: 0.8rem;
  text-align: end;
  text-transform: capitalize;
  color: var(--color-white);
}

/* Part::Line-Pattern */
.line-pattern {
  margin-top: 20px;
  width: 100%;
  min-height: 35px;
  background-image: url(../img/other-pattern.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.line-black {
  margin-top: 4px;
  width: 100%;
  min-height: 8px;
  background-image: linear-gradient(to bottom, #666666, #cccccc);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.line-grey {
  margin-top: 0px;
  width: 100%;
  min-height: 12px;
  /* background-image: linear-gradient(to bottom, #dddddd, #cccccc); */
  background-color: #eaeaea;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

/* Part::Footer */
/* FOOTER */
.wrap-footer {
  /* background-image: linear-gradient(to right bottom, var(--brand-color-brown-secondary), var(--brand-color-brown-primary)); */
  /* background-image: url(../img/bg-footer.png), linear-gradient(to right, var(--brand-color-brown-secondary), var(--brand-color-brown-primary)); */
  /* background: linear-gradient(-40deg, #392412 18%, #544231 48%, #635142 59%, #675646 100%); */
  background-color: var(--color-white);
  min-height: 20em;
  background-size: cover;
  background-position: center;
  position: relative;
  z-index: 1;
}

.wrap-footer::after {
  /* background-color: aqua; */
  content: "";
  opacity: 50%;
  background-color: var(--color-white);
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10%;
  right: 0;
  margin: auto;
  z-index: -1;
}

.wrap-footer .wrap-nav {
  display: flex;
  margin-top: 2rem;
  border-right: 2px solid var(--brand-color-grey-neutral);
  padding-top: 1rem;
  flex-wrap: wrap;
  font-family: var(--brand-font-1);
}

/* .wrap-footer .wrap-nav .menu-footer {
  display: flex;
  gap: 4vw;
  width: 100%;
  flex-direction: row;
}

.wrap-footer .wrap-nav .menu-footer a,
.wrap-footer .wrap-nav .menu-footer li {
  text-decoration: none;
  font-family: var(--brand-font-1);
  font-weight: 300;
  font-size: 1rem !important;
  color: var(--brand-color-grey-neutral);
} */

.wrap-footer .wrap-nav ul {
  /* width: 33%; */
  padding: 0;
}

.wrap-footer .wrap-nav .sosmed {
  width: 100%;
  font-size: 24px;
  margin-top: 2.5em;
  margin-bottom: 1em;
  font-weight: 700;
  color: var(--brand-color-grey-neutral);
  display: flex;
  align-items: center;
}

.wrap-footer .wrap-nav .sosmed span {
  margin-right: 2.5em;
}

.wrap-footer .wrap-nav .sosmed a {
  width: 30px;
  height: 30px;
  margin-right: 0.8em;
  position: relative;
}

.wrap-footer .wrap-nav .sosmed a img {
  /* width: 90%; */
  width: 5vw;
  max-width: 90%;
}

.wrap-footer .wrap-nav .sosmed a i {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.wrap-footer .wrap-nav li {
  list-style-type: none;
  padding-left: 0;
  font-family: var(--brand-font-1);
  color: var(--brand-color-grey-neutral);
  font-weight: 300;
  margin-bottom: 0.7em;
}

.wrap-footer .wrap-nav li.title-nav {
  font-weight: 700 !important;
  font-size: 18px !important;
}

/* Form Newslatter */
.wrap-footer .form-newsletter {
  margin-top: 2rem;
  padding-top: 1rem;
  color: var(--brand-color-grey-neutral);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5vw;
}

.wrap-footer .form-newsletter .logo {
  width: 300px;
}

.wrap-footer .form-newsletter form {
  margin-top: 1vw;
  color: var(--brand-color-grey-neutral);
  display: flex;
  flex-direction: column;
  width: 75%;
}

.wrap-footer .form-newsletter form .form {
  display: flex;
  flex-direction: row-reverse !important;
  /* background-color: aqua; */
  width: 100%;
  gap: 2vw;
}

.wrap-footer .form-newsletter form .form .btn-more {
  width: 50%;
  padding: 25px 0px;
  font-size: 0.7rem;
}

.form a.btn {
  padding: 10px 20px;
  border-radius: 10px;
}

.form a.active {
  background-color: var(--brand-color-gold-primary) !important;
  color: var(--color-white);
  border: 1px solid var(--brand-color-gold-primary);
  width: 100%;
}

.form a.secondary {
  background-color: var(--color-white);
  color: var(--brand-color-gold-primary);
  border: 1px solid var(--brand-color-gold-primary);
}

.form a.secondary:hover~a.active {
  background-color: var(--color-white) !important;
  color: var(--brand-color-gold-primary) !important;
  border: 1px solid var(--brand-color-gold-primary);
}

.form a.secondary:hover {
  background-color: var(--brand-color-gold-primary) !important;
  color: var(--color-white);
  border: 1px solid var(--brand-color-gold-primary);
}

[type="button"],
[type="reset"],
[type="submit"],
button {
  -webkit-appearance: none;
}

.btn-newsletter {
  padding: 10px 20px;
  border-radius: 10px;
}

#btn-submit-newsletter::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 30px;
  height: 30px;
  margin: auto;
  background-color: var(--brand-color-gold-primary) !important;
  /* background-color: aqua; */
  border-radius: 100%;
  opacity: 0;
  transition: 0.3s;
  border-top: 2px solid #f4f4f4;
  border-bottom: 2px solid #f4f4f4;
  border-left: 2px solid #f4f4f4;
  border-right: 2px solid var(--brand-color-gold-primary);
}

#btn-submit-newsletter:active {
  transition: 0.3s;
  color: var(--brand-color-gold-primary);
}

#btn-submit-newsletter:active::after {
  opacity: 1;
  transition: 0.3s;
  animation: animateSpin 0.5s infinite linear;
}

.btn-newsletter.active {
  transition: 3s;
  position: relative;
  background-color: var(--brand-color-gold-primary) !important;
  color: var(--color-white);
  border: 1px solid var(--brand-color-gold-primary);
  width: 40%;
}

.btn-newsletter.secondary {
  background-color: var(--color-white);
  color: var(--brand-color-gold-primary);
  border: 1px solid var(--brand-color-gold-primary);
}

.btn-newsletter.secondary:hover~.btn-newsletter.active {
  background-color: var(--color-white) !important;
  color: var(--brand-color-gold-primary) !important;
  border: 1px solid var(--brand-color-gold-primary);
}

.btn-newsletter.secondary:hover {
  background-color: var(--brand-color-gold-primary) !important;
  color: var(--color-white);
  border: 1px solid var(--brand-color-gold-primary);
}

#modalNewsletter {
  font-family: var(--brand-font-1);
  color: var(--brand-color-grey-neutral);
}

#modalNewsletter .modal-footer {
  border: none;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-end;
}

.wrap-footer .form-newsletter form .title-form {
  display: flex;
  flex-direction: column;
  font-family: var(--brand-font-1);
  margin-bottom: 1.5vw;
}

.wrap-footer .form-newsletter form .title-form .title {
  font-weight: 700;
  font-size: 18px;
}

.wrap-footer .form-newsletter form .title-form .sub {
  font-weight: 700;
  font-size: 11px;
  font-weight: 400;
}

.wrap-footer .form-newsletter form .form {
  display: flex;
  flex-direction: row;
  gap: 1vw;
}

.wrap-footer .form-newsletter form input {
  width: 70%;
  border-radius: 7px;
  border: 0px;
  padding: 0 15px;
}

.wrap-footer .form-newsletter form button {
  width: 25%;
  font-size: 12px;
  padding: 15px 10px;
}

.wrap-footer .form-newsletter .link-app {
  margin-top: 5em;
  display: flex;
  flex-wrap: wrap;
  font-family: var(--brand-font-1);
}

.wrap-footer .form-newsletter .link-app .title {
  width: 100%;
  font-weight: 700;
  font-size: 18px;
}

.wrap-footer .form-newsletter .link-app .sub {
  width: 100%;
  font-weight: 400;
  font-size: 11px;
}

.wrap-footer .form-newsletter .link-app .wrap-link {
  margin-top: 1em;
  margin-bottom: 1em;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.wrap-footer .form-newsletter .link-app .wrap-link .link {
  margin-left: 0.3em;
  margin-right: 0.3em;
}

/* copyright */
.copyright {
  margin-top: 6em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  background-color: var(--brand-color-gold-primary);
  padding: 30px 0;
}

.copyright .title-copyright {
  font-family: var(--brand-font-1);
  margin: 1em 0.7em;
  text-decoration: none;
  color: var(--color-white);
  font-weight: 400;
  font-size: 11px;
  width: 100%;
  text-align: center;
}

.copyright .menu-dll {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.copyright a {
  font-family: var(--brand-font-1);
  margin: 1em 0.7em;
  text-decoration: none;
  color: var(--color-white);
  font-weight: 400;
  font-size: 11px;
}

/* -------------------------------------------------------------------------------- */
/* Page::Promotion */
/* Part::Art-Exp */
.wrap-art-exp {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 4vw;
}

.wrap-art-exp .art-img {
  width: auto;
}

.wrap-art-exp .art-img img {
  width: 400px;
}

#caption-art-experience {
  color: var(--brand-color-grey-neutral);
  width: 40%;
}

#caption-art-experience h1 {
  font-size: 2.3rem;
  font-weight: 300;
  margin: 0;
  position: relative;
}

#caption-art-experience h1::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 25%;
  height: 35px;
  background-image: url(../img/other-pattern.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#caption-art-experience .txt-bold {
  font-size: 1.2rem;
  font-weight: 400;
}

#caption-art-experience .txt-thin {
  font-size: 1.2rem;
  font-weight: 200 !important;
}

/* slide video  */
#slide-video-potrait {
  /* background-color: aqua; */
  padding: 35px 0 50px;
}

/* slide video  */
#slide-video-potrait-remake {
  /* background-color: aqua; */
  /* padding: 35px 0 50px; */
  /* min-height: 50vh; */
  /* width: 100%; */
}

#slide-video-potrait>div {
  padding: 0;
}

#video-potrait {}

#video-potrait .card-video-potrait {
  /* background-color: #eaeaea; */
  width: auto;
  position: relative;
  position: relative;
  left: -10px;
  margin-left: 0px !important;
  margin-right: 10px !important;
}

#video-potrait .card-video-potrait video {
  width: 30vw;
  position: relative;
  z-index: -1;
  aspect-ratio: 3/5;
}

#video-potrait .card-video-potrait .thumbnail,
#video-potrait .card-video-potrait .thumbnail::after {
  position: absolute;
  top: 0;
  bottom: 5px;
  left: 6px;
  right: 6px;
  margin: auto;
  /* background-image: var(--img); */
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

#video-potrait .card-video-potrait .thumbnail::after {
  content: "";
  bottom: 0px;
  background-image: none !important;
  background-color: #15151561 !important;
}

#video-potrait .card-video-potrait .thumbnail p {
  position: absolute;
  padding: 30px;

  width: 340px;
  font-family: var(--brand-font-1);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--color-white);
  z-index: 1;
}

.card-video-potrait.play .thumbnail,
.card-video-potrait.play .play-button {
  transition: 0.7s;
  opacity: 0;
}

.vid-reels.play .thumbnail,
.vid-reels.play .play-button {
  transition: 0.7s;
  opacity: 0;
}

/* Part::Video Landscape */
#video-landscape #video-wrapp {
  position: relative;
}

#video-landscape #video-wrapp .thumbnail {
  position: absolute;
  top: 0;
  bottom: 5px;
  left: 0;
  right: 0;
  margin: auto;
  background-image: var(--img);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: 0.4s;
  opacity: 1;
}

#video-landscape #video-wrapp.active .thumbnail {
  transition: 0.4s;
  opacity: 0;
}

#video-landscape #video-wrapp .thumbnail p {
  position: absolute;
  top: 100px;
  left: 70px;
  width: 370px;
  font-family: var(--brand-font-1);
  font-size: 1rem;
  font-weight: 400;
  color: var(--color-white);
  z-index: 999;
}

/* Part::Become-Member */
#member-wrapp {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#member-wrapp .caption {
  /* position: relative; */
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: 80px;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#member-wrapp .caption .text {
  font-family: var(--brand-font-1);
  font-size: 2.4rem;
  font-weight: 100;
  color: var(--brand-color-gold-primary);
}

#member-wrapp .caption .text-thin {
  font-family: var(--brand-font-1);
  font-size: 1.4rem;
  font-weight: 100;
  color: var(--brand-color-gold-primary);
}

#member-wrapp img {
  position: relative;
  width: 100%;
  height: auto;
  right: 0;
}

#member-wrapp a {
  margin-top: 10px;
  text-align: center;
  background-color: #947c46db;
  width: 180px;
  padding: 10px 40px;
  border-radius: 10px;

  text-decoration: none;
  color: var(--color-white);
  font-family: var(--brand-font-1);
  font-size: 0.8rem;
  text-transform: uppercase;
  transition: 0.4s;
  letter-spacing: 0.1rem;
}

#member-wrapp a:hover {
  transition: 0.4s;
  background-color: var(--brand-color-gold-primary);
  color: var(--color-white);
}

/* ------------------------------------------------------------------------------- */
/* Page::Meeting-Events */
.title-page-pattern {
  /* background-color: aqua; */
  position: relative;
}

.title-page-pattern span {
  font-family: var(--brand-font-1);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--brand-color-grey-neutral);
  /* position: relative; */
}

.title-page-pattern span::before {
  content: "";
  position: absolute;
  left: 20px;
  top: auto;
  height: 35px;
  bottom: 0;
  width: 130px;
  background-image: url(../img/other-pattern.png);
  background-size: cover;
}

.title-page-pattern span::after {
  content: "";
  position: absolute;
  right: 20px;
  top: auto;
  height: 35px;
  bottom: 0;
  width: 130px;
  background-image: url(../img/other-pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
}

/* Versi get best Deal in page meeting&events */
#slide-card-location-unit-deals {
  /* background-color: cornflowerblue; */
  position: relative;
}

#slide-card-location-unit-deals::after {
  content: "";
  position: absolute;
  background-image: url(../img/pattern.png);
  left: 50%;
  right: 0;
  top: 100px;
  height: 200px;
  opacity: 20%;
}

#slide-card-location-unit-deals .card-wrapp {
  /* background-color: crimson; */
}

#slide-card-location-unit-deals .card-location-unit {
  /* background-color: crimson; */
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0 0 100px 12vw;
}

#slide-card-location-unit-deals .card-location-unit .unit-content {
  position: relative;
  background-color: #f4f4f4;
  border-radius: 40px;
  width: 65vw;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

#slide-card-location-unit-deals .card-location-unit .unit-content .info-unit {
  /* background-color: aqua; */
  width: 60%;
  aspect-ratio: 1/1;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 3vw;
  padding: 0 60px;
}

#slide-card-location-unit-deals .card-location-unit .unit-content .info-unit a {
  background-color: aqua;
  padding: 10px 30px;
  position: absolute;
  bottom: -70px;
  margin: auto;
  font-family: var(--brand-font-1);
  font-size: 1.5rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  border-radius: 15px;
  border: 1px solid var(--brand-color-gold-primary);
  color: var(--brand-color-gold-primary);
  background-color: transparent;
}

#slide-card-location-unit-deals .card-location-unit .unit-content .info-unit a:hover {
  border: 1px solid var(--brand-color-gold-primary);
  color: var(--color-white);
  background-color: var(--brand-color-gold-primary);
}

#slide-card-location-unit-deals .card-location-unit .unit-content .img-hotel {
  /* background-color: var(--brand-color-gold-primary); */
  position: absolute;
  width: 30vw;
  bottom: -70px;
  right: -140px;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#slide-card-location-unit-deals .card-location-unit .unit-content .img-hotel img {
  /* width: 80%; */
}

#slide-card-location-unit-deals .card-location-unit .unit-content .img-hotel .address-unit {
  background-color: var(--brand-color-gold-primary);
  padding: 10px;
  font-family: var(--brand-font-1);
  font-weight: 200;
  font-size: 0.5rem;
  text-align: end;
  text-transform: capitalize;
  color: var(--color-white);
}

/* Part::Type-Room */
#type-room {
  position: relative;
}

#type-room::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  height: 200px;
  bottom: 0;
  background-image: url(../img/pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 20%;
}

#type-room::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: auto;
  height: 200px;
  bottom: 320px;
  background-image: url(../img/pattern.png);
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 20%;
  z-index: -1;
}

#type-room-wrapp {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 3vw 2vw;
  /* position: relative; */
}

#type-room-wrapp.slide-two-row {
  width: 70vw;
}

.card-type-room {
  max-width: 28vw;
  position: relative;
  padding: 0;
  /* border-radius: 10px; */
  overflow: hidden;
  margin-bottom: 10px;
}

.slide-two-row .card-type-room {
  max-width: 28vw;
  position: relative;
  padding: 0;
  /* border-radius: 10px; */
  overflow: hidden;
  margin-bottom: 10px;
}

.card-type-room.hide {
  width: 28vw;
  margin-bottom: 10px;
}

.card-type-room img {
  border-radius: 10px;
}

.card-type-room span {
  position: absolute;
  top: 10px;
  left: 0;
  padding: 3px 8px 3px 25px;
  font-size: 0.7rem;
  font-family: var(--brand-font-1);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--color-white);
  background-color: #15151581;
}

/* ----------------------------------------------------------------------------- */
/* ----------------------------------------------------------------------------- */
/* Important::Revisi Version */
/* Part Booking engine Form banner */
/* Select2 custom */
.select2-container--default .select2-selection--single {
  font-size: 1rem;
  border: none;
  background-color: transparent;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0px !important;
}

.select2-container--default .select2-results>.select2-results__options {
  /* max-height: unset; */
  max-height: 350px;
  border: 1px solid;
  margin-left: -1px;
  margin-right: -1px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: var(--brand-color-gold-primary);
  color: #fff;
}

.select2-dropdown {
  z-index: 2;
}

/* Part Menu */
#list-menu {
  width: 75vw;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
  justify-content: space-around;
  align-items: center;
  position: relative;
}

/* Part::Become-Member */
/* #member-wrapp {
  position: relative;
} */

.banner-top-slide {
  max-height: 60vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  overflow: hidden;
}

/* Part Footer */
.wrap-footer .wrap-nav .menu-footer {
  display: flex;
  gap: 4vw;
  width: 100%;
  flex-direction: row;
}

.wrap-footer .wrap-nav .menu-footer a,
.wrap-footer .wrap-nav .menu-footer li {
  text-decoration: none;
  font-family: var(--brand-font-1);
  font-weight: 300;
  font-size: 1rem !important;
  color: var(--brand-color-grey-neutral);
}

/* Modal Font theme */
.modal {
  font-family: var(--brand-font-1) !important;
}

.modal .modal-body,
.modal-header {
  font-family: var(--brand-font-1) !important;
}

.modal .modal-body p {
  font-size: 1rem;
}

.modal .modal-body span {
  color: var(--brand-color-grey-neutral);
  font-weight: 300;
}

.modal .btn-secondary {
  background-color: var(--brand-color-gold-primary) !important;
  font-family: var(--brand-font-1) !important;
}

.swal2-styled.swal2-confirm {
  font-family: var(--brand-font-1);
  background-color: var(--brand-color-gold-primary) !important;
}

/* Part::Video:home */
#video-wrapp-embed {
  /* aspect-ratio: 4/3; */
  margin-bottom: 50px;
}

#video-wrapp-embed iframe {
  height: auto;
  aspect-ratio: 16/9;
}

/* Part::Video:promotion */
#video-wrapp-embed-promotion {
  /* aspect-ratio: 4/3; */
  /* background-color: aqua; */
  padding: 0;
  aspect-ratio: 21/9;
  overflow: hidden;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

#video-wrapp-embed-promotion iframe {
  position: absolute;
  height: auto;
  aspect-ratio: 16/9;
  /* opacity: 30%; */
}

/* ----------------------------------------------------------------------------- */

/* ------------------------------------------------------------------------------ */
/* Responsive */
/* mobile */
@media screen and (max-width: 600px) {

  /* ------------------------------------- */
  /* Select2 custom */
  .select2-container--default .select2-selection--single {
    font-size: 0.8rem;
  }

  /* ------------------------------------- */
  /* Navbar Menu */
  #navbar.active,
  #navbar.onsidebar {
    transition: 0.5s;
    background: var(--color-white);
  }

  #navbar-wrapp {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 1vw;
    padding: 10px 30px;
    position: relative;
  }

  #list-menu {
    background-color: var(--color-white);
    height: 90vh;
    position: absolute;
    right: -75vw;
    top: 70px;
    width: 75vw;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: column;
    gap: 3vw;
    padding: 20px 30px 0;
    z-index: -1 !important;
    /* opacity: 0; */
    transition: 0.5s;
  }

  #navbar.onsidebar #list-menu {
    background-color: var(--color-white);
    height: 100vh;
    position: absolute;
    right: 0;
    top: 70px;
    width: 75vw;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: column;
    gap: 3vw;
    padding: 20px 30px 0;
    z-index: -1 !important;
    /* opacity: 100%; */
    transition: 0.5s;
  }

  #navbar.onsidebar #list-menu a {
    text-decoration: none;
    color: var(--brand-color-gold-primary);
    font-family: var(--brand-font-1);
    font-weight: 400;
    font-size: 1.1rem;
    text-transform: uppercase;
  }

  /* Part::Our-Hotels-Menu */
  .link-dropdown {
    padding-right: 20px;
  }

  i.dropdown {
    width: 25px;
    height: 20px;
    position: absolute;
    right: -24px;
    top: -2px;
  }

  i.dropdown::before {
    content: "";
    width: 10px;
    height: 1.8px;
    border-radius: 40px;
    background-color: var(--brand-color-grey-neutral);
    position: absolute;
    left: 0;
    transform: rotate(54deg) translate(10px, 1px);
    transition: 0.3s linear;
  }

  i.dropdown::after {
    content: "";
    width: 10px;
    height: 1.8px;
    border-radius: 40px;
    background-color: var(--brand-color-grey-neutral);
    position: absolute;
    right: 0;
    transform: rotate(-54deg) translate(-10px, 1px);
    transition: 0.3s linear;
  }

  #navbar.active i.dropdown::before,
  i.dropdown::after {
    background-color: var(--brand-color-grey-neutral);
  }

  /* get Hover */
  #navbar.active #list-menu .link-dropdown.menu-link.active::after {
    top: -50px;
    right: -60px;
    width: 50%;
    display: none;
  }

  #list-menu .link-dropdown:hover i.dropdown {
    /* background-color: aqua; */
  }

  /* ======================================  radli */

  #list-menu .link-dropdown:hover i.dropdown::before {
    transition: 0.3s linear;
    transform: rotate(54deg) translate(10px, 1px);
  }

  #list-menu .link-dropdown:hover i.dropdown::after {
    transition: 0.3s linear;
    transform: rotate(-54deg) translate(-10px, 1px);
  }

  #list-menu .link-dropdown.menu-link.active i.dropdown::before {
    transition: 0.3s linear;
    transform: rotate(-54deg) translate(-5px, 9.8px);
  }

  #list-menu .link-dropdown.menu-link.active i.dropdown::after {
    transition: 0.3s linear;
    transform: rotate(54deg) translate(5px, 9.8px);
  }

  /* #list-menu .link-dropdown:hover .wrapp-sub-link {
    transition: .3s ease-in-out;
    transform: translateY(0px) translateX(0px);
  } */

  #list-menu .link-dropdown.menu-link.active .wrapp-sub-link {
    display: flex;
    opacity: 1;
    gap: 3vw;
  }

  #navbar.active #list-menu .link-dropdown:hover .wrapp-sub-link {
    background-color: var(--color-white);
    /* box-shadow: 0 0 8px #15151545; */
    box-shadow: none;
  }

  #list-menu .link-dropdown .wrapp-sub-link {
    transition: 0.3s ease-in-out;
    position: relative !important;
    min-width: 190px;
    padding: 15px 15px;
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    transform: translateY(0px) translateX(0px);
    gap: 0.8vw;
    opacity: 0;
  }

  #list-menu .link-dropdown .wrapp-sub-link a.sub-link {
    transition: 0.3s linear;
    position: relative;
    font-size: 0.8rem !important;
    text-align: end;
    color: var(--brand-color-grey-neutral) !important;
  }

  #list-menu .link-dropdown .wrapp-sub-link a.sub-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: 70% !important;
    margin: auto;
    border-bottom: 2px solid var(--brand-color-grey-neutral) !important;
    transition: 0.3s linear;
    display: none;
  }

  #list-menu .link-dropdown .wrapp-sub-link a.sub-link:hover::after {
    transition: 0.3s linear;
    width: 50% !important;
    border-bottom: 2px solid var(--color-white) !important;
  }

  #navbar.active #list-menu .link-dropdown .wrapp-sub-link a.sub-link:hover::after {
    border-bottom: 2px solid var(--brand-color-grey-neutral) !important;
  }

  /* toggle-menu */
  #toggle-menu {
    background-color: var(--brand-color-gold-primary);
    width: 50px;
    height: 50px;
    padding: 12px;
    border-radius: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
  }

  #toggle-menu .toggle-line {
    background-color: var(--color-white);
    width: 100%;
    height: 4px;
    border-radius: 5px;
    transition: 0.5s;
  }

  /* #toggle-menu.active .toggle-line {} */

  #toggle-menu.active .line-1 {
    transform: rotate(45deg) translate(6.5px, 6px) scale(1.2);
  }

  #toggle-menu.active .line-2 {
    transform: scaleY(0);
    transition: 0.1s;
  }

  #toggle-menu.active .line-3 {
    transform: rotate(-45deg) translate(6.5px, -6px) scale(1.2);
  }

  /* Part::Banner */
  #banner-slide {
    /* background-color: aqua; */
  }

  /* ------------------------------------- */
  /* Commitment */
  #commitment-wrapp {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }

  #commitment-wrapp .hotel {
    width: auto;
  }

  h1.jdl-thin {
    padding: 40px 0;
    text-align: center;
  }

  #commitment-wrapp .description {
    width: auto;
    padding: 0 20px;
  }

  /* icon commit */
  .commitment-list {
    /* min-height: 200px; */
  }

  .commitment-list span {
    font-size: 0.7rem;
  }

  .commitment-list p {
    font-size: 0.4rem;
    width: 100%;
  }

  .commitment-list img {
    width: 60px;
  }

  /* -------------------------------------- */
  /* Part::Destination */
  #destination-banner {
    background-color: var(--brand-color-grey-neutral);
    position: relative;
    overflow: hidden;
  }

  #destination-banner .background-banner {
    padding: 0;
    overflow: hidden;
    position: absolute;
    z-index: 0;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    display: flex;
    justify-content: flex-start;
    align-items: center;
  }

  #destination-banner .background-banner img {
    width: auto;
    height: 100%;
  }

  #destination-banner::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background-image: linear-gradient(to right, #16161686, #ffffff1a);
    /* z-index: 2; */
  }

  #destination-wrapp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10vw 4vw;
    gap: 5vh;
    overflow: hidden;
    z-index: 1;
  }

  #destination-wrapp .caption {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    color: var(--color-white);
  }

  #destination-wrapp .caption .title-caption,
  #destination-wrapp .caption p {
    color: var(--color-white);
    font-family: var(--brand-font-1);
    font-size: 2rem;
  }

  #destination-wrapp .caption p {
    font-weight: 300;
    font-size: 0.9rem;
    margin: 0;
  }

  #destination-wrapp .slide-destination {
    aspect-ratio: auto;
    max-width: 100% !important;
    overflow: hidden;
  }

  /* Card Destination */
  #destination-wrapp .card-destination {
    border-radius: 0.9em;
    overflow: hidden;
    /* ----------- */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* ----------- */
    position: relative;
    box-shadow: none;
  }

  #destination-wrapp .card-destination .img-card img {
    width: 100%;
    height: auto;
    /* opacity: 50%; */
    /* filter: drop-shadow(5px 5px 5px #161616); */
  }

  #destination-wrapp .card-destination.end {
    display: none;
    width: 50px !important;
  }

  #destination-wrapp .card-destination.soon {
    justify-content: center;
    align-items: center;
  }

  #destination-wrapp .card-destination .nm-destination {
    font-family: var(--brand-font-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
    position: absolute;
    top: 3vw;
    left: 0;
    right: 0;
    margin: auto;
  }

  #destination-wrapp .card-destination .nm-destination .nm-city {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1rem;
    letter-spacing: 1.5px;
  }

  #destination-wrapp .card-destination .nm-destination .nm-province {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.35rem;
    letter-spacing: 1.5px;
  }

  /* ---------------------------------------------------------- */
  /* Slide Promotion */
  #slide-promotion-wrapp {
    padding: 0;
  }

  #slide-promotion-wrapp::before {
    padding: 0;
  }

  #slide-promotion {
    width: 100%;
  }

  .card-promotion-wrapp {
    margin-top: 85px;
    margin-bottom: 60px;
  }

  /* .card-promotion {
    background-image: var(--img);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 50vw !important;
    aspect-ratio: 4/5;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  } */
  .card-promotion {
    background-image: var(--img);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 50vw !important;
    /* aspect-ratio: 4/5; */
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .card-promotion.card-promo-dinam {
    width: 64vw !important;
  }

  .card-promotion.card-promo-dinam.vid-reels {
    width: 48vw !important;
    min-height: auto !important;
  }

  .card-promotion span {
    font-family: var(--brand-font-1);
    color: var(--color-white);
    font-weight: 900;
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    background-color: transparent;
    border: 2px solid var(--color-white);
    width: 80%;
    padding: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  /* ------------------------------------------------------ */
  /* Part::Location-Unit-Hotels */
  #location-hotels {
    margin-top: 50px;
    margin-bottom: 30px;
    /* background-color: aqua; */
  }

  #slide-location-wrapp {
    margin-top: 50px;
    padding: 0;
  }

  #slide-card-location-unit {
    /* background-color: cornflowerblue; */
  }

  #slide-card-location-unit .card-wrapp {
    /* background-color: cornflowerblue; */
  }

  #slide-card-location-unit .card-location-unit {
    /* background-color: crimson; */
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #slide-card-location-unit .card-location-unit .unit-content {
    position: relative;
    /* background-color: chocolate; */
    width: 90vw;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
  }

  #slide-card-location-unit .card-location-unit .unit-content .info-unit {
    border-radius: 20px;
    background-color: #f4f4f4;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 30px;
    gap: 15px;
  }

  .info-unit .nm-unit {
    width: 100%;
  }

  .info-unit .nm-unit h1 {
    font-weight: 200;
    font-size: 1.3rem;
    margin: 0;
  }

  .info-unit h1.city-unit {
    font-size: 1.6rem;
    font-weight: 300 !important;
  }

  .info-unit .description-unit {
    font-family: var(--brand-font-1);
    font-size: 0.8rem;
    font-weight: 200 !important;
    color: var(--brand-color-grey-neutral);
    width: 100%;
    text-align: justify;
    text-justify: inter-word;
  }

  .info-unit .frame-map {
    width: 100%;
  }

  .info-unit .btn-more {
    margin-top: 10px;
    max-width: 50vw;
    font-size: 0.7rem;
    padding: 20px 40px;
    border-radius: 10px;
  }

  #slide-card-location-unit .card-location-unit .unit-content .img-hotel {
    display: none !important;
    position: relative;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 100%;
    aspect-ratio: 1/1;
    background-color: aqua;
    /* display: flex; */
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
  }

  #slide-card-location-unit .card-location-unit .unit-content .img-hotel .img-hotel-wrapp {
    border-radius: 0px;
    overflow: hidden;
  }

  #slide-card-location-unit .card-location-unit .unit-content .img-hotel .img-hotel-wrapp .address-unit {
    display: none;
  }

  /* Part::Footer */
  .wrap-footer .wrap-nav {
    display: flex;
    margin-top: 2rem;
    border-right: 2px solid var(--brand-color-grey-neutral);
    padding: 40px 30px;
    flex-wrap: nowrap;
    font-family: var(--brand-font-1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .wrap-footer .wrap-nav .menu-footer {
    display: flex;
    flex-direction: row;
    width: 100%;
    gap: 4vw;
  }

  .wrap-footer .wrap-nav ul {
    padding: 0;
  }

  .wrap-footer .wrap-nav ul li.title-nav {
    font-size: 0.8rem;
  }

  .wrap-footer .wrap-nav ul li {
    font-size: 0.8rem;
  }

  .wrap-footer .wrap-nav .sosmed {
    width: 100%;
    font-size: 24px;
    margin-top: 0em;
    margin-bottom: 0em;
    font-weight: 700;
    color: var(--brand-color-grey-neutral);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* background-color: aqua; */
    gap: 3vw;
  }

  .wrap-footer .wrap-nav .sosmed span {
    font-size: 1rem;
    /* background-color: coral; */
    margin: 0;
  }

  .wrap-footer .wrap-nav .sosmed a {
    width: 40px;
    height: 40px;
    position: relative;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    /* box-sizing: border-box; */
    /* border: 1px solid var(--brand-color-gold-primary); */
  }

  .wrap-footer .wrap-nav li {
    list-style-type: none;
    padding-left: 0;
    font-family: var(--brand-font-1);
    color: var(--brand-color-grey-neutral);
    font-weight: 300;
    margin-bottom: 0.7em;
  }

  .wrap-footer .wrap-nav li.title-nav {
    font-weight: 700;
    font-size: 18px;
  }

  /* Form Newslatter */
  .wrap-footer .form-newsletter {
    margin-top: 0.7rem;
    padding-top: 0rem;
    color: var(--brand-color-grey-neutral);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5vw;
    padding: 0;
  }

  .wrap-footer .form-newsletter .logo {
    width: 250px;
  }

  .wrap-footer .form-newsletter form {
    margin-top: 1vw;
    color: var(--brand-color-grey-neutral);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    padding: 0 25px;
  }

  .wrap-footer .form-newsletter form .form {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    gap: 4vw !important;
  }

  .wrap-footer .form-newsletter form .form .btn-more {
    /* width: 45%; */
    padding: 25px 10px;
    font-size: 0.7rem;
  }

  /* copyright */
  .copyright {
    margin-top: 3em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: var(--brand-color-gold-primary);
    padding: 25px 0;
  }

  .copyright .title-copyright {
    font-family: var(--brand-font-1);
    margin: 1em 0.7em;
    text-decoration: none;
    color: var(--color-white);
    font-weight: 400;
    font-size: 11px;
    width: 100%;
    text-align: center;
  }

  .copyright .menu-dll {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 2vw;
  }

  .copyright a {
    font-family: var(--brand-font-1);
    margin: 1em 0.7em;
    text-decoration: none;
    color: var(--color-white);
    font-weight: 400;
    font-size: 11px;
  }

  #list-menu .link-dropdown {
    position: relative;
    text-align: right;
  }

  /* Page::Promotion */
  /* Part::Art-Exp */
  .wrap-art-exp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13vw;
  }

  .wrap-art-exp .art-img img {
    width: 350px;
  }

  #caption-art-experience {
    width: 90%;
  }

  #caption-art-experience h1 {
    font-size: 1.8rem;
  }

  #caption-art-experience h1::after {
    width: 23%;
    height: 28px;
  }

  #caption-art-experience .txt-bold {
    font-size: 1rem;
  }

  #caption-art-experience .txt-thin {
    font-size: 1.1rem;
  }

  /* Special Promotion */
  #special-promotion {
    margin-top: 0px;
  }

  /* Video Slide Potrait */
  /* slide video  */
  #slide-video-potrait {
    /* background-color: aqua; */
    padding: 0px 0 0px;
    position: relative;
  }

  #video-potrait-wrapp {
    top: 0;
    width: 100%;
    /* position: absolute; */
  }

  #video-potrait {
    /* background-color: coral !important; */
  }

  #video-potrait .card-video-potrait {
    /* background-color: #eaeaea; */
    width: auto;
    position: relative;
    left: 10px;
    margin-left: 0px !important;
    margin-right: 10px !important;
  }

  #video-potrait .card-video-potrait video {
    width: 250px;
    aspect-ratio: 3/5;
    position: relative;
    z-index: -1;
  }

  #video-potrait .card-video-potrait .thumbnail,
  #video-potrait .card-video-potrait .thumbnail::after {
    position: absolute;
    top: 0;
    bottom: 5px;
    left: 4px;
    right: 4px;
    margin: auto;
    /* background-image: var(--img); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  #video-potrait .card-video-potrait .thumbnail::after {
    content: "";
    bottom: 0px;
    background-image: none !important;
    background-color: #15151561 !important;
  }

  #video-potrait .card-video-potrait .thumbnail p {
    position: absolute;
    padding: 20px;
    width: 100%;
  }

  /* Part::Video Landscape */
  #video-landscape #video-wrapp {
    position: relative;
  }

  #video-landscape #video-wrapp .thumbnail {
    position: absolute;
    top: 0;
    bottom: 5px;
    left: 0;
    right: 0;
    margin: auto;
    background-image: var(--img);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.4s;
    opacity: 1;
  }

  #video-landscape #video-wrapp.active .thumbnail {
    transition: 0.4s;
    opacity: 0;
  }

  #video-landscape #video-wrapp .thumbnail p {
    position: absolute;
    top: auto;
    left: 0;
    bottom: -0px;
    margin: auto;
    width: 100%;
    padding: 20px;
    font-family: var(--brand-font-1);
    font-size: 0.7rem;
    font-weight: 400;
    z-index: 999;
    color: var(--color-white);
  }

  /* Potrait card slide promotion */
  #slide-promotion-potrait .card-promotion.potrait .caption-card {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    margin: auto;
    display: flex;
    flex-direction: column !important;
    min-height: 50px;
    /* background-color: aqua; */
  }

  #slide-promotion-potrait .card-promotion.potrait .caption-card span {
    width: 100%;
    border: none;
  }

  #slide-promotion-potrait .card-promotion.potrait .caption-card .title-promotion {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-color-gold-primary);
    text-align: center;
    letter-spacing: 1px;
  }

  #slide-promotion-potrait .card-promotion.potrait .caption-card .description-promotion {
    font-size: 0.6rem !important;
    font-weight: 200;
    color: var(--brand-color-grey-neutral);
    text-align: center;
    text-transform: lowercase;
    letter-spacing: 1px;
  }

  /* Part::Become-Member */
  #member-wrapp {
    width: 90%;
    border-left: 1px solid #d0cccd;
    border-right: 1px solid #d0cccd;
    justify-content: flex-end;
    overflow: hidden;
  }

  #member-wrapp .caption {
    left: 30px;
  }

  #member-wrapp .caption .text {
    font-size: 1rem;
  }

  #member-wrapp .caption .text-thin {
    font-size: 0.8rem;
  }

  #member-wrapp img {
    width: auto;
    height: 140px;
  }

  #member-wrapp a {
    margin-top: 7px;
    width: 140px;
    padding: 5px 20px;
    border-radius: 7px;
    font-size: 0.6rem;
  }

  /* ------------------------------------------------------------------------------- */
  /* Page::Meeting-Events */
  .title-page-pattern {
    padding: 0;
  }

  .title-page-pattern span {
    font-family: var(--brand-font-1);
    font-size: 1rem;
    font-weight: 400;
    color: var(--brand-color-grey-neutral);
    text-align: center;
    /* position: relative; */
  }

  .title-page-pattern span::before {
    left: 0px;
    top: 0;
    width: 25px;
  }

  .title-page-pattern span::after {
    right: 0px;
    top: 0;
    width: 25px;
  }

  /* Versi get best Deal in page meeting&events */
  #slide-card-location-unit-deals {
    /* background-color: cornflowerblue; */
    position: relative;
  }

  #slide-card-location-unit-deals::after {
    content: "";
    position: absolute;
    background-image: url(../img/pattern.png);
    left: 50%;
    right: 0;
    top: 100px;
    height: 160px;
    opacity: 20%;
  }

  #slide-card-location-unit-deals .card-wrapp {
    /* background-color: crimson; */
  }

  #slide-card-location-unit-deals .card-location-unit {
    /* background-color: crimson; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 20px;
  }

  #slide-card-location-unit-deals .card-location-unit .unit-content {
    position: relative;
    background-color: #f4f4f4;
    border-radius: 0px;
    width: 100vw;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  #slide-card-location-unit-deals .card-location-unit .unit-content .info-unit {
    /* background-color: aqua; */
    width: 100%;
    aspect-ratio: 3/4;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3vw;
    padding: 0 30px;
  }

  #slide-card-location-unit-deals .card-location-unit .unit-content .info-unit a {
    background-color: aqua;
    padding: 10px 30px;
    position: absolute;
    bottom: 20px;
    margin: auto;
    font-family: var(--brand-font-1);
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    border: 1px solid var(--brand-color-gold-primary);
    color: var(--brand-color-gold-primary);
    background-color: transparent;
  }

  #slide-card-location-unit-deals .card-location-unit .unit-content .info-unit a:hover {
    border: 1px solid var(--brand-color-gold-primary);
    color: var(--color-white);
    background-color: var(--brand-color-gold-primary);
  }

  #slide-card-location-unit-deals .card-location-unit .unit-content .img-hotel {
    display: none;
    /* background-color: var(--brand-color-gold-primary);
    position: absolute;
    width: 35vw;
    bottom: -70px;
    right: -140px;
    border-radius: 20px;
    overflow: hidden; */
  }

  #slide-card-location-unit-deals .card-location-unit .unit-content .img-hotel .address-unit {
    background-color: var(--brand-color-gold-primary);
    padding: 10px;
    font-family: var(--brand-font-1);
    font-weight: 200;
    font-size: 0.5rem;
    text-align: end;
    text-transform: capitalize;
    color: var(--color-white);
  }

  /* Part::Type-Room */
  #type-room {
    position: relative;
    padding: 0;
  }

  #type-room::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    height: 150px;
  }

  #type-room::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    height: 100px;
    bottom: 290px;
    background-image: url(../img/pattern.png);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 20%;
    z-index: -1;
  }

  #type-room-wrapp {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1vw 2vw;
    padding: 0;
    /* position: relative; */
  }

  #type-room-wrapp.slide-two-row {
    width: 100vw;
    margin-left: 5vw;
  }

  .card-type-room {
    max-width: 40vw;
    position: relative;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
  }

  .card-type-room.hide {
    width: 40vw;
  }

  .card-type-room img {
    border-radius: 10px;
  }

  .card-type-room span {
    position: absolute;
    top: 10px;
    left: 0;
    padding: 3px 8px 3px 25px;
    font-size: 0.7rem;
    font-family: var(--brand-font-1);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-white);
    background-color: #15151581;
  }
}

/* tablet */
@media screen and (min-width: 600px) and (max-width: 991px) {

  /* ------------------------------------- */
  /* Select2 custom */
  .select2-container--default .select2-selection--single {
    font-size: 0.8rem;
  }

  /* ------------------------------------- */
  /* Navbar Menu */
  #navbar.active,
  #navbar.onsidebar {
    transition: 0.5s;
    background: var(--color-white);
  }

  #navbar-wrapp {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    gap: 1vw;
    padding: 15px 30px;
    position: relative;
  }

  #list-menu {
    background-color: var(--color-white);
    height: 90vh;
    position: absolute;
    right: -75vw;
    top: 80px;
    width: 75vw;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: column;
    gap: 3vw;
    padding: 20px 30px 0;
    z-index: -1 !important;
    /* opacity: 0; */
    transition: 0.5s;
  }

  #navbar.onsidebar #list-menu {
    background-color: var(--color-white);
    height: 100vh;
    position: absolute;
    right: 0;
    top: 80px;
    width: 75vw;
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-end;
    flex-direction: column;
    gap: 3vw;
    padding: 20px 30px 0;
    z-index: -1 !important;
    /* opacity: 100%; */
    transition: 0.5s;
  }

  #navbar.onsidebar #list-menu a {
    text-decoration: none;
    color: var(--brand-color-gold-primary);
    font-family: var(--brand-font-1);
    font-weight: 400;
    font-size: 1.1rem;
    text-transform: uppercase;
  }

  /* Part::Our-Hotels-Menu */
  .link-dropdown {
    padding-right: 20px;
    text-align: right !important;
  }

  i.dropdown {
    width: 25px;
    height: 20px;
    position: absolute;
    right: -25px;
    top: -2px;
  }

  i.dropdown::before {
    content: "";
    width: 10px;
    height: 1.8px;
    border-radius: 40px;
    background-color: var(--brand-color-gold-primary);
    position: absolute;
    left: 0;
    transform: rotate(54deg) translate(10px, 1px);
    transition: 0.3s linear;
  }

  i.dropdown::after {
    content: "";
    width: 10px;
    height: 1.8px;
    border-radius: 40px;
    background-color: var(--brand-color-gold-primary);
    position: absolute;
    right: 0;
    transform: rotate(-54deg) translate(-10px, 1px);
    transition: 0.3s linear;
  }

  #navbar.active i.dropdown::before,
  i.dropdown::after {
    background-color: var(--brand-color-gold-primary);
  }

  /* get Hover */
  #navbar.active #list-menu .link-dropdown.menu-link.active::after {
    top: -50px;
    right: -60px;
    width: 50%;
    display: none;
  }

  #list-menu .link-dropdown:hover i.dropdown {
    /* background-color: aqua; */
  }

  /* ======================================  radli */

  #list-menu .link-dropdown:hover i.dropdown::before {
    transition: 0.3s linear;
    transform: rotate(54deg) translate(10px, 1px);
  }

  #list-menu .link-dropdown:hover i.dropdown::after {
    transition: 0.3s linear;
    transform: rotate(-54deg) translate(-10px, 1px);
  }

  #list-menu .link-dropdown.menu-link.active i.dropdown::before {
    transition: 0.3s linear;
    transform: rotate(-54deg) translate(-5px, 9.8px);
  }

  #list-menu .link-dropdown.menu-link.active i.dropdown::after {
    transition: 0.3s linear;
    transform: rotate(54deg) translate(5px, 9.8px);
  }

  /* #list-menu .link-dropdown:hover .wrapp-sub-link {
    transition: .3s ease-in-out;
    transform: translateY(0px) translateX(0px);
  } */

  #list-menu .link-dropdown.menu-link.active .wrapp-sub-link {
    display: flex;
    opacity: 1;
    gap: 3vw;
  }

  #navbar.active #list-menu .link-dropdown:hover .wrapp-sub-link {
    background-color: var(--color-white);
    /* box-shadow: 0 0 8px #15151545; */
    box-shadow: none;
  }

  #list-menu .link-dropdown .wrapp-sub-link {
    transition: 0.3s ease-in-out;
    position: relative !important;
    min-width: 190px;
    padding: 15px 15px;
    display: none;
    flex-direction: column;
    flex-wrap: nowrap;
    transform: translateY(0px) translateX(0px);
    gap: 0.8vw;
    opacity: 0;
  }

  #list-menu .link-dropdown .wrapp-sub-link a.sub-link {
    transition: 0.3s linear;
    position: relative;
    font-size: 0.8rem !important;
    text-align: end;
    color: var(--brand-color-grey-neutral) !important;
  }

  #list-menu .link-dropdown .wrapp-sub-link a.sub-link:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: auto;
    right: 0;
    width: 70% !important;
    margin: auto;
    border-bottom: 2px solid var(--brand-color-grey-neutral) !important;
    transition: 0.3s linear;
    display: none;
  }

  #list-menu .link-dropdown .wrapp-sub-link a.sub-link:hover::after {
    transition: 0.3s linear;
    width: 50% !important;
    border-bottom: 2px solid var(--color-white) !important;
  }

  #navbar.active #list-menu .link-dropdown .wrapp-sub-link a.sub-link:hover::after {
    border-bottom: 2px solid var(--brand-color-grey-neutral) !important;
  }

  /* toggle-menu */
  #toggle-menu {
    background-color: var(--brand-color-gold-primary);
    width: 50px;
    height: 50px;
    padding: 12px;
    border-radius: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    cursor: pointer;
  }

  #toggle-menu .toggle-line {
    background-color: var(--color-white);
    width: 100%;
    height: 4px;
    border-radius: 5px;
    transition: 0.5s;
  }

  /* #toggle-menu.active .toggle-line {} */

  #toggle-menu.active .line-1 {
    transform: rotate(45deg) translate(6.5px, 6px) scale(1.2);
  }

  #toggle-menu.active .line-2 {
    transform: scaleY(0);
    transition: 0.1s;
  }

  #toggle-menu.active .line-3 {
    transform: rotate(-45deg) translate(6.5px, -6px) scale(1.2);
  }

  /* ------------------------------------- */
  /* Commitment */
  #commitment-wrapp {
    flex-direction: column;
    align-items: center;
    padding: 0 10px;
  }

  #commitment-wrapp .hotel {
    width: auto;
  }

  h1.jdl-thin {
    padding: 40px 0;
    text-align: center;
  }

  #commitment-wrapp .description {
    width: auto;
    padding: 0 20px;
  }

  /* icon commit */
  .commitment-list {
    min-height: 200px;
  }

  .commitment-list span {
    font-size: 0.9rem;
  }

  .commitment-list p {
    font-size: 0.6rem;
    width: 90%;
  }

  .commitment-list img {
    width: 85px;
  }

  /* Part::Destination */
  #destination-banner {
    position: relative;
    overflow: hidden;
  }

  #destination-banner .background-banner {
    padding: 0;
    position: absolute;
    z-index: 0;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  #destination-banner .background-banner img {
    width: auto;
    height: 100%;
  }

  #destination-wrapp {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0;
    /* background-color: coral; */
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10vw 3vw 8vw;
    gap: 1vw;
    overflow: hidden;
    z-index: 1;
  }

  #destination-wrapp .caption {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    width: 47vw;
    color: var(--color-white);
    /* background-color: aqua; */
  }

  #destination-wrapp .caption .title-caption,
  #destination-wrapp .caption p {
    color: var(--color-white);
    font-family: var(--brand-font-1);
    font-size: 1.3rem;
  }

  #destination-wrapp .caption p {
    font-weight: 300;
    font-size: 0.6rem;
    margin: 0;
  }

  #destination-wrapp .slide-destination {
    aspect-ratio: 4 / 2;
    max-width: 45vw;
  }

  /* Card Destination */
  #destination-wrapp .card-destination {
    border-radius: 0.8em;
    overflow: hidden;
    /* ----------- */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /* ----------- */
    position: relative;
    /* box-shadow: 5px 5px 10px #16161677; */
  }

  /* #destination-wrapp .card-destination .img-card{
} */

  #destination-wrapp .card-destination .nm-destination {
    font-family: var(--brand-font-1);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--color-white);
    position: absolute;
    top: 2vw;
    left: 0;
    right: 0;
    margin: auto;
  }

  #destination-wrapp .card-destination .nm-destination .nm-city {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
  }

  #destination-wrapp .card-destination .nm-destination .nm-province {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.3rem;
    letter-spacing: 1.5px;
  }

  #destination-wrapp .card-destination .caption-destination {
    font-weight: 300;
    font-size: 0.5rem;
    margin: 0;
    text-align: start;
    color: var(--color-white);
  }

  /* ---------------------------------------------------------- */
  /* Slide Promotion */
  #slide-promotion-wrapp {
    padding: 0;
  }

  #slide-promotion {
    width: 100%;
  }

  .card-promotion-wrapp {
    margin-top: 85px;
    margin-bottom: 60px;
  }

  .card-promotion {
    background-image: var(--img);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    width: 50vw !important;
    /* aspect-ratio: 4 / 5; */
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .card-promotion.card-promo-dinam {
    width: 64vw !important;
  }

  .card-promotion.card-promo-dinam.vid-reels {
    width: 30vw !important;
    min-height: auto !important;
  }

  .card-promotion span {
    font-family: var(--brand-font-1);
    color: var(--color-white);
    font-weight: 900;
    font-size: 1.3rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    background-color: transparent;
    border: 2px solid var(--color-white);
    width: 80%;
    padding: 3px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* ------------------------------------------------------ */
  /* Part::Location-Unit-Hotels */
  #location-hotels {
    margin-top: 50px;
    margin-bottom: 30px;
  }

  #slide-location-wrapp {
    margin-top: 20px;
  }

  #slide-card-location-unit {
    /* background-color: cornflowerblue; */
    padding: 25px;
  }

  #slide-card-location-unit .card-wrapp {
    /* background-color: coral; */
  }

  #slide-card-location-unit .card-location-unit {
    /* background-color: crimson; */
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  #slide-card-location-unit .card-location-unit .unit-content {
    position: relative;
    width: 100vw;
    display: flex;
    justify-content: space-between;
    align-items: space-between;
    flex-direction: row;
  }

  #slide-card-location-unit .card-location-unit .unit-content .info-unit {
    border-radius: 20px !important;
    /* background-color: coral; */
    width: 70%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 100px 30px 30px;
    gap: 15px;
  }

  .info-unit .nm-unit {
    width: 100%;
  }

  .info-unit .nm-unit h1 {
    font-weight: 200;
    font-size: 1.1rem;
    margin: 0;
  }

  .info-unit h1.city-unit {
    font-size: 1.5rem;
    font-weight: 300 !important;
  }

  .info-unit .description-unit {
    font-family: var(--brand-font-1);
    font-size: 0.7rem;
    font-weight: 200 !important;
    color: var(--brand-color-grey-neutral);
    width: 100%;
  }

  .info-unit .frame-map {
    width: 100%;
  }

  .info-unit .btn-more {
    margin-top: 10px;
    max-width: 25vw;
    font-size: 0.7rem;
    padding: 15px 30px;
    border-radius: 10px;
  }

  #slide-card-location-unit .card-location-unit .unit-content .img-hotel {
    position: absolute;
    right: 0vw;
    top: 0;
    bottom: 0;
    margin: auto;
    width: 40vw;
    aspect-ratio: 1/1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-radius: 20px;
  }

  #slide-card-location-unit .card-location-unit .unit-content .img-hotel .img-hotel-wrapp {
    position: absolute;
    border-radius: 20px;
    overflow: hidden;
  }

  #slide-card-location-unit .card-location-unit .unit-content .img-hotel .img-hotel-wrapp .address-unit {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    z-index: 1;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 13px 10px;
  }

  #slide-card-location-unit .card-location-unit .unit-content .img-hotel .img-hotel-wrapp .address-unit span {
    font-size: 0.45rem;
    padding: 0;
    line-height: 10px;
  }

  /* Part::Footer */
  .wrap-footer .wrap-nav {
    display: flex;
    margin-top: 2rem;
    border-right: 2px solid var(--brand-color-grey-neutral);
    padding: 40px 30px;
    flex-wrap: nowrap;
    font-family: var(--brand-font-1);
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .wrap-footer .wrap-nav .menu-footer {
    display: flex;
    width: 100%;
  }

  .wrap-footer .wrap-nav ul {
    width: 33%;
    padding: 0;
  }

  .wrap-footer .wrap-nav .sosmed {
    width: 100%;
    font-size: 24px;
    margin-top: 2.5em;
    margin-bottom: 1em;
    font-weight: 700;
    color: var(--brand-color-grey-neutral);
    display: flex;
    align-items: center;
  }

  .wrap-footer .wrap-nav .sosmed span {
    margin-right: 2.5em;
    font-size: 1.2rem;
  }

  .wrap-footer .wrap-nav .sosmed a {
    width: 30px;
    height: 30px;
    margin-right: 0.5em;
    position: relative;
  }

  .wrap-footer .wrap-nav .sosmed a img {}

  .wrap-footer .wrap-nav li {
    list-style-type: none;
    padding-left: 0;
    font-family: var(--brand-font-1);
    color: var(--brand-color-grey-neutral);
    font-weight: 300;
    margin-bottom: 0.7em;
  }

  .wrap-footer .wrap-nav li.title-nav {
    font-weight: 700;
    font-size: 18px;
  }

  /* Page::Promotion */
  /* Part::Art-Exp */
  .wrap-art-exp {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 13vw;
  }

  .wrap-art-exp .art-img img {
    width: 350px;
  }

  #caption-art-experience {
    width: 90%;
  }

  #caption-art-experience h1 {
    font-size: 1.8rem;
  }

  #caption-art-experience h1::after {
    width: 23%;
    height: 28px;
  }

  #caption-art-experience .txt-bold {
    font-size: 1rem;
  }

  #caption-art-experience .txt-thin {
    font-size: 1.1rem;
  }

  /* Special Promotion */
  #special-promotion {
    margin-top: 0px;
  }

  /* Video Slide Potrait */
  /* slide video  */
  #slide-video-potrait {
    /* background-color: aqua; */
    padding: 0px 0 0px;
    position: relative;
  }

  #video-potrait-wrapp {
    top: 0;
    width: 100%;
    /* position: absolute; */
  }

  #video-potrait {
    /* background-color: coral !important; */
  }

  #video-potrait .card-video-potrait {
    /* background-color: #eaeaea; */
    width: auto;
    position: relative;
    left: 10px;
    margin-left: 0px !important;
    margin-right: 10px !important;
  }

  #video-potrait .card-video-potrait video {
    width: 250px;
    aspect-ratio: 3/5;
    position: relative;
    z-index: -1;
  }

  #video-potrait .card-video-potrait .thumbnail,
  #video-potrait .card-video-potrait .thumbnail::after {
    position: absolute;
    top: 0;
    bottom: 5px;
    left: 4px;
    right: 4px;
    margin: auto;
    /* background-image: var(--img); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
  }

  #video-potrait .card-video-potrait .thumbnail::after {
    content: "";
    bottom: 0px;
    background-image: none !important;
    background-color: #15151561 !important;
  }

  #video-potrait .card-video-potrait .thumbnail p {
    position: absolute;
    padding: 20px;
    width: 100%;
  }

  /* Part::Video Landscape */
  #video-landscape #video-wrapp {
    position: relative;
  }

  #video-landscape #video-wrapp .thumbnail {
    position: absolute;
    top: 0;
    bottom: 5px;
    left: 0;
    right: 0;
    margin: auto;
    background-image: var(--img);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    transition: 0.4s;
    opacity: 1;
  }

  #video-landscape #video-wrapp.active .thumbnail {
    transition: 0.4s;
    opacity: 0;
  }

  #video-landscape #video-wrapp .thumbnail p {
    position: absolute;
    top: auto;
    left: 0;
    bottom: -0px;
    margin: auto;
    width: 100%;
    padding: 20px;
    font-family: var(--brand-font-1);
    font-size: 0.7rem;
    font-weight: 400;
    z-index: 999;
    color: var(--color-white);
  }

  /* Potrait card slide promotion */
  #slide-promotion-potrait .card-promotion.potrait .caption-card {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -60px;
    margin: auto;
    display: flex;
    flex-direction: column !important;
    min-height: 50px;
    /* background-color: aqua; */
  }

  #slide-promotion-potrait .card-promotion.potrait .caption-card span {
    width: 100%;
    border: none;
  }

  #slide-promotion-potrait .card-promotion.potrait .caption-card .title-promotion {
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--brand-color-gold-primary);
    text-align: center;
    letter-spacing: 1px;
  }

  #slide-promotion-potrait .card-promotion.potrait .caption-card .description-promotion {
    font-size: 0.6rem;
    font-weight: 200;
    color: var(--brand-color-grey-neutral);
    text-align: center;
    text-transform: lowercase;
    letter-spacing: 1px;
  }

  /* Part::Become-Member */
  #member-wrapp {
    width: 90%;
    border-right: 1px solid #d0cccd;
    justify-content: flex-end;
    overflow: hidden;
  }

  #member-wrapp .caption {
    left: 30px;
  }

  #member-wrapp .caption .text {
    font-size: 1.4rem;
  }

  #member-wrapp .caption .text-thin {
    font-size: 1rem;
  }

  #member-wrapp img {
    width: 100%;
  }

  #member-wrapp a {
    margin-top: 7px;
    width: 140px;
    padding: 5px 20px;
    border-radius: 7px;
    font-size: 0.6rem;
  }

  /* ------------------------------------------------------------------------------- */
  /* Page::Meeting-Events */
  .title-page-pattern {
    padding: 0;
  }

  .title-page-pattern span {
    font-family: var(--brand-font-1);
    font-size: 1rem;
    font-weight: 400;
    color: var(--brand-color-grey-neutral);
    text-align: center;
    /* position: relative; */
  }

  .title-page-pattern span::before {
    left: 0px;
    top: 0;
    width: 50px;
  }

  .title-page-pattern span::after {
    right: 0px;
    top: 0;
    width: 50px;
  }

  /* Versi get best Deal in page meeting&events */
  #slide-card-location-unit-deals {
    /* background-color: cornflowerblue; */
    position: relative;
  }

  #slide-card-location-unit-deals::after {
    content: "";
    position: absolute;
    background-image: url(../img/pattern.png);
    left: 50%;
    right: 0;
    top: 100px;
    height: 160px;
    opacity: 20%;
  }

  #slide-card-location-unit-deals .card-wrapp {
    /* background-color: crimson; */
  }

  #slide-card-location-unit-deals .card-location-unit {
    /* background-color: crimson; */
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 20px 20px 20px 10vw;
  }

  #slide-card-location-unit-deals .card-location-unit .unit-content {
    position: relative;
    background-color: #f4f4f4;
    border-radius: 40px;
    width: 60vw;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }

  #slide-card-location-unit-deals .card-location-unit .unit-content .info-unit {
    /* background-color: aqua; */
    width: 80%;
    aspect-ratio: 1/1;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 3vw;
    padding: 0 30px;
  }

  #slide-card-location-unit-deals .card-location-unit .unit-content .info-unit a {
    /* background-color: aqua; */
    padding: 10px 30px;
    position: absolute;
    bottom: 20px;
    margin: auto;
    font-family: var(--brand-font-1);
    font-size: 1rem;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    border-radius: 15px;
    border: 1px solid var(--brand-color-gold-primary);
    color: var(--brand-color-gold-primary);
    background-color: transparent;
  }

  #slide-card-location-unit-deals .card-location-unit .unit-content .info-unit a:hover {
    border: 1px solid var(--brand-color-gold-primary);
    color: var(--color-white);
    background-color: var(--brand-color-gold-primary);
  }

  #slide-card-location-unit-deals .card-location-unit .unit-content .img-hotel {
    /* display: none; */
    background-color: var(--brand-color-gold-primary);
    position: absolute;
    width: 35vw;
    top: 25px;
    bottom: auto;
    right: -200px;
    border-radius: 20px;
    overflow: hidden;
  }

  #slide-card-location-unit-deals .card-location-unit .unit-content .img-hotel .address-unit {
    background-color: var(--brand-color-gold-primary);
    padding: 10px;
    font-family: var(--brand-font-1);
    font-weight: 200;
    font-size: 0.5rem;
    text-align: end;
    text-transform: capitalize;
    color: var(--color-white);
  }

  /* Part::Type-Room */
  #type-room {
    position: relative;
    padding: 0;
  }

  #type-room::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50px;
    height: 150px;
  }

  #type-room::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: auto;
    height: 100px;
    bottom: 290px;
    background-image: url(../img/pattern.png);
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 20%;
    z-index: -1;
  }

  #type-room-wrapp {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 1vw 2vw;
    padding: 0;
    /* position: relative; */
    /* background-color: aqua; */
  }

  #type-room-wrapp.slide-two-row {
    width: 70vw;
    margin-left: 7vw;
  }

  .card-type-room {
    max-width: 30vw;
    position: relative;
    padding: 0;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
  }

  .card-type-room.hide {
    width: 30vw;
  }

  .card-type-room img {
    border-radius: 10px;
  }

  .card-type-room span {
    position: absolute;
    top: 10px;
    left: 0;
    padding: 3px 8px 3px 25px;
    font-size: 0.7rem;
    font-family: var(--brand-font-1);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--color-white);
    background-color: #15151581;
  }
}

/* End::Tablet */

/* Part::WA-Floating */
#id-wa {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 9999;
}

/* Part::Loading */
/* Loading Screen */
.my-modal-window {
  position: fixed;
  background-color: rgba(100, 100, 100, 0.8);
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* height: 100vh; */
  /* width: 100%; */
  /* overflow: hidden; */
  z-index: 9999;
  display: none;
  text-align: center;
  color: white;
}

.my-modal-content {
  /* width: 400px; */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* padding: 2em; */
  /* background: white; */
}

.loader {
  /* border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #93783F; */

  background-image: url("../img/logo/logo-fugo-half-1.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  width: 80px;
  height: 80px;
  /* -webkit-animation: spin 2s linear infinite; / / Safari */
  /* animation: spin 2s linear infinite; */
  animation: mirrorflip 4s 0s linear infinite;
}

@keyframes mirrorflip {
  0% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
  }

  50% {
    transform: scale(-1, 1);
    -webkit-transform: scale(-1, 1);
    -moz-transform: scale(-1, 1);
    -o-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
  }

  100% {
    transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
  }
}

/* Animate rolling */
@keyframes animateSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Pop Up Promotion */
h1.popup-promotions {
  font-size: 1.3rem;
  font-weight: bold;
}

h1.title-popup-promotions {
  font-size: 1.2rem;
  font-weight: bold;
}

p.description-popup-promotions {
  font-size: 1rem;
  font-family: var(--brand-font-1);
  font-weight: 400;
  color: var(--brand-color-grey-neutral);
}

a.btn.promotion {
  background-color: var(--brand-color-gold-primary) !important;
  color: var(--color-white);
}

/* ------------------------------------- */
/* BEGIN Cookies dan Cookies Preferences */

/* Cookie Policy */
h1.cookie-policy {
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: none;
}

a.cookie-policy {
  color: var(--brand-color-gold-primary);
  text-decoration: none;
}

a.cookie-policy-detail {
  color: var(--brand-color-gold-secondary);
  text-decoration: underline;
}

p.description-cookie-policy {
  font-size: 1rem;
  font-family: var(--brand-font-1);
  font-weight: 400;
  color: var(--brand-color-grey-neutral);
  text-align: justify;
}

/*  Cookies Preferences */
h1.cookies-preferences {
  font-size: 1.3rem;
  font-weight: bold;
  text-transform: none;
}

a.cookies-preferences {
  color: var(--brand-color-gold-primary);
  text-decoration: none;
}

p.description-cookies-preferences {
  font-size: 1rem;
  font-family: var(--brand-font-1);
  font-weight: 400;
  color: var(--brand-color-grey-neutral);
  text-align: justify;
}

label.cookies-preferences {
  font-size: 1rem;
  font-family: var(--brand-font-1);
  font-weight: 400;
}

div.cookies-preferences {
  font-size: 1rem;
  font-family: var(--brand-font-1);
  font-weight: 400;
  color: var(--brand-color-grey-neutral);
  text-align: justify;
}

button.btn-cookies.active {
  font-size: 1rem;
  font-family: var(--brand-font-1);
  font-weight: 400;
}

button.btn-cookies {
  padding: 10px 20px;
  border-radius: 10px;
}

button.btn-cookies.active {
  font-size: 1rem;
  font-family: var(--brand-font-1);
  font-weight: 400;
  transition: 3s;
  position: relative;
  background-color: var(--brand-color-gold-primary) !important;
  color: var(--color-white);
  border: 1px solid var(--brand-color-gold-primary);
  /*  width: 40%; */
}

button.btn-cookies.secondary {
  font-size: 1rem;
  font-family: var(--brand-font-1);
  font-weight: 400;
  background-color: var(--color-white);
  color: var(--brand-color-gold-primary);
  border: 1px solid var(--brand-color-gold-primary);
}

button.btn-cookies.secondary:hover~.btn-cookies.active {
  background-color: var(--color-white) !important;
  color: var(--brand-color-gold-primary) !important;
  border: 1px solid var(--brand-color-gold-primary);
}

button.btn-cookies.secondary:hover {
  background-color: var(--brand-color-gold-primary) !important;
  color: var(--color-white);
  border: 1px solid var(--brand-color-gold-primary);
}

#accordionExample .accordion-button:hover label.cookies-preferences,
#accordionExample .accordion-button:focus label.cookies-preferences {
  color: #fff;
}

body.modal-open {
  height: 100vh;
  overflow-y: hidden;
}

.accordion-button:not(.collapsed) {
  color: orange !important;
  /*  background-color: #5500C9 !important; */
}

.accordion-button:link,
.accordion-button:visited,
.accordion-button:hover,
.accordion-button:active,
.accordion-button:focus {
  background-color: var(--brand-color-gold-primary) !important;
  color: #fff !important;
  text-decoration: none !important;
  border: hidden !important;
  border-color: #fff !important;
  box-shadow: 0px !important;
}

.accordion-button:focus {
  z-index: 3;
  border-color: #fff !important;
  outline: 0;
  box-shadow: 0 0 0 0.25rem #fff !important;
}

:root label.checkbox-bootstrap input[type="checkbox"] {
  /* hide original check box */
  opacity: 0;
  position: absolute;
  /* find the nearest span with checkbox-placeholder class and draw custom checkbox */
  /* draw checkmark before the span placeholder when original hidden input is checked */
  /* disabled checkbox style */
  /* disabled and checked checkbox style */
  /* when the checkbox is focused with tab key show dots arround */
}

:root label.checkbox-bootstrap input[type="checkbox"]+span.checkbox-placeholder {
  width: 14px;
  height: 14px;
  border: 1px solid;
  border-radius: 3px;
  /*checkbox border color*/
  border-color: #737373;
  display: inline-block;
  cursor: pointer;
  margin: 0 7px 0 -20px;
  vertical-align: middle;
  text-align: center;
}

:root label.checkbox-bootstrap input[type="checkbox"]:checked+span.checkbox-placeholder {
  background: var(--brand-color-brown-secondary);
  color: white;
}

:root label.checkbox-bootstrap input[type="checkbox"]:checked+span.checkbox-placeholder:before {
  display: inline-block;
  position: relative;
  vertical-align: text-top;
  width: 5px;
  height: 9px;
  /*checkmark arrow color*/
  border: solid white;
  border-width: 0 2px 2px 0;
  /*can be done with post css autoprefixer*/
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  content: "";
}

:root label.checkbox-bootstrap input[type="checkbox"]:disabled+span.checkbox-placeholder {
  background: #ececec;
  border-color: #c3c2c2;
}

:root label.checkbox-bootstrap input[type="checkbox"]:checked:disabled+span.checkbox-placeholder {
  background: #d6d6d6;
  border-color: #bdbdbd;
}

:root label.checkbox-bootstrap input[type="checkbox"]:focus:not(:hover)+span.checkbox-placeholder {
  outline: 1px dotted black;
}

:root label.checkbox-bootstrap.checkbox-lg input[type="checkbox"]+span.checkbox-placeholder {
  width: 26px;
  height: 26px;
  border: 2px solid;
  border-radius: 5px;
  /*checkbox border color*/
  border-color: #737373;
}

:root label.checkbox-bootstrap.checkbox-lg input[type="checkbox"]:checked+span.checkbox-placeholder:before {
  width: 9px;
  height: 15px;
  /*checkmark arrow color*/
  border: solid white;
  border-width: 0 3px 3px 0;
  color: blue;
}

.table-cookies {
  border: 1px solid var(--brand-color-gold-primary);
}

.table-cookies td,
.table-cookies th {
  padding: 10px;
}

.table-header-cookies {
  color: rgb(255, 255, 255);
  background: var(--brand-color-gold-primary);
  font-family: var(--brand-font-1);
}

.table-detail-cookies {
  color: rgb(48, 48, 48);
  background: rgb(255, 255, 255);
  font-family: var(--brand-font-1);
}

/* END Cookies dan Cookies Preferences  */
/* ------------------------------------- */
/* Privilege Club::Page */
.title-account {
  display: flex;
  flex-direction: row;
  padding-top: 2rem;
  flex-wrap: nowrap;
}

.title-account .title-txt {
  display: flex;
  flex-direction: row;
  justify-content: start;
  padding: 0;
  flex-wrap: wrap;
}

.point {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.point #name {
  color: #5c5c5c;
  font-weight: 600;
  font-size: 1.2rem;
}

.point .box-point {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  background-color: var(--color-white);
  color: #5c5c5c;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
  border: 1px solid #5c5c5c;
}

.point .box-point .total-point {
  font-size: 1.7rem;
  font-weight: 400;
}

.point .box-point .total-point small {
  font-size: 0.9rem;
}

.point .box-point a {
  font-size: 0.9rem;
  color: #5c5c5c;
  font-weight: 400;
}

.card-member {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-top: 25px;
}

.card-member .card {
  padding: 0;
  border: none;
  width: 12%;
  position: relative;
}

.card-member .card.active {
  width: 25%;
}

.card-member .card.active .wrap-number {
  color: #f1f1f1;
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 7px;
  font-weight: 200;
  text-transform: uppercase;
}

.card-member .card.active .wrap-date {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
  line-height: 7px;
  font-weight: 100;
  color: #f1f1f1;
  text-transform: uppercase;
}

.card-member .card.active .wrap-number .number-member {
  font-size: 1em;
}

.card-member .card.active .wrap-number .name-member {
  font-size: .7em;
}

.card-member .card.active .wrap-date .txt-date{
  font-size: .39rem;
}
.card-member .card.active .wrap-date .date {
  font-size: .7rem;
}

.card-member .card img {
  border-radius: 7px;
}

.card-member .card.active img {
  border-radius: 13px;
}

.card-member .card.lock img {
  opacity: 50%;
}

.card-member .card.lock::before {
  content: "";
  position: absolute;
  background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='UTF-8'%3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3C!-- Creator: CorelDRAW --%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xml:space='preserve' width='9.6474mm' height='9.6474mm' version='1.1' style='shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd'%0AviewBox='0 0 11.46 11.46' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:xodm='http://www.corel.com/coreldraw/odm/2003'%3E%3Cdefs%3E%3Cstyle type='text/css'%3E%3C!%5BCDATA%5B .fil0 %7Bfill:%239E8948%7D .fil1 %7Bfill:white%7D %5D%5D%3E%3C/style%3E%3C/defs%3E%3Cg id='Layer_x0020_1'%3E%3Cmetadata id='CorelCorpID_0Corel-Layer'/%3E%3Cg id='_1785159535920'%3E%3Ccircle class='fil0' cx='5.73' cy='5.73' r='5.73'/%3E%3Cg%3E%3Cpath class='fil1' d='M4.15 5.01c-0.15,0 -0.27,0.12 -0.27,0.27l0 3.07c0,0.15 0.12,0.27 0.27,0.27l3.17 0c0.15,0 0.27,-0.12 0.27,-0.27l0 -3.07c0,-0.15 -0.12,-0.27 -0.27,-0.27l-3.17 0zm3.17 4.17l-3.17 0c-0.46,0 -0.84,-0.38 -0.84,-0.84l0 -3.07c0,-0.46 0.38,-0.84 0.84,-0.84l3.17 0c0.46,0 0.84,0.38 0.84,0.84l0 3.07c0,0.46 -0.38,0.84 -0.84,0.84z'/%3E%3Cpath class='fil1' d='M6.75 4.76c-0.16,0 -0.29,-0.13 -0.29,-0.29l0 -0.89c0,-0.4 -0.33,-0.73 -0.73,-0.73 -0.4,0 -0.73,0.33 -0.73,0.73l0 0.89c0,0.16 -0.13,0.29 -0.29,0.29 -0.16,0 -0.29,-0.13 -0.29,-0.29l0 -0.89c0,-0.72 0.58,-1.3 1.3,-1.3 0.72,0 1.3,0.58 1.3,1.3l0 0.89c0,0.16 -0.13,0.29 -0.29,0.29z'/%3E%3Cpath class='fil1' d='M5.73 5.99l0 0c-0.17,0 -0.3,0.13 -0.3,0.3l0 1.05c0,0.17 0.13,0.3 0.3,0.3 0.17,0 0.3,-0.13 0.3,-0.3l0 -1.05c0,-0.17 -0.13,-0.3 -0.3,-0.3z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E%0A");
  left: -10px;
  top: -10px;
  width: 20px;
  height: 20px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
}

.sts-progress {
  margin-top: 45px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}

.sts-progress .txt-ket {
  font-family: var(--brand-font-1);
  font-weight: 300;
  color: #63666a;
  font-size: 1.4em;
}

.sts-progress small {
  font-family: var(--brand-font-1);
  color: #63666a;
  font-size: 0.7em;
}

.sts-progress .ket-progress span {
  font-family: var(--brand-font-1);
  color: #63666a;
  font-size: 0.8em;
}

.sts-progress .ket-progress span:nth-child(1) {
  font-size: 1.5em;
}

.sts-progress .progress-bar {
  height: 5px;
  width: 100%;
  background: grey;
  position: relative;
  margin: 7px 0;
}

.sts-progress .progress-bar::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: -5px;
  left: var(--value-progress);
  z-index: 1;
  background-color: #80650f;
}

.sts-progress .progress-bar::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--value-progress);
  background-color: #80650f;
}

/* ----------- */
.sts-progress #progress-point::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: -5px;
  left: var(--value-progress-point) !important;
  z-index: 1;
  background-color: #80650f;
}

.sts-progress #progress-point::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: var(--value-progress-point) !important;
  background-color: #80650f;
}

/* ------------------------------------- */
/* History Privilege Club::Page */
#history-transaction .row.content {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

#history-transaction .list-transaksi {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
}

#history-transaction .row span {
  font-size: .8rem;
  font-weight: 200;
  color: var(--color-black-brand);
}

#history-transaction .row a {
  font-size: .8rem;
  font-weight: 200;
  color: var(--color-black-brand);
  text-decoration: none;
}

#history-transaction .content .list-transaksi,
#history-transaction .content .folder-date {
  padding: 0;
  width: 100%;
}

#history-transaction .content .folder-date {
  border-bottom: 1px solid var(--color-black-brand);
}

#history-transaction .content .list-transaksi {
  margin-top: 5px;
  margin-bottom: 15px;
}

#history-transaction .content .list-transaksi .left,
#history-transaction .content .list-transaksi .right {
  display: flex;
  flex-direction: column;
  width: auto;
}

#history-transaction .content .list-transaksi .right {
  text-align: right;
}

#history-transaction .content .list-transaksi .time {
  text-align: center;
}

#history-transaction .row.content .list-transaksi.reward a {
  color: #886b25;
}

#history-transaction .row.content .list-transaksi.redeem a {
  color: #962f2f;
}

/* ------------------------------------- */
.content-privilege-banner {
  position: absolute;
  color: #fff;
  text-align: start;
  left: 15vw;
}

.content-privilege-banner h1 {
  font-size: 3.3em;
  color: #ffffff;
  font-weight: 700;
}

.content-privilege-banner p {
  font-weight: 100;
}

.content-privilege-banner .l-join {
  background: #fff;
  padding: 10px 45px;
  text-decoration: none;
  font-weight: 500;
  color: #886b25;
  border-radius: 13px;
  margin-right: 35px;
}

.content-privilege-banner .l-ac {
  background: #fff;
  padding: 10px 45px;
  text-decoration: none;
  font-weight: 500;
  color: #886b25;
  border-radius: 13px;
}

@media screen and (max-width: 600px) {
  .content-privilege-banner {
    position: absolute;
    color: #fff;
    text-align: start;
    left: 8vw;
    top: 8vw;
  }

  .content-privilege-banner h1 {
    font-size: 2.3em;
    color: #ffffff;
    font-weight: 700;
  }

  .content-privilege-banner p {
    font-weight: 400;
    margin-right: 35px;
  }

  .content-privilege-banner .l-join {
    background: #fff;
    padding: 10px 45px;
    text-decoration: none;
    font-weight: 500;
    color: #886b25;
    border-radius: 13px;
    margin-right: 35px;
    display: block;
    width: auto;
    /* max-width: 315px; */
    text-align: center;
    margin-bottom: 10px;
  }

  .content-privilege-banner .l-ac {
    background: #fff;
    padding: 10px 45px;
    text-decoration: none;
    font-weight: 500;
    color: #886b25;
    border-radius: 13px;
    margin-right: 35px;
    display: block;
    /* width: auto; */
    /* max-width: 315px; */
    text-align: center;
  }

  .card-member .card.active .wrap-number {
    left: .5rem;
    bottom: .5rem;
    gap: 1px;
  }

  .card-member .card.active .wrap-date {
    right: .5rem;
    bottom: .4rem;
    gap: 1px;
  }

  .card-member .card.active .wrap-number .number-member {
    font-size: .4em;
  }

  .card-member .card.active .wrap-number .name-member {
    font-size: .3em;
  }

  .card-member .card.active .wrap-date .txt-date,
  .card-member .card.active .wrap-date .date {
    font-size: .2rem;
  }
}

/* ------------------------------------- */