/* Fade-Block Transition */
/* Fade-Element Transition */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*
 * Reset
*/
*,
*::before,
*::after {
  border: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

*:focus {
  outline: 0;
  -webkit-outline: none;
  -moz-outline: none;
}

html {
  font-family: "Nunito Sans", sans-serif;
  font-size: 20px;
  font-weight: 400;
  height: 100%;
  scroll-behavior: smooth;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  html {
    font-size: 16px;
  }
}
body {
  background-color: #FFFBF4;
  height: 100%;
  min-width: 320px;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

ol,
ul {
  list-style: none;
}

input,
textarea,
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none;
  -webkit-outline: none;
  -moz-outline: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

/*
 * Global
*/
.heading-1 {
  color: #162F3F;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.125em;
  margin-bottom: 0.6rem;
}

@media screen and (max-width: 767px) {
  .heading-1 {
    font-size: 32px;
  }
}
.heading-2 {
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.125em;
  margin-bottom: 0.5rem;
}

@media screen and (max-width: 767px) {
  .heading-2 {
    font-size: 32px;
  }
}
.subheading {
  color: #D17F47;
  font-size: 1.6rem;
  line-height: 1.25em;
  margin-top: 0.8rem;
  margin-bottom: 1.2rem;
}

@media screen and (max-width: 767px) {
  .subheading {
    font-size: 24px;
  }
}
p {
  font-size: 1.2rem;
  line-height: 1.5em;
}

@media screen and (max-width: 767px) {
  p {
    font-size: 18px;
  }
}
section {
  scroll-margin-top: 3rem;
}

a {
  color: inherit;
  font-size: 1.25rem;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

a:visited {
  color: inherit;
}

.button-primary {
  align-items: center;
  background-color: #D17F47;
  border-radius: 4px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font: normal 700 22px/1em "Nunito Sans", sans-serif;
  gap: 0.6rem;
  height: 56px;
  justify-content: center;
  min-width: 200px;
}

.button-primary:hover {
  background-color: #BC7240;
  text-decoration: none;
}

.button-inline {
  align-items: center;
  background-color: inherit;
  color: #818389;
  cursor: pointer;
  display: flex;
  font: normal 1.2rem/1em "Nunito Sans", sans-serif;
  gap: 0.5rem;
  margin: 0.8rem 0;
}
.button-inline svg {
  height: 20px;
  width: 20px;
}
.button-inline svg g * {
  stroke: #818389;
}

.button-inline:hover {
  color: #D17F47;
}
.button-inline:hover svg g * {
  stroke: #D17F47;
}

.button-icon {
  background-color: inherit;
  border-radius: 2rem;
  border: 2px solid #ffffff;
  cursor: pointer;
  height: 2.4rem;
  width: 2.4rem;
}
.button-icon svg {
  padding-top: 2px;
}

.button-icon:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

input,
.input-field {
  border-radius: 4px;
  box-sizing: border-box;
  font: 24px/1em "Nunito Sans", sans-serif;
  height: 56px;
  min-width: 200px;
  padding: 0.6rem 1.2rem;
}

/*
 * Header
*/
.header {
  display: flex;
  flex-flow: row nowrap;
  gap: 1.2rem;
  position: fixed;
  right: 3rem;
  top: 1.2rem;
  z-index: 9999;
}
.header .button-nav {
  align-items: center;
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1215686275);
  cursor: pointer;
  display: flex;
  font-size: 1.1rem;
  font-weight: 600;
  gap: 0.6rem;
  height: 2.8rem;
  justify-content: center;
  margin-bottom: 0.6rem;
}
.header .dropdown-lang,
.header .dropdown-nav {
  background-color: #ffffff;
  border-radius: 4px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1215686275);
  display: none;
  font-size: 1rem;
  font-weight: 600;
  flex-flow: column;
  gap: 0.2rem;
  padding: 0.6rem;
  position: absolute;
  right: 0;
  top: 100%;
}
.header .dropdown-lang.open,
.header .dropdown-nav.open {
  display: flex !important;
}
.header .language {
  position: relative;
}
.header .language .button-nav {
  padding: 0 0.8rem;
}
.header .language .dropdown-lang {
  text-align: center;
  width: 100%;
}
.header .language .dropdown-lang a li {
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  height: 2.4rem;
  justify-content: center;
  width: 100%;
}
.header .language .dropdown-lang li:hover {
  background-color: #EFEFEF;
}

.navigation {
  position: relative;
}
.navigation .button-nav {
  padding: 0 1.2rem;
}
.navigation .dropdown-nav {
  min-width: 100%;
}
.navigation .dropdown-nav a {
  align-items: center;
  border-radius: 3px;
  cursor: pointer;
  display: flex;
  gap: 0.4rem;
  height: 2.4rem;
  justify-content: start;
  padding: 0 1.2rem 0 0.6rem;
  text-decoration: none;
  width: 100%;
}
.navigation .dropdown-nav a svg {
  height: auto;
  width: 1rem;
}
.navigation .dropdown-nav a svg g * {
  stroke-width: 1.5px;
}
.navigation .dropdown-nav a:hover {
  background-color: #EFEFEF;
}

@media screen and (min-width: 1023px) {
  .language:hover .dropdown-lang,
  .navigation:hover .dropdown-nav {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .header {
    gap: 0.75rem;
    right: 1rem;
  }
  .header .button-nav {
    height: 3.125rem;
  }
  .header .navigation .button-nav {
    padding: 0;
    width: 3.125rem;
  }
  .header .navigation .button-nav .text {
    display: none;
  }
  .header .navigation .button-nav svg {
    height: 1.125rem;
    width: 1.375rem;
  }
  .header .navigation .dropdown-nav a {
    height: 3rem;
    padding: 0 1rem;
    font-size: 1.25rem;
    gap: 0.625rem;
  }
  .header .navigation .dropdown-nav a svg {
    width: 1.125rem;
  }
  .header .language .dropdown-lang li {
    height: 3rem;
  }
}
/*
 * CTA Button
*/
.cta-button {
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1215686275);
  bottom: 1rem;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 1rem;
  transform: translateY(100%);
  transition: transform 0.4s ease, opacity 0.4s ease;
  z-index: 1000;
}
.cta-button button {
  padding: 0 1.2rem;
}

.cta-button.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cta-button.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

/*
 * Intro
*/
.intro {
  background-color: #FFFBF4;
  display: flex;
  height: 100%;
  margin: 0;
  position: relative;
  width: 100%;
  overflow-y: hidden;
}
.intro > .logo {
  left: 50%;
  position: absolute;
  top: 45%;
  transform: translate(-50%, -40%);
  z-index: 10;
  opacity: 0;
  animation: fade-in 1.5s ease-in-out forwards;
}
.intro > .logo img {
  height: auto;
  width: 66vw;
}
.intro > .intro-slider {
  display: flex;
  flex-direction: row nowrap;
  height: 100%;
  overflow-x: scroll;
  width: 100%;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  transition: scroll-left 4s ease-in-out;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.intro > .intro-slider .slider-image {
  min-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  scroll-snap-align: start;
}
.intro > .intro-slider .slider-image.video {
  background-position: center;
  background-size: cover;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100vw;
}
.intro > .intro-slider .slider-image.video iframe {
  border: none;
  height: 100%;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media (min-aspect-ratio: 16/9) {
  .intro > .intro-slider .slider-image.video iframe {
    /* height = 100 * (9 / 16) = 56.25 */
    height: 56.25vw;
  }
}
@media (max-aspect-ratio: 16/9) {
  .intro > .intro-slider .slider-image.video iframe {
    /* width = 100 / (9 / 16) = 177.777777 */
    width: 177.78vh;
  }
}
.intro .dots {
  display: flex;
  align-items: end;
  gap: 0.5rem;
  position: absolute;
  bottom: 4rem;
  transform: translate(-50%, -50%);
  left: 50%;
}
.intro .dots .dot {
  cursor: pointer;
}

@media screen and (max-width: 1023px) {
  .intro {
    height: 80%;
  }
}
@media screen and (max-width: 767px) {
  .intro {
    height: 60%;
  }
}
/*
 * Booking Widget
*/
.booking-widget {
  margin-left: auto;
  margin-right: auto;
  max-width: 2048px;
  padding: 0 3rem;
  transform: translate(0, -2rem);
}
.booking-widget > .container {
  background-color: #162F3F;
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  flex-flow: column;
  gap: 1.2rem;
  padding: 2rem;
}
.booking-widget > .container > .content h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
}
.booking-widget > .container > .content .description {
  font-size: 1.2rem;
  line-height: 1.5em;
  opacity: 0.7;
}
.booking-widget > .container > .form {
  align-items: end;
  display: flex;
  flex-flow: row;
  gap: 2rem;
  width: 100%;
}
.booking-widget > .container > .form .input {
  display: flex;
  flex-flow: column;
  flex-grow: 1;
  gap: 6px;
  width: 100%;
}
.booking-widget > .container > .form .input .date-input {
  background-image: none;
}
.booking-widget > .container > .form .input .date-input.safari {
  background-color: #ffffff;
  background-image: url("../images/icons/calendar.svg");
  background-repeat: no-repeat;
  background-size: 1rem;
  background-position: right 1.2rem center;
  padding-right: 2rem;
}
.booking-widget > .container > .form .input label {
  font-size: 1.1rem;
}
.booking-widget > .container > .form .input input,
.booking-widget > .container > .form .input select {
  color: #11131A;
  cursor: pointer;
  text-align: left;
  width: 100%;
}
.booking-widget > .container > .form .input input::-webkit-date-and-time-value {
  align-self: left;
  text-align: left;
}
.booking-widget > .container > .form .input #guests {
  background: url("../images/icons/arrow-down-2.svg") no-repeat;
  background-color: #ffffff;
  background-size: 1rem;
  background-position: right 1.2rem center;
}

@media screen and (max-width: 1199px) {
  .booking-widget > .container > .form {
    flex-wrap: wrap;
  }
  .booking-widget > .container > .form .input #check-in,
  .booking-widget > .container > .form .input #check-out,
  .booking-widget > .container > .form .input #guests {
    background-size: 1.25rem;
  }
  .booking-widget > .container > .form .input:last-child {
    margin-top: 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .booking-widget {
    padding: 0 1rem;
  }
  .booking-widget > .container {
    padding: 2rem 1.5rem;
  }
}
/*
 * Overview
*/
.overview {
  margin-left: auto;
  margin-right: auto;
  max-width: 2048px;
  padding: 3rem 4rem;
  scroll-margin-top: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.overview.visible {
  opacity: 1;
  transform: translateY(0);
}
.overview > .content {
  display: flex;
  flex-flow: row;
  gap: 4rem;
  justify-content: space-between;
}
.overview > .content .text #moreText {
  display: none;
}
.overview > .content .text #toggleButton {
  margin-top: 2rem;
}
.overview > .content .image img {
  border-radius: 8px;
  height: 21rem;
  -o-object-fit: cover;
     object-fit: cover;
  width: 21rem;
}
.overview > .usp {
  align-items: end;
  display: flex;
  flex-flow: row;
  gap: 1rem;
  justify-content: space-between;
  margin-top: 3rem;
  width: 100%;
}
.overview > .usp .content {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1215686275);
  display: flex;
  flex-flow: column;
  flex: 1 1 0;
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding: 1rem 1.4rem;
  width: 100%;
}
.overview > .usp .content > .icon {
  align-self: start;
  height: 1.2rem;
  width: auto;
}
.overview > .usp .content label {
  font-size: 1.1rem;
  margin-top: 0.7rem;
}

