@font-face {
  font-family: "AbhayaLibre";
  src: url("../fonts/Abhaya-Libre-Font/AbhayaLibre-Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "AbhayaLibre";
  src: url("../fonts/Abhaya-Libre-Font/AbhayaLibre-Medium.ttf");
  font-weight: 500;
}
@font-face {
  font-family: "AbhayaLibre";
  src: url("../fonts/Abhaya-Libre-Font/AbhayaLibre-SemiBold.ttf");
  font-weight: 600;
}
@font-face {
  font-family: "AbhayaLibre";
  src: url("../fonts/Abhaya-Libre-Font/AbhayaLibre-Bold.ttf");
  font-weight: 700;
}
@font-face {
  font-family: "AbhayaLibre";
  src: url("../fonts/Abhaya-Libre-Font/AbhayaLibre-ExtraBold.ttf");
  font-weight: 800;
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/avenira/Avenirregular/Avenir Regular.ttf");
  font-weight: 400;
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/avenira/AvenirLight/Avenir Light.ttf");
  font-weight: 300;
}
@font-face {
  font-family: "Avenir";
  src: url("../fonts/avenira/AvenirHeavy/Avenir Heavy.ttf");
  font-weight: 900;
}
.padding-1 {
  padding: 0 5%;
}

/* Hide sub-items by default */
.nav-menu ul {
  display: none;
  background-color: #ABC6C9;
  padding: 32px 16px;
  position: absolute;
  z-index: 2;
  width: max-width;
}
.nav-menu ul li {
  list-style: none;
  padding-bottom: 5px;
}
.nav-menu ul li a {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #000000;
}

/* Show sub-items when hovering over the main items */
.nav-menu li:hover > ul {
  display: block;
}

/* 
<!--==================== HEADER ====================--> */
.header__section {
  /* background-color: #761320; */
  background-color: #0E1C1D;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}

body {
  background-color: #0E1C1D;
}

:root {
  --text-color: #FC7F00;
  --nav-height: 60px;
}

.active-button {
  padding-bottom: 50px;
  border-bottom: 5px solid #EFE8D7;
}

.logo img {
  width: 126px;
  height: auto;
}

.nav-menu li {
  padding-bottom: 36px;
}

.menu__icon {
  margin-left: 12px;
  margin-bottom: 4px;
}

.nav-wrapper {
  padding-block: 40px;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
.nav-wrapper ul {
  margin-bottom: unset;
}

.menu__btn {
  border: 1px solid #FC7F00;
  height: 40px;
  padding-inline: 8px;
  margin-top: -6px;
  color: #FC7F00;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  background: none;
  cursor: pointer;
}
.menu__btn a {
  color: #FC7F00;
}

.nav-menu {
  margin-top: 20px;
  list-style-type: none;
  display: flex;
  gap: 32px;
}

.nav-menu > li > a {
  color: #EFE8D7;
  text-decoration: none;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 2.24px;
  text-transform: uppercase;
}

.nav-menu > li > a:hover:not(.sub-menu) {
  padding-bottom: 50px;
  border-bottom: 5px solid #EFE8D7;
}

.nav-menu li .sub-menu li a:hover {
  color: #FC7F00;
  padding-bottom: unset !important;
  border-bottom: unset !important;
}

.nav-menu a.btn:hover,
a.logo:hover,
a.movie-item:hover {
  color: unset;
}

.hamburger-menu {
  --size: 30px;
  height: var(--size);
  width: var(--size);
  cursor: pointer;
  z-index: 101;
  position: relative;
  display: none;
  align-items: center;
}

.hamburger {
  position: relative;
}

.hamburger,
.hamburger::before,
.hamburger::after {
  width: var(--size);
  height: 3px;
  border-radius: 0.5rem;
  background-color: var(--text-color);
  transition: 0.4s;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger::before {
  top: -10px;
}

.hamburger::after {
  bottom: -10px;
}

.hamburger-menu.actives .hamburger {
  background-color: white;
}

.hamburger-menu.actives .hamburger::before {
  transform-origin: top left;
  transform: rotate(45deg);
  left: 6px;
}

.hamburger-menu.actives .hamburger::after {
  transform-origin: bottom left;
  transform: rotate(-45deg);
  left: 6px;
}

/* RESPONSIVE */
.nav__gap {
  gap: 117px !important;
}

@media only screen and (max-width: 1024px) {
  .nav-menu > li > a:hover:not(.sub-menu) {
    padding-bottom: unset !important;
    border-bottom: unset !important;
  }
  .nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--text-color);
    height: var(--nav-height);
    /* border-bottom: 2px solid white; */
  }
  .nav-wrapper {
    background-color: #0E1C1D;
    position: absolute;
    padding-inline: 4%;
  }
  .hamburger-menu {
    display: grid;
  }
  .nav-menu {
    /* display: none; */
    position: absolute;
    top: 100%;
    left: -100%;
    background-color: #0E1C1D;
    flex-direction: column;
    width: 100%;
    height: auto;
    padding: 20px;
    transition: 0.3s ease-in-out;
  }
  .nav-menu li {
    /* margin: 10px 30px; */
    text-align: center;
  }
  .nav-menu.actives {
    left: 0;
  }
}
.nav__border {
  opacity: 0.3;
  /* margin-top: 20px; */
  border-bottom: 2px solid #ABC6C9;
  margin-top: -25px;
}

@media screen and (max-width: 1024px) {
  .menu-hamburger {
    gap: 32px;
  }
  .logo img {
    width: 85px;
    height: auto;
  }
  .nav-wrapper {
    padding-block: 20px;
    border-bottom: 2px solid #ABC6C9;
  }
  .nav__border {
    display: block;
  }
  .active {
    padding-bottom: unset;
    border-bottom: unset;
  }
  .nav-menu li {
    margin: unset;
    text-align: unset;
  }
  .active-button {
    padding-bottom: unset;
    border-bottom: unset;
  }
  .nav-menu {
    margin-top: 0px;
    list-style-type: none;
    display: flex;
    gap: unset;
  }
  .nav-menu li {
    padding-bottom: 25px;
  }
  .hamburger-menu.actives .hamburger {
    background-color: transparent;
  }
}
@media screen and (max-width: 1324px) {
  .nav-menu {
    gap: 12px !important;
  }
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  margin: 0;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.color-orange {
  color: #FC7F00 !important;
}

.privacy-link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  float: right;
  text-decoration: none;
}

.no-style, .anchor-tag {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: none;
}

.btn1:focus, .menu__btn:focus {
  outline: none;
}

.bg-black {
  background-color: black;
}

.z-1 {
  z-index: 1;
}

.font-abhaya-libre {
  font-family: "AbhayaLibre" !important;
}

@media only screen and (min-width: 1440px) {
  .website-max-width {
    width: 1440px !important;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 1440px) {
  .hero_categories.desktop {
    margin-inline: 3.8%;
  }
  .hero_categories.desktop.padding-2 {
    padding-inline: 0px;
  }
}
.padding-2 {
  padding: 0 3.8%;
}

.padding-3 {
  padding: 0 10.1%;
}

.hero {
  margin-top: 46px;
}

.grecaptcha-badge {
  display: none !important;
}

.hero__title {
  padding-top: 64px;
  color: #EFE8D7;
  font-size: 110px;
  display: table;
  margin: auto;
  width: 858px;
  text-align: center;
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  line-height: 83%;
}

footer .col, footer .col-1, footer .col-10, footer .col-11, footer .col-12, footer .col-2, footer .col-3, footer .col-4, footer .col-5, footer .col-6, footer .col-7, footer .col-8, footer .col-9, footer .col-auto, footer .col-lg, footer .col-lg-1, footer .col-lg-10, footer .col-lg-11, footer .col-lg-12, footer .col-lg-2, footer .col-lg-3, footer .col-lg-4, footer .col-lg-5, footer .col-lg-6, footer .col-lg-7, footer .col-lg-8, footer .col-lg-9, footer .col-lg-auto, footer .col-md, footer .col-md-1, footer .col-md-10, footer .col-md-11, footer .col-md-12, footer .col-md-2, footer .col-md-3, footer .col-md-4, footer .col-md-5, footer .col-md-6, footer .col-md-7, footer .col-md-8, footer .col-md-9, footer .col-md-auto, footer .col-sm, footer .col-sm-1, footer .col-sm-10, footer .col-sm-11, footer .col-sm-12, footer .col-sm-2, footer .col-sm-3, footer .col-sm-4, footer .col-sm-5, footer .col-sm-6, footer .col-sm-7, footer .col-sm-8, footer .col-sm-9, footer .col-sm-auto, footer .col-xl, footer .col-xl-1, footer .col-xl-10, footer .col-xl-11, footer .col-xl-12, footer .col-xl-2, footer .col-xl-3, footer .col-xl-4, footer .col-xl-5, footer .col-xl-6, footer .col-xl-7, footer .col-xl-8, footer .col-xl-9, footer .col-xl-auto {
  padding-left: unset !important;
  padding-right: unset !important;
}

footer .offers .sec-1 {
  width: 96%;
  padding: 10px;
  color: #EFE8D7;
  display: grid;
  grid-template-columns: auto auto;
  gap: 20px;
}

footer .offers li {
  list-style: none;
}

footer .offers a {
  margin: 0;
  padding: 5px;
  color: #FC7F00;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none;
}

.hero__desc {
  margin-top: 32px;
  color: #F8F59B;
  padding-bottom: 469px;
  padding-inline: 260px;
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #F8F59B;
}

.discover {
  margin-top: 59px;
}

.discover__icon {
  width: 35px;
  height: auto;
}

.discover__title {
  color: #ABC6C9;
  margin-left: 34px;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.24px;
  text-transform: uppercase;
}

.discover__desc {
  color: #EFE8D7;
  margin-top: 38px;
  width: 65%;
  font-family: "AbhayaLibre";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.discover__desc2--first {
  width: 491px;
}

.discover__desc2--second {
  width: 491px;
}

.discover__desc2 {
  color: #EFE8D7;
  gap: 95px;
  margin-top: 64px;
}
.discover__desc2 p {
  font-size: 18px;
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

@media screen and (min-width: 1441px) {
  .discover__desc3 p {
    margin-right: 80px;
  }
}
.discover__desc3 {
  margin-top: 120px;
}
.discover__desc3 h3 {
  color: #ABC6C9;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 2.24px;
  text-transform: uppercase;
}
.discover__desc3 h4 {
  color: #EFE8D7;
  width: 270px;
  font-family: "AbhayaLibre";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.discover__desc3 p {
  color: #EFE8D7;
  width: 280px;
  font-family: "Avenir";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.discover__desc3 a {
  display: block;
  width: -moz-min-content;
  width: min-content;
  text-wrap: nowrap;
}

.marquee {
  --space: 32px;
  --duration: 80s;
  --gap: var(--space);
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 32px;
}

.marquee_group {
  flex-shrink: 0;
  display: flex;
  align-items: start;
  gap: var(--gap);
  animation: scroll var(--duration) linear infinite;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
.home__marquee {
  padding-top: 128px;
  margin-bottom: 128px;
}

.marquee_group img {
  max-width: 1060px;
  height: auto;
}

.discover__images {
  position: relative;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 1080px;
}
.discover__images .btn1 {
  font-weight: 200;
}

.image1 {
  position: relative;
  top: 158px;
  left: 0;
  width: 400px;
  height: auto;
  max-height: 504px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 3;
  margin-bottom: 68px;
}

.image2 {
  position: absolute;
  top: 30px;
  left: 340px;
  width: 400px;
  height: auto;
  max-height: 504px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 2;
}

.image3 {
  position: absolute;
  top: 269px;
  left: 680px;
  width: 400px;
  height: auto;
  max-height: 504px;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
}

.sub-footer img {
  height: 74px !important;
}

.phone-call-us {
  margin-right: 70px;
}

.hero__center {
  display: grid;
  grid-template-columns: 1fr max-content 1fr;
  grid-column-gap: 1.2rem;
  align-items: center;
}

.hero__center::before,
.hero__center::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #ABC6C9;
}

.whatsapp__image {
  width: 73px;
  height: auto;
}

.image__position > a > img {
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 999;
}

.btn1 {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: "Avenir";
  color: #FC7F00;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 2.24px !important;
  text-transform: uppercase;
  display: flex;
  align-items: center;
}

.btn1:hover {
  color: #FC7F00;
  text-decoration: underline;
}

.down__logo {
  position: absolute;
  bottom: -30px;
  right: 50%;
  z-index: 999;
}

@keyframes bounce {
  0%, 25%, 55%, 75%, 100% {
    transform: translateY(0);
  }
  45% {
    transform: translateY(-20px);
  }
  65% {
    transform: translateY(-10px);
  }
  85% {
    transform: translateY(-5px);
  }
}
@media screen and (min-width: 425px) {
  .full_map iframe {
    width: 100% !important; /* Use viewport width instead of percentage */
    -o-object-fit: cover !important;
    object-fit: cover !important;
  }
}
@media screen and (max-width: 428px) {
  .hero {
    margin-top: 112px;
  }
}
@media screen and (min-width: 1025px) {
  .header-margin {
    height: 139px;
    width: 100vh;
  }
}
@media screen and (min-width: 1024px) {
  .map.text.mobile {
    display: none;
  }
  .map_desc.mobile {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .text-row {
    white-space: normal;
    word-wrap: break-word;
  }
  .discover__desc3 a {
    display: block;
    width: -moz-min-content;
    width: min-content;
    text-wrap: nowrap;
    display: table;
    margin: auto;
  }
  .shared-stories {
    margin-bottom: 96px !important;
    padding-bottom: unset !important;
  }
  .hero__desc {
    padding-bottom: 307px !important;
  }
  .view_desc p {
    padding-bottom: 20px;
  }
  .hero__image {
    background-position: center;
  }
  .whatsapp__image {
    width: 53px;
    height: auto;
  }
  .contact-us {
    margin-left: unset !important;
  }
  .section-two_container-2-row1 {
    width: 100% !important;
    padding-left: unset !important;
  }
  .privacy {
    margin-left: unset !important;
  }
  .call-us {
    align-self: center !important;
  }
  .social-medias {
    margin-left: unset !important;
    margin-top: 40px;
    margin: auto;
  }
  .send-wrap {
    margin-right: unset !important;
  }
  .footer-sec {
    display: flex;
    flex-direction: column;
  }
  .news {
    display: flex !important;
    flex-direction: column !important;
  }
  .areas img {
    width: 100% !important;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    padding-inline: 1%;
  }
  .areas h3 {
    padding-inline: 1%;
  }
  .news-wrapper {
    padding-inline: 2% !important;
  }
  .shared_stories {
    margin-top: 65px !important;
  }
  .indulge-test .desc {
    color: #EFE8D7;
    font-size: 18px;
    width: 100% !important;
    font-family: "Avenir";
  }
  .description {
    display: flex;
    flex-direction: column;
    width: 100% !important;
  }
  .call-us p {
    font-size: 30px !important;
    margin-top: 2px;
  }
  .indulge-test .desc {
    color: #EFE8D7;
    font-size: 18px !important;
    width: 100%;
  }
  .indulge-test h1 {
    font-size: 36px !important;
    color: #EFE8D7;
    max-width: 100%;
    text-transform: capitalize;
  }
  .indulge {
    margin-top: 48px;
    order: 2;
  }
  .next-prev {
    margin-top: 32px;
    justify-content: center;
  }
  .indulge-wrapper {
    flex-direction: column;
  }
  .sub-footer img {
    display: table !important;
    margin: auto !important;
    margin-top: 64px !important;
  }
  .privacy h4 {
    width: 100%;
    text-align: center !important;
  }
  .sub-footer {
    color: #EFE8D7;
    display: flex;
    margin-top: 14%;
    margin: 0px 0% 32px 0 !important;
    justify-content: center !important;
    flex-direction: column !important;
  }
  .sub-footer p {
    max-width: 100%;
    display: flex;
    justify-content: center !important;
    order: 3;
  }
  .privacy {
    display: flex;
    justify-content: center;
    width: 100% !important;
  }
  .contact-us {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: 64px !important;
  }
  .call-us img {
    display: flex;
    width: 26px !important;
    height: 26px !important;
  }
  .social-medias img {
    width: 34px !important;
    height: 34px !important;
  }
  .social-medias .ml-4, .social-medias .mx-4 {
    margin-left: unset !important;
  }
  .button__grid {
    padding-left: unset !important;
    display: flex;
    justify-content: center;
  }
  .book-with-us {
    text-align: center !important;
    margin-left: unset !important;
    width: -moz-min-content !important;
    width: min-content !important;
  }
  .reach-us [type=button], .reach-us [type=reset], .reach-us [type=submit] {
    font-size: 16px;
    text-transform: uppercase;
    color: #FC7F00 !important;
    font-family: "Avenir";
    margin-bottom: 18px;
    text-align: center;
    padding: 10px;
    border: 2px solid #FC7F00;
    width: 100% !important;
    background: transparent;
    align-self: end;
  }
  .footer-menu a {
    cursor: pointer;
    font-family: "Avenir";
    font-style: normal;
    font-weight: 800;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FC7F00;
    margin-bottom: 18px;
    text-align: center !important;
    white-space: nowrap !important;
  }
  .footer-menu {
    display: grid;
    grid-template-columns: auto auto;
    gap: 16px !important;
    text-align: end;
    justify-content: end;
  }
  .send-wrap p {
    width: unset !important;
    padding: unset;
  }
  .wpcf7-form p label {
    width: 100%;
    margin-top: 16px !important;
    font-family: "Avenir";
    font-style: normal;
    font-weight: 800;
    font-size: 14px !important;
    line-height: 24px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    text-align: left;
  }
  .reach-us {
    margin-top: 42px;
  }
  .wpcf7-form {
    margin-left: 0;
    padding-inline: 1%;
  }
  .reach-us p {
    font-size: 36px !important;
    width: 100% !important;
    color: #EFE8D7;
    text-align: center;
  }
  .news-events-page__header {
    margin-bottom: 90px;
  }
  .email-wrap span input, .contact-wrap span input {
    width: 100% !important;
  }
  .contact-us-wrap {
    display: unset !important;
  }
  .hr-line {
    border-top: 2px solid #ABC6C9 !important;
    opacity: 0.3;
    margin-inline: 2%;
  }
  .shared_stories h2 {
    text-align: center;
    font-size: 32px !important;
    margin-bottom: unset !important;
  }
  .odd {
    margin-top: 120px !important;
  }
  .section-two_container-2-row1 img {
    width: 100% !important;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .section-two_container-2 {
    padding: 1% !important;
  }
  .news-title h2 {
    text-align: center;
    padding-left: unset !important;
  }
  .areas {
    width: unset !important;
    margin-top: 64px !important;
  }
  .sidebar__option.fixed {
    position: unset !important;
    top: 50px;
  }
  .areas-wrapper {
    margin: 0px 0 96px 0 !important;
  }
  .discover-btn {
    display: unset !important;
  }
  .description p {
    width: 100% !important;
    text-align: center;
  }
  .programs-wrapper .title {
    display: table;
    margin: auto;
    margin-bottom: 32px;
  }
  .discover__desc3 h4 {
    width: unset;
    margin-bottom: 64px;
  }
  .discover > div {
    justify-content: center;
  }
  .discover__desc3 {
    text-align: center;
  }
  .discover__desc2 p {
    text-align: center;
  }
  .discover__desc2 {
    color: #EFE8D7;
    gap: 16px;
    margin-top: 32px;
  }
  .hero__desc {
    padding-inline: 2% !important;
  }
  .padding-1 {
    padding: 0 4%;
  }
  .padding-2 {
    padding: 0 4%;
  }
  .padding-3 {
    padding: 0 4%;
  }
  .hero {
    margin-top: 160px;
    padding: unset;
  }
  .hero__title {
    padding-top: 30px !important;
    font-size: 30px;
    width: unset;
    font-size: 60px;
    padding-inline: 20px;
  }
  .hero_resort .hero__title {
    padding-top: 0px !important;
  }
  .discover__desc3 {
    margin-top: 80px;
  }
  .discover__desc {
    color: #EFE8D7;
    margin-top: 32px;
    width: unset;
    font-size: 36px;
    text-align: center;
    padding-inline: 1%;
  }
  .discover__desc2--first,
  .discover__desc2--second {
    width: unset;
  }
  .down__logo {
    display: block;
  }
  .discover__desc3 p {
    width: unset;
  }
  .discover__images {
    position: relative;
    top: 76px;
    left: 50%;
    transform: translateX(-50%);
    height: 522px;
    margin-bottom: 100px;
    width: 400px;
  }
  .image1 {
    width: 206px;
    height: 261px;
    top: 72px;
    left: -100px;
  }
  .image2 {
    width: 206px;
    left: 195px;
    top: 0;
    height: 261px;
  }
  .image3 {
    width: 206px;
    height: 261px;
    left: 170px;
    top: 250px;
  }
  .btn-center {
    display: table;
    margin: auto;
  }
  .home__marquee {
    padding-top: 96px;
    margin-bottom: 96px;
  }
  .discover {
    margin-bottom: unset;
  }
  .hero__desc {
    padding-inline: unset;
  }
  .image__position > a > img {
    position: fixed;
    bottom: 60px;
    right: 3%;
    z-index: 999;
  }
  .footer-menu {
    display: flex !important;
    flex-direction: column;
    text-align: center !important;
  }
  .sub-footer p {
    white-space: normal !important; /* Reset white-space property */
    word-wrap: break-word !important; /* Ensure content wraps onto the next line */
  }
}
.programs {
  display: flex;
}

.programs-wrapper .title {
  margin-top: 0px;
}

.container-areas {
  color: #EFE8D7;
}

.indulge-wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 2%;
}

.indulge {
  display: flex;
  width: 100%;
  display: flex;
}

.indulge h4 {
  margin-left: 20px;
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  /* Grey */
  color: #ABC6C9;
  margin-top: 5px;
}

.indulge img {
  width: 30px;
  height: 30px;
}

.arrows {
  display: flex;
}

.indulge-test {
  display: flex;
  flex-direction: column;
}

.indulge-test h1 {
  font-size: 50px;
  color: #EFE8D7;
  font-family: "AbhayaLibre";
}

.indulge-test .desc {
  color: #EFE8D7;
  font-size: 18px;
  width: 36%;
  font-family: "Avenir";
}

/* news */
.news-wrapper {
  color: #EFE8D7;
  margin-top: 96px;
}

.news {
  display: flex;
}

.news-title h2,
.shared_stories {
  /* H2 */
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  color: #EFE8D7;
  white-space: nowrap;
  margin-top: 10px;
}

.shared-stories {
  margin-bottom: 128px;
  padding-bottom: 3%;
}

.shared_stories h2 {
  font-size: 50px;
  width: 80%;
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  color: #EFE8D7;
  margin-bottom: 32px;
}

.section-two_container-2 {
  justify-content: flex-end;
  padding: 0 20px 20px 20px;
  margin-inline: 0;
}

.section-two_container-2-row1 {
  gap: 10px;
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
  padding: 17px 0;
  padding-left: 8%;
  border-radius: 3px;
  width: 48%;
}
.section-two_container-2-row1 img {
  width: 345px;
  max-width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.section-two_container-2-row1 h2 {
  font-size: 30px;
  font-weight: 400;
  margin-top: 5%;
  font-family: "AbhayaLibre";
  cursor: pointer;
  color: #F8F59B;
}

.section-two_container-2-row1 p {
  font-size: 18px;
  font-weight: normal;
  font-family: "Avenir";
}

.section-two_container-2 .section-two_container-2-row1:nth-child(even) {
  margin-top: 48px;
}

.section-two_container-2 .section-two_container-2-row1:nth-child(odd) {
  margin-bottom: 48px;
}

.home-view_article {
  display: flex;
  color: #FC7F00;
  width: 40%;
  font-weight: 300;
  margin-top: -32px;
  align-items: center;
}

.news,
.news-title {
  padding-inline: 0;
}

.home-view_article a {
  color: #FC7F00;
  font-size: 23px;
  font-family: "Avenir";
}

.shared-stories {
  width: 100%;
  overflow: hidden;
}

.card {
  padding: 32px 2px 16px 2px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  width: 272px;
}

.odd {
  background-color: #ABC6C9;
}

.even {
  margin-top: 55px;
  background-color: #EFE8D7;
}

.white {
  margin-top: 55px;
  background-color: #FFFFFF;
}

.text-row {
  margin-bottom: 10px;
  /* Body */
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  /* or 156% */
  color: #0E1C1D;
  width: 85%;
  white-space: normal;
  word-wrap: break-word;
}

.circle-image img {
  max-width: 160px;
  max-height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.name-row {
  /* Label */
  font-family: "Avenir";
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  /* Sinar Dark */
  color: black;
  align-self: end;
  margin-right: 16px;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.8);
  /* Adjust the background color as needed */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.swiper-button-next img,
.swiper-button-prev img {
  width: 20px;
  /* Adjust the arrow size as needed */
  height: 20px;
}

/* footer */
.footer-wrapper {
  display: flex;
}

.footer-sec {
  display: flex;
}

.reach-us {
  margin-inline: 0;
}

.reach-us .wpcf7 form.invalid .wpcf7-response-output, .reach-us .wpcf7 form.unaccepted .wpcf7-response-output, .reach-us .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #FC7F00 !important;
  color: red !important;
}
.reach-us [type=button], .reach-us [type=reset], .reach-us [type=submit] {
  font-size: 16px;
  text-transform: uppercase;
  color: #FC7F00 !important;
  font-family: "Avenir";
  margin-bottom: 18px;
  text-align: center;
  padding: 10px;
  border: 2px solid #FC7F00;
  width: -moz-min-content;
  width: min-content;
  background: transparent;
  align-self: end;
}
.reach-us .wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  color: white !important;
}
.reach-us .wpcf7 form .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  color: red;
  border: 2px solid #00a0d2;
}

.reach-us p {
  width: 90%;
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  color: #EFE8D7;
}

.email {
  position: relative;
  max-width: 100%;
}

.email input {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #EFE8D7;
  outline: none;
  text-decoration: none;
  color: #EFE8D7;
  font-size: 16px;
  background-color: unset;
  font-family: "Avenir";
  text-transform: uppercase;
}

.contact-wrapper {
  display: flex;
  gap: 32px;
}

.contact {
  display: flex;
  width: 50%;
}

.contact input {
  width: 100%;
  padding: 10px 0;
  border: none;
  border-bottom: 1px solid #EFE8D7;
  outline: none;
  text-decoration: none;
  color: #EFE8D7;
  font-size: 16px;
  background-color: unset;
  font-family: "Avenir";
  text-transform: uppercase;
}

.message input {
  width: 100%;
  padding: 10px 0 50px 0;
  border: none;
  border-bottom: 1px solid #EFE8D7;
  outline: none;
  text-decoration: none;
  color: #EFE8D7;
  font-size: 16px;
  background-color: unset;
  font-family: "Avenir";
  text-transform: uppercase;
}

.email img {
  position: absolute;
  right: 0;
  bottom: 10px;
}

.call-us {
  font-size: 14px;
  color: #EFE8D7;
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  display: flex;
  gap: 10px;
  align-self: flex-end;
  cursor: pointer;
}

.call-us img {
  display: flex;
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
}

.call-us a {
  text-decoration: none;
}
.call-us img:hover {
  filter: invert(50%);
}

.call-us:hover svg path {
  fill: #FC7F00;
}

.call-us p:hover {
  color: #FC7F00;
}

.call-us:hover p {
  color: #FC7F00;
}

.call-us p {
  width: 100%;
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  /* Cream */
  color: #EFE8D7;
}

.contact-us {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-top: 8%;
}

.book-with-us {
  border: 2px solid #FC7F00;
  padding: 8px;
  height: 40px;
  text-align: center !important;
}

.service h4 {
  cursor: pointer;
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  text-align: right;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FC7F00;
  margin-bottom: 18px;
  text-align: right;
  white-space: nowrap !important;
  visibility: hidden;
}

.service h4:hover {
  color: #FC7F00;
  text-decoration: underline;
}

.footer-menu a {
  cursor: pointer;
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  text-align: right;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FC7F00;
  margin-bottom: 18px;
  text-align: right;
  white-space: nowrap !important;
}

.footer-menu li {
  list-style: none;
}

.footer-menu a:hover {
  color: #FC7F00;
  text-decoration: underline;
}

.footer-menu {
  display: grid;
  grid-template-columns: auto auto;
  gap: 10px;
  text-align: end;
  justify-content: end;
}

.news-events {
  display: flex;
  margin-left: 18%;
}

.offers {
  display: flex;
  justify-content: space-between;
  margin: 20px;
  color: #FC7F00;
  margin-left: 18%;
}

.offers .sec-1,
.offers .sec-2 {
  width: 48%;
  padding: 10px;
  color: #EFE8D7;
}

.offers p {
  margin: 0;
  padding: 5px;
  color: #FC7F00;
  font-size: 16px;
  text-transform: uppercase;
}

.social-medias {
  margin-left: auto !important;
  margin-top: 40px;
}

.social-medias img {
  width: 30px;
  height: auto;
}

.sub-footer {
  color: #EFE8D7;
  display: flex;
  margin-top: 14%;
  margin: 96px 0% 67px 0;
  justify-content: space-between;
}

.sub-footer p {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 28px;
  color: #EFE8D7;
  white-space: nowrap;
}

.sub-footer img {
  height: 74px;
  margin-left: 5%;
  width: 126px;
  -o-object-fit: cover;
     object-fit: cover;
}

.hr-line {
  border-top: 1px solid #ABC6C9;
  opacity: 0.3;
}

.max-width {
  max-width: 1440px;
  margin-left: auto !important;
  margin-right: auto !important;
}

.privacy {
  margin-left: 8%;
}

.privacy h4 {
  text-transform: uppercase;
  font-family: "Avenir";
  text-align: right;
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FC7F00;
  cursor: pointer;
}

.privacy h4:hover {
  color: #FC7F00;
  text-decoration: underline;
}

.areas a {
  font-family: "Abhaya Libre";
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  color: #EFE8D7;
}

@media screen and (max-width: 767px) {
  .home-view_article {
    width: 100%;
  }
  .odd {
    margin-top: 60px;
  }
  .title {
    font-size: 29px;
    font-weight: 500;
    color: #EFE8D7;
    text-align: center;
  }
  .areas h3 {
    margin-top: 4%;
    font-size: 21px;
    font-weight: 400;
  }
  .management {
    margin-top: 4%;
  }
  .news {
    display: flex;
    flex-direction: column;
  }
  .news-title h1 {
    font-size: 30px;
    display: flex;
    justify-content: center;
  }
  .section-two_container-2 {
    margin-top: 0px;
    display: block;
    margin-left: 0;
    padding: 8px;
  }
  .section-two_container-2-row1 {
    display: flex;
    width: 100%;
    padding: 0;
  }
  .view-article {
    justify-content: center;
    display: flex;
    margin-left: 0;
  }
  .logo {
    display: flex;
  }
  /* footer */
  .footer-wrapper {
    display: block;
    margin-left: 6%;
  }
  .email {
    width: 70%;
  }
  .email input {
    font-size: 16px;
  }
  .reach-us p {
    font-size: 26px;
    width: 100%;
    color: #EFE8D7;
    font-weight: bolder;
  }
  .offers {
    display: flex;
    justify-content: space-between;
    margin: 8px;
    color: #FC7F00;
    margin-left: 3%;
  }
  .offers p {
    margin: 0;
    padding: 4px;
    color: #FC7F00;
    font-size: 17px;
    text-transform: uppercase;
  }
  .social-medias img {
    width: 22px;
    height: 25px;
  }
  .sub-footer p {
    font-size: 14px;
  }
  .sub-footer img {
    display: none;
  }
  .social-medias {
    display: flex;
    justify-content: space-evenly;
    position: unset !important;
    right: 0;
  }
  .view-article img {
    height: 30px !important;
    width: 30px !important;
  }
  .description p {
    width: 100%;
  }
  .view-article a {
    font-size: 16px;
    margin-top: 1px;
  }
  .service h4 {
    margin-bottom: 18px;
  }
  .service h4 {
    margin-bottom: 10px;
  }
  .services {
    margin-top: 5%;
    padding-right: 2px;
    padding-left: 3px;
  }
  .email input {
    font-size: 9px !important;
  }
  .services .email img {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 4px;
  }
  .book-with-us {
    padding: 5px;
    width: 100%;
    margin-left: 0;
  }
  .services {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .contact-us {
    margin-left: 0;
  }
  .call-us p {
    font-size: 23px;
  }
  .call-us img {
    display: flex;
    width: 30px;
    height: 30px;
  }
}
footer .wpcf7 {
  margin-top: 50px;
}

.wpcf7-form-control-wrap input {
  width: 100%;
  border: none;
  border-bottom: 1px solid white;
  outline: none;
  text-decoration: none;
  color: #EFE8D7;
  font-size: 16px;
  background-color: unset;
  font-family: "Avenir";
  text-transform: capitalize;
}

.wpcf7-form-control-wrap input[type=email] {
  text-transform: lowercase !important;
}

.wpcf7-form p label {
  width: 100%;
  margin-top: 32px;
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}

.wpcf7-textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #EFE8D7;
  outline: none;
  text-decoration: none;
  color: #EFE8D7;
  font-size: 16px;
  background-color: unset;
  height: 170px !important;
}

.contact-us-wrap {
  display: flex;
}

.email-wrap span input,
.contact-wrap span input {
  width: 90%;
}

.send-wrap p {
  width: -moz-min-content;
  width: min-content;
}

.send-wrap {
  display: flex;
  justify-content: end;
  margin-right: 10%;
}
.send-wrap input[type=submit]:hover {
  color: #FC7F00;
  text-decoration: underline;
}

.wpcf7-form {
  margin-top: -4%;
}

.wpcf7-form p {
  font-size: 14px;
  text-transform: uppercase;
  color: #FFFFFF;
  font-family: "Avenir";
  font-weight: lighter;
  opacity: 1;
  letter-spacing: 2px;
}

@media screen and (max-width: 768px) {
  .wpcf7-form p label {
    font-size: 11px;
  }
  .sub-footer {
    display: flex;
    flex-direction: column-reverse;
  }
  .sub-footer p {
    max-width: 100%;
    display: flex;
  }
  .privacy {
    display: flex;
    margin-left: 0;
  }
  .book-with-us {
    border: 2px solid #FC7F00;
    padding: 6px;
    width: 74%;
    margin-left: 26%;
  }
  .shared_stories h2 {
    font-size: 39px;
  }
}
@media screen and (max-width: 767px) {
  .footer-sec {
    display: contents !important;
  }
  .wpcf7-form p label {
    font-size: 8px;
  }
  .send-wrap {
    justify-content: center;
    margin-right: 0;
  }
  .services {
    margin-top: 20%;
    display: contents;
  }
  .service h4 {
    text-align: center;
    font-size: 18px !important;
    line-height: normal;
  }
  .book-with-us {
    border: 2px solid #FC7F00;
    padding: 6px;
    width: 59%;
    margin-left: 20%;
  }
  .social-medias-wrap {
    display: contents;
  }
  .contact-us {
    margin-left: -28%;
  }
  .shared_stories h2 {
    width: 100%;
  }
  .description p {
    width: 100%;
  }
  .news-wrapper {
    padding: 0;
  }
  .news-title h2 {
    font-size: 35px;
    width: 100%;
    color: #EFE8D7;
    font-family: "AbhayaLibre";
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    padding-left: 6%;
  }
  .wrapper {
    padding: 2%;
  }
  .programs-wrapper .title {
    font-size: 30px;
  }
  .reach-us p {
    font-size: 40px;
  }
}
.marquee1 {
  --space: 73px;
  --duration: 240s;
  --gap: var(--space);
  display: flex;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  gap: 73px;
}

.marquee_group1 {
  flex-shrink: 0;
  display: flex;
  align-items: start;
  gap: var(--gap);
  animation: scrolls var(--duration) linear infinite;
}

@keyframes scrolls {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(calc(-100% - var(--gap)));
  }
}
.food__image {
  width: 100% !important;
}

.button__grid {
  grid-column: 2;
  justify-self: end;
  padding-left: 70px;
}

.services .row {
  margin-right: unset !important;
  margin-left: unset !important;
}

.areas {
  width: 310px;
}
.areas img {
  width: 344px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.areas-wrapper {
  gap: 59px;
  justify-content: space-between;
}

.nav_btns {
  margin-right: 9%;
  gap: 2%;
}

.swiper-button-prev3 {
  width: 63px;
  height: 63px;
}

.swiper-button-next3 {
  width: 63px;
  height: 63px;
}

.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.sidebar__option.fixed {
  position: fixed;
  top: 160px;
}

@media screen and (min-width: 1441px) {
  .padding-1 {
    padding: 0 2%;
  }
  .padding-2 {
    padding: 0 1%;
  }
  .padding-3 {
    padding: 0 4%;
  }
  .areas {
    width: 344px;
  }
  .areas img {
    width: 344px;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.news-title a {
  text-decoration: none;
}

@media screen and (min-width: 1025px) and (max-width: 1360px) {
  .image1 {
    position: relative;
    top: 148px !important;
    left: 0;
    width: 300px !important;
    height: auto;
    max-height: 504px;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 3;
  }
  .image2 {
    position: absolute;
    top: 50px !important;
    left: 280px !important;
    width: 300px !important;
    height: auto;
    max-height: 504px;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 2;
  }
  .image3 {
    position: absolute;
    top: 200px !important;
    left: 480px !important;
    width: 300px !important;
    height: auto;
    max-height: 504px;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
  }
}
#footer {
  padding-top: 100px;
}

.hero__image.mobile-image {
  display: none;
}

@media (max-width: 768px) {
  .hero__image.desktop-image {
    display: none;
  }
  .hero__image.mobile-image {
    display: block;
  }
}
.adventure {
  margin-top: 59px;
  z-index: 0;
  position: relative;
  margin-top: -200px;
  padding-top: 300px;
  padding-bottom: 50px;
}

.hb-customer {
  /* Hide the 4th, 5th, and 6th <li> elements in the first <ul> */
  /* Hide the 1st <li> element in the second <ul> */
}
.hb-customer .hb-col-padding .hb-form-table.col-2:nth-of-type(1) li:nth-child(4),
.hb-customer .hb-col-padding .hb-form-table.col-2:nth-of-type(1) li:nth-child(5),
.hb-customer .hb-col-padding .hb-form-table.col-2:nth-of-type(1) li:nth-child(6) {
  display: none;
}
.hb-customer .hb-col-padding .hb-form-table.col-2:nth-of-type(2) li:nth-child(1) {
  display: none;
}

.prev.notActive {
  opacity: 0.4;
}

.btn-act {
  padding: 8px !important;
  height: 40px !important;
  margin-top: 10px;
}

.next.notActive {
  opacity: 0.4;
}

.hero_button {
  position: relative;
}

.hero_button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: transparent;
  transition: background-color 0.1s ease, width 0.1s ease, bottom 0.1s ease;
  /* Add bottom transition */
}

.hero_button:hover::after {
  background-color: #FC7F00;
  width: 100%;
  bottom: -18px;
  /* Adjust the value as needed to lower the border */
}

.hero_button.active__package:after {
  background-color: #FC7F00;
  width: 100%;
  bottom: -18px;
  /* Adjust the value as needed to lower the border */
}

.hero_button:hover {
  color: #FC7F00 !important;
  opacity: 1 !important;
}

.btn-act {
  word-spacing: 2px !important;
  letter-spacing: 2px;
  font-family: "Avenir" !important;
  font-size: 14px !important;
  border: 1px solid #FC7F00 !important;
}

.adventure__icon {
  width: 35px;
  height: auto;
}

.adventure__title {
  color: #ABC6C9;
  margin-left: 34px;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 2.72px;
  text-transform: uppercase;
}

.adventure__desc {
  color: #EFE8D7;
  margin-top: 38px;
  width: 65%;
  font-family: "AbhayaLibre";
  font-size: 50px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.adventure__desc2--first,
.encounter_wrapper__desc1 {
  width: 491px;
}

p.adventure__desc2--first {
  font-size: 50px;
  width: 50%;
}

.Unforgettable.adventure__desc2--first span {
  font-size: 18px;
  line-height: 28px;
}

.adventure__desc2--second .book-with-us {
  text-align: left !important;
  height: auto !important;
  width: -moz-fit-content !important;
  width: fit-content !important;
  margin-top: 70px;
  margin-left: 0;
}

.adventure__desc2--second a {
  cursor: pointer;
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  text-align: left;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FC7F00;
  margin-bottom: 18px;
  text-align: right;
  white-space: nowrap !important;
}

p.adventure__desc2--first1 {
  font-size: 50px;
}

.packageTitle {
  color: #F8F59B;
  font-size: 30px;
  font-family: "AbhayaLibre" !important;
  margin-top: 70px;
}

.adventure__desc2--second ul {
  font-size: 18px;
  font-family: "Avenir";
  margin-left: 30px;
}

.adventure__desc2--second {
  width: 491px;
  font-size: 18px;
}

.adventure__desc2 {
  color: #EFE8D7;
  justify-content: space-between;
  margin-top: 23px;
}
.adventure__desc2 p {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.adventure__desc3 {
  margin-top: 120px;
}
.adventure__desc3 h3 {
  color: #ABC6C9;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 2.72px;
  text-transform: uppercase;
}
.adventure__desc3 h4 {
  color: #EFE8D7;
  width: 270px;
  font-family: "AbhayaLibre";
  font-size: 25px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.adventure__desc3 p {
  color: #EFE8D7;
  width: 280px;
  font-family: "Avenir";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.adventure__images {
  position: relative;
  top: -200px;
  left: 80px;
}
.adventure__images .btn1 {
  font-weight: 200;
}

.activity_resort {
  text-align: center;
}
.activity_resort h1 {
  padding-top: 0;
  line-height: 90px;
}

.activity_resort__img {
  max-width: 100%;
}

.activity_resort__title {
  padding-top: 64px;
  color: #EFE8D7;
  font-size: 110px;
  display: table;
  margin: auto;
  width: 908px;
  text-align: center;
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-block: 40px 50px;
}

.resort_offers__title h2 {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #EFE8D7;
  width: 40%;
}

.resort-offers p {
  width: 26%;
}

.ourresort_image1 {
  position: absolute;
  z-index: -1;
  top: 21%;
  left: 34%;
}

.btn1 {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: "avenir";
  color: #FC7F00;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 2.72px;
  text-transform: uppercase;
}

.btn1:hover {
  color: #FC7F00;
  text-decoration: underline;
}

.ourresort_image2 {
  position: absolute;
  z-index: -2;
  left: 60%;
  top: -124px;
}

.encounter_wrapper__wrap .arrows img {
  width: 60px !important;
  height: 60px !important;
  cursor: pointer;
}

.encounter_wrapper {
  padding-block: 128px;
}

.hero_categories {
  display: flex;
  gap: 25px;
  justify-content: space-between;
}

.hero_categories button a {
  color: #ABC6C9;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: unset;
  border: unset;
  text-decoration: none;
  cursor: pointer;
  display: flex;
}

.hero_categories button {
  background-color: unset;
  border: unset;
}

.hero_categories__current {
  color: #FC7F00 !important;
  border-bottom: 3px solid #FC7F00 !important;
  padding-bottom: 11px !important;
}

.encounter_wrapper .hr-line {
  border-top: 1px solid #EFE8D7;
  margin-top: 1%;
}

.encounter_wrapper .hr-line.one1 {
  border-top: 1px solid #EFE8D7;
  margin-top: 18px;
}

.encounter_wrapper__description {
  color: #EFE8D7;
  justify-content: space-between;
  margin-top: 64px;
}

.encounter_wrapper__desc1 {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  font-size: 50px;
  color: #EFE8D7;
}

.encounter_wrapper__desc2 {
  font-size: 18px;
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #EFE8D7;
  width: 491px;
  margin-left: 8%;
}

.encounter_wrapper__wrap {
  margin-top: 2%;
  justify-content: space-between;
  max-width: 75%;
}

.encounter_wrapper_categories {
  padding-inline: 20px;
}

.encounter_wrapper__wrap a {
  border: 2px solid #FC7F00;
  padding: 17px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
}

.encounter_wrapper__wrap a:hover {
  text-decoration: underline;
  color: #FC7F00;
}

.encounter_wrapper__slider {
  display: flex;
  gap: 20px;
  width: calc(100% + 20px);
  margin-top: 4%;
}

.encounter_wrapper__slider img {
  flex: 0 0 calc(50% - 10px);
  max-height: 500px;
}

.shared_stories .swiper-pagination {
  display: none;
}

.encounter_wrapper__wrap_arrows img {
  width: 63px !important;
  height: 63px !important;
}

.resort-offer img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 500px;
}

.resort-offer {
  width: 40%;
  position: relative;
}

.resort-offer1 {
  z-index: 1;
}

.resort-offer2 {
  z-index: 2;
  margin-top: 10%;
  margin-left: -5%;
}

.resort-offer3 {
  z-index: 3;
  margin-top: -15%;
  margin-left: -5%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

@media screen and (max-width: 1024px) {
  .activity_resort__title {
    font-size: 40px;
    line-height: 45px !important;
    width: unset;
  }
  p.adventure__desc2--first,
  .resort_offers__title h2 {
    width: auto;
  }
  .adventure__desc,
  .encounter_wrapper__description {
    color: #EFE8D7;
    margin-top: 38px;
    width: unset;
  }
  .adventure__desc2--first,
  .adventure__desc2--second,
  .encounter_wrapper__desc2,
  .encounter_wrapper__desc1 {
    width: unset;
  }
  .encounter_wrapper__desc1 {
    font-size: 40px;
  }
  .adventure__desc3 p {
    width: unset;
  }
  .adventure__images {
    position: relative;
    top: 0;
    left: 0;
  }
  .adventure {
    margin-bottom: unset;
  }
  .resort_offers__title p {
    width: 50%;
  }
  .encounter_wrapper__wrap {
    max-width: 90%;
    padding-inline: 5%;
  }
  .encounter_wrapper__wrap a {
    font-size: 16px;
    padding: 8px;
    width: 24%;
  }
  .resort-offer_2 {
    display: flex;
    flex-direction: column;
    margin-top: 7%;
  }
  .resort-offer_3 {
    margin-top: 7%;
  }
  .resort-offer_btn2 svg,
  .resort-offer_btn3 svg,
  .resort-offer_btn1 svg {
    width: 30px;
  }
}
@media screen and (max-width: 768px) {
  .adventure__desc2 {
    margin-top: 200px;
  }
  .resort_offers__title p {
    width: 100%;
    font-size: 35px;
  }
  .resort_img {
    height: 75vh;
  }
  p.adventure__desc2--first {
    font-size: 32px;
    width: auto;
  }
  .resort-offers {
    display: flex;
    padding-top: 3%;
    padding-left: 4%;
    padding-right: 4%;
    flex-direction: column;
  }
  .resort-offer {
    width: 100%;
  }
  .resort-offer1 {
    width: 100%;
  }
  .resort-offer2 {
    margin-left: 0;
    margin-top: 0;
  }
  .resort-offer3 {
    margin-top: 0;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .resort-offer_btn3 {
    margin-top: 2px;
    margin-left: 9px;
  }
  .resort_offers__title h2 {
    font-size: 37px;
    width: auto;
  }
  .resort-offer_2 {
    display: flex;
    flex-direction: column;
    margin-top: 7%;
  }
  .anchor-tag.mobile {
    padding-bottom: 14px;
  }
  .map.text {
    padding-bottom: 30px;
  }
  .resort-offer_btn2 svg,
  .resort-offer_btn3 svg,
  .resort-offer_btn1 svg {
    width: 40px;
  }
  .book-with-us {
    margin-inline: auto !important;
  }
  .resort-offer_btn3 {
    top: unset;
    left: 7%;
    bottom: unset;
    margin-top: -15px;
  }
  .resort-offer_3 {
    display: flex;
    flex-direction: column;
    margin-top: 17%;
  }
  .encounter_wrapper__wrap {
    max-width: 90%;
    padding-inline: 5%;
  }
  .encounter_wrapper__wrap a {
    font-size: 14px;
    padding: 13px;
    width: 21%;
  }
  .hero_categories button a {
    font-size: 7px;
  }
  .encounter_wrapper__desc2 {
    margin-left: 0;
  }
  .hero_categories {
    gap: 0;
  }
  .dining-images img {
    width: 33% !important;
  }
}
@media screen and (min-width: 1200px) {
  .emblem {
    left: 6% !important;
    bottom: -4% !important;
  }
  .emblem-img {
    left: 6% !important;
    bottom: 4% !important;
  }
  .activity.activity_one.emblem {
    left: 0% !important;
    bottom: 10% !important;
  }
}
.hero_categories.desktop {
  flex-direction: row;
  align-items: baseline;
}

@media screen and (min-width: 1025px) {
  .hero_categories.desktop {
    display: flex !important;
  }
}
@media screen and (max-width: 900px) {
  .first_img {
    margin-top: unset !important;
  }
  .adventure__desc2--first {
    padding-top: 40px;
  }
  .dining-text.right {
    width: 100% !important;
    margin-inline: auto;
    padding-inline: 3.8%;
    margin-bottom: 160px;
    margin-top: 120px !important;
    padding-right: 3.8% !important;
  }
  .dining-images {
    padding-inline: 0% !important;
    padding-block: 5%;
    margin-top: 0% !important;
  }
  .activities .dining-images {
    margin-left: -3.8% !important;
  }
  .dining-images img:first-child {
    width: 250px;
  }
  .dining-images img {
    width: 250px;
  }
  .view.activity {
    display: block;
    margin-bottom: -60px !important;
  }
  .dining-images img:nth-child(2) {
    margin-top: 100px !important;
    margin-left: -50px !important;
  }
  .dining-images img:nth-child(3) {
    margin-top: 200px !important;
    margin-left: -50px !important;
  }
  .dining-images {
    margin-bottom: 60px;
  }
  .dining-images {
    position: relative;
    margin-bottom: 40px;
  }
  .emblem {
    bottom: -50px !important;
  }
}
.dining-images {
  justify-content: unset !important;
  padding-inline: 9%;
  position: relative;
  margin-top: calc(10% - 5px);
}

.dining-images img {
  height: 470px;
  width: 420px;
}

.dining-text.right {
  width: 420px;
  margin-left: auto;
  margin-top: calc(10% - 15px);
  padding-right: 122px;
}

.dining-text.right p {
  width: 100%;
  margin-bottom: -125px;
}

@media screen and (min-width: 1700px) {
  .dining-text.right p {
    width: 100%;
    margin-bottom: -130px;
  }
}
.dining-images img {
  height: 100%;
}

.dining-images img:nth-child(2) {
  margin-top: 67px;
  margin-left: -5%;
  z-index: 90;
}

.dining-images img:nth-child(3) {
  margin-top: 302px;
  margin-left: -5%;
  z-index: 80;
}

.dining-images img:first-child {
  z-index: 100;
}

.ouresortImages.dining-images img:first-child {
  margin-top: -20%;
}

.activity.activity_one.emblem {
  height: 220px !important;
  font-family: "Avenir";
  font-style: normal;
}

.activity {
  padding-bottom: 0% !important;
}

@media screen and (min-width: 900px) {
  .act-btns {
    max-width: 100% !important;
    padding-inline: 5% !important;
  }
}
@media screen and (min-width: 1520px) {
  .resort-offers {
    padding-left: 8%;
    padding-right: 0;
  }
}
@media screen and (max-width: 428px) {
  .resort-offers {
    display: flex;
    padding-top: 3%;
    padding-left: 10%;
    padding-right: 10%;
    flex-direction: column;
    gap: 50px;
  }
  .ouresortImages.dining-images img:first-child {
    margin-top: 0% !important;
  }
  .map.text {
    margin-bottom: 60px !important;
  }
  .map-tag {
    margin-top: 40px !important;
  }
  .resort-offer {
    width: 100%;
  }
  .resort-offer img {
    margin-bottom: 4%;
  }
  .resort-offer1 {
    width: 100%;
  }
  .resort-offer2 {
    margin-left: 0;
    margin-top: 0;
  }
  .resort-offer3 {
    margin-top: 0;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .resort-offer_btn3 {
    margin-top: 2px;
    margin-left: 9px;
  }
  .resort-offer img {
    height: unset;
  }
  .encounter_wrapper__wrap a {
    font-size: 14px;
    padding: 13px;
    width: 39%;
    display: flex;
    justify-content: center;
    margin-left: 29%;
    margin-top: -8%;
    margin-bottom: 13%;
  }
  .activity_resort h1 {
    font-size: 48px;
  }
  .activity_resort__img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    /* Preserve aspect ratio */
    width: auto;
    height: auto;
    padding: unset;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero {
    padding: unset;
  }
  .down__logo.resort {
    display: block;
  }
  .adventure {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 320px;
  }
  .adventure__desc2--second {
    width: 388px;
    font-family: "Avenir";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #EFE8D7;
    flex: none;
    order: 2;
    flex-grow: 0;
    margin-left: 2%;
    margin-top: 5%;
  }
  .adventure__desc2--first {
    width: 387px;
    font-family: "Abhaya Libre";
    font-style: normal;
    font-weight: 400;
    font-size: 36px !important;
    line-height: 100%;
    text-align: center;
    color: #EFE8D7;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    flex: none;
    order: 1;
    flex-grow: 0;
  }
  .resort_offers__title h2 {
    width: 388px;
    height: 72px;
    font-family: "Abhaya Libre";
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    display: flex;
    align-items: flex-end;
    text-align: center;
    color: #EFE8D7;
    flex: none;
    order: 0;
    flex-grow: 0;
  }
  .resort-offers {
    padding-left: 4% !important;
    padding-right: 4% !important;
  }
  .resort-offer_btn2 svg,
  .resort-offer_btn3 svg,
  .resort-offer_btn1 svg {
    width: 63px;
    height: 63px;
    flex: none;
    order: 1;
    flex-grow: 0;
  }
  .btn {
    padding-top: 4% !important;
  }
  .encounter_wrapper__wrap {
    max-width: 100%;
    display: flex;
    flex-direction: column-reverse;
    margin-top: 16%;
  }
  .arrows {
    display: flex !important;
    justify-content: center !important;
    padding-top: 6%;
    padding-bottom: 15%;
  }
  .encounter_wrapper__desc1 {
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    text-align: center;
    color: #EFE8D7;
    flex: none;
    order: 0;
    flex-grow: 0;
    margin-top: 5%;
    margin-bottom: 7%;
  }
  .encounter_wrapper__desc2 {
    font-family: "Avenir";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #FFFFFF;
    flex: none;
    order: 1;
    flex-grow: 0;
    margin-left: 10px;
  }
  .vertical_line {
    display: none;
  }
  .encounter_wrapper__slider {
    display: flex;
    gap: 10px;
    padding: 0 10px;
    width: calc(100% + 20px);
    margin-top: 4%;
    /* Adjust as needed */
  }
  .encounter_wrapper__slider img {
    flex: 0 0 auto;
    max-width: calc(100% - 20px);
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .adventure__desc2 {
    margin-top: 200px;
  }
  .encounter_wrapper__slider {
    display: flex;
    gap: 40px;
    padding: 0 10px;
    width: calc(100% + 20px) !important;
    margin-top: 4%;
    padding: 0 4%;
  }
  .encounter_wrapper__slider img {
    flex: 0 0 auto;
    width: 89% !important;
    height: auto;
  }
  .vertical_line {
    display: none;
  }
  .resort-offers {
    display: flex;
    padding-top: 3%;
    padding-left: 10%;
    padding-right: 10%;
    flex-direction: column;
    gap: 50px;
  }
  .resort-offer {
    width: 100%;
  }
  .resort-offer img {
    margin-bottom: 4%;
  }
  .resort-offer1 {
    width: 100%;
  }
  .resort-offer2 {
    margin-left: 0;
    margin-top: 0;
  }
  .resort-offer3 {
    margin-top: 0;
    margin-left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .resort-offer_btn3 {
    margin-top: 2px;
    margin-left: 9px;
  }
  .resort-offer img {
    height: unset;
  }
  .encounter_wrapper__wrap a {
    font-size: 14px;
    padding: 13px;
    width: 39%;
    display: flex;
    justify-content: center;
    margin-left: 29%;
    margin-bottom: 13%;
  }
  .activity_resort h1 {
    width: 100%;
    padding-inline: 3.8%;
  }
  .activity_resortDescription {
    padding-inline: 3.8%;
  }
  .activity_resort__img {
    display: block;
    width: 100%;
    max-width: unset;
    padding: unset;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .hero {
    padding: unset;
  }
  .down__logo.resort {
    display: block;
  }
  .adventure {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 320px;
  }
  .adventure__desc2--second {
    width: 93%;
    font-family: "Avenir";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #EFE8D7;
    flex: none;
    order: 2;
    flex-grow: 0;
    margin-left: 2%;
    margin-top: 5%;
  }
  .adventure__desc2--first {
    width: 100%;
    font-family: "Abhaya Libre";
    font-style: normal;
    font-weight: 400;
    font-size: 36px !important;
    line-height: 100%;
    text-align: center;
    color: #EFE8D7;
    text-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    flex: none;
    order: 1;
    flex-grow: 0;
  }
  .resort_offers__title h2 {
    width: 100%;
    height: 72px;
    font-family: "Abhaya Libre";
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    display: flex;
    align-items: flex-end;
    text-align: center;
    color: #EFE8D7;
    flex: none;
    order: 0;
    flex-grow: 0;
  }
  .resort-offers {
    padding-left: 4% !important;
    padding-right: 4% !important;
  }
  .resort-offer_btn2 svg,
  .resort-offer_btn3 svg,
  .resort-offer_btn1 svg {
    width: 63px;
    height: 63px;
    flex: none;
    order: 1;
    flex-grow: 0;
  }
  .btn {
    padding-top: 4% !important;
  }
  .encounter_wrapper__wrap {
    max-width: 100%;
    display: flex;
    flex-direction: column-reverse;
    margin-top: 7%;
  }
  .arrows {
    display: flex !important;
    justify-content: center !important;
    padding-top: 6%;
    padding-bottom: 15%;
  }
  .encounter_wrapper__desc1 {
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    text-align: center;
    color: #EFE8D7;
    flex: none;
    order: 0;
    flex-grow: 0;
    margin-top: 5%;
    margin-bottom: 7%;
  }
  .encounter_wrapper__desc2 {
    font-family: "Avenir";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    color: #FFFFFF;
    flex: none;
    order: 1;
    flex-grow: 0;
    margin-left: 10px;
  }
}
@media screen and (max-width: 900px) {
  .activity_resort h1 {
    font-size: 64px;
  }
  .adventure__desc2--second li {
    text-align: left;
  }
  .text {
    text-align: center;
  }
  .text a {
    text-align: center;
    display: inline-block;
  }
  .recommended-programs h2 {
    font-size: 36px;
    text-align: center;
  }
  .grid-item a {
    text-align: left;
    padding-block: 10px 35px;
  }
  .recommended-programs {
    padding-block: 50px 0px !important;
  }
}
@media screen and (max-width: 402px) {
  .adventure {
    padding-top: 274px;
  }
  .mtop {
    margin-top: 25px;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1300px) {
  .resort-offers {
    padding-left: 5% !important;
    padding-right: 5% !important;
  }
}
.packages-filter__list .packages__border {
  border-bottom: 1px solid #EFE8D7;
  padding-bottom: 16px;
  margin-bottom: 68px;
}
.packages-filter__list ul {
  margin-bottom: unset !important;
  text-align: center;
}
.packages-filter__list ul li {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ABC6C9;
  opacity: 0.5;
  list-style: none;
  cursor: pointer;
}
.packages-filter__list ul li:hover {
  color: #FC7F00 !important;
  opacity: 1 !important;
  border-bottom: 2px solid #FC7F00;
  margin-bottom: -17px;
}

.toRight {
  margin-left: auto;
}

.packagesDetails .swiper-slide {
  width: 49% !important;
}

.grid-container-programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  overflow-x: hidden;
  position: relative;
}

.recommended-programs h2 {
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  color: #EFE8D7;
  padding-bottom: 30px;
}

.activity_resortDescription {
  color: #EFE8D7;
  font-size: 18px;
  display: table;
  margin: auto;
  width: 30%;
  text-align: center;
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-block: 0px 50px;
}

.grid-item img {
  width: 100%;
  height: auto;
  padding-bottom: 10px;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.grid-item {
  max-width: 100%;
  /* Ensure items do not exceed container width */
  box-sizing: border-box;
  /* Include padding and border in the item's total width */
}

.recommended-programs {
  padding-inline: 3.8%;
  padding-block: 50px 100px;
  font-family: "AbhayaLibre" !important;
}

.packagesDetails .swiper-slide:not(:first-child) {
  margin-left: 2% !important;
}

.packages-filter {
  margin-top: 124px;
  margin-bottom: 128px;
}

.active__package {
  color: #FC7F00 !important;
  opacity: 1 !important;
  border-bottom: 2px solid #FC7F00;
  margin-bottom: -17px;
}

.packages-filter__image {
  width: 637px;
  height: 467px;
  -o-object-fit: cover;
     object-fit: cover;
}

.packages-filter__items h2 {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  color: #EFE8D7;
  width: 489px;
}
.packages-filter__items p {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  width: 421px;
  margin-bottom: 32px;
}

.packages-filter__right {
  position: absolute;
  bottom: 0;
  left: 96px;
}

.packages-filter__card {
  margin-top: 43px;
  margin-left: 73px;
}

.packages-filter__animation {
  position: relative;
}

.packages-filter__items .emblem {
  position: relative;
  width: 160px !important;
  height: 160px !important;
  margin: 20px auto;
  border-radius: 50%;
  font-weight: bold;
  color: #ABC6C9;
  text-align: center;
}
.packages-filter__items .emblem span {
  text-transform: uppercase;
  font-size: 15px !important;
}

@media (max-width: 1024px) {
  .packages-filter__items .emblem {
    position: relative !important;
    transform: translate(-50%, 0);
    top: 0;
  }
}
@media (max-width: 768px) {
  .packages_image {
    display: flex;
    justify-content: center;
  }
  .packages-filter__items .emblem {
    width: 140px !important;
    height: 140px !important;
  }
}
@media (max-width: 480px) {
  .packages_image {
    display: flex;
    justify-content: center;
  }
  .packages-filter__items .emblem {
    height: 140px !important;
    width: 140px !important;
    left: 50%;
    margin: 0;
  }
}
.emblem span {
  position: absolute;
  width: 20px;
  height: 20px;
  text-align: center;
  transform-origin: center center;
  display: inline-block;
}

.mobile {
  display: none !important;
}

.desktop {
  display: block !important;
}

@media screen and (max-width: 768px) {
  .grid-container-programs {
    grid-template-columns: repeat(1, 1fr) !important;
  }
  .activity_resortDescription {
    width: 100%;
  }
}
@media screen and (max-width: 1372px) {
  .packagesDetails .swiper-slide {
    width: 100% !important;
  }
}
@media screen and (max-width: 1024px) {
  .packages-filter__items .packages-filter__animation {
    margin-top: 64px !important;
    display: table;
    margin: auto;
  }
  .packages-filter__card {
    flex-direction: column;
    margin-top: 35px;
  }
  .packages-filter__items p {
    margin-bottom: 44px;
    width: 100%;
    text-align: center;
  }
  .packages-filter__right {
    position: relative;
    bottom: 0;
    left: 0;
  }
  .packages-filter__items h2 {
    font-size: 36px !important;
  }
  .packages-filter {
    margin-top: 96px;
    margin-bottom: 0px;
  }
  .mobile {
    display: flex !important;
    justify-content: center;
  }
  .grid-container-programs {
    grid-template-columns: repeat(2, 1fr);
  }
  .desktop {
    display: none !important;
  }
  .packages-filter__items .emblem {
    position: unset;
  }
  .packages-filter__items h2 {
    width: 100%;
  }
  .packages-filter__card {
    margin-left: unset;
  }
  .packages-filter__image {
    width: 100%;
    height: auto !important;
  }
  .mobile-selector {
    margin-bottom: 64px;
  }
  .filter-mobile {
    display: block;
    padding: 7px 10px;
    margin-right: 10px;
    background-color: #0E1C1D;
    border: 1px solid #FC7F00;
    width: 100%;
    height: 60px;
    font-family: "Avenir";
    font-style: normal;
    font-weight: 800;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FC7F00;
    cursor: pointer;
    outline: none;
  }
}
.mobile-selector .filter-mobile {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("../assets/carbon_chevron-up-outline.svg") !important;
  background-position: 97% center;
  background-repeat: no-repeat;
}

.program__shared-stories .shared_stories .padding-3 {
  padding: 0 5% !important;
}

@media screen and (min-width: 1441px) {
  .program__shared-stories .shared_stories .padding-3 {
    padding: 0 2% !important;
  }
}
.rooms-sec {
  margin-top: 128px;
  margin-bottom: 112px;
}

.terms-of-use {
  width: 70%;
  margin-right: auto;
  padding-left: 5%;
}

.authtitle {
  color: #EFE8D7;
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 110px;
  line-height: 83%;
  display: flex;
  align-items: center;
  color: #EFE8D7;
  margin-block: 80px 0px;
}

.line-1 {
  background-color: #ABC6C9;
  height: 2px;
  width: 100%;
  margin-block: 60px;
  opacity: 30%;
}

.terms-of-use h2 {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  color: #EFE8D7;
}

.terms-of-use h3 {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  color: #FFFFFF;
  padding-block: 40px 20px;
}

.terms-of-use ul {
  padding-left: 60px;
}

.terms-of-use li {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  margin-top: 16px;
  list-style: disc;
}

.terms-of-use h5 {
  color: #F8F59B;
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  padding-block: 50px;
  text-transform: uppercase;
}

.rooms__left h3 {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  color: #EFE8D7;
}
.rooms__left p {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  margin-top: 16px;
}
.rooms__left .rooms__images img {
  width: 710px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.rooms__left--swiper .rooms__images img {
  width: 710px;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}

.rooms__right h3 {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  color: #EFE8D7;
  margin-bottom: unset !important;
}
.rooms__right ul {
  margin-top: 32px;
}
.rooms__right ul li {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  list-style: none;
  margin-bottom: 16px;
  gap: 18px;
}
.rooms__right ul li img {
  width: 24px;
  height: auto;
}
.rooms__right ul li p {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #FFFFFF;
  margin-bottom: unset;
}

.rooms__container {
  margin-top: 64px;
  gap: 146px;
}

.rooms__left--size {
  width: 710px;
}

.rooms__header {
  gap: 146px;
}

.rooms__right--size {
  height: 108px;
}
.rooms__right--size button {
  margin-top: 50px;
}

.swiper-button-prev4 {
  width: 63px;
  height: 63px;
}

.swiper-button-next4 {
  width: 63px;
  height: 63px;
}

.rooms__left--swiper {
  width: 710px;
}
.rooms__left--swiper .swiper-horizontal > .swiper-pagination-bullets, .rooms__left--swiper .swiper-pagination-bullets.swiper-pagination-horizontal, .rooms__left--swiper .swiper-pagination-custom, .rooms__left--swiper .swiper-pagination-fraction {
  bottom: var(--swiper-pagination-bottom, 100px);
  top: var(--swiper-pagination-top, auto);
  left: 24px;
  width: -moz-max-content;
  width: max-content;
}
.rooms__left--swiper .swiper-pagination-bullet-active {
  opacity: 1;
  background: #ABC6C9 !important;
}
.rooms__left--swiper .swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 17px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 17px));
  border: 2px solid #ABC6C9;
  background: transparent;
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 1);
}

.swiper-button-container {
  margin-top: 10px;
  float: right;
}

@media screen and (max-width: 768px) {
  .not-found {
    width: 100% !important;
    padding-inline: 5%;
  }
  .authtitle {
    font-size: 60px;
  }
  .terms-of-use h2 {
    font-size: 30px;
  }
  .terms-of-use h3 {
    font-size: 24px;
  }
  .terms-of-use li {
    font-size: 15px;
  }
  .terms-of-use h5 {
    font-size: 19px;
  }
}
@media screen and (max-width: 1024px) {
  .resort-offers {
    display: flex;
    padding-top: 3%;
    padding-left: 10%;
    padding-right: 10%;
    flex-direction: column;
    gap: 50px;
  }
  .resort-offer img {
    height: unset;
  }
  .rooms__right .menu__btn {
    width: 100%;
  }
  .rooms-sec {
    margin-top: 97px;
    margin-bottom: unset !important;
  }
  .swiper-button-container {
    justify-content: center;
    float: unset;
  }
  .rooms__left h3 {
    font-size: 36px !important;
    text-align: center;
  }
  .rooms__left p {
    text-align: center;
  }
  .resort_offers__title h2 {
    margin-bottom: 44px;
  }
  .resort_offers__title h2 {
    font-size: 36px !important;
    text-align: center;
  }
  .rooms__left--size {
    width: 100%;
  }
  .rooms__right--size {
    height: unset;
  }
  .rooms__header {
    gap: 14px;
  }
  .rooms__left--swiper .rooms__images img {
    width: 100% !important;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .rooms__left--swiper {
    width: 100%;
  }
  .rooms__container {
    margin-top: 32px;
    gap: 64px;
  }
  .terms-of-use {
    margin-top: 150px;
    width: 100%;
    padding-inline: 4%;
  }
}
.news-events-page__header {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 110px;
  line-height: 83%;
  display: flex;
  align-items: center;
  text-align: center;
  color: #EFE8D7;
  justify-content: center;
}

.menu__btn:hover {
  text-decoration: underline !important;
}

.menu__btn:focus {
  color: #FC7F00;
}

.news-events-page__image {
  width: 511px;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-events-page__title {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  color: #F8F59B;
  margin-top: 32px;
  margin-bottom: 16px !important;
  width: 418px;
  cursor: pointer;
}

.news-events-page__date {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #EFE8D7;
  margin-bottom: 16px !important;
}

.news-events-page__desc {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #EFE8D7;
  width: 418px;
  margin-bottom: unset !important;
}

.news-events-page__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 194px;
}

.news-events-page__cards .news-events-page__card:nth-child(even) {
  margin-top: 102px;
}

.highlighted--events__image {
  width: 710px;
  height: auto;
  max-height: 425px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.no-style:hover {
  text-decoration: none;
}

.highlighted--events__title {
  width: 343px;
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  color: #FC7F00;
  margin-bottom: 16px;
  cursor: pointer;
}

.highlighted--events__date {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #EFE8D7;
  margin-bottom: unset;
}

.highlighted--events__desc {
  width: 345px;
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #EFE8D7;
  margin-bottom: unset;
  margin-top: 16px;
}

.highlighted--events__card {
  justify-content: space-between;
  gap: 20px;
  position: absolute;
  top: -66px;
  left: 50%;
  transform: translateX(-50%);
}

.highlighted--events__right {
  margin-top: 130px;
}

.highlighted--events {
  background-color: black;
  height: 428px;
  position: relative;
  margin-bottom: 96px;
}

.news-events-page__btn {
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -97px;
  margin-bottom: 128px;
}

@media screen and (max-width: 1024px) {
  .news-events-page__cards {
    margin-bottom: 64px;
  }
  .news-events-page__btn {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: -40px;
    margin-bottom: 96px;
  }
  .highlighted--events__card {
    left: unset;
    transform: unset;
  }
  .highlighted--events__title {
    font-size: 36px;
  }
  .news-events-page__header {
    font-size: 60px;
    margin-top: 210px;
  }
  .news-events-page__cards .news-events-page__card:nth-child(even) {
    margin-top: unset !important;
  }
  .news-events-page__card {
    margin-bottom: 64px;
  }
  .news-events-page__image {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .news-events-page__desc {
    width: 100%;
  }
  .news-events-page__title {
    width: 100%;
    font-size: 36px;
  }
  .highlighted--events__card {
    justify-content: space-between;
    gap: 20px;
    position: absolute;
    top: -160px;
    display: flex !important;
    flex-direction: column !important;
  }
  .highlighted--events {
    margin-top: 160px;
    background-color: black;
    height: 475px;
    position: relative;
    margin-bottom: 32px !important;
  }
  .highlighted--events__image {
    width: 100%;
    height: auto;
    min-height: 352px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .highlighted--events__right {
    margin-top: unset !important;
  }
}
@media screen and (min-width: 500px) and (max-width: 1024px) {
  .highlighted--events {
    margin-top: 160px;
    background-color: black;
    height: 775px;
    position: relative;
    margin-bottom: 32px !important;
  }
}
@media screen and (max-width: 1024px) {
  .news-events-page__header {
    margin-top: 150px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 1280px) {
  .padding-3 {
    padding: 0 5.1%;
  }
}
/* Book reservation css */
.hb_single_room .title h4 a {
  display: flex;
  justify-content: center;
  color: #EFE8D7 !important;
  text-decoration: none;
  font-family: "Avenir";
  font-size: 50px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 2.24px;
  text-transform: uppercase;
}

.hb_single_room .title {
  margin-top: 8%;
}

.hb_single_room .hb_single_room_details .hb_single_room_tabs > li a {
  color: #EFE8D7 !important;
  text-decoration: none;
  font-family: "Avenir";
  font-size: 20px !important;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 2.24px;
  text-transform: uppercase;
}

.hb_single_room_tabs_content li {
  color: #EFE8D7;
  font-family: "Avenir";
  font-size: 20px;
}

.hb_single_room {
  padding: 0 5%;
}

.hb_single_room_tab_details ol {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hb_single_room_tab_details ol li strong {
  color: #ABC6C9;
  font-family: "Avenir";
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
}

.hb-noreviews {
  color: #EFE8D7;
  font-family: "Avenir";
  font-size: 15px;
}

.comment-reply-title {
  color: #EFE8D7;
  font-family: "Avenir";
  font-size: 15px;
}

.hb_single_room #reviews #review_form_wrapper form p {
  color: #EFE8D7;
  font-family: "Avenir";
  font-size: 15px;
}

.hb_single_room_tab_details {
  color: #EFE8D7;
  font-family: "Avenir";
  font-size: 15px;
}

.hb_single_room table.hb_room_pricing_plans tr th {
  color: #EFE8D7 !important;
  font-family: "Avenir";
  font-size: 15px;
}

.hb_related_other_room {
  padding: 0 5%;
}

.rooms .hb_room .title h4 a {
  color: #EFE8D7 !important;
  font-family: "Avenir";
  font-size: 15px;
}

.hb_single_room_tab_details #comments h2 {
  color: #EFE8D7;
  font-family: "Avenir";
}

.hb_single_room .price span.title-price {
  color: #EFE8D7 !important;
  font-family: "Avenir";
}

.hb-booking-room-form-head h2 {
  color: black;
  font-size: 39px;
  font-family: "Avenir";
}

.hb-booking-room-form-head p {
  font-size: 20px;
  font-family: "Avenir";
}

.hb-booking-room-form-head .description {
  width: 100% !important;
}

.hotel-booking-search input,
.hotel-booking-search select,
.hotel-booking-search textarea,
.hotel-booking-search button {
  font-size: 17px !important;
  font-family: "Avenir";
}

.hotel-booking-search button.hotel-search_submit {
  cursor: pointer;
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  text-align: right;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 20px;
  text-align: right;
  white-space: nowrap !important;
  background-color: transparent !important;
  font-size: 14px !important;
  color: #FC7F00 !important;
  border: 1px solid #FC7F00;
}

.hotel-booking-search button.hotel-search_submit:hover {
  font-size: 14px !important;
  font-family: "Avenir";
  color: white !important;
  background-color: #FC7F00 !important;
}

#hb_room_load_booking_form {
  margin-top: -30px;
  margin-right: 50px;
}

.hb_single_room #hb_room_images {
  margin-bottom: 46px;
}

.hb-single-room-gallery img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top center;
     object-position: top center;
}

.hb_single_room .hb_single_room_details .hb_single_room_tabs {
  width: 76%;
}

.hb_single_room .price {
  margin: 20px;
  float: inline-start !important;
}

.hb_single_room #reviews #review_form_wrapper form p label {
  margin-bottom: 10px;
  display: block;
  color: #EFE8D7;
  font-family: "Avenir";
  font-size: 18px;
}

.hb_single_room #reviews {
  clear: both;
  padding-top: 4%;
}

.hb_single_room #hb_room_images {
  margin-bottom: 7%;
}

.hb_single_room #hb_room_images img {
  width: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.entry-summary a {
  display: none;
}

.entry-summary #reservation-btn a {
  display: flex !important;
  margin-bottom: 40px;
  margin-left: auto;
  max-width: -moz-max-content;
  max-width: max-content;
  float: none !important;
}

.reservation-description {
  color: white;
  display: flex;
  text-align: right;
  justify-content: end;
}

.reservation-description h3 {
  color: #EFE8D7;
  font-family: "Avenir";
  font-size: 30px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 2.24px;
}

.reservation-description hr {
  width: 87px;
  margin-block: 25px;
  min-height: 1px;
  margin-left: auto;
  background: white;
}

.company-label {
  font-style: italic;
  font-weight: 700;
  font-size: 24px;
  color: #EFE8D7;
  font-family: "Avenir";
}

.room-separator {
  min-height: 1px;
  width: 100%;
  background: white;
  margin-block: 2rem;
}

.reservation-description ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.reservation-description ul li {
  display: flex;
  justify-content: end;
}

.reservation-description ul li p {
  display: flex;
  justify-content: end;
  color: #FC7F00;
}

.reservation-description ul li label {
  margin-left: 20px;
  font-weight: 700;
}

.reservation-description_desc {
  font-family: "Avenir";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  gap: 15px;
  color: #EFE8D7;
  font-family: "Avenir";
}

.reservation-description .desc {
  font-family: "Avenir";
  color: #FC7F00;
  text-decoration: none;
}

.reservation-description_label {
  color: #EFE8D7;
  font-family: "Avenir";
}

.hb_related_other_room {
  display: none;
}

.hb-booking-room-form-head {
  color: black;
}

.hotel-booking-search button {
  background-color: #ffc107 !important;
}

.hb-search-results-form-container {
  border: 0px !important;
}

.hb-search-room-results.hotel-booking-search {
  padding-bottom: 30px;
}

.hb_input_field:after {
  display: none;
}

#room-search-form {
  justify-content: end;
  align-items: end;
}

#hotel-booking-results, #hb-form-search-page, .entry-footer {
  display: none;
}

.entry-content .hotel-booking-search {
  padding-bottom: 0px !important;
  padding-right: 0px !important;
}

@media screen and (max-width: 768px) {
  .reservation-description ul li {
    display: flex;
    justify-content: start;
  }
  .reservation-description_desc {
    text-align: left;
  }
  .reservation-description ul li {
    display: flex;
    flex-direction: row-reverse;
    gap: 30px;
  }
  #hb_room_images img {
    width: 100%;
  }
  #hb_room_load_booking_form {
    margin-bottom: 4%;
    margin: 0 auto !important;
  }
  .reservation-description ul li label {
    margin-left: 0px !important;
  }
  .hb_single_room_tabs_content li {
    font-size: 14px;
  }
  .hb_single_room_tab_details ol {
    gap: 13px;
  }
  .hb_single_room_tab_details ol li strong {
    font-size: 17px;
  }
  .hb_single_room .hb_single_room_details .hb_single_room_tabs {
    width: 100%;
  }
  .hb_single_room .hb_single_room_details .hb_single_room_tabs > li {
    padding-right: 25px;
  }
  .hb_single_room .hb_single_room_details .hb_single_room_tabs_content {
    padding: 2px 0;
  }
  .summary {
    padding-top: 20%;
  }
  .hb_single_room .title h4 a {
    font-size: 32px;
    display: inline-block;
    margin-top: 70px;
  }
  .reservation-support {
    max-width: 100%;
  }
  .reservation-description {
    color: white;
    display: flex;
    flex-direction: column;
    text-align: right;
    justify-content: end;
  }
  .reservation-make {
    max-width: 100%;
  }
  .reservation-description hr {
    display: none;
  }
  .reservation-description h3 {
    display: flex;
  }
  .company-label {
    font-style: italic;
    font-weight: 700;
    font-size: 24px;
    color: #EFE8D7;
    font-family: "Avenir";
    display: flex;
  }
  .reservation-description {
    text-align: unset;
  }
  .reservation-description h3 {
    display: flex;
    text-align: start;
  }
  .reservation-description ul li {
    display: flex;
    justify-content: end;
  }
  .hb_single_room #hb_room_images {
    margin-bottom: 8%;
  }
}
@media screen and (max-width: 425px) {
  .hb_single_room .hb_single_room_details .hb_single_room_tabs > li {
    padding-right: 29px;
  }
  .hb_single_room .hb_single_room_details .hb_single_room_tabs > li a {
    font-size: 15px !important;
  }
  .hb_single_room .hb_single_room_details .hb_single_room_tabs_content {
    padding: 2px 0;
  }
  body .hb_related_other_room .rooms li.hb_room {
    max-width: none;
  }
  .hb_single_room .title h4 a {
    font-size: 32px;
  }
  #hb_room_load_booking_form {
    width: 100%;
    margin-top: -11px;
    margin-right: 0px;
  }
}
@media screen and (max-width: 425px) {
  .reservation-description ul li {
    display: flex;
    justify-content: start;
  }
  .hb_single_room .title h4 {
    margin-top: 11px;
  }
}
.hb_button.hb_checkout:hover {
  background-color: unset !important;
  background: unset !important;
  color: #FC7F00 !important;
  text-decoration: underline !important;
}

.entry-title {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 110px;
  line-height: 83%;
  text-align: center;
  color: #EFE8D7;
}

.show-number {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: #EFE8D7;
}

.sort-by__label {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: #EFE8D7;
}

.toggle {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: #EFE8D7;
}

.hb-message-content {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  line-height: 35px;
  color: #EFE8D7 !important;
}

.rooms .hb_room .price span {
  color: #EFE8D7;
}

.sort-by-wrapper .toggle {
  color: #EFE8D7 !important;
}

.hotel-cart {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: #FFFFFF;
}
.hotel-cart .entry-title {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 110px;
  line-height: 83%;
  text-align: center;
  color: #EFE8D7;
}
.hotel-cart h3 {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 50px !important;
  line-height: 100% !important;
  color: #EFE8D7 !important;
}
.hotel-cart #hotel-booking-cart table th {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.16em;
  color: #EFE8D7 !important;
}
.hotel-cart #hotel-booking-cart .hb_advance_payment .hb-align-right,
.hotel-cart #hotel-booking-payment .hb_advance_payment .hb-align-right,
.hotel-cart #hotel-booking-cart .hb_advance_grand_total .hb-align-right,
.hotel-cart #hotel-booking-payment .hb_advance_grand_total .hb-align-right,
.hotel-cart #hotel-booking-cart .hb_advance_tax .hb-align-right,
.hotel-cart #hotel-booking-payment .hb_advance_tax .hb-align-right,
.hotel-cart #hotel-booking-cart .hb_sub_total .hb-align-right,
.hotel-cart #hotel-booking-payment .hb_sub_total .hb-align-right {
  font-family: "Avenir";
  color: #EFE8D7 !important;
}
.hotel-cart td,
.hotel-cart th {
  border: 1px solid #ddd;
}
.hotel-cart #hotel-booking-cart .hb_button.hb_checkout,
.hotel-cart #hotel-booking-payment .hb_button.hb_checkout,
.hotel-cart #hotel-booking-cart button[type=submit],
.hotel-cart #hotel-booking-payment button[type=submit],
.hotel-cart #hotel-booking-cart button[type=button],
.hotel-cart #hotel-booking-payment button[type=button] {
  border: 1px solid #FC7F00;
  height: 40px;
  padding-inline: 8px;
  margin-top: -6px;
  color: #FC7F00;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  background: none;
}
.hotel-cart a {
  color: #FC7F00 !important;
  text-decoration: none;
  background-color: transparent;
}
.hotel-cart footer {
  display: none;
}

@media screen and (min-width: 500px) and (max-width: 1250px) {
  .hotel-cart .entry-title {
    margin-top: 120px;
  }
  .checkout .entry-title {
    margin-top: 120px;
  }
  #bookingDetails h2 {
    margin-top: 90px;
  }
}
@media screen and (max-width: 500px) {
  .hotel-cart .entry-title {
    margin-top: 120px;
  }
  .checkout .entry-title {
    margin-top: 120px;
  }
  #bookingDetails h2 {
    margin-top: 60px;
  }
}
#hotel_booking_room_hidden .hb_button {
  color: #fff;
  font-weight: 600;
  font-size: 17px !important;
  font-family: "Avenir";
}

