/**
 * 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: "Montserrat", sans-serif;
  font-weight: 300;
  height: 100%;
  width: 100%;
}

body {
  background-color: #ffffff;
  height: 100%;
  overflow-x: hidden;
  width: 100%;
  --page-color-darker: #b7a997;
  --page-color: #ccBdad;
  --page-color-lighter: #e2d8cd;
  --page-color-lightest: #f2e9df;
}
body.deli {
  --page-color-darker: #7c7a54;
  --page-color: #aca96c;
  --page-color-lighter: #c9c796;
  --page-color-lightest: #e6e5bd;
}
body.concept {
  --page-color-darker: #cd8b6f;
  --page-color: #edac90;
  --page-color-lighter: #f6c6b2;
  --page-color-lightest: #faded2;
}
body.events {
  --page-color-darker: #697972;
  --page-color: #90a099;
  --page-color-lighter: #afbeb7;
  --page-color-lightest: #d4e0db;
}

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;
}

/**
 * Header
 */
.header {
  height: 120px;
  position: absolute;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.header > .wrapper {
  align-items: start;
  color: #222222;
  display: flex;
  flex-flow: row nowrap;
  font-size: 24px;
  height: 0;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 1800px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.header > .wrapper .logo {
  display: block;
  flex: 0 0 auto;
  height: auto;
  margin: 60px;
  position: fixed;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 220px;
  z-index: 9999;
}
.header > .wrapper .logo img {
  display: block;
  height: auto;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 220px;
}
.header > .wrapper .navigation {
  align-items: center;
  background-color: #f2e9df;
  color: inherit;
  display: flex;
  flex: 1 1 auto;
  flex-flow: row nowrap;
  gap: 1.75em;
  height: 120px;
  justify-content: end;
  margin-left: 340px;
  padding: 0 60px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.header > .wrapper .navigation ul {
  display: flex;
  flex-flow: row nowrap;
  gap: 1.75em;
}
.header > .wrapper .navigation ul li {
  color: inherit;
  flex: 0 0 auto;
  font: normal 400 1em/1.2em "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.header > .wrapper .navigation ul li a {
  color: inherit;
  display: inline-block;
  position: relative;
  text-decoration: none;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.header > .wrapper .navigation ul li a::after {
  background-color: transparent;
  bottom: -4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 0%;
}
.header > .wrapper .navigation ul li.active a::after {
  background-color: var(--page-color);
  width: 99%;
}
.header > .wrapper .navigation .sitemenu-open {
  align-items: center;
  color: inherit;
  display: none;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  text-decoration: none;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.header > .wrapper .navigation .sitemenu-open .label {
  color: inherit;
  font: normal 400 1em/1.2em "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  margin-right: 1em;
  text-transform: uppercase;
}
.header > .wrapper .navigation .sitemenu-open .burger {
  height: 32px;
  overflow: hidden;
  position: relative;
  width: 30px;
}
.header > .wrapper .navigation .sitemenu-open .burger span {
  background-color: #222222;
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  top: 15px;
  transform-origin: 50% 50%;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 30px;
}
.header > .wrapper .navigation .sitemenu-open .burger span:nth-child(1) {
  margin-top: -12px;
}
.header > .wrapper .navigation .sitemenu-open .burger span:nth-child(2) {
  margin-top: -4px;
}
.header > .wrapper .navigation .sitemenu-open .burger span:nth-child(3) {
  margin-top: 4px;
}
.header > .wrapper .navigation .sitemenu-open .burger span:nth-child(4) {
  margin-top: 12px;
}
.header > .wrapper .link {
  color: inherit;
  flex: 0 0 auto;
  font: normal 400 1em/1.2em "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

html:not(.mobile):not(.tablet) .header > .wrapper .navigation ul li a:hover::after {
  background-color: var(--page-color);
  width: 99%;
}
html:not(.mobile):not(.tablet) .header > .wrapper .navigation .sitemenu-open:hover .burger span:nth-child(1) {
  margin-top: -15px;
}
html:not(.mobile):not(.tablet) .header > .wrapper .navigation .sitemenu-open:hover .burger span:nth-child(2) {
  margin-top: -5px;
}
html:not(.mobile):not(.tablet) .header > .wrapper .navigation .sitemenu-open:hover .burger span:nth-child(3) {
  margin-top: 5px;
}
html:not(.mobile):not(.tablet) .header > .wrapper .navigation .sitemenu-open:hover .burger span:nth-child(4) {
  margin-top: 15px;
}

.sitemenu--active .header > .wrapper .navigation .sitemenu-open .burger span {
  margin-top: 0;
}

@media screen and (max-width: 1199px) {
  .header {
    height: 100px;
  }
  .header > .wrapper {
    font-size: 22px;
  }
  .header > .wrapper .logo {
    margin: 50px;
    width: 200px;
  }
  .header > .wrapper .logo img {
    width: 200px;
  }
  .header > .wrapper .navigation {
    height: 100px;
    margin-left: 300px;
    padding: 0 50px;
  }
}
@media screen and (max-width: 1023px) {
  .header > .wrapper .logo {
    margin: 40px;
    width: 180px;
  }
  .header > .wrapper .logo img {
    width: 180px;
  }
  .header > .wrapper .navigation {
    gap: 1em;
    margin-left: 260px;
    padding: 0 40px;
  }
  .header > .wrapper .navigation ul {
    display: none;
  }
  .header > .wrapper .navigation .sitemenu-open {
    display: flex;
  }
}
@media screen and (max-width: 767px) {
  .header {
    background-color: #ffffff;
    height: 110px;
  }
  .header > .wrapper {
    align-items: center;
    font-size: 20px;
    height: auto;
    padding: 0 30px;
  }
  .header > .wrapper .logo {
    height: 60px;
    margin: 0;
    position: static;
    width: auto;
  }
  .header > .wrapper .logo img {
    height: 60px;
    width: auto;
  }
  .header > .wrapper .navigation {
    background-color: #ffffff;
    height: 110px;
    margin-left: 0;
    padding: 0;
  }
}
@media screen and (max-width: 479px) {
  .header > .wrapper .navigation .sitemenu-open .label {
    display: none;
  }
}
/**
 * Intro
 */
@keyframes animation_intro_slider {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes animation_intro_box {
  0% {
    opacity: 0;
    transform: translateX(-680px);
  }
  100% {
    opacity: 1;
    transform: translateX(-280px);
  }
}
@keyframes animation_intro_navigation {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.intro {
  height: 100%;
  margin: 0 auto;
  max-width: 1800px;
  padding-left: 340px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.intro > .wrapper {
  background-color: #f2e9df;
  height: 100%;
  padding-top: 120px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.intro > .wrapper .slider {
  background-color: #f2e9df;
  height: 100%;
  position: relative;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.intro > .wrapper .slider .container {
  animation: animation_intro_slider 2.5s ease;
  height: 100%;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.intro > .wrapper .slider .container .item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: 100%;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.intro > .wrapper .slider .navigation {
  bottom: 40px;
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.intro > .wrapper .slider .navigation li {
  background-color: #ffffff;
  border-radius: 5px;
  height: 10px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 10px;
  cursor: pointer;
}
.intro > .wrapper .slider .navigation li.active {
  width: 30px;
}
.intro > .box {
  animation: animation_intro_box 1.5s ease;
  background-color: #ccBdad;
  bottom: 60px;
  display: flex;
  flex-flow: column nowrap;
  font-size: 40px;
  height: 340px;
  justify-content: space-between;
  overflow: hidden;
  padding: 0.75em 30px;
  position: fixed;
  transform: translateX(-280px);
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 340px;
  z-index: 9999;
}
.intro > .box .top {
  display: none;
  opacity: 0;
}
.intro > .box .title {
  color: #222222;
  flex: 0 0 auto;
  font: normal 400 1em/1em "Montserrat", sans-serif;
  margin-bottom: 1em;
  opacity: 1;
  text-transform: uppercase;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.intro > .box .navigation {
  background-color: #b7a997;
  display: flex;
  flex: 0 0 auto;
  flex-flow: column nowrap;
  gap: 2px;
  margin-bottom: -0.375em;
  opacity: 1;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.intro > .box .navigation li {
  background-color: #ccBdad;
  color: #222222;
  font: normal 400 0.55em/1em "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.intro > .box .navigation li a {
  color: inherit;
  display: block;
  padding: 0.75em 0;
  text-decoration: none;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.intro > .box.deli {
  background-color: #c9c796;
}
.intro > .box.deli .navigation {
  background-color: #aca96c;
}
.intro > .box.deli .navigation li {
  background-color: #c9c796;
}
.intro > .box.concept {
  background-color: #f6c6b2;
}
.intro > .box.concept .navigation {
  background-color: #edac90;
}
.intro > .box.concept .navigation li {
  background-color: #f6c6b2;
}
.intro > .box.events {
  background-color: #afbeb7;
}
.intro > .box.events .navigation {
  background-color: #90a099;
}
.intro > .box.events .navigation li {
  background-color: #afbeb7;
}
.intro > .box.box--collapsed {
  height: 60px;
  padding: 0;
  width: 60px;
}
.intro > .box.box--collapsed .top {
  background: url("../images/arrow-up.svg") no-repeat center center;
  background-size: 24px 12px;
  display: block;
  opacity: 1;
  height: 100%;
  width: 100%;
}
.intro > .box.box--collapsed .title,
.intro > .box.box--collapsed .navigation {
  display: none;
  opacity: 0;
}
.intro > .navigation {
  bottom: 60px;
  display: flex;
  flex-flow: column nowrap;
  font-size: 40px;
  gap: 20px;
  position: fixed;
  transform: translateX(-280px);
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 340px;
  z-index: 9999;
}
.intro > .navigation li {
  background-color: #ccBdad;
  opacity: 0;
  transform: translateX(-100%);
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 340px;
}
.intro > .navigation li a {
  align-items: center;
  color: #222222;
  display: flex;
  flex-flow: row nowrap;
  font: normal 400 1em/1em "Montserrat", sans-serif;
  padding: 0.6em 0.6em 0.6em 30px;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.intro > .navigation li a .label {
  flex: 1 1 auto;
}
.intro > .navigation li a .arrow {
  align-items: center;
  background-color: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  display: flex;
  flex: 0 0 auto;
  height: 1.2em;
  justify-content: center;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 1.2em;
}
.intro > .navigation li a .arrow svg {
  display: block;
  fill: #ccBdad;
  height: 0.5em;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 0.5em;
}
.intro > .navigation li.active {
  width: 400px;
}
.intro > .navigation li.deli {
  background-color: #c9c796;
}
.intro > .navigation li.deli a .arrow svg {
  fill: #aca96c;
}
.intro > .navigation li.concept {
  background-color: #f6c6b2;
}
.intro > .navigation li.concept a .arrow svg {
  fill: #edac90;
}
.intro > .navigation li.events {
  background-color: #afbeb7;
}
.intro > .navigation li.events a .arrow svg {
  fill: #90a099;
}
.intro > .navigation li:nth-child(1) {
  animation: animation_intro_navigation 1s 0s ease forwards;
}
.intro > .navigation li:nth-child(2) {
  animation: animation_intro_navigation 1s 0.5s ease forwards;
}
.intro > .navigation li:nth-child(3) {
  animation: animation_intro_navigation 1s 1s ease forwards;
}
.intro > .navigation.navigation--collapsed li {
  width: 280px;
}
.intro > .navigation.navigation--collapsed li a .arrow {
  opacity: 0;
}
.intro > .navigation.navigation--collapsed li.active {
  width: 280px;
}

.intro-text {
  margin: 0 auto;
  max-width: 1800px;
  padding-left: 340px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.intro-text > .wrapper {
  background-color: #f2e9df;
  color: #222222;
  font-size: 24px;
  padding: 60px 60px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.intro-text > .wrapper p {
  color: inherit;
  font: normal 400 1em/1.5em "Roboto", sans-serif;
}
.intro-text > .wrapper p + p {
  margin-top: 1.5em;
}
.intro-text > .wrapper p a {
  color: inherit;
  text-decoration: none;
}

html:not(.mobile):not(.tablet) .intro > .box .navigation li a:hover {
  color: var(--page-color-darker);
}

@media screen and (max-width: 1199px) {
  @keyframes animation_intro_box {
    0% {
      opacity: 0;
      transform: translateX(-600px);
    }
    100% {
      opacity: 1;
      transform: translateX(-250px);
    }
  }
  .intro {
    padding-left: 300px;
  }
  .intro > .wrapper {
    padding-top: 100px;
  }
  .intro > .box {
    animation: animation_intro_box 1.5s ease;
    bottom: 50px;
    font-size: 35px;
    height: 300px;
    transform: translateX(-250px);
    width: 300px;
  }
  .intro > .navigation {
    bottom: 50px;
    font-size: 35px;
    gap: 15px;
    transform: translateX(-250px);
    width: 300px;
  }
  .intro > .navigation li {
    width: 300px;
  }
  .intro > .navigation li.active {
    width: 350px;
  }
  .intro > .navigation.navigation--collapsed li {
    width: 250px;
  }
  .intro > .navigation.navigation--collapsed li.active {
    width: 250px;
  }
  .intro-text {
    padding-left: 300px;
  }
  .intro-text > .wrapper {
    font-size: 20px;
    padding: 50px 50px;
  }
}
@media screen and (max-width: 1023px) {
  @keyframes animation_intro_box {
    0% {
      opacity: 0;
      transform: translateX(-520px);
    }
    100% {
      opacity: 1;
      transform: translateX(-220px);
    }
  }
  .intro {
    padding-left: 260px;
  }
  .intro > .wrapper .slider .navigation {
    bottom: 30px;
  }
  .intro > .box {
    animation: animation_intro_box 1.5s ease;
    bottom: 40px;
    height: 260px;
    transform: translateX(-220px);
    width: 260px;
  }
  .intro > .navigation {
    bottom: 40px;
    transform: translateX(-220px);
    width: 260px;
  }
  .intro > .navigation li {
    width: 260px;
  }
  .intro > .navigation li.active {
    width: 300px;
  }
  .intro > .navigation.navigation--collapsed li {
    width: 220px;
  }
  .intro > .navigation.navigation--collapsed li.active {
    width: 220px;
  }
  .intro-text {
    padding-left: 260px;
  }
  .intro-text > .wrapper {
    padding: 40px 40px;
  }
}
@media screen and (max-width: 767px) {
  @keyframes animation_intro_box {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes animation_intro_navigation {
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
  .intro {
    display: flex;
    flex-flow: column nowrap;
    gap: 10px;
    padding-left: 0;
  }
  .intro > .wrapper {
    flex: 1 1 auto;
    padding-top: 110px;
  }
  .intro > .wrapper .slider .navigation {
    bottom: 20px;
  }
  .intro > .box {
    animation: animation_intro_box 1.5s ease;
    bottom: 30px;
    flex: 0 0 auto;
    font-size: 30px;
    height: auto;
    padding: 30px;
    position: static;
    transform: translateX(0);
    width: 100%;
  }
  .intro > .box.box--collapsed {
    height: auto;
    padding: 30px;
    width: 100%;
  }
  .intro > .box.box--collapsed .title,
  .intro > .box.box--collapsed .navigation {
    display: flex;
    opacity: 1;
  }
  .intro > .navigation {
    bottom: 30px;
    flex: 0 0 auto;
    font-size: 30px;
    gap: 10px;
    position: static;
    transform: translateX(0);
    width: 100%;
  }
  .intro > .navigation li {
    transform: translateX(0);
    width: 100%;
  }
  .intro > .navigation li.active {
    width: 100%;
  }
  .intro > .navigation li:nth-child(1) {
    animation: animation_intro_navigation 1s 0s ease forwards;
  }
  .intro > .navigation li:nth-child(2) {
    animation: animation_intro_navigation 1s 0.25s ease forwards;
  }
  .intro > .navigation li:nth-child(3) {
    animation: animation_intro_navigation 1s 0.5s ease forwards;
  }
  .intro > .navigation.navigation--collapsed li {
    width: 100%;
  }
  .intro > .navigation.navigation--collapsed li a .arrow {
    opacity: 1;
  }
  .intro > .navigation.navigation--collapsed li.active {
    width: 100%;
  }
  .intro-text {
    padding-left: 0;
  }
  .intro-text > .wrapper {
    font-size: 16px;
    padding: 45px 30px;
  }
}
@media screen and (max-width: 479px) {
  .intro {
    font-size: 40px;
  }
}
/**
 * Main
 */
.main {
  background-color: #ffffff;
  margin: 0 auto;
  max-width: 1800px;
  padding-left: 340px;
  width: 100%;
}
.main > .title {
  background-color: #f2e9df;
  padding-top: 120px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.main > .title > .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 65vh;
  width: 100%;
}
.main > .title > .wrapper {
  color: #222222;
  font-size: 24px;
  padding: 60px 60px 0 60px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.main > .title > .wrapper h1 {
  color: inherit;
  font: normal 400 60px/1em "Montserrat", sans-serif;
  text-transform: uppercase;
}
.main > .title > .wrapper h2 {
  color: var(--page-color);
  font: normal 400 1.5em/1em "Montserrat", sans-serif;
  padding-top: 0.5em;
  text-transform: uppercase;
}

@media screen and (max-width: 1199px) {
  .main {
    padding-left: 300px;
  }
  .main > .title {
    padding-top: 100px;
  }
  .main > .title > .wrapper {
    font-size: 20px;
    padding: 50px 50px 0 50px;
  }
  .main > .title > .wrapper h1 {
    font-size: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .main {
    padding-left: 260px;
  }
  .main > .title > .wrapper {
    padding: 40px 40px 0 40px;
  }
  .main > .title > .wrapper h1 {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .main {
    padding-left: 0;
  }
  .main > .title {
    padding-top: 110px;
  }
  .main > .title > .wrapper {
    font-size: 16px;
    padding: 45px 30px 0 30px;
  }
  .main > .title > .wrapper h1 {
    font-size: 30px;
  }
}
/**
 * About
 */
.about {
  display: flex;
  flex-flow: row nowrap;
  font-size: 24px;
  padding: 120px 0;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.about > .wrapper {
  color: #222222;
  flex: 1 1 auto;
  padding: 0 60px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.about > .wrapper > .title {
  color: inherit;
  font: normal 400 60px/1em "Montserrat", sans-serif;
  text-transform: uppercase;
}
.about > .wrapper > .text {
  color: inherit;
  font: normal 400 1em/1.5em "Roboto", sans-serif;
  margin-top: 1.75em;
}
.about > .wrapper > .hours {
  color: inherit;
  font: normal 400 1em/1.5em "Roboto", sans-serif;
  margin-top: 1.75em;
}
.about > .wrapper > .hours .title {
  color: var(--page-color);
  font: normal 500 1.25em/1.25em "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 0.5em;
  text-transform: uppercase;
}
.about > .wrapper > .cta {
  margin-top: 1.75em;
}
.about > .wrapper > .cta a {
  background-color: var(--page-color);
  color: #ffffff;
  display: inline-block;
  font: normal 500 1em/1.25em "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0.625em 1em;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.about > .image {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  flex: 0 0 40%;
  min-height: 25em;
}

html:not(.mobile):not(.tablet) .about > .wrapper > .cta a:hover {
  background-color: var(--page-color-darker);
}

@media screen and (max-width: 1199px) {
  .about {
    font-size: 20px;
    padding: 100px 0;
  }
  .about > .wrapper {
    padding: 0 50px;
  }
  .about > .wrapper > .title {
    font-size: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .about {
    flex-flow: column nowrap;
    gap: 40px;
    padding: 40px 40px;
  }
  .about > .wrapper {
    padding: 0;
  }
  .about > .wrapper > .title {
    font-size: 40px;
  }
  .about > .image {
    flex: 0 0 auto;
    min-height: auto;
    padding-top: 125%;
  }
}
@media screen and (max-width: 767px) {
  .about {
    font-size: 16px;
    gap: 45px;
    padding: 45px 30px;
  }
  .about > .wrapper {
    padding: 0;
  }
  .about > .wrapper > .title {
    font-size: 30px;
  }
}
/**
 * Lead
 */
.lead {
  display: flex;
  flex-flow: row nowrap;
  font-size: 24px;
  padding: 120px 0;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.lead > .wrapper {
  color: #222222;
  flex: 1 1 auto;
  padding: 0 60px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.lead > .wrapper > .title {
  color: inherit;
  flex: 0 0 auto;
  font: normal 400 60px/1em "Montserrat", sans-serif;
  text-transform: uppercase;
}
.lead > .wrapper > .form, .lead > .wrapper > .list {
  color: inherit;
  flex: 1 1 auto;
  padding-top: 1.75em;
}
.lead > .wrapper > .list .item {
  border-bottom: 2px solid #f1f1f1;
  color: inherit;
  padding: 0.75em 0;
}
.lead > .wrapper > .list .item:first-child {
  padding-top: 0;
}
.lead > .wrapper > .list .item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.lead > .wrapper > .list .item .row {
  color: inherit;
  display: flex;
  flex-flow: row nowrap;
  gap: 1em;
  justify-content: space-between;
}
.lead > .wrapper > .list .item .row .title {
  color: inherit;
  flex: 1 1 auto;
  font: normal 400 1em/1.5em "Montserrat", sans-serif;
}
.lead > .wrapper > .list .item .row .title a {
  color: inherit;
  text-decoration: none;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.lead > .wrapper > .list .item .row .price {
  color: inherit;
  flex: 0 0 auto;
  font: normal 400 1em/1.5em "Montserrat", sans-serif;
  white-space: nowrap;
}
.lead > .wrapper > .list .item .row .subtitle {
  color: inherit;
  flex: 1 1 auto;
  font: normal 300 0.75em/1.5em "Montserrat", sans-serif;
}
.lead > .wrapper > .list .item .row .date {
  color: inherit;
  flex: 0 0 auto;
  font: normal 300 0.75em/1.5em "Montserrat", sans-serif;
  white-space: nowrap;
}
.lead > .contact {
  background-color: var(--page-color-lightest);
  color: #222222;
  display: flex;
  flex: 0 0 40%;
  flex-flow: column nowrap;
  gap: 1.25em;
  padding: 40px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.lead > .contact .title {
  color: var(--page-color-darker);
  flex: 0 0 auto;
  font: normal 400 40px/1em "Montserrat", sans-serif;
  text-transform: uppercase;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.lead > .contact .text {
  color: inherit;
  flex: 1 1 auto;
  font: normal 400 1em/1.5em "Roboto", sans-serif;
}
.lead > .contact .options {
  background-color: var(--page-color-lighter);
  display: flex;
  flex: 0 0 auto;
  flex-flow: column nowrap;
  gap: 2px;
  margin-bottom: -0.75em;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.lead > .contact .options li {
  background-color: var(--page-color-lightest);
  color: #222222;
  font: normal 400 1em/1em "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.lead > .contact .options li a {
  color: inherit;
  display: block;
  padding: 0.75em 0;
  text-decoration: none;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}

html:not(.mobile):not(.tablet) .lead > .wrapper > .list .item .row .title a:hover {
  color: var(--page-color);
}
html:not(.mobile):not(.tablet) .lead > .contact .options li a:hover {
  color: var(--page-color-darker);
}

@media screen and (max-width: 1199px) {
  .lead {
    font-size: 20px;
    padding: 100px 0;
  }
  .lead > .wrapper {
    padding: 0 50px;
  }
  .lead > .wrapper > .title {
    font-size: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .lead {
    flex-flow: column nowrap;
    gap: 40px;
    padding: 40px 0;
  }
  .lead > .wrapper {
    padding: 0 40px;
  }
  .lead > .wrapper > .title {
    font-size: 40px;
  }
  .lead > .contact {
    padding: 35px;
  }
  .lead > .contact > .title {
    font-size: 35px;
  }
}
@media screen and (max-width: 767px) {
  .lead {
    font-size: 16px;
    gap: 45px;
    padding: 45px 0;
  }
  .lead > .wrapper {
    padding: 0 30px;
  }
  .lead > .wrapper > .title {
    font-size: 30px;
  }
  .lead > .contact {
    padding: 30px;
  }
  .lead > .contact > .title {
    font-size: 30px;
  }
}
/**
 * Menu
 */
.menu {
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.menu > .wrapper {
  background-color: #f2e9df;
  color: #222222;
  font-size: 24px;
  padding: 60px 60px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.menu > .wrapper > .title {
  align-items: center;
  color: inherit;
  display: flex;
  flex-flow: row wrap;
  gap: 1em;
  justify-content: space-between;
  text-transform: uppercase;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.menu > .wrapper > .title .label {
  color: inherit;
  flex: 0 0 auto;
  font: normal 400 60px/1em "Montserrat", sans-serif;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.menu > .wrapper > .title .tabs {
  color: inherit;
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  font: normal 400 1em/1.25em "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  margin: 0 -1em 0 0;
  text-transform: uppercase;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.menu > .wrapper > .title .tabs li {
  color: inherit;
  display: block;
}
.menu > .wrapper > .title .tabs li a {
  color: inherit;
  display: block;
  padding: 0.5em 1em;
  text-decoration: none;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.menu > .wrapper > .title .tabs li.active a {
  background-color: var(--page-color-lighter);
}
.menu > .wrapper > .list {
  color: inherit;
  column-gap: 2em;
  display: none;
  grid-template-columns: 1fr 1fr;
  margin-top: 1.75em;
  row-gap: 1.5em;
}
.menu > .wrapper > .list .group {
  color: inherit;
  display: flex;
  flex-flow: column nowrap;
  gap: 0.75em;
  grid-column: span 2;
}
.menu > .wrapper > .list .group .title {
  color: var(--page-color);
  flex: 0 0 auto;
  font: normal 500 1.25em/1.25em "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.menu > .wrapper > .list .group .item {
  align-items: start;
  color: inherit;
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  gap: 1em;
  justify-content: space-between;
}
.menu > .wrapper > .list .group .item .text {
  color: inherit;
  flex: 1 1 auto;
}
.menu > .wrapper > .list .group .item .text p {
  align-items: center;
  display: block;
  font: normal 400 1em/1.5em "Montserrat", sans-serif;
}
.menu > .wrapper > .list .group .item .text p .icons {
  display: inline-flex;
  gap: 0.25em;
  margin-left: 0.25em;
}
.menu > .wrapper > .list .group .item .text p .icons .vegetarian,
.menu > .wrapper > .list .group .item .text p .icons .vegan,
.menu > .wrapper > .list .group .item .text p .icons .lactosefree,
.menu > .wrapper > .list .group .item .text p .icons .glutenfree {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 0.75em;
  width: 0.75em;
}
.menu > .wrapper > .list .group .item .text p .icons .vegetarian {
  background-image: url("../images/icon-vegetarian.svg");
}
.menu > .wrapper > .list .group .item .text p .icons .vegan {
  background-image: url("../images/icon-vegan.svg");
}
.menu > .wrapper > .list .group .item .text p .icons .lactosefree {
  background-image: url("../images/icon-lactosefree.svg");
}
.menu > .wrapper > .list .group .item .text p .icons .glutenfree {
  background-image: url("../images/icon-glutenfree.svg");
}
.menu > .wrapper > .list .group .item .text small {
  display: block;
  font: normal 300 0.75em/1.5em "Montserrat", sans-serif;
}
.menu > .wrapper > .list .group .item .text a {
  color: inherit;
  text-decoration: none;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.menu > .wrapper > .list .group .item .options {
  color: inherit;
  display: flex;
  flex: 0 0 auto;
  flex-flow: row nowrap;
  font: normal 400 0.6666666667em/1.25em "Montserrat", sans-serif;
  gap: 1.25em;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.menu > .wrapper > .list .group .item .options a {
  background-color: #e2d8cd;
  border: 2px solid #e2d8cd;
  color: inherit;
  display: block;
  padding: 0.75em 1em;
  text-decoration: none;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.menu > .wrapper > .list .group .item .options a.secondary {
  background-color: #f2e9df;
}
.menu > .wrapper > .list .group .item .price {
  flex: 0 0 5em;
  font: normal 400 1em/1.5em "Montserrat", sans-serif;
  text-align: right;
}
.menu > .wrapper > .list .group .hints {
  color: inherit;
  display: flex;
  flex-flow: column nowrap;
  font: normal 300 0.75em/1.5em "Montserrat", sans-serif;
  gap: 0.5em;
}
.menu > .wrapper > .list .group.group--50 {
  grid-column: span 1;
}
.menu > .wrapper > .list.active {
  display: grid;
}

html:not(.mobile):not(.tablet) .menu > .wrapper > .title .tabs li:not(.active) a:hover {
  color: var(--page-color);
}
html:not(.mobile):not(.tablet) .menu > .wrapper > .list .group .item .text a:hover {
  color: var(--page-color);
}
html:not(.mobile):not(.tablet) .menu > .wrapper > .list .group .item .options a:hover {
  background-color: #ccBdad;
  border-color: #ccBdad;
}
html:not(.mobile):not(.tablet) .menu > .wrapper > .list .group .item .options a:hover.secondary {
  background-color: #f2e9df;
}

@media screen and (max-width: 1199px) {
  .menu > .wrapper {
    font-size: 20px;
    padding: 50px 50px;
  }
  .menu > .wrapper > .title .label {
    font-size: 50px;
  }
  .menu > .wrapper > .list .group .item .options a.secondary {
    display: none;
  }
}
@media screen and (max-width: 1023px) {
  .menu > .wrapper {
    padding: 40px 40px;
  }
  .menu > .wrapper > .title {
    align-items: start;
    flex-flow: column nowrap;
  }
  .menu > .wrapper > .title .label {
    font-size: 40px;
  }
  .menu > .wrapper > .title .tabs-container {
    width: 100%;
    position: relative;
  }
  .menu > .wrapper > .title .tabs-container::after {
    content: "";
    position: absolute;
    width: 1em;
    height: 100%;
    right: 0;
    top: 0;
    background: linear-gradient(270deg, #f2e9df 0, rgba(255, 255, 255, 0) 100%);
  }
  .menu > .wrapper > .title .tabs {
    margin-right: -40px;
    overflow: scroll;
    width: 100%;
  }
  .menu > .wrapper > .title .tabs::-webkit-scrollbar {
    display: none;
  }
  .menu > .wrapper > .list .group .item .options {
    display: none;
  }
  .menu > .wrapper > .list .group.group--50 {
    grid-column: span 2;
  }
}
@media screen and (max-width: 767px) {
  .menu > .wrapper {
    font-size: 16px;
    padding: 45px 30px;
  }
  .menu > .wrapper > .title .label {
    font-size: 30px;
  }
}
/**
 * Upcoming
 */
.upcoming {
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.upcoming > .wrapper {
  background-color: #f2e9df;
  color: #222222;
  font-size: 24px;
  padding: 60px 60px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.upcoming > .wrapper > .title {
  color: inherit;
  font: normal 400 60px/1em "Montserrat", sans-serif;
  text-transform: uppercase;
}
.upcoming > .wrapper > .text {
  color: inherit;
  font: normal 400 1em/1.5em "Roboto", sans-serif;
  margin-top: 1.75em;
}
.upcoming > .wrapper > .list {
  color: inherit;
  display: flex;
  flex-flow: column nowrap;
  gap: 2em;
  margin-top: 1.75em;
}
.upcoming > .wrapper > .list .item {
  color: inherit;
  display: flex;
  flex-flow: row nowrap;
  gap: 1.5em;
}
.upcoming > .wrapper > .list .item .image {
  flex: 0 0 auto;
  height: 10em;
  width: 14em;
}
.upcoming > .wrapper > .list .item .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.upcoming > .wrapper > .list .item .wrapper {
  color: inherit;
  flex: 1 1 auto;
}
.upcoming > .wrapper > .list .item .wrapper .title {
  color: inherit;
  font: normal 400 1.5em/1.5em "Montserrat", sans-serif;
}
.upcoming > .wrapper > .list .item .wrapper .title a {
  color: inherit;
  text-decoration: none;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.upcoming > .wrapper > .list .item .wrapper .subtitle {
  color: inherit;
  font: normal 300 1em/1.5em "Montserrat", sans-serif;
  margin-bottom: 0.5em;
}
.upcoming > .wrapper > .list .item .wrapper .text {
  color: inherit;
  font: normal 400 1em/1.5em "Roboto", sans-serif;
}

html:not(.mobile):not(.tablet) .upcoming > .wrapper > .list .item .wrapper .title a:hover {
  color: var(--page-color);
}

@media screen and (max-width: 1199px) {
  .upcoming > .wrapper {
    font-size: 20px;
    padding: 50px 50px;
  }
  .upcoming > .wrapper > .title {
    font-size: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .upcoming > .wrapper {
    padding: 40px 40px;
  }
  .upcoming > .wrapper > .title {
    font-size: 40px;
  }
  .upcoming > .wrapper > .list .item {
    flex-flow: column nowrap;
  }
  .upcoming > .wrapper > .list .item .image {
    width: 100%;
    height: auto;
  }
  .upcoming > .wrapper > .list .item .image img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .upcoming > .wrapper {
    font-size: 16px;
    padding: 45px 30px;
  }
  .upcoming > .wrapper > .title {
    font-size: 30px;
  }
}
/**
 * Slideshow
 */
.slideshow {
  height: auto;
  padding: 60px 0 0 60px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.slideshow > .wrapper {
  background-color: var(--page-color-lighter);
}
.slideshow > .wrapper .slider {
  height: auto;
  position: relative;
  transform: translate(-60px, -60px);
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.slideshow > .wrapper .slider .container {
  height: auto;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.slideshow > .wrapper .slider .container .item {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  height: auto;
  padding-bottom: 66%;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.slideshow > .wrapper .slider .navigation {
  bottom: 40px;
  display: flex;
  flex-flow: row nowrap;
  gap: 10px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.slideshow > .wrapper .slider .navigation li {
  background-color: #ffffff;
  border-radius: 5px;
  height: 10px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 10px;
  cursor: pointer;
}
.slideshow > .wrapper .slider .navigation li.active {
  width: 30px;
}

@media screen and (max-width: 1199px) {
  .slideshow {
    padding: 50px 0 0 50px;
  }
  .slideshow > .wrapper .slider {
    transform: translate(-50px, -50px);
  }
}
@media screen and (max-width: 1023px) {
  .slideshow {
    padding: 40px 0 0 40px;
  }
  .slideshow > .wrapper .slider {
    transform: translate(-40px, -40px);
  }
  .slideshow > .wrapper .slider .navigation {
    bottom: 30px;
  }
}
@media screen and (max-width: 767px) {
  .slideshow {
    padding: 45px 0 0 30px;
  }
  .slideshow > .wrapper .slider {
    transform: translate(-30px, -45px);
  }
  .slideshow > .wrapper .slider .navigation {
    bottom: 20px;
  }
}
/**
 * Content
 */
.content {
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.content > .wrapper {
  background-color: #f2e9df;
  color: #222222;
  font: normal 400 24px/1.5em "Roboto", sans-serif;
  padding: 60px 60px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.content > .wrapper h1,
.content > .wrapper h2,
.content > .wrapper h3,
.content > .wrapper h4,
.content > .wrapper h5,
.content > .wrapper h6 {
  color: inherit;
  text-align: left;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
}
.content > .wrapper h2,
.content > .wrapper .content-title-1 {
  color: var(--page-color);
  font: normal 400 1.5em/1em "Montserrat", sans-serif;
  margin-bottom: 1em;
  text-transform: uppercase;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
}
.content > .wrapper h3,
.content > .wrapper .content-title-2 {
  color: #222222;
  font: normal 400 1.5em/1.5em "Montserrat", sans-serif;
  margin-bottom: 1em;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
}
.content > .wrapper h4 {
  font: normal 500 1em/1.5em "Roboto", sans-serif;
  letter-spacing: 0.1em;
  margin-bottom: 1em;
  text-transform: uppercase;
}
.content > .wrapper h5 {
  font: normal 400 1em/1.5em "Montserrat", sans-serif;
  margin-bottom: 1em;
}
.content > .wrapper h6 {
  font: normal 400 0.75em/1.5em "Montserrat", sans-serif;
  margin-bottom: 1em;
}
.content > .wrapper p + .content-title-1, .content > .wrapper ul + .content-title-1, .content > .wrapper div + .content-title-1, .content > .wrapper form + .content-title-1,
.content > .wrapper p + .content-title-2, .content > .wrapper ul + .content-title-2, .content > .wrapper div + .content-title-2, .content > .wrapper form + .content-title-2,
.content > .wrapper p + h2, .content > .wrapper ul + h2, .content > .wrapper ol + h2, .content > .wrapper div + h2, .content > .wrapper form + h2,
.content > .wrapper p + h3, .content > .wrapper ul + h3, .content > .wrapper ol + h3, .content > .wrapper div + h3, .content > .wrapper form + h3,
.content > .wrapper p + h4, .content > .wrapper ul + h4, .content > .wrapper ol + h4, .content > .wrapper div + h4, .content > .wrapper form + h4,
.content > .wrapper p + h5, .content > .wrapper ul + h5, .content > .wrapper ol + h5, .content > .wrapper div + h5, .content > .wrapper form + h5,
.content > .wrapper p + h6, .content > .wrapper ul + h6, .content > .wrapper ol + h6, .content > .wrapper div + h6, .content > .wrapper form + h6 {
  margin-top: 2em;
}
.content > .wrapper p {
  color: inherit;
  font: normal 400 1em/1.5em "Roboto", sans-serif;
  margin: 0 0 1.5em 0;
  text-align: left;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
}
.content > .wrapper ul,
.content > .wrapper ol {
  color: inherit;
  font: normal 400 1em/1.5em "Roboto", sans-serif;
  margin: 0 0 1.5em 1.25em;
  text-align: left;
}
.content > .wrapper ul li,
.content > .wrapper ol li {
  margin: 0 0 0.5em 0;
  position: relative;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -ms-word-break: break-all;
  word-break: break-all;
  word-break: break-word;
}
.content > .wrapper ul li ul,
.content > .wrapper ul li ol,
.content > .wrapper ol li ul,
.content > .wrapper ol li ol {
  margin: 0.5em 0 0.5em 1.25em;
}
.content > .wrapper ul {
  list-style-type: square;
}
.content > .wrapper ul.none {
  list-style-type: none;
  margin-left: 0;
}
.content > .wrapper ol {
  list-style-type: decimal;
}
.content > .wrapper a {
  border-bottom: 2px solid var(--page-color);
  color: inherit;
  text-decoration: none;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.content > .wrapper a.link {
  text-transform: uppercase;
}
.content > .wrapper strong,
.content > .wrapper b {
  font-weight: 500;
}
.content > .wrapper em,
.content > .wrapper i {
  font-style: italic;
}

html:not(.mobile):not(.tablet) .content > .wrapper a:hover {
  border-bottom-color: #222222;
}

@media screen and (max-width: 1199px) {
  .content > .wrapper {
    font-size: 20px;
    padding: 50px 50px;
  }
}
@media screen and (max-width: 1023px) {
  .content > .wrapper {
    padding: 40px 40px;
  }
}
@media screen and (max-width: 767px) {
  .content > .wrapper {
    font-size: 16px;
    padding: 45px 30px;
  }
}
/**
* Contact
*/
.contact .map {
  height: 100%;
  width: 100%;
  position: relative;
}
.contact .map .fade {
  position: absolute;
  width: 100%;
  height: 4em;
  z-index: 1;
  background: linear-gradient(180deg, #f2e9df 0, rgba(255, 255, 255, 0) 100%);
}
.contact .map .container {
  height: 100%;
  width: 100%;
}

/**
* Form
*/
.form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 1.5em;
  row-gap: 1em;
}
.form .step-1,
.form .step-2 {
  display: none;
  grid-column: span 2;
  grid-template-columns: 1fr 1fr;
  gap: 1em;
}
.form .step-1.active,
.form .step-2.active {
  display: grid;
}
.form .success {
  display: none;
  grid-column: span 2;
}
.form .success.active {
  display: block;
}
.form .form-field {
  display: flex;
  flex-flow: column nowrap;
  column-gap: 0.5em;
  row-gap: 0.6em;
  grid-column: span 2;
}
.form .form-field.form-field--50 {
  grid-column: span 1;
  flex-basis: 50%;
}
.form .form-field.form-field--inline {
  align-items: center;
  flex-flow: row nowrap;
}
.form .form-field.form-field--submit {
  margin-top: 0.66666em;
  flex-flow: row wrap;
  justify-content: flex-end;
}
.form .form-field.form-field--submit button:last-child {
  margin-left: auto;
}
.form .form-field.form-field--radioselection {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 1em;
}
.form .form-field.form-field--radioselection .radioselection-title {
  grid-column: span 5;
}
.form .form-field.form-field--radioselection label:not(.radioselection-title) {
  border: 2px solid #e0e0e0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 3.5em;
  cursor: pointer;
  grid-column: span 1;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.form .form-field.form-field--radioselection label:not(.radioselection-title):has(input[type=radio]:checked) {
  border-color: var(--page-color);
  background: var(--page-color-lightest);
}
.form .form-field.form-field--radioselection label:not(.radioselection-title) span {
  font-size: 1.25em;
  color: inherit;
}
.form .form-field.form-field--radioselection label:not(.radioselection-title) input[type=radio] {
  display: none;
}
.form .form-field.form-field--radioselection label:not(.radioselection-title):hover, .form .form-field.form-field--radioselection label:not(.radioselection-title):focus {
  border-color: var(--page-color);
}
.form .form-field:has(input:required) label::after, .form .form-field:has(select:required) label::after, .form .form-field:has(textarea:required) label::after {
  content: "*";
  color: var(--page-color);
}
.form .form-buttons {
  display: flex;
  flex-flow: row nowrap;
  grid-column: span 2;
  justify-content: space-between;
  padding-top: 0.5em;
}
.form label {
  color: inherit;
  font: normal 400 1em/1em "Montserrat", sans-serif;
  text-transform: uppercase;
}
.form label span {
  color: #e0e0e0;
}
.form label a {
  color: inherit;
}
.form input[type=text],
.form input[type=password],
.form input[type=email],
.form input[type=tel],
.form input[type=file],
.form input[type=date],
.form select,
.form textarea {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 0;
  color: #222222;
  display: block;
  font: normal 400 1em/1.5em "Montserrat", sans-serif;
  padding: 0.625em 0.83333em;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.form input[type=text]:hover, .form input[type=text]:focus,
.form input[type=password]:hover,
.form input[type=password]:focus,
.form input[type=email]:hover,
.form input[type=email]:focus,
.form input[type=tel]:hover,
.form input[type=tel]:focus,
.form input[type=file]:hover,
.form input[type=file]:focus,
.form input[type=date]:hover,
.form input[type=date]:focus,
.form select:hover,
.form select:focus,
.form textarea:hover,
.form textarea:focus {
  border-color: var(--page-color);
}
.form input[type=date] {
  height: 3em;
}
.form input[type=checkbox],
.form input[type=radio] {
  background-color: #ffffff;
  border: 2px solid #e0e0e0;
  border-radius: 0;
  flex: 0 0 auto;
  font-size: inherit;
  height: 1.25em;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 1.25em;
}
.form input[type=checkbox]:hover, .form input[type=checkbox]:checked,
.form input[type=radio]:hover,
.form input[type=radio]:checked {
  border-color: var(--page-color);
}
.form input[type=checkbox]::after,
.form input[type=radio]::after {
  background-color: #222222;
  border: 2px solid #e0e0e0;
  content: "";
  display: none;
  height: 100%;
  width: 100%;
}
.form input[type=checkbox]:checked::after,
.form input[type=radio]:checked::after {
  display: block;
}
.form input[type=radio] {
  border-radius: 50%;
}
.form input[type=radio]::after {
  border-radius: 50%;
}
.form select {
  appearance: none;
  background-image: url("../images/arrow-down.svg");
  background-position: right center;
  background-size: 1.75em auto;
  background-repeat: no-repeat;
  cursor: pointer;
  padding-right: 2em;
}
.form button {
  background: var(--page-color);
  color: #ffffff;
  cursor: pointer;
  font: normal 500 1em/1.25em "Montserrat", sans-serif;
  letter-spacing: 0.1em;
  padding: 0.625em 1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.form button:disabled {
  cursor: wait;
}
.form button:hover, .form button:focus {
  background-color: var(--page-color-darker);
}
.form textarea {
  resize: none;
}

form.was-validated input[type=text]:invalid,
form.was-validated input[type=password]:invalid,
form.was-validated input[type=email]:invalid,
form.was-validated input[type=date]:invalid,
form.was-validated input[type=tel]:invalid,
form.was-validated input[type=file]:invalid,
form.was-validated input[type=checkbox]:invalid,
form.was-validated select:invalid,
form.was-validated textarea:invalid {
  border-color: #dc0000;
}

@media screen and (max-width: 767px) {
  .form {
    grid-template-columns: 1fr;
  }
  .form .step-1, .form .step-2, .form .success {
    grid-column: span 1;
    grid-template-columns: 1fr;
  }
  .form .form-field {
    grid-column: span 1;
  }
  .form .form-buttons {
    grid-column: span 1;
  }
  .form input[type=text],
  .form input[type=password],
  .form input[type=email],
  .form input[type=tel],
  .form input[type=file],
  .form select {
    border-width: 2px;
  }
  .form input[type=checkbox],
  .form input[type=radio] {
    border-width: 2px;
  }
  .form input[type=checkbox]::after,
  .form input[type=radio]::after {
    border-width: 2px;
  }
}
/**
 * Footer
 */
.footer {
  background-color: #ffffff;
  margin: 0 auto;
  max-width: 1800px;
  padding-left: 340px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.footer > .wrapper {
  align-items: center;
  color: #222222;
  display: flex;
  flex-flow: column nowrap;
  font: normal 400 20px/1.5em "Montserrat", sans-serif;
  gap: 0.5em;
  justify-content: space-between;
  padding: 30px 60px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.footer > .wrapper .hint {
  color: inherit;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer > .wrapper ul {
  align-items: center;
  color: inherit;
  column-gap: 1.5em;
  display: flex;
  flex: 0 0 auto;
  flex-flow: row wrap;
  justify-content: center;
  row-gap: 0.5em;
}
.footer > .wrapper ul li {
  color: inherit;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.footer > .wrapper ul li a {
  color: inherit;
  display: inline-block;
  position: relative;
  text-decoration: none;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.footer > .wrapper ul li a::after {
  background-color: transparent;
  bottom: 0;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 0;
}

html:not(.mobile):not(.tablet) .footer > .wrapper ul li a:hover::after {
  background-color: #222222;
  width: 100%;
}

@media screen and (max-width: 1199px) {
  .footer {
    padding-left: 300px;
  }
  .footer > .wrapper {
    font-size: 18px;
    padding: 25px 50px;
  }
}
@media screen and (max-width: 1023px) {
  .footer {
    padding-left: 260px;
  }
  .footer > .wrapper {
    padding: 40px 40px;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    padding-left: 0;
  }
  .footer > .wrapper {
    font-size: 16px;
    padding: 25px 30px;
  }
}
/**
 * Sitemenu
 */
.sitemenu {
  background-color: #222222;
  bottom: 0;
  display: flex;
  flex-flow: column nowrap;
  font-size: 28px;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(120%);
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  z-index: 10000;
}
.sitemenu .bar {
  align-items: center;
  display: flex;
  flex-flow: row nowrap;
  height: 120px;
  justify-content: end;
  margin: 0 auto;
  max-width: 1800px;
  padding: 0 60px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 100%;
}
.sitemenu .bar .close {
  display: block;
  flex: 0 0 auto;
  height: 32px;
  overflow: hidden;
  position: relative;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 30px;
}
.sitemenu .bar .close::before, .sitemenu .bar .close::after {
  background-color: #ffffff;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  top: 15px;
  transform-origin: 50% 50%;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 30px;
}
.sitemenu .bar .close.active::before {
  transform: rotate(-135deg);
}
.sitemenu .bar .close.active:after {
  transform: rotate(-45deg);
}
.sitemenu .wrapper {
  display: flex;
  flex: 1 1 auto;
  flex-flow: column nowrap;
  justify-content: space-evenly;
  margin: 0 auto;
  max-width: 1800px;
  padding: 0 60px;
  width: 100%;
}
.sitemenu .wrapper .navigation {
  flex: 0 0 auto;
}
.sitemenu .wrapper .navigation ul {
  display: flex;
  flex-flow: column nowrap;
  gap: 1.5em;
}
.sitemenu .wrapper .navigation ul li {
  color: #ffffff;
  flex: 0 0 auto;
  font: normal 400 2em/1em "Montserrat", sans-serif;
  text-align: left;
}
.sitemenu .wrapper .navigation ul li a {
  color: inherit;
  display: inline-block;
  position: relative;
  text-decoration: none;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.sitemenu .wrapper .navigation ul li a::after {
  background-color: transparent;
  bottom: -0.25em;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  width: 0;
}

html:not(.mobile):not(.tablet) .sitemenu > .wrapper .navigation ul li a:hover::after {
  background-color: #222222;
  width: 100%;
}

.sitemenu--active .sitemenu {
  transform: translateX(0);
}

@media screen and (max-width: 1199px) {
  .sitemenu {
    font-size: 24px;
  }
  .sitemenu .bar {
    height: 100px;
    padding: 0 50px;
  }
  .sitemenu .wrapper {
    padding: 0 50px;
  }
}
@media screen and (max-width: 1023px) {
  .sitemenu {
    font-size: 24px;
  }
  .sitemenu .bar {
    padding: 0 40px;
  }
  .sitemenu .wrapper {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .sitemenu {
    font-size: 20px;
  }
  .sitemenu .bar {
    height: 110px;
    padding: 0 30px;
  }
  .sitemenu .wrapper {
    padding: 0 30px;
  }
}
/**
 * Animation
 */
.animation--fadein {
  opacity: 0;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s, opacity 1.5s !important;
}

.animation--fadein.animation--run {
  opacity: 1;
}

.animation--fadeout {
  opacity: 1;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s, opacity 1.5s !important;
}

.animation--fadeout.animation--run {
  opacity: 0;
}

/**
 * Scroll Container
 */
.scroll-container {
  overflow-x: scroll;
  scroll-snap-align: start;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scroll-container::-webkit-scrollbar {
  display: none;
}
.scroll-container {
  display: flex;
}
.scroll-container .scroll-item {
  flex: 1 0 auto;
  scroll-snap-align: start;
}

/**
 * Layer
 */
.layer {
  background-color: #ffffff;
  bottom: 0;
  color: #222222;
  font-size: 24px;
  left: 0;
  padding: 60px;
  position: fixed;
  right: 0;
  transform: translateX(120%);
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  top: 0;
  z-index: 11000;
}
.layer .layer-close {
  display: block;
  flex: 0 0 auto;
  height: 32px;
  overflow: hidden;
  position: absolute;
  right: 60px;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
  cursor: pointer;
  width: 30px;
}
.layer .layer-close::before, .layer .layer-close::after {
  background-color: #222222;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  top: 15px;
  transform-origin: 50% 50%;
  transition: transform 0.25s ease;
  width: 30px;
}
.layer .layer-close.active::before {
  transform: rotate(-135deg);
}
.layer .layer-close.active:after {
  transform: rotate(-45deg);
}
.layer .layer-wrapper {
  color: inherit;
  display: flex;
  flex-flow: column nowrap;
  gap: 1em;
  height: 100%;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto;
}
.layer .layer-wrapper .layer-title {
  color: inherit;
  flex: 0 0 auto;
  font: normal 400 60px/1em "Montserrat", sans-serif;
  text-transform: uppercase;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}
.layer .layer-wrapper .layer-subtitle {
  color: var(--page-color);
  flex: 0 0 auto;
  font: normal 400 1.25em/1.25em "Montserrat", sans-serif;
  text-transform: uppercase;
  transition: background 0.25s, border 0.25s, bottom 0.25s, box-shadow 0.25s, color 0.25s, fill 0.25s, height 0.25s, left 0.25s, gap 0.25s, opacity 0.25s, margin 0.25s, padding 0.25s, right 0.25s, top 0.25s, transform 0.25s, width 0.25s;
}

.layer--active .layer {
  transform: translateX(0);
}

@media screen and (max-width: 1199px) {
  .layer {
    font-size: 20px;
    padding: 40px;
  }
  .layer .layer-close {
    right: 40px;
  }
  .layer .layer-wrapper .layer-title {
    font-size: 50px;
  }
}
@media screen and (max-width: 1023px) {
  .layer .layer-wrapper .layer-title {
    font-size: 40px;
  }
}
@media screen and (max-width: 767px) {
  .layer {
    font-size: 16px;
    padding: 30px;
  }
  .layer .layer-close {
    right: 30px;
  }
  .layer .layer-wrapper .layer-title {
    font-size: 30px;
  }
}

/*# sourceMappingURL=style.css.map */
