*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
}

.logo {
  max-width: 70%;
}

img {
  max-width: 100%;
  height: auto;
}

ol li {
  padding-block: 0.5em;
}
ol .bold {
  margin-top: 1em;
}

.wrapper {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
}

.wrapper-in-bg {
  padding: 2em 0;
  margin-bottom: 2em;
  max-width: 1000px;
  background-color: rgba(255, 255, 255, 0.6);
}

.section {
  padding: 4em 0 2em;
}

.section-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-container .section-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1em;
}
.section-container .section-box .section-image {
  position: relative;
}
.section-container .section-box .section-image .section-img {
  padding: 0 1em;
  width: 100%;
}
.section-container .section-box .section-list {
  list-style-position: inside;
}
.section-container .section-box .section-list .list-item {
  text-align: left;
}

.section-decoration {
  position: absolute;
  width: 50%;
  height: 50px;
  background-color: #fff;
}

.section-decoration-left {
  left: -2em;
  bottom: 0;
  -webkit-transform: skewX(25deg);
          transform: skewX(25deg);
}

.section-decoration-right {
  right: 0;
  top: 0;
}

.section-decoration-right::before {
  position: absolute;
  content: "";
  left: -10%;
  bottom: 0;
  width: 20%;
  height: 50px;
  background-color: #fff;
  -webkit-transform: skewX(25deg);
          transform: skewX(25deg);
}

.bold {
  font-weight: 600;
}

.section-with-bg {
  background-attachment: fixed;
  background-size: cover;
}

.heading {
  padding: 0 1em;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(3rem, 4vw, 5rem);
}

.section-heading {
  padding: 0 1em 1em;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3.6rem);
}

.section-subheading {
  padding: 1em 1em 0;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: clamp(1.2rem, 1.4vw, 1.6rem);
  color: rgb(207, 185, 151);
}

.subheading-black {
  color: #000;
}

.btn {
  margin-top: 1em;
  padding: 0.8em 1.6em;
  text-align: center;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: 5px;
  cursor: pointer;
}

.btn-green {
  background-color: rgb(55, 146, 55);
  color: #fff;
  border: 1px solid rgb(55, 146, 55);
  -webkit-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
}

.btn-green:hover {
  background-color: transparent;
  color: #000;
}

.btn-outline-brown {
  background-color: none;
  color: #000;
  border: 1px solid rgb(207, 185, 151);
  -webkit-transition: background-color 0.5s, color 0.5s;
  transition: background-color 0.5s, color 0.5s;
}

.btn-outline-brown:hover {
  background-color: rgb(207, 185, 151);
}

.link {
  text-decoration: none;
}

.text {
  padding: 1em;
  text-align: center;
  font-size: clamp(1.4rem, 1.6vw, 1.6rem);
  line-height: 1.6em;
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 20;
}
.nav .logo-top {
  margin: 1em;
}
.nav .logo-top .logo-link {
  border: 1px solid transparent;
}
.nav .logo-top .logo-link:focus {
  outline: 0;
  border: 1px solid rgb(248, 240, 223);
}
.nav .nav-mobile .nav-icon {
  position: absolute;
  top: 1.5em;
  right: 1em;
  z-index: 50;
}
.nav .nav-mobile .nav-icon .nav-bars {
  padding: 0.5em;
  font-size: 3rem;
  color: rgb(157, 157, 157);
  cursor: pointer;
}
.nav .nav-mobile .nav-mobile-links {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background-color: rgb(248, 240, 223);
}
.nav .nav-mobile .nav-mobile-links .nav-mobile-item {
  text-align: center;
  padding: 0.2em 0.3em;
  color: #000;
  font-size: 1.8rem;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid transparent;
  -webkit-transition: border 0.7s;
  transition: border 0.7s;
}
.nav .nav-mobile .nav-mobile-links .nav-mobile-item:hover {
  border: 1px solid rgb(157, 157, 157);
}
.nav .nav-mobile.active .nav-mobile-links {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.nav .nav-desktop {
  display: none;
}

.handle-nav {
  background-color: rgba(255, 255, 255, 0.95);
}

.header {
  position: relative;
  width: 100%;
  height: 100dvh;
  background-image: url("/img/home-header-small.JPG");
  background-size: cover;
  background-position: center;
}
.header .header-text {
  position: absolute;
  left: 50%;
  bottom: 0;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 1em;
  background-color: rgba(255, 255, 255, 0.6);
}
.header .header-text .header-subheading {
  padding: 1em;
  text-transform: uppercase;
}
.header .header-text .header-contact {
  text-align: center;
  line-height: 1.4em;
}
.header .header-text .header-contact .header-contact-phone,
.header .header-text .header-contact .header-contact-mail {
  font-size: clamp(1.6rem, 2vw, 2.4rem);
  color: #000;
}
.header .social-icons {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  right: 0;
  top: 50%;
  z-index: 100;
}
.header .social-icons .social-icon {
  padding: 0.7em;
  text-align: center;
  font-size: 1.2rem;
  color: rgb(55, 146, 55);
  background-color: #fff;
  -webkit-box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.4);
          box-shadow: 2px 5px 10px rgba(0, 0, 0, 0.4);
  border-radius: 50%;
}
.header .social-icons .social-icon:nth-child(2) {
  margin: 0.2em 0;
}
.header .social-icons .social-icon:hover {
  color: rgb(42, 107, 42);
}