@media screen and (max-width: 1024px) {
  .hotel-cart .entry-title {
    font-size: 60px;
  }
  .checkout {
    text-align: left;
  }
  .checkout #hotel-booking-cart input[type=number], .checkout #hotel-booking-payment input[type=number], .checkout #hotel-booking-cart input[type=text], .checkout #hotel-booking-payment input[type=text], .checkout #hotel-booking-cart input[type=email], .checkout #hotel-booking-payment input[type=email] {
    text-align: left;
  }
  #hotel-booking-cart select, #hotel-booking-payment select {
    text-align: left;
  }
  #hotel-booking-cart select .hotel-cart .entry-title, #hotel-booking-payment select .hotel-cart .entry-title {
    font-size: 60px;
  }
  #hotel-booking-cart select .checkout .hb-form-field-label, #hotel-booking-payment select .checkout .hb-form-field-label {
    text-align: left !important;
  }
  #hotel-booking-cart select .hb-order-existing-customer > div > h4, #hotel-booking-cart select .hb-order-new-customer > div > h4, #hotel-booking-cart select .hb-payment-form > div > h4, #hotel-booking-cart select .hb-addition-information > div > h4, #hotel-booking-payment select .hb-order-existing-customer > div > h4, #hotel-booking-payment select .hb-order-new-customer > div > h4, #hotel-booking-payment select .hb-payment-form > div > h4, #hotel-booking-payment select .hb-addition-information > div > h4 {
    text-align: left !important;
  }
  #hotel-booking-cart select .checkout h3, #hotel-booking-payment select .checkout h3 {
    text-align: left !important;
  }
  #hotel-booking-cart select .checkout .entry-title, #hotel-booking-payment select .checkout .entry-title {
    font-size: 65px !important;
  }
  #hotel-booking-cart select .hotel-booking-payment form p, #hotel-booking-payment select .hotel-booking-payment form p {
    text-align: left !important;
  }
  #hotel-booking-cart select .hotel-booking-payment form, #hotel-booking-payment select .hotel-booking-payment form {
    width: 100vh;
    overflow-x: hidden;
  }
  #hotel-booking-cart select .checkout, #hotel-booking-payment select .checkout {
    text-align: left;
  }
  #hotel-booking-cart select .checkout #hotel-booking-cart input[type=number], #hotel-booking-cart select .checkout #hotel-booking-payment input[type=number], #hotel-booking-cart select .checkout #hotel-booking-cart input[type=text], #hotel-booking-cart select .checkout #hotel-booking-payment input[type=text], #hotel-booking-cart select .checkout #hotel-booking-cart input[type=email], #hotel-booking-cart select .checkout #hotel-booking-payment input[type=email], #hotel-booking-payment select .checkout #hotel-booking-cart input[type=number], #hotel-booking-payment select .checkout #hotel-booking-payment input[type=number], #hotel-booking-payment select .checkout #hotel-booking-cart input[type=text], #hotel-booking-payment select .checkout #hotel-booking-payment input[type=text], #hotel-booking-payment select .checkout #hotel-booking-cart input[type=email], #hotel-booking-payment select .checkout #hotel-booking-payment input[type=email] {
    text-align: left;
  }
  #hotel-booking-cart select #hotel-booking-cart select, #hotel-booking-cart select #hotel-booking-payment select, #hotel-booking-payment select #hotel-booking-cart select, #hotel-booking-payment select #hotel-booking-payment select {
    text-align: left;
  }
  .hotel-cart h3 {
    font-family: "AbhayaLibre";
    font-style: normal;
    font-weight: 400;
    font-size: 36px !important;
    line-height: 100% !important;
    color: #EFE8D7 !important;
  }
}
.hb-search-results-form-container p.no-extra {
  display: none;
}

