html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
header {
  margin-bottom: -108px;
  position: relative;
  z-index: 1000;
}
@media screen and (max-width: 820px) {
  header {
    margin-bottom: -115px;
  }
}
@media screen and (max-width: 768px) {
  header {
    margin-bottom: -112px;
  }
}
header #mobile-menu {
  position: fixed;
  background-color: var(--bs-brown-alt);
  top: 0;
  /* Stick to the top */
  left: 0;
  width: 100vw;
  height: 100vh;
  padding: 40px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  /* Prevent interaction when hidden */
  transition: opacity 0.35s ease-in-out, visibility 0.35s ease-in-out;
}
header #mobile-menu.show {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  /* Allow interaction when visible */
}
header #mobile-menu #logo-mobile {
  margin-top: -20px;
  background: var(--bs-green);
  width: 120px;
  height: 120px;
  display: inline-block;
  border-radius: 500px;
  margin-bottom: 20px;
}
header #mobile-menu #logo-mobile img {
  width: 105px;
  height: 120px;
  padding: 10px;
  border-radius: 500px;
  object-fit: contain;
}
header #mobile-menu ul {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
header #mobile-menu ul a {
  color: var(--bs-green);
  font-weight: 600;
}
header #mobile-menu #close-menu {
  position: absolute;
  top: 0;
  right: 0;
  padding: 20px;
}
.mega-menu-items {
  opacity: 0;
  visibility: hidden;
  background: var(--bs-white);
  position: absolute;
  top: 105%;
  width: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  padding: 30px;
  border-radius: 30px;
  transition: opacity 0.3s ease, transform 0.3s ease 0.5s, visibility 0s 0.5s;
}
.mega-menu-items::before {
  height: 36px;
  width: 100%;
  content: "";
  left: 0;
  display: block;
  top: -30px;
  position: absolute;
}
.mega-menu-items .list-unstyled li a {
  margin: 5px 0;
  padding: 12px 15px;
  border-radius: 15px;
  transition: background-color ease-in-out 0.3s;
}
.mega-menu-items .list-unstyled li.active a, .mega-menu-items .list-unstyled li:hover a {
  background: var(--bs-brown-alt);
  border-color: var(--bs-brown-alt) !important;
  transition: background-color ease-in-out 0.3s;
}
.mega-menu-items .list-unstyled li:not(:last-child) {
  border-bottom: solid 1px #eaeaea;
}
.mega-menu:hover > .mega-menu-items, .mega-menu-items:hover {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition: opacity 0.7s ease, transform 0.3s ease 0s, visibility 0s 0s;
}
.container-fluid {
  width: 95%;
  max-width: 1500px;
}
@media screen and (max-width: 768px) {
  .container-fluid {
    width: 100%;
  }
}
#logo {
  position: relative;
  height: 80px;
  width: auto;
  margin-top: -15px;
}
@media screen and (max-width: 768px) {
  #logo {
    margin-top: -20px;
  }
}
.btn {
  font-weight: 600;
}
.btn-yellow {
  color: #384e3b;
}
.btn-arrow {
  font-weight: 600;
}
.btn-arrow svg {
  transition: all ease-in-out 0.3s;
}
.btn-arrow:hover svg {
  margin-left: 5px;
  transition: all ease-in-out 0.3s;
}
#hero {
  background: url("/assets/images/hero-img.jpg") no-repeat center center;
  background-size: cover;
  padding: 35vh 0;
  color: #fff;
  min-height: 80vh;
}
#hero h1 {
  font-size: 52px;
}
@media screen and (max-width: 768px) {
  #hero {
    padding: 20vh 0;
  }
}
.styled-text {
  font-family: "Playfair Display", sans-serif;
}
#search {
  margin-top: -65px;
}
#search .search-wrapper {
  border-radius: 25px 0 25px 0;
}
.no-focus {
  outline: none !important;
  box-shadow: none !important;
  border-color: var(--bs-border-color) !important;
}
.rounded-top-left {
  border-radius: 15px 0 0 0 !important;
}
.rounded-bottom-right {
  border-radius: 0 0 15px 0 !important;
}
.rounded-top-left-lg {
  border-radius: 25px 0 0 0 !important;
}
.rounded-bottom-right-lg {
  border-radius: 0 0 25px 0 !important;
}
.room-card, .tour-card {
  display: block;
  position: relative;
}
.room-card .content-top, .tour-card .content-top {
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--bs-white);
  width: calc(100% - 40px);
}
.room-card .content-bottom, .tour-card .content-bottom {
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
}
.room-card img, .tour-card img {
  aspect-ratio: 1.6;
  object-fit: cover;
}
.room-card img:hover, .tour-card img:hover {
  animation: kenburns 10s infinite;
}
.room-card:not(.no-overlay):before, .tour-card:not(.no-overlay):before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) -23.22%, rgba(0, 0, 0, 0) 42.56%);
  transition: background-color 0.3s;
}
.room-card:not(.no-overlay):hover:before, .tour-card:not(.no-overlay):hover:before {
  background: rgba(0, 0, 0, 0.5);
  transition: background-color 0.3s;
}
.room-card .show-on-hover, .tour-card .show-on-hover {
  opacity: 0;
  visibility: hidden;
  transition: all ease-in 0.3s;
}
@media screen and (max-width: 768px) {
  .room-card .show-on-hover, .tour-card .show-on-hover {
    opacity: 1;
    visibility: visible;
  }
}
.room-card:hover .show-on-hover, .tour-card:hover .show-on-hover {
  opacity: 1;
  visibility: visible;
  transition: all ease-in 0.3s;
}
.room-card.no-overlay {
  display: none;
  transition: all ease-in 0.3s;
}
.room-card.no-overlay.active {
  display: block;
}
.zoomin-img {
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 760px) {
  .zoomin-img {
    height: 277px;
  }
}
.zoomin-img:hover .zoomin-overlay {
  opacity: 1;
}
.zoomin-img .zoomin-overlay {
  opacity: 0;
  transition: all 0.5s ease;
  position: absolute;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  flex-direction: column;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.4);
}
.zoomin-img .zoomin-overlay .title {
  font-size: 24px;
  font-weight: 400;
}
.zoomin-img .zoomin-overlay .description {
  font-size: 14px;
}
.zoomin-img img {
  transition: transform 2s ease, filter 0.5s ease-in-out;
  transform: scale(1);
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.zoomin-img:hover img {
  transform: scale(1.2);
  filter: brightness(90%);
}
.home-planed-tours-image {
  position: relative;
  bottom: -80px;
}
.home-memory {
  padding-top: 130px;
}
#green-lake {
  background-image: url("/assets/images/lake.png");
  height: 760px;
  background-position: bottom center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
#green-lake::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: block;
}
#green-lake .container {
  position: relative;
  z-index: 2;
}
#green-lake h5 {
  font-size: 60px;
}
#activities .block-a {
  /* background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        min-height: 500px;
        position: relative; */
}
#activities .block-a .content {
  font-size: 50px;
  bottom: 10px;
  left: 40px;
  line-height: 1.3;
}
.styled-header {
  padding-top: 4%;
  position: relative;
}
.styled-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/assets/images/header-bg-s.svg);
  background-repeat: no-repeat;
  background-size: 40%;
  background-position-x: -45%;
}
.styled-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/assets/images/header-bg-e.svg);
  background-repeat: no-repeat;
  background-size: 40%;
  background-position-x: 130%;
}
#about.styled-header {
    background: linear-gradient(180deg, #384e3b 70%, white 30%);
}

