@import url("https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  max-width: 1270px;
  margin-right: auto;
  margin-left: auto;
}

.sticy-search {
  display: none;
  align-items: center;
  justify-content: center;
  height: 80px;
  position: sticky;
  bottom: 0;
  background-color: #CDDBC7;
  transition: all 0.3s ease;
}
.sticy-search span {
  display: flex;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  font-family: "Jost", sans-serif;
  color: #272429;
  align-items: center;
}

nav .nav-wrapper {
  position: absolute;
  top: 0;
  width: 100%;
}
nav .nav-wrapper .navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 110px;
  width: 100%;
  position: relative;
  z-index: 2;
}
nav .nav-wrapper .navbar ul {
  display: flex;
  list-style: none;
  gap: 43px;
}
nav .nav-wrapper .navbar ul li {
  cursor: pointer;
}
nav .nav-wrapper .navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
}
nav .nav-wrapper .navbar ul .favourite {
  width: 21px;
  height: 21px;
  display: flex;
  background-image: url(../img/heart.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s ease;
}
/*
nav .nav-wrapper .navbar ul .favourite:hover {
  background-image: url(../img/heart-pink.svg);
}
*/
nav .nav-wrapper .navbar ul .on {
  background-image: url(../img/heart-white.svg);
}
nav .nav-wrapper .navbar-mobile {
  position: relative;
  display: none;
  z-index: 2;
  background-color: #fff;
  height: 100px;
  align-items: center;
  padding-left: 30px;
  padding-right: 30px;
  justify-content: space-between;
  transition: all 0.3s ease;
  /* ANIMATION */
}
nav .nav-wrapper .navbar-mobile .logo {
  width: 55px;
  height: 55px;
  background-image: url(../img/m-logo-black.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: all 0.3s ease;
}
nav .nav-wrapper .navbar-mobile .menu-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  transition: all 0.3s ease;
  /* border: 3px solid #fff; */
}
nav .nav-wrapper .navbar-mobile .menu-btn__burger {
  width: 32px;
  height: 3px;
  background: #272429;
  transition: all 0.3s ease;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
nav .nav-wrapper .navbar-mobile .menu-btn__burger::before,
nav .nav-wrapper .navbar-mobile .menu-btn__burger::after {
  content: "";
  position: absolute;
  width: 32px;
  height: 3px;
  background: #272429;
  transition: all 0.3s ease;
}
nav .nav-wrapper .navbar-mobile .menu-btn__burger::before {
  transform: translateY(-10px);
}
nav .nav-wrapper .navbar-mobile .menu-btn__burger::after {
  transform: translateY(10px);
}
nav .nav-wrapper .navbar-mobile .menu-btn.open .menu-btn__burger {
  transform: translateX(0px);
  background: transparent;
  box-shadow: none;
}
nav .nav-wrapper .navbar-mobile .menu-btn.open .menu-btn__burger::before {
  transform: rotate(45deg) translate(0px, 0px);
}
nav .nav-wrapper .navbar-mobile .menu-btn.open .menu-btn__burger::after {
  transform: rotate(-45deg) translate(0px, 0px);
}
nav .nav-wrapper .navbar-mobile .mobile-menu {
  list-style: none;
  width: 100vw;
  position: fixed;
  left: 0;
  transition: all 0.3s ease;
  top: 100px;
  background-color: #fff;
  z-index: 999;
  height: 0;
  display: flex;
  flex-direction: column;
}
nav .nav-wrapper .navbar-mobile .mobile-menu li {
  opacity: 0;
  padding-right: 30px;
  padding-left: 30px;
  padding-top: 10px;
  padding-bottom: 10px;
  transition: all 0.3s ease;
  pointer-events: none;
}
nav .nav-wrapper .navbar-mobile .mobile-menu li:first-child {
  margin-top: 30px;
}
nav .nav-wrapper .navbar-mobile .mobile-menu li a {
  font-family: "Jost", sans-serif;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  color: #fff;
  display: flex;
  align-items: center;
}
nav .nav-wrapper .navbar-mobile .mobile-menu li a .favourite {
  margin-left: 10px;
  width: 15px;
  height: 15px;
  display: flex;
  background-image: url(../img/heart.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: all 0.3s ease;
}
nav .nav-wrapper .navbar-mobile .mobile-menu li a .favourite:hover {
  background-image: url(../img/heart-pink.svg);
}
nav .nav-wrapper .navbar-mobile .mobile-menu li a .on {
  background-image: url(../img/heart-white.svg);
}
nav .nav-wrapper .menu-open {
  background-color: #899684;
  top: 0;
  position: relative;
  width: 100%;
}
nav .nav-wrapper .menu-open .logo {
  background-image: url(../img/m-logo-whithe.svg);
}
nav .nav-wrapper .menu-open .menu-btn__burger {
  background: #fff;
}
nav .nav-wrapper .menu-open .menu-btn__burger::before,
nav .nav-wrapper .menu-open .menu-btn__burger::after {
  background: #fff;
}
nav .nav-wrapper .menu-open .mobile-menu {
  height: calc(100vh - 100px);
  background-color: #899684;
}
nav .nav-wrapper .menu-open .mobile-menu li {
  opacity: 1;
  pointer-events: fill;
}
nav .nav-white {
  background-color: #fff !important;
  position: relative;
}
nav .nav-white .navbar ul li a {
  color: #272429;
}
nav .nav-white .navbar ul .favourite {
  background-image: url(../img/heart-black.png);
}

.homehero .homehero-wrapper {
  border: 1px solid transparent;
  height: 700px;
}
.homehero .homehero-wrapper .video {
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  max-height: 700px;
  height: auto;
}
.homehero .homehero-wrapper .video video {
  display: flex;
  width: 100%;
  max-height: 700px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.homehero .homehero-wrapper .video .blur {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
}
.homehero .homehero-wrapper h1 {
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
  font-family: "Jost", sans-serif;
  font-weight: normal;
  font-size: 70px;
  margin-top: 300px;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 10px;
  padding-left: 10px;
}
.homehero .medium {
  height: 510px;
}
.homehero .medium .video {
  height: 510px;
}
.homehero .medium h1 {
  margin-top: 220px;
}
.homehero .secondary {
  height: 350px;
}
.homehero .secondary .video {
  height: 350px;
}
.homehero .secondary h1 {
  margin-top: 140px;
}

.filter .d-filter-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.filter .d-filter-wrapper .filter-box {
  position: absolute;
  background-color: #fff;
  z-index: 5;
  width: 100%;
  top: -40px;
  padding: 21px 40px;
  border-radius: 13px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(39, 36, 41, 0.05);
}
.filter .d-filter-wrapper .filter-box ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.filter .d-filter-wrapper .filter-box ul li {
  cursor: pointer;
  position: relative;
}
.filter .d-filter-wrapper .filter-box ul li span {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #272429;
  display: flex;
  margin-bottom: 4px;
}
.filter .d-filter-wrapper .filter-box ul li p {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #272429;
  opacity: 25%;
}
.filter .d-filter-wrapper .filter-box ul li .green-btn {
  padding: 10px 20px;
  display: flex;
  border-radius: 6px;
  font-family: "Jost", sans-serif;
  text-decoration: none;
  color: #fff;
  background-color: #899684;
  transition: all 0.3s ease;
}
.filter .d-filter-wrapper .filter-box ul li .green-btn:hover {
  background-color: #a6b1a2;
}
.filter .d-filter-wrapper .filter-box ul li .custom-checkbox {
  display: flex;
  align-items: center;
}
.filter .d-filter-wrapper .filter-box ul li .custom-checkbox input {
  opacity: 0;
  position: absolute;
}
.filter .d-filter-wrapper .filter-box ul li .custom-checkbox img {
  margin-right: 10px;
}
.filter .d-filter-wrapper .filter-box ul li .custom-checkbox .checkmark {
  position: relative;
  margin-left: 17px;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: transparent;
  display: inline-block;
  border: 1px solid #272429;
  border-radius: 2px;
  transition: all 0.3s ease;
  background-position: center;
  cursor: pointer;
}
.filter .d-filter-wrapper .filter-box ul li .custom-checkbox .checkmark:hover {
  background-color: #FBFAFA;
}
.filter .d-filter-wrapper .filter-box ul li .custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.filter .d-filter-wrapper .filter-box ul li .custom-checkbox input:checked + .checkmark {
  background-color: #FBFAFA;
  background-image: url(../img/checked.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.filter .d-filter-wrapper .filter-box ul li .options {
  position: absolute;
  min-width: 120%;
  padding: 15px 20px 15px 1px;
  background-color: #fff;
  top: 55px;
  border: 1px solid #E4E4E4;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}
.filter .d-filter-wrapper .filter-box ul li .options ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.filter .d-filter-wrapper .filter-box ul li .options ul li span {
  margin-right: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #272429;
  font-family: "Jost", sans-serif;
}
.filter .d-filter-wrapper .filter-box ul li .calendar {
  position: absolute;
  bottom: 67px;
  left: -100px;
  font-family: "Jost", sans-serif !important;
  padding: 10px;
  background-color: #fff;
  opacity: 0;
  height: 270px;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.15);
}
.filter .d-filter-wrapper .filter-box ul li .calendar .ui-widget-content {
  border: none;
}
.filter .d-filter-wrapper .filter-box ul li .calendar .ui-datepicker-inline {
  border: 1px solid transparent;
  height: 80%;
}
.filter .d-filter-wrapper .filter-box ul li .calendar .ui-datepicker-inline .ui-state-default {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 400;
  transition: all 0.3s ease;
}
.filter .d-filter-wrapper .filter-box ul li .calendar .ui-datepicker-inline .ui-state-active {
  background-color: #899684;
  color: #fff;
}
.filter .d-filter-wrapper .filter-box ul li .calendar .ui-datepicker-inline .ui-state-hover {
  background-color: transparent;
  border: none;
  outline: none;
}
.filter .d-filter-wrapper .filter-box ul li .calendar .ui-datepicker-inline thead th span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.filter .d-filter-wrapper .filter-box ul li .calendar .ui-datepicker-inline .ui-datepicker-header {
  border: none;
  display: flex;
  background-color: transparent;
  justify-content: center;
  height: 40px;
}
.filter .d-filter-wrapper .filter-box ul li .calendar .ui-datepicker-inline .ui-datepicker-header .ui-icon, .filter .d-filter-wrapper .filter-box ul li .calendar .ui-datepicker-inline .ui-datepicker-header .ui-icon-circle-triangle-e {
  background: none;
  background-color: #899684;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-left-color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  border: none;
  right: 10px;
  position: absolute;
  transform: rotateZ(-90deg);
}
.filter .d-filter-wrapper .filter-box ul li .calendar .ui-datepicker-inline .ui-datepicker-header .ui-icon::after, .filter .d-filter-wrapper .filter-box ul li .calendar .ui-datepicker-inline .ui-datepicker-header .ui-icon-circle-triangle-e::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #fff;
  transform: translate(-50%, -50%);
}
.filter .d-filter-wrapper .filter-box ul li .calendar .ui-datepicker-inline .ui-datepicker-header .ui-datepicker-prev .ui-icon, .filter .d-filter-wrapper .filter-box ul li .calendar .ui-datepicker-inline .ui-datepicker-header .ui-datepicker-prev .ui-icon-circle-triangle-e {
  transform: rotateZ(90deg);
}
.filter .d-filter-wrapper .filter-box ul li .calendar .ui-datepicker-inline .ui-datepicker-header .ui-datepicker-title {
  display: flex;
  font-weight: 600;
}
.filter .d-filter-wrapper .filter-box ul li .calendar .ui-datepicker-inline .ui-datepicker-header .ui-datepicker-title span {
  font-weight: 600;
}
.filter .d-filter-wrapper .filter-box ul li .calendar .ui-datepicker-inline .ui-datepicker-current {
  display: none;
}
.filter .d-filter-wrapper .filter-box ul li .bottom-side {
  top: 50px;
}
.filter .d-filter-wrapper .filter-box ul .location-on .options {
  opacity: 1;
  pointer-events: fill;
}
.filter .d-filter-wrapper .filter-box ul .calendars-on .calendar {
  opacity: 1;
  pointer-events: fill;
}
.filter .d-filter-wrapper .additional-filter {
  max-width: 99%;
  margin-right: auto;
  margin-left: auto;
  position: absolute;
  width: 100%;
  z-index: 4;
  border-radius: 13px;
  background-color: transparent;
  min-height: 200px;
  transition: all 0.3s ease;
}
.filter .d-filter-wrapper .additional-filter .filter-add-btn {
  display: flex;
  align-items: center;
  position: absolute;
  top: 80px;
  right: 35px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.filter .d-filter-wrapper .additional-filter .filter-add-btn span {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #272429;
  display: flex;
  margin-left: 10px;
  transition: all 0.3s ease;
}
.filter .d-filter-wrapper .additional-filter .apply {
  border: 2px solid rgba(39, 36, 41, 0.35);
  padding: 10px 20px;
  border-radius: 5px;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  color: rgba(39, 36, 41, 0.35);
  position: absolute;
  right: 35px;
  bottom: 40px;
  opacity: 0;
  transition: all 0.3s ease;
}
.filter .d-filter-wrapper .additional-filter ul {
  list-style: none;
  padding: 100px 40px 40px 40px;
  display: grid;
  max-width: 75%;
  grid-template-columns: 1fr 1fr 1fr;
  row-gap: 13px;
  opacity: 0;
  transition: all 0.3s ease;
}
.filter .d-filter-wrapper .additional-filter ul li span {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #272429;
  display: flex;
  margin-bottom: 4px;
}
.filter .d-filter-wrapper .additional-filter ul li .custom-checkbox {
  display: flex;
  align-items: center;
}
.filter .d-filter-wrapper .additional-filter ul li .custom-checkbox input {
  opacity: 0;
  position: absolute;
}
.filter .d-filter-wrapper .additional-filter ul li .custom-checkbox img {
  margin-right: 10px;
}
.filter .d-filter-wrapper .additional-filter ul li .custom-checkbox .checkmark {
  position: relative;
  margin-right: 17px;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: transparent;
  display: inline-block;
  border: 1px solid #272429;
  border-radius: 2px;
  transition: all 0.3s ease;
  background-position: center;
  cursor: pointer;
}
.filter .d-filter-wrapper .additional-filter ul li .custom-checkbox .checkmark:hover {
  background-color: #FBFAFA;
}
.filter .d-filter-wrapper .additional-filter ul li .custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.filter .d-filter-wrapper .additional-filter ul li .custom-checkbox input:checked + .checkmark {
  background-color: #FBFAFA;
  background-image: url(../img/checked.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.filter .d-filter-wrapper .active {
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
  background-color: #E7EAE6;
}
.filter .d-filter-wrapper .active .apply {
  opacity: 1;
}
.filter .d-filter-wrapper .active ul {
  opacity: 1;
}
.filter .m-filter-wrapper {
  display: none;
}
.filter .m-filter-wrapper .m-filter-box {
  position: relative;
  z-index: 1;
  margin-top: -50px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 23px 20px;
  border-radius: 13px;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
  -webkit-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
}
.filter .m-filter-wrapper .m-filter-box .arrival {
  position: relative;
}
.filter .m-filter-wrapper .m-filter-box .arrival .calendar {
  position: absolute;
  z-index: 2;
  bottom: 45px;
  left: 0px;
  font-family: "Jost", sans-serif !important;
  padding: 10px;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(39, 36, 41, 0.05);
}
.filter .m-filter-wrapper .m-filter-box .arrival .calendar .ui-widget-content {
  border: none;
}
.filter .m-filter-wrapper .m-filter-box .arrival .calendar .ui-datepicker-inline {
  border: 1px solid transparent;
  height: 80%;
}
.filter .m-filter-wrapper .m-filter-box .arrival .calendar .ui-datepicker-inline .ui-state-default {
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 400;
}
.filter .m-filter-wrapper .m-filter-box .arrival .calendar .ui-datepicker-inline .ui-state-active {
  background-color: #899684;
  color: #fff;
}
.filter .m-filter-wrapper .m-filter-box .arrival .calendar .ui-datepicker-inline .ui-state-hover {
  background-color: transparent;
  border: none;
  outline: none;
}
.filter .m-filter-wrapper .m-filter-box .arrival .calendar .ui-datepicker-inline thead th span {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.filter .m-filter-wrapper .m-filter-box .arrival .calendar .ui-datepicker-inline .ui-datepicker-header {
  border: none;
  display: flex;
  background-color: transparent;
  justify-content: center;
  height: 40px;
  position: relative;
}
.filter .m-filter-wrapper .m-filter-box .arrival .calendar .ui-datepicker-inline .ui-datepicker-header .ui-icon, .filter .m-filter-wrapper .m-filter-box .arrival .calendar .ui-datepicker-inline .ui-datepicker-header .ui-icon-circle-triangle-e {
  background: none;
  background-color: #899684;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-left-color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  border: none;
  right: 10px;
  position: absolute;
  transform: rotateZ(-90deg);
}
.filter .m-filter-wrapper .m-filter-box .arrival .calendar .ui-datepicker-inline .ui-datepicker-header .ui-icon::after, .filter .m-filter-wrapper .m-filter-box .arrival .calendar .ui-datepicker-inline .ui-datepicker-header .ui-icon-circle-triangle-e::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #fff;
  transform: translate(-50%, -50%);
}
.filter .m-filter-wrapper .m-filter-box .arrival .calendar .ui-datepicker-inline .ui-datepicker-header .ui-datepicker-prev .ui-icon, .filter .m-filter-wrapper .m-filter-box .arrival .calendar .ui-datepicker-inline .ui-datepicker-header .ui-datepicker-prev .ui-icon-circle-triangle-e {
  transform: rotateZ(90deg);
}
.filter .m-filter-wrapper .m-filter-box .arrival .calendar .ui-datepicker-inline .ui-datepicker-header .ui-datepicker-title {
  display: flex;
  font-weight: 600;
}
.filter .m-filter-wrapper .m-filter-box .arrival .calendar .ui-datepicker-inline .ui-datepicker-header .ui-datepicker-title span {
  font-weight: 600;
}
.filter .m-filter-wrapper .m-filter-box .arrival .calendar .ui-datepicker-inline .ui-datepicker-current {
  display: none;
}
.filter .m-filter-wrapper .m-filter-box .arrivel-on .calendar {
  pointer-events: fill;
  opacity: 1;
}
.filter .m-filter-wrapper .m-filter-box .location {
  position: relative;
}
.filter .m-filter-wrapper .m-filter-box .location .options {
  position: absolute;
  min-width: 95%;
  left: 2.5%;
  z-index: 2;
  padding: 15px 20px 15px 1px;
  background-color: #fff;
  top: 41px;
  border: 1px solid #E4E4E4;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  display: flex;
  pointer-events: none;
}
.filter .m-filter-wrapper .m-filter-box .location .options ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 1;
  list-style: none;
}
.filter .m-filter-wrapper .m-filter-box .location .options ul li span {
  margin-right: 10px;
  font-size: 16px;
  font-weight: 500;
  color: #272429;
  font-family: "Jost", sans-serif;
}
.filter .m-filter-wrapper .m-filter-box .location-m-active .options {
  opacity: 1;
  pointer-events: fill;
}
.filter .m-filter-wrapper .m-filter-box .location, .filter .m-filter-wrapper .m-filter-box .arrival {
  padding: 10px 9px;
  display: flex;
  align-items: center;
  border-radius: 6px;
  border: 1px solid rgba(39, 36, 41, 0.25);
}
.filter .m-filter-wrapper .m-filter-box .location .arr, .filter .m-filter-wrapper .m-filter-box .arrival .arr {
  width: 100%;
  display: flex;
  align-items: center;
}
.filter .m-filter-wrapper .m-filter-box .location img, .filter .m-filter-wrapper .m-filter-box .arrival img {
  margin-right: 10px;
}
.filter .m-filter-wrapper .m-filter-box .location span, .filter .m-filter-wrapper .m-filter-box .arrival span {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #272429;
}
.filter .m-filter-wrapper .m-filter-box .location .custom-checkbox, .filter .m-filter-wrapper .m-filter-box .arrival .custom-checkbox {
  display: flex;
  align-items: center;
  padding: 0;
}
.filter .m-filter-wrapper .m-filter-box .location .custom-checkbox input, .filter .m-filter-wrapper .m-filter-box .arrival .custom-checkbox input {
  opacity: 0;
  position: absolute;
}
.filter .m-filter-wrapper .m-filter-box .location .custom-checkbox img, .filter .m-filter-wrapper .m-filter-box .arrival .custom-checkbox img {
  margin-right: 8px;
}
.filter .m-filter-wrapper .m-filter-box .location .custom-checkbox span, .filter .m-filter-wrapper .m-filter-box .arrival .custom-checkbox span {
  display: flex;
  align-items: center;
}
.filter .m-filter-wrapper .m-filter-box .location .custom-checkbox .checkmark, .filter .m-filter-wrapper .m-filter-box .arrival .custom-checkbox .checkmark {
  position: relative;
  margin-left: 8px;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: transparent;
  display: inline-block;
  border: 1px solid #272429;
  border-radius: 2px;
  transition: all 0.3s ease;
  background-position: center;
  cursor: pointer;
}
.filter .m-filter-wrapper .m-filter-box .location .custom-checkbox .checkmark:hover, .filter .m-filter-wrapper .m-filter-box .arrival .custom-checkbox .checkmark:hover {
  background-color: #FBFAFA;
}
.filter .m-filter-wrapper .m-filter-box .location .custom-checkbox .checkmark:after, .filter .m-filter-wrapper .m-filter-box .arrival .custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.filter .m-filter-wrapper .m-filter-box .location .custom-checkbox input:checked + .checkmark, .filter .m-filter-wrapper .m-filter-box .arrival .custom-checkbox input:checked + .checkmark {
  background-color: #FBFAFA;
  background-image: url(../img/checked.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.filter .m-filter-wrapper .m-filter-box .twin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.filter .m-filter-wrapper .m-filter-box .twin .more-filter {
  border: none;
}
.filter .m-filter-wrapper .m-filter-box .green-btn {
  padding: 10px 20px;
  display: flex;
  margin-right: auto;
  margin-left: auto;
  border-radius: 6px;
  font-family: "Jost", sans-serif;
  text-decoration: none;
  color: #fff;
  background-color: #899684;
  transition: all 0.3s ease;
}
.filter .m-filter-wrapper .m-filter-box .green-btn:hover {
  background-color: #a6b1a2;
}
.filter .m-filter-wrapper .m-filter-box .add-filter {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  height: 0;
  transition: all 0.3s ease;
  margin-bottom: 0;
  margin-top: 0;
  transform: rotateX(90deg);
  transform-origin: top;
}
.filter .m-filter-wrapper .m-filter-box .add-filter li {
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  transform-origin: top;
}
.filter .m-filter-wrapper .m-filter-box .add-filter li span {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #272429;
  display: flex;
  margin-bottom: 4px;
  opacity: 0;
}
.filter .m-filter-wrapper .m-filter-box .add-filter li .custom-checkbox {
  display: flex;
  align-items: center;
  padding: 0;
}
.filter .m-filter-wrapper .m-filter-box .add-filter li .custom-checkbox input {
  opacity: 0;
  position: absolute;
}
.filter .m-filter-wrapper .m-filter-box .add-filter li .custom-checkbox span {
  display: flex;
  align-items: center;
}
.filter .m-filter-wrapper .m-filter-box .add-filter li .custom-checkbox .checkmark {
  position: relative;
  margin-right: 8px;
  top: 0;
  left: 0;
  height: 14px;
  width: 14px;
  background-color: transparent;
  display: inline-block;
  border: 1px solid #272429;
  border-radius: 2px;
  transition: all 0.3s ease;
  background-position: center;
  cursor: pointer;
}
.filter .m-filter-wrapper .m-filter-box .add-filter li .custom-checkbox .checkmark:hover {
  background-color: #FBFAFA;
}
.filter .m-filter-wrapper .m-filter-box .add-filter li .custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.filter .m-filter-wrapper .m-filter-box .add-filter li .custom-checkbox input:checked + .checkmark {
  background-color: #FBFAFA;
  background-image: url(../img/checked.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.filter .m-filter-active .m-filter-box .add-filter {
  margin-top: 20px;
  height: 230px;
  margin-bottom: 40px;
  transform: rotateX(0deg);
}
.filter .m-filter-active .m-filter-box .add-filter li {
  opacity: 1;
  height: auto;
  pointer-events: fill;
  transform: rotateX(0deg);
}
.filter .m-filter-active .m-filter-box .add-filter li .custom-checkbox {
  opacity: 1;
}
.filter .m-filter-active .m-filter-box .add-filter li span {
  opacity: 1;
}

.cottages {
  overflow-x: hidden;
}
.cottages .cottages-wrapper {
  margin-top: 120px;
  padding-top: 63px;
  padding-bottom: 70px;
}
.cottages .cottages-wrapper .header {
  display: flex;
  justify-content: center;
}
.cottages .cottages-wrapper .header h2 {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  color: #272429;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cottages .cottages-wrapper .header h2::after {
  content: "";
  display: flex;
  width: 60px;
  height: 2px;
  background-color: #899684;
  margin-top: 10px;
}
.cottages .cottages-wrapper .products {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  list-style: none;
}
.cottages .cottages-wrapper .products li .item-wrapper {
  max-width: 411px;
  width: 100%;
  background-color: #F3F2F0;
}
.cottages .cottages-wrapper .products li .item-wrapper .img-wrapper {
  width: 100%;
  max-height: 310px;
  position: relative;
}
.cottages .cottages-wrapper .products li .item-wrapper .img-wrapper .item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cottages .cottages-wrapper .products li .item-wrapper .img-wrapper .heart {
  position: absolute;
  top: 20px;
  left: 29px;
}
.cottages .cottages-wrapper .products li .item-wrapper .img-wrapper .discount {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #899684;
}
.cottages .cottages-wrapper .products li .item-wrapper .img-wrapper .discount span {
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #fff;
}
.cottages .cottages-wrapper .products li .item-wrapper .info {
  padding: 27px;
}
.cottages .cottages-wrapper .products li .item-wrapper .info h4 {
  font-size: 22px;
  font-family: "Jost", sans-serif;
  color: #272429;
  font-weight: 500;
}
.cottages .cottages-wrapper .products li .item-wrapper .info span {
  font-size: 14px;
  font-family: "Jost", sans-serif;
  color: rgba(39, 36, 41, 0.5);
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-top: 7px;
  margin-bottom: 16px;
}
.cottages .cottages-wrapper .products li .item-wrapper .info span img {
  margin-left: 17px;
}
.cottages .cottages-wrapper .products li .item-wrapper .info p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  margin-bottom: 20px;
}
.cottages .cottages-wrapper .products li .item-wrapper .info .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cottages .cottages-wrapper .products li .item-wrapper .info .total p {
  display: flex;
  font-weight: 600;
  margin-bottom: 0;
}
.cottages .cottages-wrapper .products li .item-wrapper .info .total a {
  font-weight: 700;
  font-size: 14px;
  font-family: "Jost", sans-serif;
  text-decoration: none;
  color: #899684;
}
.cottages .cottages-wrapper .slider {
  margin-top: 20px;
  width: 100vw;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 50px;
  position: relative;
  display: none;
}
.cottages .cottages-wrapper .slider .swiper {
  width: 370px;
}
.cottages .cottages-wrapper .slider .swiper-backface-hidden .swiper-slide {
  padding-bottom: 50px;
}
.cottages .cottages-wrapper .slider .swiper-horizontal > .swiper-pagination-bullets, .cottages .cottages-wrapper .slider .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  z-index: 5;
}
.cottages .cottages-wrapper .slider .swiper-pagination-bullet-active {
  background-color: #899684;
}
.cottages .cottages-wrapper .slider .item-wrapper {
  max-width: 350px;
  margin: 10px;
  width: 100%;
  background-color: #F3F2F0;
}
.cottages .cottages-wrapper .slider .item-wrapper .img-wrapper {
  width: 100%;
  max-height: 310px;
  position: relative;
}
.cottages .cottages-wrapper .slider .item-wrapper .img-wrapper .item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.cottages .cottages-wrapper .slider .item-wrapper .img-wrapper .heart {
  position: absolute;
  top: 20px;
  left: 29px;
}
.cottages .cottages-wrapper .slider .item-wrapper .img-wrapper .discount {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #899684;
}
.cottages .cottages-wrapper .slider .item-wrapper .img-wrapper .discount span {
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #fff;
}
.cottages .cottages-wrapper .slider .item-wrapper .info {
  padding: 27px;
}
.cottages .cottages-wrapper .slider .item-wrapper .info h4 {
  font-size: 22px;
  font-family: "Jost", sans-serif;
  color: #272429;
  font-weight: 500;
}
.cottages .cottages-wrapper .slider .item-wrapper .info span {
  font-size: 14px;
  font-family: "Jost", sans-serif;
  color: rgba(39, 36, 41, 0.5);
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-top: 7px;
  margin-bottom: 16px;
}
.cottages .cottages-wrapper .slider .item-wrapper .info span img {
  margin-left: 17px;
}
.cottages .cottages-wrapper .slider .item-wrapper .info p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  margin-bottom: 20px;
}
.cottages .cottages-wrapper .slider .item-wrapper .info .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cottages .cottages-wrapper .slider .item-wrapper .info .total p {
  display: flex;
  font-weight: 600;
  margin-bottom: 0;
}
.cottages .cottages-wrapper .slider .item-wrapper .info .total a {
  font-weight: 700;
  font-size: 14px;
  font-family: "Jost", sans-serif;
  text-decoration: none;
  color: #899684;
}
.cottages .cottages-wrapper .view-all {
  margin-top: 60px;
}
.cottages .cottages-wrapper .view-all p {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #272429;
  margin-bottom: 20px;
  max-width: 750px;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
.cottages .cottages-wrapper .view-all a {
  padding: 9px 20px;
  border: 2px solid #899684;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  border-radius: 5px;
  display: flex;
  margin-top: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.collection .collection-wrapper {
  padding-top: 70px;
  margin-bottom: 70px;
}
.collection .collection-wrapper .header {
  display: flex;
  justify-content: center;
}
.collection .collection-wrapper .header h2 {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  color: #272429;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.collection .collection-wrapper .header h2::after {
  content: "";
  display: flex;
  width: 60px;
  height: 2px;
  background-color: #899684;
  margin-top: 10px;
}
.collection .collection-wrapper .collects {
  margin-top: 40px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 35px;
}
.collection .collection-wrapper .collects li {
  position: relative;
  display: flex;
  justify-content: center;
}
.collection .collection-wrapper .collects li img {
  max-width: 411px;
  width: 100%;
  height: 525px;
  -o-object-fit: cover;
     object-fit: cover;
}
.collection .collection-wrapper .collects li h4 {
  font-family: "Jost", sans-serif;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  bottom: 40px;
}
.collection .collection-wrapper .collects li h4::after {
  content: "";
  display: flex;
  width: 60px;
  height: 2px;
  background-color: #C7AB93;
  margin-top: 10px;
}
.collection .collection-wrapper .view-all-btn {
  font-weight: 700;
  font-size: 14px;
  font-family: "Jost", sans-serif;
  color: #899684;
  margin-top: 60px;
  display: flex;
  width: 100%;
  justify-content: center;
}

.feature .feature-wrapper {
  padding-top: 70px;
  padding-bottom: 90px;
}
.feature .feature-wrapper .header {
  display: flex;
  justify-content: center;
}
.feature .feature-wrapper .header h2 {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-weight: 400;
  text-align: center;
  color: #272429;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature .feature-wrapper .header h2::after {
  content: "";
  display: flex;
  width: 60px;
  height: 2px;
  background-color: #899684;
  margin-top: 10px;
}
.feature .feature-wrapper ul {
  margin-top: 50px;
  list-style: none;
  display: flex;
  gap: 18px;
  max-width: 1060px;
  margin-right: auto;
  margin-left: auto;
  flex-wrap: wrap;
}
.feature .feature-wrapper ul img {
  max-width: 195px;
  width: 100%;
}

.places {
  background-color: rgba(205, 219, 199, 0.25);
  position: relative;
}
.places .places-wrapper {
  padding-top: 80px;
  padding-bottom: 100px;
}
.places .places-wrapper .back {
  position: absolute;
  left: 0;
  bottom: 50px;
  z-index: 0;
}
.places .places-wrapper .header {
  border-bottom: 2px solid #899684;
  padding-bottom: 14px;
}
.places .places-wrapper .header h2 {
  color: #272429;
  font-size: 32px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
}
.places .places-wrapper .scrollbar-slider {
  margin-top: 60px;
  padding-left: 320px;
  padding-bottom: 50px;
  position: relative;
}
.places .places-wrapper .scrollbar-slider .swiper {
  padding-right: 50px;
}
.places .places-wrapper .scrollbar-slider .swiper .swiper-wrapper {
  padding-bottom: 40px;
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */ /* Internet Explorer/Edge */
  user-select: none;
}
.places .places-wrapper .scrollbar-slider .swiper .swiper-slide {
  width: 518px;
}
.places .places-wrapper .scrollbar-slider .swiper .swiper-slide .info {
  margin-top: 30px;
  padding-bottom: 30px;
}
.places .places-wrapper .scrollbar-slider .swiper .swiper-slide .info h4 {
  font-size: 24px;
  font-family: "Jost", sans-serif;
  color: #272429;
  font-weight: 500;
  margin-bottom: 10px;
}
.places .places-wrapper .scrollbar-slider .swiper .swiper-slide .info p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  margin-bottom: 15px;
}
.places .places-wrapper .scrollbar-slider .swiper .swiper-slide .info a {
  font-weight: 700;
  font-size: 14px;
  font-family: "Jost", sans-serif;
  text-decoration: none;
  color: #899684;
}
.places .places-wrapper .scrollbar-slider .swiper .swiper-horizontal > .swiper-scrollbar, .places .places-wrapper .scrollbar-slider .swiper .swiper-scrollbar.swiper-scrollbar-horizontal {
  width: 92%;
  height: 14px;
  background: rgb(214, 224, 209);
  left: 0;
}
.places .places-wrapper .scrollbar-slider .swiper .swiper-horizontal > .swiper-scrollbar .swiper-scrollbar-drag, .places .places-wrapper .scrollbar-slider .swiper .swiper-scrollbar.swiper-scrollbar-horizontal .swiper-scrollbar-drag {
  background-color: #899684;
  border: 3px solid rgb(214, 224, 209);
}
.places .places-wrapper .slider-m {
  margin-top: 20px;
  width: 100vw;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 50px;
  display: none;
  position: relative;
}
.places .places-wrapper .slider-m .swiper {
  width: 350px;
}
.places .places-wrapper .slider-m .swiper .swiper-slide {
  width: 350px;
}
.places .places-wrapper .slider-m .swiper .swiper-slide img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
}
.places .places-wrapper .slider-m .swiper .swiper-slide .info {
  margin-top: 30px;
  padding-bottom: 30px;
}
.places .places-wrapper .slider-m .swiper .swiper-slide .info h4 {
  font-size: 24px;
  font-family: "Jost", sans-serif;
  color: #272429;
  font-weight: 500;
  margin-bottom: 10px;
}
.places .places-wrapper .slider-m .swiper .swiper-slide .info p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  margin-bottom: 15px;
}
.places .places-wrapper .slider-m .swiper .swiper-slide .info a {
  font-weight: 700;
  font-size: 14px;
  font-family: "Jost", sans-serif;
  text-decoration: none;
  color: #899684;
}
.places .places-wrapper .slider-m .swiper-backface-hidden .swiper-slide {
  padding-bottom: 50px;
}
.places .places-wrapper .slider-m .swiper-horizontal > .swiper-pagination-bullets, .places .places-wrapper .slider-m .swiper-pagination-bullets.swiper-pagination-horizontal {
  position: absolute;
  z-index: 5;
}
.places .places-wrapper .slider-m .swiper-pagination-bullet-active {
  background-color: #899684;
}
.places .places-wrapper .unique {
  display: flex;
  align-items: center;
  flex-basis: 50%;
  padding-top: 100px;
  position: relative;
  z-index: 2;
}
.places .places-wrapper .unique .left {
  max-width: 50%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.places .places-wrapper .unique .left .info-wrapper {
  max-width: 408px;
  width: 100%;
}
/*
.places .places-wrapper .unique .left .info-wrapper h4 {
  font-size: 32px;
  font-family: "Jost", sans-serif;
  color: #272429;
  font-weight: 400;
  margin-bottom: 20px;
}
.places .places-wrapper .unique .left .info-wrapper h4::after {
  content: "";
  display: flex;
  width: 60px;
  height: 2px;
  background-color: #899684;
  margin-top: 20px;
}
*/
.places .places-wrapper .unique .left .info-wrapper p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  margin-bottom: 20px;
}
/*
.places .places-wrapper .unique .left .info-wrapper a {
  font-weight: 700;
  font-size: 14px;
  font-family: "Jost", sans-serif;
  text-decoration: none;
  color: #899684;
}
*/
.places .places-wrapper .unique .right {
  width: 50%;
}
.places .places-wrapper .unique .right img {
  max-width: 100%;
  width: 100%;
}

.property {
  padding-top: 50px;
  padding-bottom: 50px;
}
.property .property-wrapper {
  display: flex;
  align-items: center;
  flex-basis: 50%;
  padding-bottom: 60px;
  padding-top: 60px;
  position: relative;
  gap: 30px;
}
.property .property-wrapper .right {
  max-width: 50%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.property .property-wrapper .right .info-wrapper {
  max-width: 408px;
  width: 100%;
}
/*
.property .property-wrapper .right .info-wrapper h4 {
  font-size: 32px;
  font-family: "Jost", sans-serif;
  color: #272429;
  font-weight: 400;
  margin-bottom: 20px;
}
.property .property-wrapper .right .info-wrapper h4::after {
  content: "";
  display: flex;
  width: 60px;
  height: 2px;
  background-color: #899684;
  margin-top: 20px;
}
*/
.property .property-wrapper .right .info-wrapper p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  margin-bottom: 20px;
}
/*
.property .property-wrapper .right .info-wrapper a {
  padding: 9px 20px;
  border: 2px solid #899684;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  border-radius: 5px;
  display: flex;
  margin-top: 30px;
  width: -moz-fit-content;
  width: fit-content;
}

.property .property-wrapper .right .info-wrapper .btn-light {
  border: none;
  padding: 0;
  text-decoration: underline;
  font-weight: 600;
  color: #899684;
}
*/
.property .property-wrapper .left {
  width: 50%;
}
.property .property-wrapper .left img {
  max-width: 100%;
  width: 100%;
}

.cannot-find {
  background-image: url(../img/img-17.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.cannot-find .cannot-find-wrapper {
  padding-top: 110px;
  padding-bottom: 110px;
  display: flex;
  justify-content: end;
}
.cannot-find .cannot-find-wrapper .textbox {
  position: relative;
  padding: 30px;
  background-image: url(../img/box.png);
  background-size: 111%;
  background-repeat: no-repeat;
  background-position: center;
  max-width: 531px;
  width: 100%;
}
.cannot-find .cannot-find-wrapper .textbox .info {
  max-width: 360px;
}
.cannot-find .cannot-find-wrapper .textbox .info h4 {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #272429;
  margin-bottom: 15px;
}
.cannot-find .cannot-find-wrapper .textbox .info p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  margin-bottom: 20px;
  max-width: 324px;
}
.cannot-find .cannot-find-wrapper .textbox .info .pop-btn {
  padding: 9px 20px;
  border: 2px solid #899684;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  border-radius: 5px;
  display: flex;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.cannot-find .secondary {
  justify-content: start;
}
.pop-up {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.pop-up .form {
  border: 0.5px solid rgba(0, 0, 0, 0.2);
  max-width: 850px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  border-radius: 5px;
  position: relative;
  padding: 60px 190px 40px 190px;
}
.pop-up .form .close-btn {
  position: absolute;
  top: 30px;
  right: 30px;
  width: 20px;
  cursor: pointer;
}
.pop-up .form .close-btn img {
  width: 100%;
}
 .pop-up .form h1 {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #000;
  margin-bottom: 35px;
  text-align: center;
}
.pop-up .form h3 {
  font-family: "Jost", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #000;
  margin-bottom: 35px;
  text-align: center;
}
.pop-up .form label {
  display: flex;
  flex-direction: column;
  margin-bottom: 14px;
  font-size: 14px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: #272429;
}
.pop-up .form label input {
  outline: none;
  border: none;
  border-radius: 5px;
  margin-top: 5px;
  height: 50px;
  background-color: rgba(39, 36, 41, 0.05);
  padding: 15px;
  font-size: 16px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  box-shadow: inset -2px 0px 38px -28px rgba(0, 0, 0, 0.75);
  color: #272429;
}
.pop-up .form label textarea {
  border: none;
  outline: none;
  resize: none;
  border-radius: 5px;
  margin-top: 5px;
  background-color: rgba(39, 36, 41, 0.05);
  padding: 15px;
  font-size: 16px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  color: #272429;
  height: 100px;
  box-shadow: inset -2px 0px 38px -28px rgba(0, 0, 0, 0.75);
}
.pop-up .form .btn-send {
  border-radius: 5px;
  background-color: #899684;
  color: #fff;
  height: 40px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  margin-top: 10px;
}
.pop-up-active {
  opacity: 1;
  pointer-events: fill;
  z-index: 9999;
}

.sub-footer {
  background-color: #272429;
}
.sub-footer .sub-footer-wrapper {
  padding-top: 75px;
  padding-bottom: 60px;
  display: flex;
}
.sub-footer .sub-footer-wrapper .left {
  max-width: 60%;
  width: 100%;
}
.sub-footer .sub-footer-wrapper .left h3 {
  font-size: 32px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #fff;
  margin-bottom: 22px;
}
.sub-footer .sub-footer-wrapper .left p {
  font-size: 18px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #C7AB93;
  max-width: 85%;
}
.sub-footer .sub-footer-wrapper .right {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 40%;
  width: 100%;
}
.sub-footer .sub-footer-wrapper .right a {
  padding: 10px 20px;
  display: flex;
  border-radius: 6px;
  font-family: "Jost", sans-serif;
  text-decoration: none;
  color: #fff;
  background-color: #899684;
  transition: all 0.3s ease;
}
.sub-footer .sub-footer-wrapper .right a:hover {
  background-color: #a6b1a2;
}

footer {
  background-color: #C3BCB6;
}
footer .footer-wrapper {
  padding-top: 50px;
  padding-bottom: 50px;
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
footer .footer-wrapper .left .logo {
  margin-bottom: 35px;
}
footer .footer-wrapper .left ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding-bottom: 30px;
  width: 300px;
  border-bottom: 2px solid #272429;
}
footer .footer-wrapper .left h5 {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #272429;
  margin-top: 20px;
}
footer .footer-wrapper .left p {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #272429;
  max-width: 160px;
}
footer .footer-wrapper .right {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
footer .footer-wrapper .right ul {
  min-width: 200px;
  display: flex;
  flex-direction: column;
  list-style: none;
  gap: 10px;
}
footer .footer-wrapper .right ul li a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #272429;
}
footer .footer-wrapper .right ul li:first-child {
  font-weight: 700;
  font-size: 16px;
  font-family: "Jost", sans-serif;
  color: #272429;
}
footer .copyright {
  background-color: #000;
}
footer .copyright .copyright-wrapper {
  padding-top: 22px;
  padding-bottom: 22px;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
footer .copyright .copyright-wrapper p {
  font-weight: 400;
  font-size: 14px;
  font-family: "Jost", sans-serif;
  color: #C3BCB6;
  display: flex;
}

.page-navigation {
  height: 110px;
  padding-top: 14px;
}
.page-navigation p {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #C3BCB6;
  display: flex;
}

.filter .fixed-menu {
  height: 100%;
  top: 0;
  right: -100%;
  position: fixed;
  z-index: 3;
  width: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  overflow: scroll;
  transition: all 0.3s ease;
}
.filter .fixed-menu .m-filter-box {
  margin-top: 100px;
  position: static;
}
.filter .search-on {
  right: 0;
}

.single-cottage .single-cottage-wrapper {
  padding-top: 80px;
}
.single-cottage .single-cottage-wrapper .heading {
  margin-bottom: 45px;
}
.single-cottage .single-cottage-wrapper .heading h4 {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #272429;
}
.single-cottage .single-cottage-wrapper ul {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding-bottom: 120px;
}
.single-cottage .single-cottage-wrapper ul li {
  display: flex;
}
.single-cottage .single-cottage-wrapper ul li .left {
  max-width: 50%;
  width: 100%;
  padding-top: 65px;
  position: relative;
}
.single-cottage .single-cottage-wrapper ul li .left .discount {
  position: absolute;
  top: 0;
  left: 0;
  padding: 6px 17px;
  background-color: #899684;
}
.single-cottage .single-cottage-wrapper ul li .left .discount span {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 0;
}
.single-cottage .single-cottage-wrapper ul li .left h3 {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #272429;
  margin-bottom: 2px;
}
.single-cottage .single-cottage-wrapper ul li .left span {
  color: rgba(39, 36, 41, 0.5);
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-bottom: 14px;
}
.single-cottage .single-cottage-wrapper ul li .left span img {
  margin-left: 30px;
}
.single-cottage .single-cottage-wrapper ul li .left p {
  color: #000;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  max-width: 430px;
  margin-bottom: 12px;
}
.single-cottage .single-cottage-wrapper ul li .left h5 {
  color: #272429;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 17px;
}
.single-cottage .single-cottage-wrapper ul li .left a {
  color: #899684;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 700;
}
.single-cottage .single-cottage-wrapper ul li .right {
  max-width: 50%;
  width: 100%;
}
.single-cottage .single-cottage-wrapper ul li .right .mySwiperSingle .swiper-button-prev, .single-cottage .single-cottage-wrapper ul li .right .mySwiperSingle .swiper-button-next {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.75);
}
.single-cottage .single-cottage-wrapper ul li .right .mySwiperSingle .swiper-button-prev:after, .single-cottage .single-cottage-wrapper ul li .right .mySwiperSingle .swiper-button-next:after {
  font-family: swiper-icons;
  font-size: 16px;
  text-transform: none !important;
  letter-spacing: 0;
  color: #fff;
  font-variant: initial;
  line-height: 1;
}
.single-cottage .single-cottage-wrapper ul li .right .mySwiperSingle .swiper-slide .item {
  height: 450px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.single-cottage .single-cottage-wrapper ul li .right .mySwiperSingle .swiper-slide .item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-cottage .single-cottage-wrapper ul li .right .mySwiperSingle .swiper-slide .item .heart {
  position: absolute;
  top: 20px;
  left: 30px;
}
.single-cottage .single-cottage-wrapper ul li .right .mySwiperSingle .swiper-slide .item .heart img {
  width: 35px;
}
.single-cottage .single-cottage-wrapper ul li .right .mySwiperSingle .swiper-slide .item .card {
  position: absolute;
  padding: 35px 22px;
  width: 240px;
  border-radius: 20px;
  background-color: rgba(23, 225, 225, 0.5);
}
.single-cottage .single-cottage-wrapper ul li .right .mySwiperSingle .swiper-slide .item .card p {
  display: flex;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  color: #fff;
}

.reason .reason-wrapper {
  padding-bottom: 80px;
}
.reason .reason-wrapper h4 {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-weight: 400;
  color: #272429;
  margin-bottom: 30px;
  text-align: center;
}
.reason .reason-wrapper p {
  max-width: 620px;
  text-align: center;
  display: flex;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  margin-bottom: 20px;
  margin-right: auto;
  margin-left: auto;
}
.reason .reason-wrapper a {
  color: #899684;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}

.grid-collection .grid-collection-wrapper {
  padding-top: 80px;
}
.grid-collection .grid-collection-wrapper .heading {
  margin-bottom: 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.grid-collection .grid-collection-wrapper .heading span {
  display: none;
  align-items: center;
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000;
}
.grid-collection .grid-collection-wrapper .heading span img {
  margin-right: 10px;
}
.grid-collection .grid-collection-wrapper .heading h4 {
  font-family: "Jost", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #272429;
}
.grid-collection .grid-collection-wrapper .heading .border-left {
  border-left: 7px solid #899684;
  padding-left: 10px;
  font-size: 22px;
}
.grid-collection .grid-collection-wrapper .products {
  margin-top: 40px;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 16px;
       column-gap: 16px;
  row-gap: 30px;
  flex-wrap: wrap;
  list-style: none;
  padding-bottom: 80px;
}
.grid-collection .grid-collection-wrapper .products li .item-wrapper {
  max-width: 400px;
  width: 100%;
  background-color: #F3F2F0;
}
.grid-collection .grid-collection-wrapper .products li .item-wrapper .img-wrapper {
  width: 100%;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grid-collection .grid-collection-wrapper .products li .item-wrapper .img-wrapper .card {
  position: absolute;
  padding: 35px 22px;
  width: 240px;
  border-radius: 20px;
  background-color: rgba(23, 225, 225, 0.5);
}
.grid-collection .grid-collection-wrapper .products li .item-wrapper .img-wrapper .card p {
  display: flex;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  color: #fff;
}
.grid-collection .grid-collection-wrapper .products li .item-wrapper .img-wrapper .item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.grid-collection .grid-collection-wrapper .products li .item-wrapper .img-wrapper .heart {
  position: absolute;
  top: 20px;
  left: 29px;
}
.grid-collection .grid-collection-wrapper .products li .item-wrapper .img-wrapper .discount {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #899684;
}
.grid-collection .grid-collection-wrapper .products li .item-wrapper .img-wrapper .discount span {
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #fff;
}
.grid-collection .grid-collection-wrapper .products li .item-wrapper .info {
  padding: 27px;
}
.grid-collection .grid-collection-wrapper .products li .item-wrapper .info h4 {
  font-size: 22px;
  font-family: "Jost", sans-serif;
  color: #272429;
  font-weight: 500;
}
.grid-collection .grid-collection-wrapper .products li .item-wrapper .info span {
  font-size: 14px;
  font-family: "Jost", sans-serif;
  color: rgba(39, 36, 41, 0.5);
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-top: 7px;
  margin-bottom: 16px;
}
.grid-collection .grid-collection-wrapper .products li .item-wrapper .info span img {
  margin-left: 17px;
}
.grid-collection .grid-collection-wrapper .products li .item-wrapper .info p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  margin-bottom: 20px;
}
.grid-collection .grid-collection-wrapper .products li .item-wrapper .info .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.grid-collection .grid-collection-wrapper .products li .item-wrapper .info .total p {
  display: flex;
  font-weight: 600;
  margin-bottom: 0;
}
.grid-collection .grid-collection-wrapper .products li .item-wrapper .info .total a {
  font-weight: 700;
  font-size: 14px;
  font-family: "Jost", sans-serif;
  text-decoration: none;
  color: #899684;
}

.cottage-images .cottage-images-wrapper {
  justify-content: space-between;
  display: flex;
  gap: 10px;
  height: 500px;
}
.cottage-images .cottage-images-wrapper .left {
  max-width: 60%;
  width: 100%;
  height: 100%;
}
.cottage-images .cottage-images-wrapper .left .primary-img {
  display: flex;
  width: 100%;
  height: 100%;
  position: relative;
}
.cottage-images .cottage-images-wrapper .left .primary-img .heart {
  position: absolute;
  bottom: 24px;
  left: 100px;
  cursor: pointer;
}
.cottage-images .cottage-images-wrapper .left .primary-img .view-btn {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 24px;
  right: 24px;
  cursor: pointer;
}
.cottage-images .cottage-images-wrapper .left .primary-img .primary-item {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.cottage-images .cottage-images-wrapper .right {
  max-width: 40%;
  width: 100%;
  padding: 0;
  height: 100%;
  overflow-y: auto;
  display: flex;
}
.cottage-images .cottage-images-wrapper .right::-webkit-scrollbar {
  display: none;
}
.cottage-images .cottage-images-wrapper .right .secondary-images {
  display: flex;
  flex-wrap: wrap;
  height: 100%;
  justify-content: space-between;
  gap: 10px;
}
.cottage-images .cottage-images-wrapper .right .secondary-images img {
  max-width: 49%;
  width: 100%;
  height: 186px;
  -o-object-fit: cover;
     object-fit: cover;
}

.gallery-slide {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  z-index: 5;
  pointer-events: none;
  transition: all 0.3s ease;
}
.gallery-slide .gallery-slide-wrapper {
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: center;
  padding: 50px;
}
.gallery-slide .gallery-slide-wrapper .myGallerySwiper {
  height: 100%;
}
.gallery-slide .gallery-slide-wrapper .myGallerySwiper .swiper-button-prev, .gallery-slide .gallery-slide-wrapper .myGallerySwiper .swiper-button-next {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.75);
}
.gallery-slide .gallery-slide-wrapper .myGallerySwiper .swiper-button-prev:after, .gallery-slide .gallery-slide-wrapper .myGallerySwiper .swiper-button-next:after {
  font-family: swiper-icons;
  font-size: 24px;
  text-transform: none !important;
  letter-spacing: 0;
  color: #fff;
  font-variant: initial;
  line-height: 1;
}
.gallery-slide .gallery-slide-wrapper .myGallerySwiper .swiper-pagination {
  font-family: "Jost", sans-serif;
  padding: 10px 30px;
  text-align: center;
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 30px;
  margin: auto;
  left: 0;
  right: 0;
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  background-color: #000;
}
.gallery-slide .gallery-slide-wrapper .myGallerySwiper .swiper-slide {
  padding: 100px;
  padding-top: 50px;
}
.gallery-slide .gallery-slide-wrapper .myGallerySwiper .swiper-slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  max-height: 70vh;
}

.gallery-on {
  opacity: 1;
  pointer-events: fill;
}

.cottage-info {
  position: relative;
}
.cottage-info .cottage-info-wrapper h1 {
  font-size: 50px;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  color: #272429;
  margin-bottom: 3px;
}
.cottage-info .cottage-info-wrapper span {
  font-size: 14px;
  font-family: "Jost", sans-serif;
  color: rgba(39, 36, 41, 0.5);
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-top: 7px;
  margin-bottom: 31px;
}
.cottage-info .cottage-info-wrapper span img {
  margin-left: 17px;
}
.cottage-info .cottage-info-wrapper .title {
  display: flex;
  gap: 10px;
  margin-bottom: 45px;
}
.cottage-info .cottage-info-wrapper .title h3 {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #899684;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  background-color: rgba(205, 219, 199, 0.6);
}
.cottage-info .cottage-info-wrapper p {
  max-width: 734px;
  font-family: "Jost", sans-serif;
  line-height: 28px;
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  margin-bottom: 60px;
}
.cottage-info .cottage-info-wrapper h4 {
  font-family: "Jost", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #272429;
  padding-left: 20px;
  border-left: 7px solid #899684;
  margin-bottom: 30px;
}
.cottage-info .cottage-info-wrapper a {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #899684;
  max-width: 734px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
}
.cottage-info .key-features {
  margin-bottom: 50px;
}
.cottage-info .key-features .key-features-wrapper {
  max-width: 734px;
  width: 100%;
  padding: 58px 89px 65px 98px;
  background-color: rgba(205, 219, 199, 0.5);
}
.cottage-info .key-features .key-features-wrapper .header {
  width: 100%;
  background-color: #899684;
  display: flex;
  height: 1px;
  justify-content: center;
  align-items: center;
  margin-bottom: 46px;
}
.cottage-info .key-features .key-features-wrapper .header h2 {
  font-family: "Jost", sans-serif;
  font-size: 32px;
  font-weight: 500;
  color: #272429;
  padding-left: 12px;
  padding-right: 12px;
  background-color: rgb(230, 237, 227);
}
.cottage-info .key-features .key-features-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}
.cottage-info .key-features .key-features-wrapper ul li {
  display: flex;
  align-items: center;
  max-width: 250px;
  width: 100%;
}
.cottage-info .key-features .key-features-wrapper ul li span {
  font-size: 20px;
  font-family: "Jost", sans-serif;
  color: #272429;
  font-weight: 400;
}
.cottage-info .key-features .key-features-wrapper ul li img {
  margin-right: 40px;
}
.cottage-info .video {
  margin-top: 40px;
}
.cottage-info .video .video-wrapper {
  display: flex;
}
.cottage-info .video .video-wrapper video {
  max-width: 734px;
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
.cottage-info .facilities {
  padding-top: 40px;
}
.cottage-info .facilities ul {
  max-width: 734px;
  width: 100%;
  list-style: none;
}
.cottage-info .facilities ul .item {
  padding-bottom: 19px;
  padding-top: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid #E7E4E2;
}
.cottage-info .facilities ul .item:first-child {
  border-top: 1px solid #E7E4E2;
}
.cottage-info .facilities ul .item .heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cottage-info .facilities ul .item .heading h4 {
  font-family: "Jost", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #272429;
  padding-left: 20px;
  border-left: 7px solid #899684;
}
.cottage-info .facilities ul .item .heading img {
  transform: rotateX(180deg);
  transition: all 0.3s ease;
}
.cottage-info .facilities ul .item .more-info {
  padding-top: 0px;
  padding-right: 10px;
  padding-left: 10px;
  height: 0;
  transform: rotateX(90deg);
  transform-origin: top;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
}
.cottage-info .facilities ul .item .more-info h3 {
  font-size: 18px;
  font-family: "Jost", sans-serif;
  font-weight: 700;
  color: #272429;
  margin-bottom: 10px;
  opacity: 0;
  transition: all 0.3s ease;
}
.cottage-info .facilities ul .item .more-info ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  transition: all 0.3s ease;
}
.cottage-info .facilities ul .item .more-info ul li {
  opacity: 0;
  transition: all 0.3s ease;
}
.cottage-info .facilities ul .item .more-info ul li span {
  font-size: 16px;
  font-family: "Jost", sans-serif;
  font-weight: 400;
  display: flex;
  color: #272429;
  align-items: center;
}
.cottage-info .facilities ul .item .more-info ul li span::before {
  content: "";
  min-width: 10px;
  height: 10px;
  display: flex;
  border-radius: 50%;
  margin-right: 15px;
  background-color: #899684;
}
.cottage-info .facilities ul .active .heading img {
  transform: rotateX(0deg);
}
.cottage-info .facilities ul .active .more-info {
  height: auto;
  padding-top: 32px;
  opacity: 1;
  transform: rotateX(0deg);
  pointer-events: fill;
}
.cottage-info .facilities ul .active .more-info h3 {
  opacity: 1;
}
.cottage-info .facilities ul .active .more-info ul {
  opacity: 1;
}
.cottage-info .facilities ul .active .more-info ul li {
  opacity: 1;
}
.cottage-info .map {
  padding-top: 70px;
}
.cottage-info .map .map-wrapper h4 {
  font-family: "Jost", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #272429;
  padding-left: 20px;
  border-left: 7px solid #899684;
  margin-bottom: 30px;
}
.cottage-info .map .img-wrapper {
  max-width: 734px;
  width: 100%;
}
.cottage-info .map .img-wrapper img {
  width: 100%;
}
.cottage-info .calendar-card-desktop {
  position: absolute;
  width: 400px;
  top: 0;
  right: 0;
  height: 98%;
  right: 200px;
}
.cottage-info .calendar-card {
  position: absolute;
  width: 400px;
  top: 0;
  right: 0;
  height: 98%;
  right: 200px;
}
.cottage-info .availability {
  max-width: 412px;
  box-shadow: 0px 1px 64px 1px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 40px;
  background-color: #fff;
  z-index: 1;
}
.cottage-info .availability .discount {
  height: 60px;
  display: flex;
  width: 100%;
  background-color: #899684;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #fff;
}
.cottage-info .availability .title {
  border: 0.5px solid #9F9F9F;
  margin-top: 40px;
  margin-bottom: 35px;
  display: flex;
  height: 0;
  align-items: center;
  justify-content: center;
  max-width: 323px;
  margin-right: auto;
  margin-left: auto;
}
.cottage-info .availability .title h3 {
  font-family: "Jost", sans-serif;
  font-size: 20px;
  font-weight: 500;
  padding-right: 20px;
  padding-left: 20px;
  background-color: #fff;
}
.cottage-info .availability .status {
  max-width: 323px;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
}
.cottage-info .availability .status span {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: #9F9F9F;
  display: flex;
  align-items: center;
}
.cottage-info .availability .status span::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 10px;
}
.cottage-info .availability .status .available::before {
  background-color: #CDDBC7;
}
.cottage-info .availability .status .unavailable::before {
  background-color: #C9C8C9;
}
.cottage-info .availability .status .selected::before {
  background-color: #C7AB93;
}
.cottage-info .availability ul {
  max-width: 323px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin-top: 20px;
}
.cottage-info .availability ul li h4 {
  font-size: 12px;
  font-family: "Jost", sans-serif;
  font-weight: 600;
}
.cottage-info .availability ul li span {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: #B6B6B6;
}
.cottage-info .availability ul li select {
  border: none;
  outline: none;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 10px;
  color: #B6B6B6;
  display: flex;
  position: relative;
  background: url(../img/down.svg) no-repeat 95% 50%;
  background-size: 8px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
}
.cottage-info .availability .availability-wrapper {
  padding-top: 100px;
}
.cottage-info .availability .availability-wrapper .calendar .date {
  width: 100%;
  display: flex;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-weight: 600;
  padding-bottom: 10px;
}
.cottage-info .availability .availability-wrapper .calendar #calendar {
  width: 100% !important;
  position: static !important;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar {
  max-width: 363px !important;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  box-shadow: none;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar::before {
  display: none;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-months {
  top: -100px !important;
  position: absolute;
  width: 100%;
  height: 22px;
  display: flex;
  align-items: center;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-months .flatpickr-month {
  display: flex;
  align-items: center;
  height: 22px;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-months .flatpickr-current-month {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 0;
  border-radius: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 22px;
  margin-right: auto;
  margin-left: auto;
  left: 115px;
  color: rgba(0, 0, 0, 0.4);
  font-size: 11px;
  font-weight: 500;
  font-family: "Jost", sans-serif !important;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-months .flatpickr-current-month .flatpickr-current-month, .cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-months .flatpickr-current-month .flatpickr-monthDropdown-months {
  background-color: transparent !important;
  font-family: "Jost", sans-serif !important;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 500;
  background-size: 8px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background: url(../img/down.svg) no-repeat 98% 4px;
  width: 70px;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-months .flatpickr-current-month .flatpickr-current-month select, .cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-months .flatpickr-current-month .flatpickr-monthDropdown-months select {
  font-weight: 500;
  background-size: 8px;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-months .flatpickr-current-month .flatpickr-current-month, .cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-months .flatpickr-current-month input, .cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-months .flatpickr-current-month .cur-year {
  background: transparent !important;
  font-family: "Jost", sans-serif;
  outline: none;
  color: rgba(0, 0, 0, 0.4);
  font-weight: 500;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-months .flatpickr-current-month input::-moz-selection {
  background: transparent !important; /* Makes the selection background transparent */
  color: inherit; /* Keeps the text color the same as the input's color */
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-months .flatpickr-current-month input::selection {
  background: transparent !important; /* Makes the selection background transparent */
  color: inherit; /* Keeps the text color the same as the input's color */
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-months .flatpickr-current-month input:focus {
  outline: none;
  background: transparent !important;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-months .flatpickr-prev-month {
  left: 90px;
  height: 22px;
  width: 20px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-months .flatpickr-prev-month svg {
  height: 10px;
  fill: #B6B6B6;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-months .flatpickr-next-month {
  right: 90px;
  height: 22px;
  width: 20px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-months .flatpickr-next-month svg {
  height: 10px;
  fill: #B6B6B6;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-rContainer {
  width: 100%;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-rContainer .flatpickr-weekdays span {
  font-family: "Jost", sans-serif;
  font-weight: 400 !important;
  font-size: 14px;
  color: #272429;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-rContainer .flatpickr-days {
  width: 100%;
  border: 1px solid transparent;
  box-shadow: none;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-rContainer .flatpickr-days .dayContainer {
  width: 100% !important;
  border: 1px solid transparent;
  box-shadow: none;
  max-width: 100%;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-day {
  max-width: 45px;
  width: 100%;
  min-height: 37px;
  font-family: "Jost", sans-serif;
  border-radius: 0;
  margin-bottom: 2px;
  transition: all 0.3s ease;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-day:hover {
  background-color: #CDDBC7;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-rContainer .flatpickr-days .dayContainer .prevMonthDay {
  opacity: 0;
  pointer-events: none;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-rContainer .flatpickr-days .dayContainer .nextMonthDay {
  opacity: 0;
  pointer-events: none;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-rContainer .flatpickr-days .dayContainer .selected {
  border-radius: 0px;
  background-color: #C7AB93;
  border: none;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-rContainer .flatpickr-days .dayContainer .today {
  border-radius: 0px;
  border: none;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-disabled {
  text-decoration: line-through;
}
.cottage-info .availability .availability-wrapper .calendar .flatpickr-calendar .flatpickr-rContainer .flatpickr-days .dayContainer .flatpickr-disabled:hover {
  background-color: transparent;
}
.cottage-info .availability .availability-wrapper .clear {
  padding-right: 23px;
  padding-left: 23px;
  margin-top: 6px;
}
.cottage-info .availability .availability-wrapper .clear .clear-wrapper {
  display: flex;
  justify-content: end;
  padding-bottom: 30px;
  border-top: 1px solid #9F9F9F;
  margin-top: 5px;
  padding-top: 5px;
}
.cottage-info .availability .availability-wrapper .clear .clear-wrapper span {
  font-family: "Jost", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #B6B6B6;
}
.cottage-info .guests .guests-wrapper {
  padding-top: 60px;
  border-bottom: 2px solid rgba(39, 36, 41, 0.5);
}
.cottage-info .guests .guests-wrapper h4 {
  font-family: "Jost", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #272429;
  padding-left: 20px;
  border-left: 7px solid #899684;
  margin-bottom: 30px;
}
.cottage-info .guests .guests-wrapper .slider {
  max-width: 734px;
  width: 100%;
}
.cottage-info .guests .guests-wrapper .slider .myClientSwiper {
  padding-bottom: 50px;
}
.cottage-info .guests .guests-wrapper .slider .myClientSwiper .swiper-slide {
  padding: 10px;
}
.cottage-info .guests .guests-wrapper .slider .myClientSwiper .swiper-slide .message {
  padding: 42px;
  box-shadow: 0px 5px 18px -16px rgba(0, 0, 0, 0.75);
}
.cottage-info .guests .guests-wrapper .slider .myClientSwiper .swiper-slide .message .stars {
  display: flex;
  justify-content: center;
  margin-bottom: 26px;
}
.cottage-info .guests .guests-wrapper .slider .myClientSwiper .swiper-slide .message p {
  max-width: 514px;
  font-size: 22px;
  line-height: 26px;
  font-family: "Jost", sans-serif;
  color: #272429;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  font-weight: 400;
  margin-bottom: 38px;
}
.cottage-info .guests .guests-wrapper .slider .myClientSwiper .swiper-slide .message span {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #272429;
  text-align: center;
  display: block;
}
.cottage-info .guests .guests-wrapper .slider .myClientSwiper .btns {
  display: flex;
  justify-content: flex-end;
  gap: 35px;
  margin-top: 30px;
}
.cottage-info .guests .guests-wrapper .slider .myClientSwiper .swiper-button-next {
  position: static;
  font-size: 18px;
}
.cottage-info .guests .guests-wrapper .slider .myClientSwiper .swiper-button-prev {
  position: static;
  bottom: 50px;
}
.cottage-info .guests .guests-wrapper .slider .myClientSwiper .swiper-button-prev:after, .cottage-info .guests .guests-wrapper .slider .myClientSwiper .swiper-button-next:after {
  font-size: 28px;
  color: #899684;
}
.cottage-info .guests .guests-wrapper .slider .myClientSwiper .swiper-pagination-bullet-active {
  background-color: #899684;
}
.cottage-info .guests .guests-wrapper .slider .myClientSwiper .swiper-pagination {
  display: none;
}

.same-location {
  padding-top: 100px;
  margin-bottom: 60px;
}
.same-location .same-location-wrapper h3 {
  font-family: "Jost", sans-serif;
  font-size: 22px;
  font-weight: 400;
  color: #272429;
  padding-left: 20px;
  border-left: 7px solid #899684;
  margin-bottom: 30px;
}
.same-location .same-location-wrapper .myLocationSwiper {
  padding-bottom: 50px;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-slide {
  padding: 10px;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-slide .item-wrapper {
  max-width: 400px;
  width: 100%;
  background-color: #F3F2F0;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-slide .item-wrapper .img-wrapper {
  width: 100%;
  height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-slide .item-wrapper .img-wrapper .card {
  position: absolute;
  padding: 35px 22px;
  width: 240px;
  border-radius: 20px;
  background-color: rgba(23, 225, 225, 0.5);
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-slide .item-wrapper .img-wrapper .card p {
  display: flex;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
  color: #fff;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-slide .item-wrapper .img-wrapper .item-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-slide .item-wrapper .img-wrapper .heart {
  position: absolute;
  top: 20px;
  left: 29px;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-slide .item-wrapper .img-wrapper .discount {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #899684;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-slide .item-wrapper .img-wrapper .discount span {
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #fff;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-slide .item-wrapper .info {
  padding: 27px;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-slide .item-wrapper .info h4 {
  font-size: 22px;
  font-family: "Jost", sans-serif;
  color: #272429;
  font-weight: 500;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-slide .item-wrapper .info span {
  font-size: 14px;
  font-family: "Jost", sans-serif;
  color: rgba(39, 36, 41, 0.5);
  font-weight: 400;
  display: flex;
  align-items: center;
  margin-top: 7px;
  margin-bottom: 16px;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-slide .item-wrapper .info span img {
  margin-left: 17px;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-slide .item-wrapper .info p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  margin-bottom: 20px;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-slide .item-wrapper .info .total {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-slide .item-wrapper .info .total p {
  display: flex;
  font-weight: 600;
  margin-bottom: 0;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-slide .item-wrapper .info .total a {
  font-weight: 700;
  font-size: 14px;
  font-family: "Jost", sans-serif;
  text-decoration: none;
  color: #899684;
}
.same-location .same-location-wrapper .myLocationSwiper .btns {
  display: flex;
  justify-content: flex-end;
  gap: 35px;
  margin-top: 30px;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-button-next {
  position: static;
  font-size: 18px;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-button-prev {
  position: static;
  bottom: 50px;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-button-prev:after, .same-location .same-location-wrapper .myLocationSwiper .swiper-button-next:after {
  font-size: 28px;
  color: #899684;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-pagination-bullet-active {
  background-color: #899684;
}
.same-location .same-location-wrapper .myLocationSwiper .swiper-pagination {
  display: none;
}

.products-collections {
  margin-bottom: 50px;
}
.products-collections .products-wrapper .header {
  padding-bottom: 40px;
  max-width: 836px;
  margin-right: auto;
  margin-left: auto;
}
.products-collections .products-wrapper .header h2 {
  font-family: "Jost", sans-serif;
  font-size: 38px;
  font-weight: 400;
  color: #272429;
  text-align: center;
  margin-bottom: 17px;
}
.products-collections .products-wrapper .header p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  margin-bottom: 20px;
  text-align: center;
}
.products-collections .products-wrapper .header a {
  padding: 9px 20px;
  border: 2px solid #899684;
  text-decoration: none;
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  border-radius: 5px;
  display: flex;
  margin-top: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
}
.products-collections .products-wrapper ul {
  padding-top: 40px;
  max-width: 1080px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 150px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  gap: 20px;
}
.products-collections .products-wrapper ul li {
  max-width: 518px;
  width: 100%;
  padding-bottom: 30px;
}
.products-collections .products-wrapper ul li img {
  width: 100%;
}
.products-collections .products-wrapper ul li h3 {
  margin-top: 30px;
  font-family: "Jost", sans-serif;
  font-size: 26px;
  font-weight: 500;
  color: #272429;
  margin-bottom: 10px;
}
.products-collections .products-wrapper ul li p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  margin-bottom: 15px;
}
.products-collections .products-wrapper ul li a {
  font-family: "Jost", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #899684;
}

.nearby .nearby-wrapper {
  position: relative;
}
.nearby .nearby-wrapper .header {
  margin-bottom: 60px;
  padding-right: 100px;
  border-bottom: 2px solid #899684;
  padding-bottom: 19px;
}
.nearby .nearby-wrapper .header h3 {
  font-size: 32px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #272429;
}
.nearby .nearby-wrapper .myLocationSwiper {
  padding-bottom: 50px;
  position: static;
}
.nearby .nearby-wrapper .myLocationSwiper .swiper-wrapper {
  position: static;
}
.nearby .nearby-wrapper .myLocationSwiper .swiper-slide {
  padding: 10px;
}
.nearby .nearby-wrapper .myLocationSwiper .swiper-slide .item-wrapper {
  max-width: 390px;
}
.nearby .nearby-wrapper .myLocationSwiper .swiper-slide .item-wrapper img {
  width: 100%;
}
.nearby .nearby-wrapper .myLocationSwiper .swiper-slide .item-wrapper h3 {
  margin-top: 30px;
  font-size: 22px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #272429;
  margin-bottom: 15px;
}
.nearby .nearby-wrapper .myLocationSwiper .swiper-slide .item-wrapper p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #000;
  margin-bottom: 20px;
}
.nearby .nearby-wrapper .myLocationSwiper .swiper-slide .item-wrapper a {
  font-size: 14px;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  color: #899684;
}
.nearby .nearby-wrapper .myLocationSwiper .btns {
  display: flex;
  position: absolute;
  justify-content: flex-end;
  gap: 15px;
  right: 0;
  margin-top: 30px;
  top: -5px;
}
.nearby .nearby-wrapper .myLocationSwiper .swiper-button-next {
  position: static;
  font-size: 18px;
}
.nearby .nearby-wrapper .myLocationSwiper .swiper-button-prev {
  position: static;
  bottom: 50px;
}
.nearby .nearby-wrapper .myLocationSwiper .swiper-button-prev:after, .nearby .nearby-wrapper .myLocationSwiper .swiper-button-next:after {
  font-size: 28px;
  color: #899684;
}
.nearby .nearby-wrapper .myLocationSwiper .swiper-pagination-bullet-active {
  background-color: #899684;
}
.nearby .nearby-wrapper .myLocationSwiper .swiper-pagination {
  display: none;
}

.heading-info {
  padding-bottom: 140px;
}
.heading-info .heading-wrapper h2 {
  text-align: center;
  font-size: 32px;
  font-family: "Jost", sans-serif;
  color: #272429;
  font-weight: 400;
  margin-bottom: 30px;
}
.heading-info .heading-wrapper p {
  text-align: center;
  font-size: 16px;
  font-family: "Jost", sans-serif;
  color: #272429;
  font-weight: 400;
  margin-bottom: 40px;
  max-width: 470px;
  margin-right: auto;
  margin-left: auto;
}
.heading-info .heading-wrapper a {
  padding: 10px 20px;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  border-radius: 6px;
  font-family: "Jost", sans-serif;
  text-decoration: none;
  color: #fff;
  background-color: #899684;
  transition: all 0.3s ease;
}
.heading-info .heading-wrapper a:hover {
  background-color: #a6b1a2;
}

.team-info .team-info-wrapper {
  padding-bottom: 100px;
}

/*
.team-info .team-info-wrapper h1 {
  font-size: 32px;
  font-family: "Jost", sans-serif;
  color: #272429;
  font-weight: 400;
  margin-bottom: 20px;
}
.team-info .team-info-wrapper h1::after {
  content: "";
  display: flex;
  width: 60px;
  height: 2px;
  background-color: #899684;
  margin-top: 20px;
}
*/
.team-info .team-info-wrapper p {
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  line-height: 32px;
  margin-top: 10px;
  font-family: "Jost", sans-serif;
}

.bcg-green {
  background-color: #F3F6F1;
}

.bcg-black {
  background-color: #272429;
}
.bcg-black h4, .bcg-black p {
  color: #fff !important;
}

.members .members-wrapper {
  padding-top: 100px;
  padding-bottom: 100px;
}

.members .members-wrapper h1 {
  font-size: 32px;
  font-family: "Jost", sans-serif;
  color: #272429;
  font-weight: 400;
  margin-bottom: 40px;
}
.members .members-wrapper h1::after {
  content: "";
  display: flex;
  width: 60px;
  height: 2px;
  background-color: #899684;
  margin-top: 20px;
}
.members .members-wrapper ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 50px;
}
.members .members-wrapper ul li {
  max-width: 300px;
  width: 100%;
}
.members .members-wrapper ul li img {
  width: 100%;
  height: 360px;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 50px;
}
.members .members-wrapper ul li h3 {
  font-family: "Jost", sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #272429;
  margin-bottom: 10px;
}
.members .members-wrapper ul li span {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #272429;
}

.contact-info .contact-info-wrapper {
  padding-bottom: 140px;
}
.contact-info .contact-info-wrapper h2 {
  font-size: 32px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #272429;
  margin-bottom: 30px;
  text-align: center;
}
.contact-info .contact-info-wrapper p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #272429;
  max-width: 460px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.contact-info .contact-info-wrapper span {
  font-size: 20px;
  display: flex;
  justify-content: center;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #272429;
  max-width: 460px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  margin-top: 15px;
}
.contact-info .contact-info-wrapper h5 {
  font-size: 20px;
  display: flex;
  justify-content: center;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #272429;
  max-width: 460px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  margin-top: 15px;
}
.contact-info .contact-info-wrapper h5 a {
  background-color: transparent;
  color: #272429;
  padding: 0;
  margin: 0;
  font-size: 20px;
  margin-left: 5px;
  font-weight: 500;
}
.contact-info .contact-info-wrapper a {
  display: flex;
  padding: 8px 20px;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  margin-top: 32px;
  border-radius: 6px;
  color: #fff;
  background-color: #899684;
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  text-decoration: none;
}

.news .news-wrapper {
  padding-bottom: 150px;
}
.news .news-wrapper ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
}
.news .news-wrapper ul li {
  max-width: 390px;
  width: 100%;
  padding-bottom: 40px;
}
.news .news-wrapper ul li img {
  width: 100%;
  margin-bottom: 30px;
}
.news .news-wrapper ul li h4 {
  font-size: 22px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #272429;
  margin-bottom: 15px;
}
.news .news-wrapper ul li p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #272429;
  margin-bottom: 20px;
}
.news .news-wrapper ul li a {
  font-size: 14px;
  font-weight: 600;
  font-family: "Jost", sans-serif;
  color: #899684;
}

.post-hero {
  background-color: #E7EAE6;
}
.post-hero .post-hero-wrapper {
  height: 400px;
  display: flex;
  justify-content: center;
}
.post-hero .post-hero-wrapper .img-wrapper {
  position: absolute;
  max-width: 646px;
  top: 200px;
  width: 100%;
  padding: 20px;
}
.post-hero .post-hero-wrapper .img-wrapper img {
  width: 100%;
}

.post-info .post-info-wrapper {
  padding-top: 130px;
  padding-bottom: 80px;
}
.post-info .post-info-wrapper .center {
  max-width: 626px;
  margin-right: auto;
  margin-left: auto;
}
.post-info .post-info-wrapper .center h1 {
  font-size: 50px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #272429;
  margin-bottom: 40px;
}
.post-info .post-info-wrapper .center p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #272429;
  margin-bottom: 15px;
  line-height: 28px;
}

.post-info .post-info-wrapper .center .intro {
  font-size: 20px;
}
.post-info .post-info-wrapper .center h4 {
  font-size: 22px;
  font-family: "Jost", sans-serif;
  color: #272429;
  line-height: 28px;
}
.post-info .post-info-wrapper .center .images {
  display: flex;
  gap: 10px;
  margin-bottom: 40px;
}
.post-info .post-info-wrapper .center .images img {
  max-width: 50%;
}
.post-info .post-info-wrapper .center .action-heading {
  margin-top: 40px;
  padding-right: 44px;
  padding-left: 44px;
}
.post-info .post-info-wrapper .center .action-heading h5 {
  font-size: 18px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  text-align: center;
  color: #272429;
  line-height: 28px;
}
.post-info .post-info-wrapper .center .action-heading p {
  text-align: center;
}

.contact .contact-wrapper {
  padding-top: 20px;
  padding-bottom: 150px;
}
.contact .contact-wrapper .min-container {
  max-width: 1055px;
  margin-right: auto;
  margin-left: auto;
}
/*
.contact .contact-wrapper .min-container .message h1 {
  font-size: 32px;
  font-family: "Jost", sans-serif;
  color: #272429;
  font-weight: 400;
  margin-bottom: 20px;
}
.contact .contact-wrapper .min-container .message h1::after {
  content: "";
  display: flex;
  width: 60px;
  height: 2px;
  background-color: #899684;
  margin-top: 20px;
}
*/
.contact .contact-wrapper .min-container .message p {
  font-size: 16px;
  font-weight: 400;
  color: #272429;
  line-height: 32px;
  font-family: "Jost", sans-serif;
  padding-bottom: 10px;
}
.contact .contact-wrapper .min-container .message p a {
  color: #272429;
}
.contact .contact-wrapper .min-container .message span {
  font-size: 16px;
  font-weight: 600;
  color: #272429;
  line-height: 32px;
  font-family: "Jost", sans-serif;
}
.contact .contact-wrapper .min-container .contact-card {
  display: flex;
  margin-top: 60px;
  gap: 127px;
}
.contact .contact-wrapper .min-container .contact-card .contact-detailes {
  max-width: 300px;
  width: 100%;
}
/*
.contact .contact-wrapper .min-container .contact-card .contact-detailes h2 {
  font-size: 22px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #272429;
  margin-bottom: 19px;
}
*/
.contact .contact-wrapper .min-container .contact-card .contact-detailes h4{
  margin-bottom: 19px;
}
.contact .contact-wrapper .min-container .contact-card .contact-detailes span {
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #272429;
  margin-bottom: 19px;
  display: flex;
  margin-bottom: 10px;
  margin-top: 20px;
}
.contact .contact-wrapper .min-container .contact-card .contact-detailes span strong {
  font-weight: 500;
}
.contact .contact-wrapper .min-container .contact-card .contact-detailes p {
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #272429;
  margin-bottom: 10px;
  display: flex;
}
.contact .contact-wrapper .min-container .contact-card .contact-form {
  display: flex;
  flex-direction: column;
  max-width: 628px;
  width: 100%;
}
.contact .contact-wrapper .min-container .contact-card .contact-form h2 {
  font-size: 22px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #272429;
  margin-bottom: 19px;
}
.contact .contact-wrapper .min-container .contact-card .contact-form label {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #272429;
  margin-bottom: 14px;
}
.contact .contact-wrapper .min-container .contact-card .contact-form label input {
  height: 50px;
  margin-top: 3px;
  outline: none;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #272429;
  box-shadow: inset -2px 0px 38px -28px rgba(0, 0, 0, 0.15);
}
.contact .contact-wrapper .min-container .contact-card .contact-form label textarea {
  height: 100px;
  border-radius: 5px;
  outline: none;
  resize: none;
  border: 1px solid #D9D9D9;
  margin-top: 3px;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  color: #272429;
  box-shadow: inset -2px 0px 38px -28px rgba(0, 0, 0, 0.15);
}
.contact .contact-wrapper .min-container .contact-card .contact-form p {
  font-size: 14px;
  font-weight: 500;
  font-family: "Jost", sans-serif;
  color: #272429;
}
.contact .contact-wrapper .min-container .contact-card .contact-form .custom-checkbox {
  display: flex;
  align-items: center;
  flex-direction: row;
}
.contact .contact-wrapper .min-container .contact-card .contact-form .custom-checkbox input {
  opacity: 0;
  position: absolute;
}
.contact .contact-wrapper .min-container .contact-card .contact-form .custom-checkbox img {
  margin-right: 10px;
}
.contact .contact-wrapper .min-container .contact-card .contact-form .custom-checkbox span {
  font-weight: 400;
}
.contact .contact-wrapper .min-container .contact-card .contact-form .custom-checkbox span a {
  color: #899684;
}
.contact .contact-wrapper .min-container .contact-card .contact-form .custom-checkbox .checkmark {
  position: relative;
  margin-right: 10px;
  top: 0;
  left: 0;
  height: 14px;
  min-width: 14px;
  background-color: transparent;
  display: inline-block;
  border: 1px solid #272429;
  border-radius: 2px;
  transition: all 0.3s ease;
  background-position: center;
  cursor: pointer;
}
.contact .contact-wrapper .min-container .contact-card .contact-form .custom-checkbox .checkmark:hover {
  background-color: #FBFAFA;
}
.contact .contact-wrapper .min-container .contact-card .contact-form .custom-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.contact .contact-wrapper .min-container .contact-card .contact-form .custom-checkbox input:checked + .checkmark {
  background-color: #FBFAFA;
  background-image: url(../img/checked.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.contact .contact-wrapper .min-container .contact-card .contact-form .btn-send {
  border-radius: 5px;
  background-color: #899684;
  color: #fff;
  height: 40px;
  width: 100%;
  display: flex;
  width: -moz-fit-content;
  width: fit-content;
  padding: 8px 20px;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 400;
  font-family: "Jost", sans-serif;
  margin-top: 10px;
}

@media (max-width: 1500px) {
  .places .places-wrapper .scrollbar-slider {
    padding-left: 82px;
  }
  .cottage-info .calendar-card {
    right: 70px;
  }
}
@media (max-width: 1300px) {
  .container {
    padding-left: 50px;
    padding-right: 50px;
  }
  .filter .d-filter-wrapper {
    max-width: 1100px;
  }
  .filter .d-filter-wrapper .filter-box {
    left: 0;
  }
  .nearby .nearby-wrapper .myLocationSwiper .btns {
    right: 50px;
  }
  .cottage-info .calendar-card {
    margin-top: 60px;
    position: static;
    width: auto;
    height: auto;
  }
}
@media (max-width: 1080px) {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .sticy-search {
    display: flex;
    z-index: 4;
  }
  .cottages .cottages-wrapper {
    margin-top: 30px;
  }
  nav .nav-wrapper .navbar {
    display: none;
  }
  nav .nav-wrapper .navbar-mobile {
    display: flex;
  }
  .homehero .homehero-wrapper .video {
    top: 100px;
  }
  .homehero .homehero-wrapper h1 {
    font-size: 55px;
  }
  .homehero .secondary {
    height: 350px;
  }
  .homehero .secondary .video {
    height: 350px;
  }
  .homehero .secondary h1 {
    margin-top: 230px;
  }
  .homehero .medium {
    height: 510px;
  }
  .homehero .medium .video {
    height: 510px;
  }
  .homehero .medium h1 {
    margin-top: 320px;
  }
  .products-collections {
    padding-top: 60px;
  }
  .filter .d-filter-wrapper {
    max-width: 1100px;
    display: none;
  }
  .filter .d-filter-wrapper .filter-box {
    left: 0;
  }
  .filter .m-filter-wrapper {
    display: block;
  }
  footer .footer-wrapper {
    flex-direction: column;
  }
  footer .copyright .copyright-wrapper {
    flex-direction: column;
    align-items: start;
    justify-content: center;
  }
  .page-navigation {
   /* margin-top: 100px; */
    margin-top: 0px;
    padding-bottom: 0;
    height: auto;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .post-page {
    margin-top: 170px;
  }
  .no-hero {
    margin-top: 0px !important;
  }
  .mobile-none {
    display: none;
  }
  .single-cottage .single-cottage-wrapper {
    padding-top: 150px;
  }
  .single-cottage .single-cottage-wrapper .heading {
    padding-bottom: 0;
  }
  .single-cottage .single-cottage-wrapper ul li {
    flex-direction: column;
    gap: 40px;
  }
  .single-cottage .single-cottage-wrapper ul li .left {
    max-width: 100%;
  }
  .single-cottage .single-cottage-wrapper ul li .right {
    max-width: 100%;
  }
  .single-cottage .collection {
    padding-top: 0;
  }
  .cottage-images .cottage-images-wrapper {
    flex-direction: column;
    height: auto;
  }
  .cottage-images .cottage-images-wrapper .left {
    max-width: 100%;
    height: 300px;
  }
  .cottage-images .cottage-images-wrapper .left .primary-img .heart {
    left: 24px;
  }
  .cottage-images .cottage-images-wrapper .right {
    max-width: 100%;
    height: auto;
  }
  .cottage-images .cottage-images-wrapper .right .secondary-images {
    flex-wrap: nowrap;
  }
  .cottage-images .cottage-images-wrapper .right .secondary-images img {
    width: 120px;
    height: 80px;
  }
  .cottage-info {
    padding-top: 50px;
  }
  .nearby .nearby-wrapper .myLocationSwiper .btns {
    right: 35px;
  }
  .grid-collection .grid-collection-wrapper .heading span {
    display: flex;
  }
  .team-info {
    padding-top: 50px;
  }
  .news {
    padding-top: 50px;
  }
  .contact .contact-wrapper {
    padding-bottom: 100px;
  }
  .contact .contact-wrapper .min-container .contact-card {
    gap: 80px;
    flex-direction: column;
  }
}
@media (max-width: 990px) {
  .homehero .primary {
    height: 600px;
  }
}
@media (max-width: 800px) {
  .homehero .primary {
    height: 500px;
  }
  .cottages .cottages-wrapper .products {
    display: none;
  }
  .cottages .cottages-wrapper .slider {
    display: flex;
  }
  .cottages .cottages-wrapper .view-all {
    margin-top: 0px;
  }
  .collection .collection-wrapper .collects {
    margin-right: auto;
    margin-left: auto;
    max-width: 390px;
    justify-content: center;
  }
  .collection .collection-wrapper .collects li img {
    width: 350px;
    height: 350px;
  }
  .collection .collection-wrapper .collects li h4 {
    font-weight: 500;
    font-size: 32px;
    bottom: 20px;
    max-width: 330px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
  }
  .places .places-wrapper .scrollbar-slider {
    display: none;
  }
  .places .places-wrapper .slider-m {
    display: flex;
  }
  .places .places-wrapper .back {
    display: none;
  }
  .places .places-wrapper .unique {
    padding-top: 10px;
    padding-right: 0 !important;
    padding-left: 0 !important;
    flex-direction: column-reverse;
  }
  .places .places-wrapper .unique .right {
    width: 100%;
    margin-bottom: 55px;
  }
  .places .places-wrapper .unique .left {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .places .places-wrapper .unique .left .info-wrapper {
    width: 100%;
  }
  .property .property-wrapper {
    padding-top: 10px;
    padding-right: 0 !important;
    padding-left: 0 !important;
    flex-direction: column;
  }
  .property .property-wrapper .left {
    width: 100%;
    margin-bottom: 0px;
  }
  .property .property-wrapper .right {
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
  .property .property-wrapper .right .info-wrapper {
    width: 100%;
  }
  .property .property-2 {
    flex-direction: column-reverse !important;
  }
  .gallery-slide .gallery-slide-wrapper {
    padding: 20px;
  }
  .gallery-slide .gallery-slide-wrapper .myGallerySwiper {
    height: 60%;
  }
  .gallery-slide .gallery-slide-wrapper .myGallerySwiper .swiper-slide {
    padding: 0;
  }
  .pop-up {
    z-index: 10;
  }
  .pop-up .form {
    width: 100vw;
    height: 100vh;
    border-radius: 0;
    padding: 50px 20px 60px 20px;
    overflow: auto;
  }
}
@media (max-width: 650px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .homehero .homehero-wrapper .video {
    top: 100px;
    min-height: 300px;
  }
  .homehero .homehero-wrapper .video video {
    min-height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .homehero .homehero-wrapper h1 {
    font-size: 40px;
    line-height: 46px;
    margin-top: 200px;
  }
  .homehero .medium {
    height: 300px;
  }
  .homehero .medium .video {
    height: 300px;
  }
  .homehero .medium h1 {
    margin-top: 220px;
  }
  .homehero .primary {
    height: 400px;
  }
  .feature .feature-wrapper {
    padding-top: 40px;
  }
  .feature .feature-wrapper ul {
    justify-content: center;
  }
  .feature .feature-wrapper ul li img {
    max-width: 105px;
  }
  .cannot-find .cannot-find-wrapper .textbox {
    background-image: url(../img/box-2.png);
  }
  .sub-footer .sub-footer-wrapper {
    flex-direction: column;
  }
  .sub-footer .sub-footer-wrapper .left {
    max-width: 100%;
    margin-bottom: 31px;
  }
  .sub-footer .sub-footer-wrapper .left h3 {
    text-align: center;
    font-size: 26px;
  }
  .sub-footer .sub-footer-wrapper .left p {
    text-align: center;
    display: flex;
    margin-right: auto;
    margin-left: auto;
    color: #fff;
  }
  .sub-footer .sub-footer-wrapper .right {
    max-width: 100%;
  }
  .gallery-slide .gallery-slide-wrapper {
    padding: 10px;
  }
  .gallery-slide .gallery-slide-wrapper .myGallerySwiper {
    padding-top: 50px;
    height: 400px;
  }
  .gallery-slide .gallery-slide-wrapper .myGallerySwiper .swiper-slide {
    padding: 0;
  }
  .cottage-info .cottage-info-wrapper h1 {
    font-size: 35px;
  }
  .cottage-info .cottage-info-wrapper .title {
    flex-wrap: wrap;
  }
  .cottage-info .key-features {
    padding: 0;
  }
  .cottage-info .key-features .key-features-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }
  .cottage-info .key-features .key-features-wrapper ul {
    padding-left: 40px;
    padding-right: 40px;
  }
  .cottage-info .video .video-wrapper {
    padding: 0;
  }
  .cottage-info .video .video-wrapper video {
    height: 230px;
  }
  .cottage-info .map .map-box {
    padding: 0;
  }
  .guests .guests-wrapper {
    border-bottom: none !important;
  }
  .guests .guests-wrapper .slider .myClientSwiper .swiper-pagination {
    display: block !important;
  }
  .guests .guests-wrapper .slider .myClientSwiper .btns {
    display: none !important;
  }
  .same-location .same-location-wrapper .slider .myLocationSwiper .swiper-pagination {
    display: block !important;
  }
  .same-location .same-location-wrapper .slider .myLocationSwiper .btns {
    display: none !important;
  }
  .nearby .nearby-wrapper .myLocationSwiper .btns {
    right: 20px;
  }
  .members .members-wrapper ul {
    justify-content: center;
  }
  .members .members-wrapper ul li img {
    margin-bottom: 15px;
  }
  .post-hero .post-hero-wrapper {
    height: 200px;
  }
  .post-hero .post-hero-wrapper .img-wrapper {
    top: 100px;
  }
  .post-page {
    margin-top: 70px;
  }
  .post-info .post-info-wrapper {
    padding-top: 20px;
  }
  .post-info .post-info-wrapper .center h1 {
    font-size: 35px;
  }
  .post-info .post-info-wrapper .center .images {
    flex-direction: column;
    gap: 30px;
  }
  .post-info .post-info-wrapper .center .images img {
    max-width: 100%;
  }
  .calendar-card {
    padding: 0;
  }
  .calendar-card .availability {
    max-width: 100%;
  }
}/*# sourceMappingURL=main.css.map */