.number_room_select {
  left: 100%;
}

.hotel-booking-search select {
  position: relative;
  width: auto;
  height: 40px;
  min-width: 200px;
  border: 1px solid black !important;
  border-radius: 3px;
  font-size: 15px;
  color: #7a7a7a;
  padding: 7px 18px !important;
  line-height: 24px;
  box-shadow: inset 0 0 0 rgba(0, 0, 0, 0.075);
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: black !important;
}

@media screen and (max-width: 1024px) {
  .number_room_select {
    left: unset !important;
  }
  .hotel-booking-search select {
    position: relative;
    width: 100% !important;
  }
  .hotel-booking-search {
    text-align: center !important;
  }
}
@media screen and (max-width: 500px) {
  .entry-header {
    padding-top: 12%;
  }
  .entry-title {
    font-size: 62px !important;
  }
  .sort-by {
    margin-top: 6%;
  }
}
.hotel-thank-you {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: #FFFFFF;
  padding-bottom: 5%;
}
.hotel-thank-you .entry-title {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 110px;
  line-height: 83%;
  text-align: center;
  color: #EFE8D7;
}
.hotel-thank-you h3 {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 50px !important;
  line-height: 100% !important;
  color: #EFE8D7 !important;
}
.hotel-thank-you #hotel-booking-cart table th {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.16em;
  color: #EFE8D7 !important;
}
.hotel-thank-you #hotel-booking-cart .hb_advance_payment .hb-align-right,
.hotel-thank-you #hotel-booking-payment .hb_advance_payment .hb-align-right,
.hotel-thank-you #hotel-booking-cart .hb_advance_grand_total .hb-align-right,
.hotel-thank-you #hotel-booking-payment .hb_advance_grand_total .hb-align-right,
.hotel-thank-you #hotel-booking-cart .hb_advance_tax .hb-align-right,
.hotel-thank-you #hotel-booking-payment .hb_advance_tax .hb-align-right,
.hotel-thank-you #hotel-booking-cart .hb_sub_total .hb-align-right,
.hotel-thank-you #hotel-booking-payment .hb_sub_total .hb-align-right {
  font-family: "Avenir";
  color: #EFE8D7 !important;
}
.hotel-thank-you td,
.hotel-thank-you th {
  border: 1px solid #ddd;
}
.hotel-thank-you #hotel-booking-cart .hb_button.hb_checkout,
.hotel-thank-you #hotel-booking-payment .hb_button.hb_checkout,
.hotel-thank-you #hotel-booking-cart button[type=submit],
.hotel-thank-you #hotel-booking-payment button[type=submit],
.hotel-thank-you #hotel-booking-cart button[type=button],
.hotel-thank-you #hotel-booking-payment button[type=button] {
  border: 1px solid #FC7F00;
  height: 40px;
  padding-inline: 8px;
  margin-top: -6px;
  color: #FC7F00;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  background: none;
}
.hotel-thank-you a {
  color: #FC7F00 !important;
  text-decoration: none;
  background-color: transparent;
}
.hotel-thank-you footer {
  display: none;
}