@media screen and (max-width: 1023px) {
  .overview .usp {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  .overview {
    padding: 1.5rem 1.5rem 2.5rem 1.5rem;
  }
  .overview > .content {
    flex-flow: column-reverse;
    gap: 1.5rem;
  }
  .overview > .content .text button {
    font-size: 1.125rem;
    margin-top: 1rem;
  }
  .overview > .content .text button svg {
    height: 1rem;
    width: 1rem;
  }
  .overview > .content .image img {
    width: 100%;
  }
  .overview .usp {
    margin-top: 2rem;
  }
}
/*
 * Equipment
*/
.equipment {
  background-color: #162F3F;
  color: #ffffff;
  scroll-margin-top: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.equipment.visible {
  opacity: 1;
  transform: translateY(0);
}
.equipment > .container {
  margin-left: auto;
  margin-right: auto;
  max-width: 2048px;
  padding: 3rem 0 2rem 0;
}
.equipment > .container > .heading-2 {
  margin: 0 4rem;
  margin-bottom: 0;
}
.equipment > .container .equipment-list {
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 2rem;
  overflow-x: scroll;
  row-gap: 1.6rem;
  width: 100%;
  padding: 0 4rem 2rem 4rem;
}
.equipment > .container .equipment-list .equipment-item {
  align-items: center;
  display: flex;
  gap: 0.6rem;
  white-space: nowrap;
}
.equipment > .container .equipment-list .equipment-item .icon {
  width: 1.1rem;
  height: auto;
}
.equipment > .container .equipment-list .equipment-item label {
  font-size: 1.2rem;
}
.equipment ::-webkit-scrollbar {
  height: 14px;
  width: 12px;
  margin-left: 4rem;
}
.equipment ::-webkit-scrollbar-track {
  background: #162F3F;
}
.equipment ::-webkit-scrollbar-thumb {
  background-color: #ffffff;
  border-radius: 8px;
}
.equipment ::-webkit-scrollbar-thumb:hover {
  background: #818389;
}

@media screen and (max-width: 1199px) {
  .equipment {
    padding: 0 0 2rem 0;
  }
  .equipment > .container {
    padding: 0;
  }
  .equipment > .container .heading-2 {
    padding-top: 3rem;
    margin-bottom: 0;
  }
  .equipment > .container .equipment-list {
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    margin-top: 0.5rem;
    padding: 1rem 4rem 3rem 4rem;
  }
}
@media screen and (max-width: 1023px) {
  .equipment > .container .equipment-list {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .equipment > .container .heading-2 {
    margin-left: 2rem;
  }
  .equipment > .container .equipment-list {
    padding: 1rem 2rem 2.5rem 2rem;
  }
}
/*
 * Gallery
*/
.gallery {
  max-width: 2048px;
  margin-left: auto;
  margin-right: auto;
  padding: 3rem 0 2rem 0;
  scroll-margin-top: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.gallery.visible {
  opacity: 1;
  transform: translateY(0);
}
.gallery .heading-1 {
  margin: 0 4rem;
  margin-bottom: 0.6rem;
}
.gallery .subheading {
  margin: 0 4rem;
}
.gallery .image-slider {
  display: flex;
  flex-flow: row nowrap;
  gap: 2rem;
  height: 30rem;
  margin-top: 2rem;
  overflow-x: scroll;
  overflow-y: hidden;
  padding: 0 4rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  scroll-snap-type: x mandatory;
  scroll-padding: 4rem;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.gallery .image-slider .content {
  height: 28rem;
  position: relative;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  width: auto;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  flex: 0 0 calc(50% - 1rem);
  height: 30rem;
}
.gallery .image-slider .content img {
  border-radius: 8px;
  height: 30rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  overflow-y: hidden;
  width: auto;
  -webkit-user-drag: none;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.gallery .image-slider .content .label {
  background-color: #ffffff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1.2rem;
  position: absolute;
  left: 1rem;
  bottom: 1rem;
}
.gallery .image-slider .content .label > .icon {
  border-radius: 0;
  height: auto;
  width: 0.9rem;
}
.gallery .image-slider::-webkit-scrollbar {
  display: none;
}
.gallery .gallery-nav {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 1.5rem 4rem;
}
.gallery .gallery-nav .button-icon {
  border: none;
  height: 2.4rem;
  padding: 0;
  width: 2.4rem;
}
.gallery .gallery-nav .button-icon svg {
  height: 2.4rem;
  padding: 0;
  width: 2.4rem;
}
.gallery .gallery-nav .button-icon:hover {
  background-color: rgba(22, 47, 63, 0.2);
}
.gallery .gallery-nav .gallery-dots {
  display: flex;
  gap: 0.5rem;
  width: 100%;
  justify-content: center;
}

@media screen and (max-width: 1199px) {
  .gallery .image-slider {
    height: 35rem;
  }
  .gallery .image-slider .content {
    flex: 0 0 100%;
    height: 35rem;
  }
  .gallery .image-slider .content img {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .gallery {
    padding: 2rem 0;
  }
  .gallery .heading-1,
  .gallery .subheading {
    margin: 0 1.5rem;
  }
  .gallery .heading-1 {
    margin-bottom: 0.6rem;
  }
  .gallery .image-slider {
    height: -moz-fit-content;
    height: fit-content;
    padding: 0 1.5rem;
    scroll-padding: 1.5rem;
  }
  .gallery .image-slider .content {
    height: calc(100vw - 3rem);
    width: calc(100vw - 3rem);
  }
  .gallery .image-slider .content img {
    height: calc(100vw - 3rem);
    width: calc(100vw - 3rem);
    -o-object-fit: cover;
       object-fit: cover;
  }
  .gallery .gallery-nav {
    margin: 1.5rem 1.5rem;
  }
  .gallery .gallery-nav button {
    display: none;
  }
  .gallery .gallery-nav .gallery-dots {
    gap: 0.3rem;
  }
}
/*
 * Activities
*/
.activities {
  max-width: 2048px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 4rem 5rem 4rem;
  scroll-margin-top: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.activities.visible {
  opacity: 1;
  transform: translateY(0);
}
.activities .activities-slider {
  display: flex;
  flex-flow: row nowrap;
  gap: 2rem;
  margin-top: 2rem;
}
.activities .activities-slider .activities-card {
  background-position: center center !important;
  background-repeat: no-repeat !important;
  background-size: cover !important;
  border-radius: 8px;
  color: #ffffff;
  display: flex;
  flex-flow: column;
  height: 28rem;
  justify-content: end;
  padding: 1.6rem;
  width: 100%;
}
.activities .activities-slider .activities-card > .icon {
  align-self: start;
  height: 2rem;
  width: auto;
}
.activities .activities-slider .activities-card > h3 {
  font-size: 1rem;
  margin-top: 1rem;
  margin-bottom: 0.6rem;
}
.activities .activities-slider .activities-card > p {
  font-size: 1rem;
}

@media screen and (max-width: 1023px) {
  .activities .activities-slider {
    flex-flow: column;
  }
  .activities .activities-slider .activities-card {
    height: 16rem;
  }
}
@media screen and (max-width: 767px) {
  .activities {
    padding: 2rem 1.5rem 3rem 1.5rem;
  }
  .activities .activities-slider .activities-card {
    height: 20rem;
  }
  .activities .activities-slider .activities-card h3 {
    font-size: 1.4rem;
  }
  .activities .activities-slider .activities-card p {
    font-size: 1.125rem;
  }
}
/*
 * Reviews
*/
.reviews {
  background-color: #162F3F;
  scroll-margin-top: 0;
  overflow-x: hidden;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.reviews.visible {
  opacity: 1;
  transform: translateY(0);
}
.reviews > .container {
  margin-left: auto;
  margin-right: auto;
  max-width: 2048px;
  padding: 3rem 4rem;
}
.reviews > .container > .subheading {
  color: #B9C1C5;
  display: flex;
  gap: 0.6rem;
}
.reviews > .container > .subheading::before {
  content: "";
  display: block;
  width: 1.4rem;
  background: url("../images/icons/star-orange.svg") no-repeat center;
  background-size: contain;
  margin-bottom: 4px;
}
.reviews > .container .review-container {
  display: flex;
  flex-wrap: wrap;
  margin: 1.6rem 0;
  position: relative;
}
.reviews > .container .review-container .review-inner {
  display: flex;
  gap: 2rem;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}
.reviews > .container .review-container .review-inner .review-card {
  background-color: #FFFBF4;
  border-radius: 8px;
  padding: 2rem;
  max-width: calc(50% - 1rem);
  min-width: calc(50% - 1rem);
  height: 100%;
}
.reviews > .container .review-container .review-inner .review-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}
.reviews > .container .review-container .review-inner .review-card .review-info {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 0.7rem;
}
.reviews > .container .review-container .review-inner .review-card .review-info .review-stars {
  display: flex;
  gap: 0.1rem;
}
.reviews > .container .review-container .review-inner .review-card .review-info span {
  align-self: center;
  color: #818389;
  margin-top: 2px;
}
.reviews > .container .review-container .review-inner .review-card p {
  font-size: 1rem;
}
.reviews > .container > .controlls {
  display: flex;
  flex-flow: row nowrap;
  gap: 0.6rem;
  justify-content: end;
}

@media screen and (max-width: 1440px) {
  .reviews > .container .review-container .review-inner .review-card {
    max-width: calc(100vw - 8rem);
    min-width: calc(100vw - 8rem);
  }
}
@media screen and (max-width: 1023px) {
  .reviews > .container {
    padding: 4rem 4rem;
  }
  .reviews > .container .review-container .review-inner .review-card {
    max-width: calc(100vw - 8rem);
    min-width: calc(100vw - 8rem);
  }
  .reviews > .container .review-container .controlls {
    height: 2rem;
    width: 2rem;
  }
  .reviews > .container .review-container .controlls .button-icon svg {
    height: 1rem;
    width: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .reviews > .container {
    padding: 2.5rem 2rem;
  }
  .reviews > .container .review-container .review-inner .review-card {
    max-width: calc(100vw - 4rem);
    min-width: calc(100vw - 4rem);
  }
}
/*
 * Location
*/
.location {
  margin-left: auto;
  margin-right: auto;
  max-width: 2048px;
  padding: 3rem 4rem;
  scroll-margin-top: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.location.visible {
  opacity: 1;
  transform: translateY(0);
}
.location .map {
  background-image: url(../images/location-map.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 8px;
  display: flex;
  height: 28rem;
  margin: 2rem 0;
  position: relative;
  width: 100%;
}
.location .map .map-marker {
  margin: auto;
}
.location .map div {
  border-radius: 8px;
}

@media screen and (max-width: 767px) {
  .location {
    padding: 2.5rem 1.5rem;
  }
  .location .map {
    height: 80vh;
    max-height: 660px;
  }
}
/*
 * Contact
*/
.contact {
  background-color: #162F3F;
  scroll-margin-top: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.contact.visible {
  opacity: 1;
  transform: translateY(0);
}
.contact > .container {
  margin-left: auto;
  margin-right: auto;
  max-width: 2048px;
  padding: 3rem 4rem 4rem 4rem;
}
.contact > .container .contact-wrapper {
  display: flex;
  gap: 2rem;
  margin-top: 1.6rem;
  margin-bottom: 1rem;
  width: 100%;
}
.contact > .container .contact-wrapper .host-container,
.contact > .container .contact-wrapper .contact-container {
  background-color: #FFFBF4;
  border-radius: 8px;
  display: flex;
  flex-flow: column;
  gap: 0.6rem;
  padding: 3rem;
}
.contact > .container .contact-wrapper .host-container .heading-2,
.contact > .container .contact-wrapper .contact-container .heading-2 {
  color: #11131A;
}
.contact > .container .contact-wrapper .host-container {
  align-items: center;
  flex-grow: 1;
  max-width: 33%;
}
.contact > .container .contact-wrapper .host-container img {
  border-radius: 10rem;
  height: 8rem;
  width: 8rem;
}
.contact > .container .contact-wrapper .host-container h4 {
  color: #818389;
  font-size: 1.3rem;
  font-weight: 400;
}
.contact > .container .contact-wrapper .host-container .languages {
  display: flex;
  flex-flow: row wrap;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
  justify-content: center;
  row-gap: 0.2rem;
}
.contact > .container .contact-wrapper .host-container .languages > .content {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.contact > .container .contact-wrapper .host-container .languages > .content .flag {
  height: 0.8rem;
  width: 0.8rem;
}
.contact > .container .contact-wrapper .contact-container {
  justify-content: space-between;
  flex-grow: 2;
}
.contact > .container .contact-wrapper .contact-container > .content {
  display: flex;
  flex-flow: column;
  gap: 1.2rem;
}
.contact > .container .contact-wrapper .contact-container > .content .adress {
  line-height: 1.5em;
}
.contact > .container .contact-wrapper .contact-container .button-primary {
  max-width: 10rem;
}
.contact > .container .contact-wrapper .contact-container .button-primary svg {
  margin-bottom: 1px;
}

@media screen and (max-width: 1023px) {
  .contact > .container .contact-wrapper {
    flex-direction: column;
  }
  .contact > .container .contact-wrapper .host-container,
  .contact > .container .contact-wrapper .contact-container {
    max-width: 100%;
    width: 100%;
  }
  .contact > .container .contact-wrapper .host-container .languages,
  .contact > .container .contact-wrapper .contact-container .languages {
    font-size: 1.125rem;
    width: 40vw;
  }
  .contact > .container .contact-wrapper .host-container > .content,
  .contact > .container .contact-wrapper .contact-container > .content {
    font-size: 1.125rem;
  }
  .contact > .container .contact-wrapper .host-container .button-primary,
  .contact > .container .contact-wrapper .contact-container .button-primary {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .contact > .container {
    padding: 2.5rem 2rem;
  }
  .contact > .container .contact-wrapper .host-container,
  .contact > .container .contact-wrapper .contact-container {
    padding: 2rem 2rem;
  }
}
/*
 * FAQ
*/
.faq {
  margin-left: auto;
  margin-right: auto;
  max-width: 2048px;
  padding: 3rem 4rem;
  padding-bottom: 5rem;
  scroll-margin-top: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.faq.visible {
  opacity: 1;
  transform: translateY(0);
}
.faq .faq-container {
  display: flex;
  flex-flow: column nowrap;
  gap: 1.2rem;
}
.faq .faq-container .faq-card {
  background-color: #ffffff;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1215686275);
  cursor: pointer;
  padding: 1.2rem 1.6rem;
  border-radius: 8px;
}
.faq .faq-container .faq-card .top {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  gap: 1rem;
  justify-content: space-between;
}
.faq .faq-container .faq-card .top h3 {
  font-size: 1.1rem;
  font-weight: 600;
}
.faq .faq-container .faq-card .top img {
  transition: transform 0.3s ease;
}
.faq .faq-container .faq-card > .content p {
  font-size: 1rem;
  margin-top: 0.6rem;
  opacity: 0.7;
  transition: transform 0.3s ease;
}
.faq .faq-container .faq-card:hover {
  background-color: #f6f6f6;
}

@media screen and (max-width: 767px) {
  .faq {
    padding: 2.5rem 1.5rem 5rem 1.5rem;
  }
}
/*
 * Page Content
*/
.page-content {
  padding: 4rem 4rem 5rem 4rem;
  padding-bottom: 8rem;
}
.page-content h1 {
  color: #162F3F;
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 0.3rem;
}
.page-content h2 {
  color: #D17F47;
  font-size: 1.6rem;
  line-height: 1.5em;
  margin-bottom: 1.2rem;
}
.page-content h3 {
  font-weight: 700;
  line-height: 1.5em;
  margin-bottom: 0.2rem;
}
.page-content h4 {
  color: #162F3F;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.5em;
  margin-bottom: 0.2rem;
}
.page-content p {
  margin-bottom: 1em;
}
.page-content a {
  color: #162F3F;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}
.page-content a:hover {
  color: #D17F47;
}
.page-content ul {
  font-size: 1.2rem;
  margin: 1rem 0;
}
.page-content ul li {
  list-style: square;
  list-style-position: inside;
}
.page-content ol {
  font-size: 1.2rem;
  margin: 1rem 0;
}
.page-content ol li {
  list-style: decimal;
  list-style-position: inside;
}

@media screen and (max-width: 767px) {
  .page-content {
    padding: 2rem 2rem 4rem 2rem;
  }
}
/*
 * Footer
*/
footer {
  background-color: #162F3F;
  color: #ffffff;
  font-size: 1.1rem;
  width: 100%;
}
footer .content {
  align-items: start;
  display: flex;
  flex-flow: row;
  gap: 5rem;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  max-width: 2048px;
  padding: 3rem 4rem 4rem 4rem;
}
footer .content img {
  cursor: pointer;
  width: 8rem;
}
footer .content .adress {
  flex-grow: 2;
  line-height: 1.5em;
}
footer .content .links {
  display: flex;
  flex-flow: column;
  gap: 0.3rem;
  text-align: end;
}
footer .footer-spacer {
  background-color: #D17F47;
  height: 0.5rem;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .footer .content {
    flex-flow: column;
    gap: 2.5rem;
    padding: 2.5rem 2rem;
  }
  .footer .content img {
    width: 10rem;
  }
  .footer .content .links {
    font-size: 1.125rem;
    text-align: left;
    flex-flow: row;
    gap: 2.5rem;
  }
}/*# sourceMappingURL=style.css.map */