#about.styled-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/assets/images/header-bg-s.svg);
  background-repeat: no-repeat;
  background-position-x: -175%;
  background-size: 70%;
}
#about.styled-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(/assets/images/header-bg-e.svg);
  background-repeat: no-repeat;
  background-size: 70%;
  background-position-x: 244%;
  z-index: 1;
}
.apartment-details.styled-header {
  background: linear-gradient(180deg, #384e3b 70%, white 30%);
}
.apartment-details.overlap-target {
  margin-top: 8% !important;
}
@media screen and (max-width: 768px) {
  .apartment-details.overlap-target {
    margin-top: 4% !important;
  }
}
@media screen and (max-width: 768px) {
  .apartment-details .header-img-slider.glider {
    padding-top: 15%;
  }
}
.overlap-object {
  margin-bottom: -15% !important;
}
.overlap-target {
  margin-top: 15% !important;
}
/**
 * Glider CSS
 */
.glider-track {
  padding: 30px 10px !important;
}
.glider-dot.active {
  background: var(--bs-primary) !important;
}
.glider-next, .glider-prev {
  font-size: unset !important;
}
@media screen and (max-width: 768px) {
  .glider-next, .glider-prev {
    display: none !important;
  }
}
.glider-next {
  right: -45px !important;
}
.glider-prev {
  left: -45px !important;
}
.glider-next.disabled, .glider-prev.disabled {
  opacity: 1 !important;
}
.header-img-slider .glider-track {
  padding: 0 !important;
}
.header-img-slider .content-wrapper {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, -50%);
}
.header-img-slider img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .header-img-slider img {
    height: 60vh;
  }
}
.slider-img-prev, .slider-img-next {
  z-index: 9;
}
@media screen and (max-width: 768px) {
  .slider-img-prev, .slider-img-next {
    transform: scale(0.6);
  }
}
.itinerary-container .day {
  width: 70px;
  height: 70px;
  border: solid 2px var(--bs-yellow);
  border-radius: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--bs-white);
}
@media screen and (max-width: 768px) {
  .itinerary-container .day {
    width: 50px;
    height: 50px;
    overflow: hidden;
    flex: 0 0 50px;
  }
  .itinerary-container .day p {
    font-size: 16px !important;
  }
  .itinerary-container .day span {
    font-size: 12px !important;
  }
}
.itinerary-container .accordion-item {
  border: 0;
  margin-bottom: 20px;
  color: var(--bs-green);
}
@media screen and (max-width: 768px) {
  .itinerary-container .accordion-item:last-child .accordion-body::before {
    height: 100%;
    bottom: 0;
  }
}
.itinerary-container .accordion-body {
  padding: 0;
  padding-left: 85px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .itinerary-container .accordion-body {
    padding-left: 65px;
  }
  .itinerary-container .accordion-body:before {
    left: 7% !important;
  }
}
@media screen and (max-width: 420px) {
  .itinerary-container .accordion-body:before {
    left: 6% !important;
  }
}
.itinerary-container .accordion-body:before {
  content: "";
  width: 2px;
  height: 120%;
  background: var(--bs-yellow);
  position: absolute;
  left: 5%;
  bottom: -20%;
  z-index: 2;
}
.itinerary-container .accordion-button {
  box-shadow: unset;
  background: transparent;
  padding: 0;
  position: relative;
  z-index: 3;
}
#amenities svg, #facilities svg, #contact-us svg {
  width: 24px;
  height: 24px;
}
.steps-indicator {
  padding: 0 40px;
}
.steps-indicator .lines {
  width: 100%;
  height: 1px;
  margin-top: 17px;
  border-bottom: dashed 1px var(--bs-brown-alt);
}
.steps-indicator .indicator {
  color: var(--bs-brown-alt);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 24px;
}
.steps-indicator .indicator span {
  margin-top: 5px;
  font-size: 14px;
  white-space: nowrap;
}
.steps-indicator .indicator:not(.filled) span {
  opacity: 0.5;
}
#guest-field {
  min-height: 58px;
  background: var(--bs-white);
}
#guest-field .display-text {
  bottom: 9px;
  left: 12px;
  position: absolute;
  width: 100%;
  padding-top: 10px;
  cursor: text;
}
#guest-field .guest-dropdown {
  position: absolute;
  background: var(--bs-body-bg);
  width: 100%;
  bottom: -277px;
  padding: 20px;
  border-radius: 0px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.3);
}
span.easepick-wrapper {
  z-index: 99999;
}
#guest-field .guest-dropdown .guest-input:not(:last-child) {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: solid 1px var(--bs-border-color);
}
#guest-field:not(.show) .guest-dropdown {
  display: none;
}
@media screen and (max-width: 768px) {
  #guest-field.show .guest-dropdown {
    position: fixed;
    bottom: 0;
    left: 0;
    padding: 10px;
    width: 100%;
    z-index: 99;
  }
}
#guest-field .guest-input {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.guest-input .control {
  display: flex;
  align-items: center;
  border: solid 1px var(--bs-border-color);
  border-radius: 27px;
  column-gap: 4px;
  padding: 2px 5px;
}
.guest-input .control input {
  width: 40px;
  text-align: center;
  padding: 0;
  border: 0;
  background: transparent;
}
@media screen and (max-width: 768px) {
  .row-stay-include .col {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .row-detail-tour {
    flex-direction: column;
  }
  .row-detail-tour .tour-itm {
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 10px;
    padding-left: 0 !important;
    border-bottom: 1px solid var(--bs-border-color);
  }
}
@media screen and (max-width: 768px) {
  .tour-header-image .slider-img-prev {
    margin-left: -16px !important;
    transform: scale(0.4) !important;
  }
  .tour-header-image .slider-img-next {
    margin-right: -16px !important;
    transform: scale(0.4) !important;
  }
  .tour-header-image .content-wrapper {
    padding-left: 40px;
  }
}

.tour-header-image .play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1.5);
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    color: var(--bs-yellow);
    padding: 5px;
    border-radius: 50px;
    cursor: pointer;
    transition: ease-in-out all 0.3s;
}