.house-header {
  background-image: url("/img/house-header-mobile.jpeg");
}

.rules {
  background-image: none;
  height: 350px;
}
.rules .header-text {
  top: 50%;
  color: #fff;
  background-color: rgb(55, 146, 55);
}

.home-intro .section-container .section-box .highlight {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1em 0;
}
.home-intro .section-container .section-box .highlight .highlight-note {
  padding: 1em;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 1.8vw, 2rem);
  background-color: rgb(207, 185, 151);
  border-radius: 5px;
  -webkit-box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 3px 5px 10px rgba(0, 0, 0, 0.5);
}
.home-intro .section-container .section-box .highlight .highlight-note:first-child {
  margin-bottom: 1em;
}

.intersection-images {
  margin: 2em auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: calc 50%;
}
.intersection-images .intersection-img {
  width: 50%;
}

.offert {
  background-image: url("/img/view-small.JPG");
  position: relative;
  padding: 2em 0;
}
.offert .section-container .facilities {
  text-align: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
}
.offert .section-container .facilities .facilities-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1em 0;
  padding: 1em 0;
  width: 100%;
  max-width: 200px;
  background-color: #fff;
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
          box-shadow: rgba(0, 0, 0, 0.25) 0px 0.0625em 0.0625em, rgba(0, 0, 0, 0.25) 0px 0.125em 0.5em, rgba(255, 255, 255, 0.1) 0px 0px 0px 1px inset;
  border-radius: 7px;
}
.offert .section-container .facilities .facilities-box .facilities-icon {
  padding: 1em 0;
  font-size: 4rem;
  color: rgb(157, 157, 157);
}
.offert .section-container .facilities .facilities-box .facilities-icon.show-color {
  color: rgb(55, 146, 55);
}

.attractions {
  background-image: url("/img/winter-forest-small.jpg");
  background-position: top;
  position: relative;
}
.attractions .section-container .section-card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em;
  max-width: 500px;
}
.attractions .section-container .section-card .section-card-image {
  background-color: #fff;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  overflow: hidden;
}
.attractions .section-container .section-card .section-card-image .section-card-img {
  padding: 0.5em;
  width: 100%;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.attractions .section-container .section-card .section-card-image .section-card-img:hover {
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
}
.attractions .section-container .section-card .section-card-text {
  padding-top: 1em;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-box-shadow: 5px 10px 12px rgba(0, 0, 0, 0.5);
          box-shadow: 5px 10px 12px rgba(0, 0, 0, 0.5);
}
.attractions .section-container .section-card .section-card-text .section-card-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}
.attractions .map-heading {
  padding-top: 3em;
}

.description {
  padding-top: 2em;
}
.description .section-container .section-box .info-icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.description .section-container .section-box .info-icons .info-icon-block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100px;
  height: 100px;
  text-align: center;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.description .section-container .section-box .info-icons .info-icon-block .info-icon {
  margin-bottom: 0.5em;
  color: rgb(55, 146, 55);
}
.description .section-container .section-box .info-icons .info-icon-block .info-icon-text {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
}
.description .section-container .section-box .info-icons .info-icon-block::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #FEFBF3;
  -webkit-box-shadow: 2px 5px 7px rgba(0, 0, 0, 0.3);
          box-shadow: 2px 5px 7px rgba(0, 0, 0, 0.3);
}
.description .section-container .section-box .info-icons .icon-block-marginL {
  margin-left: 0.5em;
}
.description .section-container .section-box .info-icons .info-icon-block:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.description .section-container .section-box .info-icons-two {
  margin: 0.5em 0;
}
.description .section-container .section-box:last-child {
  margin-top: 4em;
}
.description .description-list {
  background-image: url("/img/description-bg.webp");
  background-size: contain;
  background-position: top;
  background-repeat: no-repeat;
}
.description .description-list .list-item {
  margin-top: 1em;
}
.description .description-list .list-item .description-span {
  font-weight: 600;
}