#thankYouMessage {
  color: #EFE8D7;
}

#bookingDetails {
  padding-block: 5%;
  color: #EFE8D7;
}
#bookingDetails h2 {
  margin-bottom: 4%;
}

@media screen and (max-width: 1024px) {
  .hotel-thank-you .entry-title {
    font-size: 60px;
    margin-top: 120px;
  }
  .hotel-thank-you h3 {
    font-family: "AbhayaLibre";
    font-style: normal;
    font-weight: 400;
    font-size: 36px !important;
    line-height: 100% !important;
    color: #EFE8D7 !important;
  }
  .hotel-booking-search input,
  .hotel-booking-search select {
    min-width: 155px !important;
    width: 155px !important;
  }
  #bookingDetails {
    padding-block: 16%;
  }
}
.single-room h3 {
  text-align: right;
}

.single-room .room-capacity {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .hotel-booking-search .entry-title {
    font-size: 50px;
    margin-top: 100px;
  }
  .single-room h3 {
    font-size: 13px !important;
  }
  #search-results p {
    font-size: 13px !important;
  }
  #room-search-form {
    flex-wrap: wrap;
    justify-content: center;
    padding-inline: 3%;
  }
  .single-room a {
    font-size: 15px !important;
  }
  .hotel-booking-search input,
  .hotel-booking-search select {
    min-width: 155px !important;
    width: 155px !important;
  }
  #bookingDetails {
    padding-block: 16%;
  }
}
@media screen and (max-width: 500px) {
  #bookingDetails {
    padding-block: 30%;
  }
}
.checkout {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  color: #FFFFFF;
  text-align: right;
}
.checkout .entry-title {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 110px;
  line-height: 83%;
  text-align: center;
  color: #EFE8D7;
}
.checkout h3 {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 50px !important;
  line-height: 100% !important;
  color: #EFE8D7 !important;
}
.checkout #hotel-booking-payment table th {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 900;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.16em;
  color: #EFE8D7 !important;
}
.checkout #hotel-booking-cart .hb_advance_payment .hb-align-right, .checkout #hotel-booking-payment .hb_advance_payment .hb-align-right, .checkout #hotel-booking-cart .hb_advance_grand_total .hb-align-right, .checkout #hotel-booking-payment .hb_advance_grand_total .hb-align-right, .checkout #hotel-booking-cart .hb_advance_tax .hb-align-right, .checkout #hotel-booking-payment .hb_advance_tax .hb-align-right, .checkout #hotel-booking-cart .hb_sub_total .hb-align-right, .checkout #hotel-booking-payment .hb_sub_total .hb-align-right {
  font-family: "Avenir";
  color: #EFE8D7 !important;
}
.checkout td, .checkout th {
  border: 1px solid #ddd;
}
.checkout #hotel-booking-cart .hb_button.hb_checkout, .checkout #hotel-booking-payment .hb_button.hb_checkout, .checkout #hotel-booking-cart button[type=submit], .checkout #hotel-booking-payment button[type=submit], .checkout #hotel-booking-cart button[type=button], .checkout #hotel-booking-payment button[type=button] {
  border: 1px solid #FC7F00;
  height: 40px;
  padding-inline: 8px;
  margin-top: -6px;
  color: #FC7F00;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  background: none;
}
.checkout a {
  color: #FC7F00 !important;
  text-decoration: none;
  background-color: transparent;
}
.checkout footer {
  display: none;
}
.checkout #hotel-booking-cart input[type=number], .checkout #hotel-booking-payment input[type=number], .checkout #hotel-booking-cart input[type=text], .checkout #hotel-booking-payment input[type=text], .checkout #hotel-booking-cart input[type=email], .checkout #hotel-booking-payment input[type=email] {
  width: 100%;
  text-align: right;
}
.checkout .hb-form-field-input select {
  width: 100%;
  text-align: right;
}
.checkout .hb-form-field-input {
  margin-left: 200px;
}
.checkout .hb-form-field-label {
  color: white;
}
.checkout .hb-form-table {
  max-width: 100%;
}
.checkout #hotel-booking-cart table.hb_table, .checkout #hotel-booking-payment table.hb_table {
  width: 100%;
}
.checkout .entry-content .hb-form-field, .checkout .entry-content .hotel-booking-search form button {
  max-width: 100%;
}
.checkout .hb-form-table.col-2 {
  width: 50%;
}

