/*!***********************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js!./node_modules/postcss-loader/dist/cjs.js!./node_modules/sass-loader/dist/cjs.js!./src/styles/styles.scss ***!
  \***********************************************************************************************************************************************************/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 1em;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  font: inherit;
  color: inherit;
  line-height: 1;
  cursor: pointer;
}

fieldset {
  border: none;
}

input {
  background-color: transparent;
}

@font-face {
  font-display: swap;
  font-family: "Spectral";
  font-style: normal;
  font-weight: 400;
  src: url(570a43d0601bf1073bc2.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Spectral";
  font-style: italic;
  font-weight: 400;
  src: url(70e2fe713ad05587579f.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Spectral";
  font-style: italic;
  font-weight: 200;
  src: url(6aa58bc890788e73d657.woff2) format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Spectral";
  font-style: italic;
  font-weight: 300;
  src: url(a0a823c9ec214ae82955.woff2) format("woff2");
}
:root {
  --transition-speed: 0.3s;
}

:root {
  --color-main: #a4814a;
}

.text-main {
  color: var(--color-main);
}

.text-white {
  color: #fff;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

:root {
  --font-size-14: 0.875rem;
  --font-size-18: 1.125rem;
  --font-size-20: 1.25rem;
  --font-size-24: 1.5rem;
  --font-size-30: 1.875rem;
  --font-size-35: 2.188rem;
  --font-size-45: 2.813rem;
  --font-size-50: 3.125rem;
  --font-size-70: 4.375rem;
  --font-size-100: 6.25rem;
  --font-size-125: 7.813rem;
  --font-size-200: 12.5rem;
  --font-size-260: 16.25rem;
  --font-size-300: 18.75rem;
}

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

html {
  height: 100%;
}

body {
  font-family: "Spectral", "Georgia", serif;
  font-weight: 200;
  -webkit-font-smoothing: antialiased;
  background-color: #f6f6f6;
}

strong {
  font-weight: 600;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.button {
  text-transform: uppercase;
  padding: 5px 10px;
}

.lang-switcher {
  position: absolute;
  top: -50px;
  right: -10px;
  font-size: 15px;
  color: var(--color-main);
}
@media (min-width: 768px) {
  .lang-switcher {
    top: 15px;
    right: 0;
    font-size: 17px;
  }
}

.lang-switcher__link {
  opacity: 0.75;
  color: inherit;
}
.lang-switcher__link:hover {
  opacity: 1;
}

.lang-switcher__current {
  opacity: 1;
  font-weight: 400;
}

.lang-switcher__sep {
  opacity: 0.6;
  margin: 0 0.15em;
  font-weight: 200;
}

.main-nav {
  position: fixed;
  display: flex;
  flex-direction: column;
  justify-content: center;
  top: 0;
  height: 100px;
  width: 100%;
  color: #fff;
  background-color: rgba(183.9828571429, 175.7885714286, 153.9371428571, 0.8);
  transition: background-color var(--transition-speed) ease;
}

body.scrolled .main-nav {
  background-color: transparent;
}

.main-nav__container {
  width: 100%;
}

.main-nav__content {
  position: relative;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.main-nav__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: block;
}

body.scrolled .main-nav__logo {
  opacity: 0;
  pointer-events: none;
}

.main-nav__logo-image {
  display: block;
  width: 110px;
  height: auto;
}

.main-nav__toggle {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  color: #fff;
}

.main-nav__toggle-line {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 2px;
  margin-left: -12px;
  background-color: currentColor;
  border-radius: 1px;
  transition: transform var(--transition-speed) ease, opacity var(--transition-speed) ease, color var(--transition-speed) ease;
}
.main-nav__toggle-line--1 {
  top: 14px;
}
.main-nav__toggle-line--2 {
  top: 21px;
}
.main-nav__toggle-line--3 {
  top: 28px;
}

body.scrolled .main-nav__toggle-line {
  color: var(--color-main);
}

.main-nav__toggle.is-open .main-nav__toggle-line--1 {
  top: 21px;
  transform: rotate(45deg);
}
.main-nav__toggle.is-open .main-nav__toggle-line--2 {
  opacity: 0;
}
.main-nav__toggle.is-open .main-nav__toggle-line--3 {
  top: 21px;
  transform: rotate(-45deg);
}

.main-nav__button {
  flex: 0 0 auto;
}

body.scrolled .main-nav__button {
  background-color: #d7d4cd;
  color: var(--color-main);
}

body .main-nav__button:hover {
  background-color: var(--color-main);
  color: #fff;
}

.hero {
  position: relative;
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
  margin-bottom: 50px;
  overflow: hidden;
}

.hero__slides {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero__content {
  color: #fff;
  text-align: center;
  margin-top: 100px;
}

.hero__headline {
  font-size: 2rem;
  font-style: italic;
  font-weight: 500;
}

.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s ease;
  will-change: opacity;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__button {
  display: inline-block;
  margin-top: 30px;
  text-transform: uppercase;
  padding: 15px 30px;
  border: 1.5px solid #fff;
}
.hero__button:hover {
  background-color: #fff;
  color: var(--color-main);
}

.image-text {
  display: flex;
  margin: 100px 0;
}

.image-text--image-right {
  flex-direction: row-reverse;
}

.image-text__image-wrapper {
  flex: 0 0 45%;
  min-width: 0;
}

.image-text__image {
  width: 100%;
  height: auto;
}

.image-text__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
  min-width: 0;
  text-align: center;
}

.image-text__headline {
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--color-main);
}

.map__wrapper {
  max-width: 760px;
  margin: 200px auto 150px auto;
}

.map__image {
  width: 100%;
  height: auto;
}

.legal-page {
  padding: 70px 25px;
  background-color: #fcf5ec;
  color: #a4814a;
}

@media (min-width: 768px) {
  .legal-page {
    padding-left: 70px;
    padding-right: 70px;
  }
}
.legal-page__content {
  max-width: 56em;
  margin: 0 auto;
  margin-top: 50px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .legal-page__content {
    font-size: 17px;
  }
}
.legal-page__content ul {
  list-style-type: disc;
}

.legal-page__content a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 1px;
}

.legal-page__content h2 {
  font-size: 1.45em;
  margin-bottom: 0.3em;
  padding-bottom: 0.2em;
}

@media (min-width: 768px) {
  .legal-page__content h2 {
    font-size: 1.6em;
    margin-bottom: 0.5em;
    padding-bottom: 0.3em;
  }
}
.legal-page__content h3 {
  font-size: 1em;
  font-weight: 600;
  margin-top: 1.5em;
  margin-bottom: 0.35em;
}

.legal-page__content h3:first-of-type {
  margin-top: 1em;
}

.legal-page__content address {
  font-style: normal;
  margin: 0.5em 0 1em;
}

.legal-page__content p {
  margin: 0 0 0.5em;
}

.legal-page__content .legal-page__tagline {
  margin-top: 1em;
}

.legal-page__content .legal-page__tagline + h2 {
  margin-top: 1.7em;
  padding-top: 1.5em;
  border-top: 1px solid rgba(164, 129, 74, 0.25);
}

.legal-page__content ul {
  margin: 0.5em 0 1em;
  padding-left: 1.25em;
}

.legal-page__content li {
  margin-bottom: 0.25em;
}

.footer__image {
  display: block;
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__content {
  display: flex;
  margin: 50px 0;
  justify-content: space-between;
  color: var(--color-main);
}

.footer__links {
  text-align: right;
}

.footer__headline {
  text-transform: uppercase;
  font-size: 1.3rem;
  font-weight: 200;
  margin-bottom: 0.5em;
}

.footer__item:not(:last-child) {
  margin-bottom: 0.5em;
}

.footer__instagram-icon {
  position: relative;
  top: 1px;
  margin-left: 10px;
}

/*# sourceMappingURL=bundle-v1.css.map*/