.tour-header-image .play-btn:hover {
    transform: translate(-50%, -50%) scale(1.6);
    background: rgba(0, 0, 0, 0.65);
    transition: ease-in-out all 0.3s;
}

.styled-checkbox {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.styled-checkbox .checkbox-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: var(--bs-border-radius-pill) !important;
  border: solid 1px var(--bs-border-color);
  padding: 0px 25px;cursor: pointer;
}
.styled-checkbox .checkbox-item .form-check {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
}
.styled-checkbox .checkbox-item .form-check .form-check-input {
  transform: scale(1.3);
  background-color: #e0dfdf;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
  border-color: #e0dfdf;
}
.styled-checkbox .checkbox-item .form-check .form-check-input:checked {
  background-color: #384E3B;
  border-color: #384E3B;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='m6 10 3 3 6-6'/%3e%3c/svg%3e");
}
.styled-checkbox .checkbox-item .form-check .form-check-label {
  color: var(--bs-green);
  width: 100%;
  padding: 15px 0;
  margin-left: 15px;
}
.styled-checkbox .checkbox-item:has(.form-check-input:checked) {
  border-color: #384E3B;
}


.flatpickr-calendar {
  max-width: 248px !important;
}

/* glider */
.header-img-slider .glider-track  .pause {
  opacity: 0;
  transition: all 0.3s;
}

.header-img-slider .glider-track:hover  .pause {
  opacity: 1;
}

.header-img-slider .glider-track {
  height: 80vh;
}

.header-img-slider .glider-track video, .header-img-slider .glider-track img {
  height: 100% !important;
  width: 100% !important;
  object-fit: cover;
}

.loading {
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
}