@media screen and (max-width: 1024px) {
  #hotel-booking-cart input[type=number], #hotel-booking-payment input[type=number], #hotel-booking-cart input[type=text], #hotel-booking-payment input[type=text], #hotel-booking-cart input[type=email], #hotel-booking-payment input[type=email] {
    text-align: left !important;
  }
  .hb-form-field-input select {
    text-align: left !important;
  }
  .hb-form-field-input {
    margin-left: 0px !important;
  }
  #hotel-booking-payment .hb-col-padding {
    padding: 15px !important;
  }
  .hb-payment-methods {
    text-align: left !important;
  }
}
.error-404 {
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: -1rem;
}
.error-404 h1 {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 110px;
  line-height: 83%;
  text-align: center;
  color: #EFE8D7;
  margin: 206px 0 32px 0;
}
.error-404 p {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  text-align: center;
  color: #EFE8D7;
  width: 427px;
  margin-bottom: 104px;
}

@media screen and (max-width: 1024px) {
  .error-404 p {
    font-family: "AbhayaLibre";
    font-style: normal;
    font-weight: 400;
    font-size: 30px;
    line-height: 100%;
    text-align: center;
    color: #EFE8D7;
    width: 100%;
    margin-bottom: 104px;
  }
}
.article-hero-banner {
  -o-object-fit: cover;
     object-fit: cover;
}