.outdoor .section-container .section-box .outdoor-facilities {
  margin-top: 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.5em;
}
.outdoor .section-container .section-box .outdoor-facilities .outdoor-facilities-icon {
  padding: 1em;
  width: 100px;
  height: 100px;
  text-align: center;
  font-size: 3rem;
  color: rgb(55, 146, 55);
  border-radius: 50%;
  opacity: 0.2;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
}
.outdoor .section-container .section-box .outdoor-facilities .outdoor-facilities-icon.opacity {
  opacity: 1;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px, rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

.gallery {
  position: relative;
  padding: 0 0.5em;
  width: 100%;
  min-height: 100vh;
}
.gallery .lightBox-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.gallery .lightBox-description .logo-icons .logo-icon {
  max-width: 80px;
}
.gallery .lightBox-description .text-content {
  margin-left: 1em;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  color: rgb(157, 157, 157);
}
.gallery .lightBox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
}
.gallery .lightBox .lightBox-content {
  position: fixed;
  padding: 1em;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 700px;
  width: 100%;
  background-color: #fff;
  border-radius: 7px;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.gallery .lightBox .lightBox-content .close {
  position: absolute;
  padding: 0.2em 0.3em;
  top: 0.2;
  right: 0.5em;
  font-size: 3rem;
  color: #000;
  border-radius: 50%;
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
          box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
  cursor: pointer;
}
.gallery .lightBox .lightBox-content .showImg {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.gallery .lightBox .lightBox-content .showImg .prev,
.gallery .lightBox .lightBox-content .showImg .next {
  position: absolute;
  padding: 0.3em;
  font-size: 3rem;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 15px;
  cursor: pointer;
}
.gallery .lightBox .lightBox-content .showImg .prev {
  left: 0;
}
.gallery .lightBox .lightBox-content .showImg .next {
  right: 0;
}
.gallery .lightBox .lightBox-content .showImg .previous:hover,
.gallery .lightBox .lightBox-content .showImg .next:hover {
  background-color: rgba(0, 0, 0, 0.6);
}
.gallery .lightBox .lightBox-content .showImg .lightBox-image {
  max-width: 1024px;
}
.gallery .lightBox .lightBox-content .showImg .lightBox-image .lightBox-img {
  padding: 0 1em;
  width: 100%;
  height: 100%;
  max-height: 520px;
  -o-object-fit: contain;
     object-fit: contain;
}
.gallery .show {
  display: block;
}
.gallery .image-gallery {
  margin: auto;
  max-width: 1300px;
  width: 100%;
  min-height: 100vh;
  background-color: #fff;
}
.gallery .image-gallery .gallery-header {
  padding-top: 1em;
  background-color: rgb(248, 240, 223);
}
.gallery .image-gallery .image-container {
  margin-top: 1em;
  -webkit-columns: 1;
     -moz-columns: 1;
          columns: 1;
}
.gallery .image-gallery .image-container .image-box {
  position: relative;
  cursor: pointer;
}
.gallery .image-gallery .image-container .image-box .gImg {
  width: 100%;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.gallery .image-gallery .image-container .image-box .lightBox-description {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 0.5em;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  pointer-events: none;
}
.gallery .image-gallery .image-container .image-box .lightBox-description .text-content .image-description {
  color: #000;
}
.gallery .image-gallery .image-container .image-box:hover .lightBox-description {
  opacity: 1;
}

.information .section-container .section-box .information-heading {
  position: relative;
}
.information .section-container .section-box .information-heading::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0.5em;
  width: 100%;
  height: 1px;
  background-color: rgb(55, 146, 55);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 1s;
  transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
}
.information .section-container .section-box .information-heading.show-underline.information-heading::before {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}
.information .section-container .section-box .section-list .list-item .reservation-link {
  color: #000;
  font-weight: 600;
}
.information .section-container .section-box .section-image .information-img {
  display: block;
  margin: 0 auto;
  padding: 0;
  max-width: 70%;
  -webkit-box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.5);
          box-shadow: 5px 10px 10px rgba(0, 0, 0, 0.5);
}

.location {
  background-image: url("/img/location-small.JPG");
  background-size: cover;
  background-position: left;
  min-height: 700px;
}
.location .section-container .section-box {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
  text-align: center;
}
.location .section-container .section-box .location-info {
  margin: 0.5em;
  padding: 1em;
  min-width: 140px;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  background-color: rgba(157, 157, 157, 0.6);
  -webkit-box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
          box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}
.location .section-container .section-box .map {
  width: 100%;
  height: 300px;
  border: 0;
}

.atractions-map {
  border: 0;
  width: 100%;
  height: 500px;
}

.contact {
  background-color: rgb(248, 240, 223);
}
.contact .section-container .contact-box {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.contact .section-container .section-box .logo-contact {
  padding: 1em 0;
  text-align: center;
}
.contact .section-container .section-box .contact-info {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 1em;
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.5rem, 1.8vw, 1.8rem);
}
.contact .section-container .section-box .contact-info .contact-link {
  color: #000;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
}
.contact .section-container .section-box .contact-info .contact-icon {
  position: absolute;
  top: 0.5em;
  left: -1em;
  font-size: 1rem;
  color: rgb(207, 185, 151);
}
.contact .section-container .section-box .contact-info .contact-details {
  margin-bottom: 1em;
}
.contact .section-container .section-box .form {
  margin-top: 2em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.contact .section-container .section-box .form .form-label {
  margin-bottom: 0.2em;
  text-transform: uppercase;
  font-size: 1.4rem;
}
.contact .section-container .section-box .form .form-input {
  margin-bottom: 1em;
  padding: 0.5em 1em;
  border: none;
}
.contact .section-container .section-box .form .form-msg {
  width: 200px;
  max-width: 300px;
  height: 200px;
  border: none;
}
.contact .section-container .section-box .form .form-input:focus,
.contact .section-container .section-box .form .form-msg:focus {
  outline: none;
  border: 1px solid rgb(207, 185, 151);
}
.contact .section-container .section-box .form .form-input:focus,
.contact .section-container .section-box .form .form-input:valid .form-msg:focus,
.contact .section-container .section-box .form .form-msg:valid {
  font-family: "Montserrat", sans-serif;
}
.contact .section-container .section-box .form .form-msg:focus,
.contact .section-container .section-box .form .form-msg:valid {
  padding: 1em;
}
.contact .section-container .section-box .form .form-btn {
  font-family: inherit;
  max-width: 200px;
}
.contact .section-container .section-box .form .message-status {
  margin-top: 0.5em;
  font-size: 1.4rem;
  color: rgb(207, 185, 151);
}
.contact .cookie {
  position: relative;
}
.contact .cookie .cookie-icon {
  position: fixed;
  bottom: 1em;
  left: 1em;
  padding: 0.2em;
  font-size: 2.6rem;
  color: #fff;
  background-color: rgb(207, 185, 151);
  border-radius: 50%;
  cursor: pointer;
}
.contact .cookie .cookie-box {
  position: fixed;
  display: none;
  bottom: 1em;
  left: 1em;
  width: 70%;
  background-color: #fff;
  border: 1px solid rgb(157, 157, 157);
  border-radius: 7px;
}
.contact .cookie .cookie-box .close-cookie {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.5em 0.7em;
  font-size: 1.6rem;
  cursor: pointer;
}
.contact .cookie .cookie-box .cookie-text {
  margin-top: 1em;
}
.contact .cookie .cookie-box.show-cookie {
  display: block;
}

.footer .footer-text .footer-link {
  color: #000;
}

@media (max-height: 340px) {
  .header .header-text .header-heading {
    font-size: 2.6rem;
  }
  .header .header-text .header-subheading {
    padding: 0 0.5em;
    font-size: 1.8rem;
  }
}
@media (min-width: 360px) {
  .contact .section-container .section-box .contact-info .contact-icon {
    font-size: 3rem;
  }
}
@media (min-width: 576px) {
  .logo {
    max-width: 80%;
  }
  .home-intro .section-container .section-box .highlight {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .home-intro .section-container .section-box .highlight .highlight-note:first-child {
    margin-bottom: 0;
    margin-right: 1em;
  }
  .offert .facilities .facilities-box {
    width: 50%;
  }
  .description .section-container .section-box .info-icons .icon-block-marginL {
    margin-left: 2.8em;
  }
  .description .section-container .section-box .info-icons .info-icon-block::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
  .description .section-container .section-box .info-icons-two, .description .section-container .section-box .info-icons-three {
    margin-top: -1.5em;
    margin-bottom: 0;
  }
  .gallery .image-gallery .image-container {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
    -webkit-column-gap: 0.3em;
       -moz-column-gap: 0.3em;
            column-gap: 0.3em;
  }
  .location .section-container {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .location .section-container .section-box {
    width: 33.3333333333%;
  }
  .contact .section-container .section-box .form .form-msg {
    width: 500px;
    max-width: 500px;
  }
  .contact .section-container .section-box .form .form-btn {
    -ms-flex-item-align: end;
        align-self: flex-end;
  }
}
@media (min-width: 768px) {
  .header {
    background-image: url("/img/home-header-big.JPG");
  }
  .header .social-icons .social-icon {
    font-size: 1.4rem;
  }
  .house-header {
    background-image: url("/img/house-header.jpeg");
  }
  .rules {
    background-image: none;
  }
  .section-container .section-box .section-image-animation::before,
  .section-container .section-box .section-image-animation::after {
    position: absolute;
    content: "";
  }
  .section-container .section-box .section-image-animation::before {
    top: -0.5em;
    right: 0;
    width: 100%;
    border-top: 1px solid rgb(157, 157, 157);
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: right;
            transform-origin: right;
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
  }
  .section-container .section-box .section-image-animation::after {
    top: -0.5em;
    right: 0;
    height: 100%;
    border-right: 1px solid rgb(157, 157, 157);
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: bottom;
            transform-origin: bottom;
    -webkit-transition: -webkit-transform 1s;
    transition: -webkit-transform 1s;
    transition: transform 1s;
    transition: transform 1s, -webkit-transform 1s;
  }
  .section-container .section-box .section-image-animation.show-border.section-image-animation::before {
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
  .section-container .section-box .section-image-animation.show-border.section-image-animation::after {
    -webkit-transition-delay: 1s;
            transition-delay: 1s;
    -webkit-transform: scaleY(1);
            transform: scaleY(1);
    -webkit-transform-origin: top;
            transform-origin: top;
  }
  .intersection-images {
    width: 100%;
  }
  .intersection-images .intersection-img {
    width: 25%;
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .offert {
    background-image: url("/img/view.JPG");
  }
  .attractions {
    background-image: url("/img/winter-forest.jpg");
  }
  .gallery .image-gallery .image-container {
    -webkit-columns: 3;
       -moz-columns: 3;
            columns: 3;
  }
  .location {
    background-image: url("/img/location.JPG");
  }
  .location .section-container .section-box .map {
    min-width: 500px;
    height: 400px;
  }
  .contact .section-container .section-box .contact-info .contact-icon {
    font-size: 4rem;
  }
}
@media (min-width: 992px) {
  .nav .nav-mobile {
    display: none;
  }
  .nav .nav-desktop {
    display: block;
    position: absolute;
    top: 4em;
    right: 2em;
  }
  .nav .nav-desktop .nav-desktop-item {
    padding: 0 1em;
    color: #000;
    text-transform: uppercase;
    -webkit-transition: color 0.5s;
    transition: color 0.5s;
  }
  .nav .nav-desktop .nav-desktop-item:hover {
    color: rgb(55, 146, 55);
  }
  .nav .nav-desktop .nav-desktop-item[aria-current=page] {
    color: rgb(55, 146, 55);
  }
  .header .header-text {
    width: 50%;
  }
  .section-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .section-container .section-box {
    margin-bottom: 0;
  }
  .section-container .section-box-text {
    width: 70%;
  }
  .section-container-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .attractions .section-container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .description .section-container {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .description .section-container .section-box .section-list {
    padding-left: 1em;
  }
  .description .section-container .section-box:last-child {
    margin-top: 0;
    min-width: 40%;
  }
  .information .section-container .section-box .section-image .information-img {
    width: 100%;
  }
  .contact .contact-container {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
}
@media (min-width: 1200px) {
  .header .social-icons .social-icon {
    font-size: 2rem;
  }
}/*# sourceMappingURL=style.css.map */