.article-body__title {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 110px;
  line-height: 83%;
  color: #EFE8D7;
  margin: 32px 0 48px 0;
  text-align: center;
}

.article-body__author {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ABC6C9;
  margin-bottom: 24px;
}

.article-body__date {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ABC6C9;
  margin-bottom: 24px;
}

.article-body__share {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ABC6C9;
  margin-top: 3px;
  margin-bottom: unset;
}

.article-body__icon svg {
  width: 24px;
  height: 24px;
  -o-object-fit: cover;
     object-fit: cover;
  cursor: pointer;
}

.article-body__icon:hover svg path {
  fill: #FC7F00;
}

.article-gap-1 {
  gap: 32px;
  justify-content: center;
}

.article-gap-2 {
  gap: 24px;
  justify-content: center;
}

.wp-block-heading {
  color: #EFE8D7;
}

.article-body__content {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #EFE8D7;
  margin: 64px 0% 120px 0%;
  padding-inline: 12%;
}
.article-body__content p {
  margin-bottom: 48px;
}

.recent-articles-detail__card a {
  text-decoration: none;
}
.recent-articles-detail__card img {
  width: 341px;
  height: 242px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-top: 32px;
}
.recent-articles-detail__card h3 {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 30px;
  line-height: 100%;
  color: #F8F59B;
  margin-top: 32px;
  margin-bottom: 16px;
}
.recent-articles-detail__card p {
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #EFE8D7;
}

.recent-articles-detail__title {
  font-family: "AbhayaLibre";
  font-style: normal;
  font-weight: 400;
  font-size: 50px;
  line-height: 100%;
  color: #EFE8D7;
}

.recent-articles-detail__cards {
  display: grid;
  grid-template-columns: repeat(3, 345px);
  justify-content: space-between;
}

.recent-articles-detail {
  margin-bottom: 128px;
}

.offer-article-bottom {
  margin-bottom: 118px;
}

@media screen and (max-width: 1024px) {
  .offer-article-bottom {
    margin-bottom: 96px;
  }
  .recent-articles-detail__cards {
    display: flex !important;
    flex-direction: column;
  }
  .recent-articles-detail__card img {
    width: 100%;
  }
  .article-body__title {
    font-size: 60px;
  }
  .article-body__content {
    font-family: "Avenir";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #FFFFFF;
    margin: 64px 0% 120px 0%;
    padding-inline: 0%;
  }
  .recent-articles-detail__title {
    font-family: "AbhayaLibre";
    font-style: normal;
    font-weight: 400;
    font-size: 36px;
    line-height: 100%;
    color: #EFE8D7;
  }
  .recent-articles-detail {
    margin-bottom: 96px;
  }
}
.wp-block-buttons:hover {
  text-decoration: underline;
  text-decoration-color: #FC7F00;
}

.wp-block-button {
  text-decoration: underline;
  text-decoration-color: #FC7F00;
}

.wp-block-buttons .wp-block-button .wp-block-button__link {
  border: 1px solid #FC7F00;
  height: 40px;
  padding-inline: 8px;
  margin-top: -6px;
  color: #FC7F00;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  background: none;
}

:where(.wp-block-button__link) {
  border-radius: none !important;
}

.wp-block-button__link {
  border-radius: unset !important;
}

.wp-block-buttons .wp-block-button .wp-block-button__link:hover {
  text-decoration: underline;
  text-decoration-color: #FC7F00;
}

.wp-block-button .wp-block-button__link:where(.is-style-outline):not(.has-background), .wp-block-button:where(.is-style-outline) > .wp-block-button__link:not(.has-background) {
  text-decoration-color: #FC7F00;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  clear: both;
}

h2 {
  font-size: 50px;
  color: white;
}

.color-orange {
  color: #FC7F00;
}

.hotel-booking-search {
  color: white;
  text-align: right;
  font-family: "AbhayaLibre";
}
.hotel-booking-search .hb-form-table {
  display: flex;
}
@media screen and (min-width: 768px) {
  .hotel-booking-search label {
    display: none;
  }
}
.hotel-booking-search .hb-form-table {
  margin-left: auto;
}
.hotel-booking-search .hb-form-field {
  margin-right: 10px;
}
.hotel-booking-search .hb-form-field select {
  text-align: right;
}
.hotel-booking-search form {
  display: flex;
}
.hotel-booking-search .sort-by-wrapper {
  display: none;
}
.hotel-booking-search .hotel-booking-search-filter {
  display: none;
}
.hotel-booking-search .hotel-booking-search input, .hotel-booking-search .hotel-booking-search select, .hotel-booking-search .hotel-booking-search textarea, .hotel-booking-search .hotel-booking-search button {
  min-width: 170px;
  font-family: "AbhayaLibre";
}

.single-room {
  font-family: "AbhayaLibre";
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 2rem;
  margin-bottom: 50px;
}
.single-room h2 {
  font-weight: 600;
  font-size: 32px;
}
.single-room .room-capacity {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}
.single-room a {
  width: auto;
  height: 40px;
  min-width: 200px;
  border: 1px solid #cccccc;
  border-radius: 3px;
  font-size: 20px;
  margin-top: 10px;
  color: #7a7a7a;
  padding: 7px 8px;
  background-color: #ffc107 !important;
  color: white;
}
.single-room img {
  width: 45%;
}

.hotel-booking-search-filter,
.hotel-booking-search {
  font-weight: 400;
  color: #EFE8D7;
  font-family: "AbhayaLibre";
}

#hotel-booking-search-filter .clear-filter button {
  font-weight: 400;
  font-family: "AbhayaLibre";
  font-size: 20px;
}

#search-results {
  align-items: center !important;
  font-weight: 400;
  color: #EFE8D7;
  font-family: "AbhayaLibre";
  margin-top: 30px;
}
#search-results h2 {
  margin-bottom: 20px;
}

#search-results p {
  font-size: 22px;
}

.single-room .room-capacity {
  justify-content: end;
}

@media (max-width: 768px) {
  input[type=date]::before {
    color: #999;
    content: attr(placeholder);
  }
  input[type=date]:focus::before {
    content: attr(placeholder) !important;
  }
  input[type=date].has-value:focus::before {
    content: none !important;
  }
  input[type=date].has-value::before {
    content: none !important;
  }
  input[type=date] {
    display: flex;
  }
}
.resort_desc {
  color: #EFE8D7;
  margin-top: 64px;
  font-size: 18px;
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  width: 50%;
  margin: 0 auto;
  margin-block: 40px 50px;
  letter-spacing: 1px;
}

.our-resort_activities {
  margin-top: 96px;
}

.text {
  color: #EFE8D7;
  font-size: 18px;
  font-family: "Avenir";
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.hero_resort {
  text-align: center;
}
.hero_resort h1 {
  padding-top: 0;
  line-height: 90px;
  letter-spacing: 2.24px;
}

.resort_img {
  max-width: 100%;
}

.activities {
  padding-inline: 6%;
  margin-top: 10%;
  position: relative;
}

.mySwiper5 {
  overflow: visible;
}

.activity {
  display: flex;
  justify-content: space-between;
  padding-bottom: 8%;
}

.activities p {
  width: 26%;
  letter-spacing: 1px;
}

.emblem, .emblem-img {
  position: absolute;
  left: 10%;
  bottom: 9%;
  margin: 0 auto;
  width: 50vh;
  height: 280px;
  border-radius: 50%;
  font-weight: bold;
  color: #EFE8D7;
  text-align: center;
}
.emblem span, .emblem-img span {
  position: absolute;
  display: inline-block;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  text-transform: uppercase;
  font-size: 30px;
  transition: all 0.5s cubic-bezier(0, 0, 0, 1);
}
@keyframes spinZ {
  0% {
    transform: rotateZ(360deg);
  }
  100% {
    transform: rotateZ(0deg);
  }
}

.ourresort_image2 {
  position: absolute;
  z-index: -2;
  top: 42%;
  left: 62%;
}

.view.activity {
  padding-inline: 9%;
  padding-bottom: 0% !important;
}

.map-tag {
  padding-inline: 9%;
  padding-bottom: 3%;
  margin-top: 2%;
}

.view_desc p {
  color: #EFE8D7;
  font-family: "AbhayaLibre";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 1px;
}

.view .text {
  width: 35%;
}
.view div {
  width: 50%;
}

.map.text {
  width: 60%;
}

.full_map {
  margin-bottom: 50px;
  margin-top: 40px;
}
.full_map img {
  width: 100%;
}

.full_map iframe {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.map_desc a {
  color: #D9D9D9;
  width: 98%;
  font-size: 13px;
  letter-spacing: 1px;
}

.view.map-desc {
  margin-block: 2%;
  padding-top: 0;
}

.down__logo.resort {
  bottom: -40px;
}

.map-tag {
  display: flex;
  gap: 30px;
}

.map-tag p {
  color: #ABC6C9;
}

.emblem-img img {
  width: 219px;
  height: auto;
  margin-top: 0 !important;
}

@media screen and (min-width: 900px) {
  .dining-images img {
    height: 471px;
    width: 422px;
  }
  .emblem-img img {
    width: 219px;
    height: auto;
  }
}
@media screen and (max-width: 900px) {
  .emblem-img img {
    width: 200px;
    height: auto;
  }
  .emblem-img {
    left: 7%;
    bottom: -4%;
    height: 130px;
  }
}
@media screen and (max-width: 640px) {
  .our-resort_activities {
    margin-top: 70px;
  }
  .dining-images img {
    height: 225.5px !important;
    width: 202.47px !important;
  }
  .emblem-img img {
    width: 120px !important;
    height: auto !important;
  }
}
@media screen and (max-width: 400px) {
  .dining-images img {
    height: 200px !important;
    width: 160px !important;
  }
  .ouresortImages.dining-images img:first-child {
    margin-top: 0 !important;
  }
  .emblem span {
    font-size: 18px !important;
  }
  .emblem {
    height: 120px;
  }
}
@media screen and (max-width: 1150px) and (min-width: 495px) {
  .text p {
    margin-top: 22%;
  }
  .map.text p {
    margin-top: unset !important;
  }
}
@media screen and (max-width: 1269px) {
  .dining-images img {
    width: 250px;
  }
}
@media screen and (max-width: 1150px) {
  .map.text {
    margin-bottom: 30px !important;
  }
  .activity {
    display: flex;
    padding-bottom: 0;
  }
  .resort_img {
    max-width: 100%;
    max-height: 100%;
    /* Preserve aspect ratio */
    width: auto;
    height: auto;
    padding: unset;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .text p {
    text-align: center;
  }
  .map_desc {
    text-align: center;
    padding-bottom: 40px;
  }
  .view_desc p {
    font-size: 36px;
    text-align: center;
  }
  .full_map img {
    width: 100%;
  }
  .emblem span {
    font-size: 18px;
  }
  .emblem {
    height: 150px;
    width: 20% !important;
  }
  .activities p {
    width: 100%;
    margin-block: 50px;
    font-family: "Avenir";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    /* or 156% */
    text-align: center;
    /* Cream */
    color: #EFE8D7;
  }
  .hero_resort {
    padding-inline: 3.8%;
  }
  .ourresort_image1.stair_image {
    width: 100%;
    margin-block: 30px;
    position: relative;
    z-index: 1;
    top: 0 !important;
    left: 0 !important;
  }
  .ourresort_image2.stair_image {
    width: 100%;
    margin-block: 30px;
    position: relative;
    z-index: -1;
    top: 0 !important;
    left: 0 !important;
  }
  .emblem.resort_emblem {
    position: relative;
    bottom: 0px;
    left: 0;
  }
  .view div {
    width: 100%;
  }
  .view .text {
    width: 100%;
  }
  .view_desc p {
    padding-top: 30px;
  }
  .resort_img {
    width: 110%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    max-width: unset;
    margin-inline: -6%;
  }
  .view.activity {
    padding-inline: 3.8%;
  }
  .activities {
    padding-inline: 3.8%;
  }
  .map-tag > div {
    margin-inline: auto;
  }
  .hero_resort h1 {
    font-family: "AbhayaLibre";
    font-style: normal;
    font-weight: 400;
    font-size: 60px;
    line-height: 83%;
    align-items: center;
    text-align: center;
    /* Cream */
    color: #EFE8D7;
  }
  .resort_desc {
    width: 100%;
    font-family: "Avenir";
    font-style: normal;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    /* or 156% */
    text-align: center;
    overflow-wrap: anywhere;
    /* Cream */
    color: #EFE8D7;
  }
}
.stair_image {
  width: 422px;
  height: 470px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.nav-wrapper .nav {
  flex-wrap: nowrap !important;
}

.container-areas .row {
  flex-wrap: nowrap !important;
}

.whole-popup1 {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.3490196078);
  display: none;
}

.schedule-popup1 {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: 10%;
  transform: translate(-50%, -50%);
  background-color: #0E1C1D;
  height: auto;
  padding: 40px;
  border-radius: 16px;
}

.schedule-popup1 input[type=text],
.schedule-popup1 input[type=email],
.schedule-popup1 input[type=tel],
.schedule-popup1 .wpcf7-textarea,
.schedule-popup1 .wpcf7-form-control-wrap input {
  width: 100%;
  background-color: white !important;
  border: 1px solid #000000;
  border-radius: 16px;
  color: black !important;
  height: 42px;
  padding: 5px 10px;
  font-style: normal;
  font-family: "Avenir";
  font-weight: 500;
  font-size: 18px;
  line-height: 27px;
}

.schedule-popup1 input[type=text],
.schedule-popup1 input[type=tel],
.schedule-popup1 .wpcf7-textarea {
  text-transform: capitalize;
}

.schedule-popup1 input[type=email] {
  text-transform: lowercase;
}

.schedule-popup1 .wpcf7 form.invalid .wpcf7-response-output, .schedule-popup1 .wpcf7 form.unaccepted .wpcf7-response-output, .schedule-popup1 .wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #ffb900;
  color: red;
}
.schedule-popup1 .wpcf7-textarea {
  width: 100%;
  border: none;
  border-bottom: 1px solid #EFE8D7;
  outline: none;
  text-decoration: none;
  color: #EFE8D7;
  font-size: 16px;
  background-color: unset;
  height: 100px !important;
}

.schedule-popup1 .wpcf7-form {
  padding-top: 40px;
}

.schedule-popup1 .form {
  padding-top: 40px;
}

.schedule-popup1 ::-moz-placeholder {
  color: gray !important;
  text-transform: capitalize;
  font-size: 18px;
}

.schedule-popup1 ::placeholder {
  color: gray !important;
  text-transform: capitalize;
  font-size: 18px;
}

.schedule-popup1 input[type=submit],
.schedule-popup1 button {
  border: 1px solid #FC7F00;
  height: 40px;
  padding-inline: 8px;
  margin-top: -6px;
  color: #FC7F00;
  font-family: "Avenir";
  font-size: 14px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 2.24px;
  text-transform: uppercase;
  background: none;
  cursor: pointer;
}

.schedule-popup1 input[type=submit]:hover {
  color: #FC7F00;
  text-decoration: underline;
}

.schedule-popup1 .wpcf7-select {
  display: block;
  padding: 7px 10px;
  margin-right: 10px;
  background-color: #0E1C1D;
  border: 1px solid #FC7F00;
  width: 100%;
  font-family: "Avenir";
  font-style: normal;
  font-weight: 800;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #FC7F00;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("../assets/carbon_chevron-up-outline.svg") !important;
  background-position: 97% center;
  background-repeat: no-repeat;
}

.schedule-popup1 .wpcf7 form.sent .wpcf7-response-output {
  border-color: #46b450;
  color: white;
}

.schedule-popup1 .wpcf7-response-output {
  border-color: #46b450;
  color: white;
}

.schedule-popup1 .wpcf7-response-output {
  margin: 2em 0.5em 1em;
  padding: 0.2em 1em;
  border: 2px solid #00a0d2;
  color: red;
}

@media screen and (max-width: 1024px) {
  .schedule-popup1 input[type=text],
  .schedule-popup1 input[type=email],
  .schedule-popup1 input[type=tel],
  .schedule-popup1 .wpcf7-textarea,
  .schedule-popup1 .wpcf7-form-control-wrap input {
    width: 100%;
    background-color: white !important;
    border: 1px solid #000000;
    border-radius: 16px;
    color: black !important;
    height: 32px;
    padding: 5px 10px;
    font-style: normal;
    font-family: "Avenir";
    font-weight: 500;
    font-size: 14px;
    line-height: 27px;
  }
  .schedule-popup1 .wpcf7-select {
    display: block;
    padding: 7px 10px;
    margin-right: 10px;
    background-color: #0E1C1D;
    border: 1px solid #FC7F00;
    width: 100%;
    font-family: "Avenir";
    font-style: normal;
    font-weight: 800;
    font-size: 10px;
    line-height: 24px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #FC7F00;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background-image: url("../assets/carbon_chevron-up-outline.svg") !important;
    background-position: 97% center;
    background-repeat: no-repeat;
  }
}/*# sourceMappingURL=style.css.map */