@font-face {
  font-family: Butler;
  src: url('../fonts/Butler_Ultra_Light.otf') format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Butler;
  src: url('../fonts/Butler_Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Butler;
  src: url('../fonts/Butler_Regular.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Butler;
  src: url('../fonts/Butler_Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

:root {
  --seashell: #f8f0eb;
  --dark-olive-green: #451500;
  --dark-goldenrod: #a3832a;
  --white: white;
  --dark-sea-green: #f2e4d6;
}

.w-layout-grid {
  grid-row-gap: 16px;
  grid-column-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 2px;
  width: 12px;
  height: 12px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  background-color: var(--seashell);
  color: var(--dark-olive-green);
  font-family: Lato, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
}

h1 {
  color: var(--dark-olive-green);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Butler, sans-serif;
  font-size: 84px;
  font-weight: 400;
  line-height: 1.1;
}

h2 {
  color: var(--dark-olive-green);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Butler, sans-serif;
  font-size: 64px;
  font-weight: 400;
  line-height: 1.15;
}

h3 {
  color: var(--dark-olive-green);
  margin-top: 20px;
  margin-bottom: 10px;
  font-family: Butler, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1;
}

h4 {
  color: var(--dark-olive-green);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Butler, sans-serif;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
}

h5 {
  color: var(--dark-olive-green);
  margin-top: 10px;
  margin-bottom: 10px;
  font-family: Butler, sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1.4;
}

h6 {
  color: var(--dark-olive-green);
  text-transform: uppercase;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 700;
  line-height: 1;
}

p {
  color: var(--dark-olive-green);
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.8;
}

a {
  color: var(--dark-goldenrod);
  font-size: 16px;
  line-height: 1.8;
  text-decoration: none;
}

ul {
  color: var(--dark-olive-green);
  margin-top: 0;
  margin-bottom: 15px;
  padding-left: 40px;
  font-size: 16px;
  line-height: 1.8;
  list-style-type: decimal;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
  font-size: 16px;
  line-height: 1.8;
}

li {
  margin-bottom: 15px;
}

img {
  max-width: 100%;
  display: inline-block;
}

strong {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}

em {
  font-size: 16px;
  font-style: italic;
  line-height: 1.8;
}

blockquote {
  border-left: 5px solid var(--dark-olive-green);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  font-style: italic;
  line-height: 1.8;
}

.form-button {
  color: #000;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
  border-radius: 0;
  flex: none;
  justify-content: center;
  align-items: center;
  padding: 18px 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  text-decoration: none;
  transition: background-color .5s cubic-bezier(.77, 0, .175, 1);
  display: flex;
}

.form-button:hover {
  background-color: #00adef;
}

.form-button._100-width {
  transition: color .5s cubic-bezier(.23, 1, .32, 1), background-color .5s cubic-bezier(.23, 1, .32, 1);
}

.form-button._100-width:hover {
  background-color: var(--dark-goldenrod);
  color: var(--white);
}

.error-message {
  color: #db4b68;
  text-align: center;
  text-transform: uppercase;
  background-color: #db4b680d;
  border-bottom: 3px solid #db4b68;
  width: 100%;
  max-width: 1200px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
  font-size: 12px;
  line-height: 20px;
}

.error-text {
  line-height: 1.8;
}

.input-field {
  width: 100%;
  color: var(--white);
  text-transform: none;
  background-color: #0000;
  border-style: none none solid;
  border-bottom-width: 1px;
  border-bottom-color: #fff;
  border-radius: 0;
  align-self: stretch;
  margin-bottom: 0;
  padding: 30px 20px;
  font-size: 16px;
}

.input-field:active {
  border-bottom-color: #fff;
}

.input-field:focus {
  color: #18181d;
  border-bottom-color: #fff;
}

.input-field.bottom-margin {
  margin-bottom: 20px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utilities-section {
  background-color: #f8f0eb;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.utilities-container {
  background-color: var(--dark-olive-green);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  padding: 60px;
  display: flex;
}

.h1-utilities {
  color: #fff;
  text-align: center;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 42px;
  line-height: 1.1;
}

.utilities-text {
  color: #fff;
  text-align: center;
  max-width: 320px;
  margin-bottom: 30px;
  font-size: 18px;
  line-height: 1.6;
}

.utilities-button {
  color: #000;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 220px;
  height: 60px;
  padding-left: 30px;
  padding-right: 30px;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  transition: color .5s cubic-bezier(.77, 0, .175, 1), background-color .5s cubic-bezier(.77, 0, .175, 1);
  display: flex;
}

.utilities-button:hover {
  background-color: var(--dark-goldenrod);
  color: var(--seashell);
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.section {
  background-color: var(--seashell);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 12.5vh;
  padding-bottom: 12.5vh;
  display: flex;
}

.section.hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}

.section.video {
  padding-top: 20vh;
  padding-bottom: 5vh;
  overflow: hidden;
}

.section.height-auto {
  background-color: var(--seashell);
  padding-top: 20vh;
  position: relative;
  overflow: hidden;
}

.section.licensing {
  padding-top: 20vh;
}

.section.v1 {
  background-color: #ffe1d499;
  padding-top: 0;
}

.section.padding {
  padding-top: 5vh;
}

.section.hero-copy {
  min-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  position: relative;
  overflow: hidden;
}

.container {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 85.5%;
  display: flex;
  position: relative;
}

.container.left-alignment {
  align-items: flex-start;
}

.hero-heading {
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 8vw;
}

.hero-heading.family {
  line-height: 1.3;
}

.photos-loop-container {
  justify-content: space-between;
  align-items: center;
  width: 85.5%;
  display: flex;
  position: absolute;
}

.photos-loop {
  width: 25vw;
}

.photos-loop._2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.photo-wrap {
  width: 100%;
  height: 150vh;
}

.photo-wrap._2 {
  flex-direction: column;
  justify-content: center;
  display: flex;
}

.navigation {
  z-index: 1000;
  justify-content: space-between;
  align-items: center;
  width: 85.5%;
  display: flex;
  position: absolute;
  top: 20px;
}

.navigation.double {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}

.navigation-left {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  display: flex;
}

.navigation-right {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-button {
  border: 1px solid var(--dark-olive-green);
  color: var(--dark-olive-green);
  background-color: #0000;
  margin-left: 20px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: Lato, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  transition: color .6s cubic-bezier(.23, 1, .32, 1), background-color .6s cubic-bezier(.23, 1, .32, 1);
}

.nav-button:hover {
  background-color: var(--dark-olive-green);
  color: #fff;
}

.nav-button.w--current {
  display: none;
}

.phone-number {
  color: var(--dark-olive-green);
  font-family: Lato, sans-serif;
  font-size: 15px;
  line-height: 30px;
  transition: color .2s;
}

.phone-number:hover {
  color: var(--dark-goldenrod);
}

.menu-container {
  align-items: center;
  width: 100%;
  display: flex;
}

.logo-text {
  color: var(--seashell);
  white-space: nowrap;
  align-items: center;
  margin-bottom: 3px;
  margin-right: 5px;
  font-size: 16px;
  line-height: 30px;
}

.logo-text.w--current {
  color: var(--seashell);
}

.hamburger-wrap {
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  width: 30px;
  height: 30px;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.mobile-menu-bar {
  background-color: var(--dark-olive-green);
  width: 60%;
  height: 1px;
}

.gold-line-dot {
  background-color: var(--dark-goldenrod);
  border-radius: 6px;
  width: 8px;
  height: 8px;
  margin-bottom: 15px;
}

.gold-line {
  background-color: var(--dark-goldenrod);
  width: 2px;
  height: 100px;
  margin-bottom: 0;
}

.gold-text {
  color: var(--dark-goldenrod);
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.1;
  text-decoration: none;
}

.h2 {
  text-transform: uppercase;
  max-width: 450px;
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 48px;
  line-height: 1.1;
}

.h2.centered {
  text-align: center;
  max-width: none;
}

.decoration {
  width: 60px;
}

.gold-line-wrap {
  width: 2px;
  height: 100px;
  margin-bottom: 8px;
}

.text-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.text-wrap.centered {
  align-items: center;
  max-width: 875px;
}

.text-wrap.centered.sticky {
  position: sticky;
  top: 36%;
}

.image-wrap {
  background-color: #0000;
  width: 100%;
  height: 100%;
  margin-top: 7.5vh;
  position: relative;
}

.image {
  width: 100%;
}

.image-overlay {
  z-index: 100;
  background-color: var(--seashell);
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.grid {
  grid-column-gap: 4vw;
  grid-row-gap: 25vh;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 90%;
  display: grid;
}

.column {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.column.centered {
  align-items: center;
}

.column.desktop {
  display: none;
}

.h3-title {
  max-width: 450px;
  color: var(--dark-olive-green);
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 42px;
}

.h3-title.centered {
  color: var(--dark-olive-green);
  text-align: center;
  margin-bottom: 45px;
}

.green-container {
  background-color: var(--dark-sea-green);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 95%;
  padding-bottom: 25vh;
  display: flex;
}

.relative-image-1 {
  object-fit: cover;
  object-position: 50% 50%;
  min-width: 550px;
  max-width: 550px;
  min-height: 715px;
  max-height: 715px;
  margin-top: -7.5vh;
  position: relative;
}

.relative-image-2 {
  width: 300px;
  max-width: 300px;
  height: 390px;
  max-height: 390px;
  display: none;
  position: absolute;
  bottom: -13.9vh;
  right: -40px;
}

.paragraph {
  max-width: 450px;
}

.paragraph.butler {
  text-transform: uppercase;
  font-family: Butler, sans-serif;
  font-size: 24px;
}

.paragraph.bottom-margin, .paragraph.bottom-margin-copy {
  color: #000;
  text-align: center;
  margin-bottom: 45px;
}

.paragraph.sub {
  margin-left: 20px;
}

.paragraph.history {
  margin-bottom: 40px;
}

.video-container {
  z-index: 1;
  width: 95%;
  position: relative;
  top: -7.5vh;
}

.link-button {
  align-items: center;
  display: flex;
  position: relative;
}

.circle {
  background-color: #fff;
  border-radius: 75px;
  justify-content: flex-start;
  align-items: center;
  width: 75px;
  height: 75px;
  padding-left: 30px;
  display: flex;
  position: absolute;
}

.button-text {
  color: var(--dark-goldenrod);
  text-transform: uppercase;
  margin-left: 60px;
  font-family: Butler, sans-serif;
  font-size: 18px;
  font-style: italic;
  position: relative;
}

.button-icon {
  width: 15px;
}

.lightbox {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
}

.lightbox-icon {
  width: 50px;
  height: 50px;
  display: block;
  position: absolute;
}

.background-video {
  width: 90%;
  min-height: 80vh;
}

.home-photo-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: 300px 300px;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 7.5vh;
  display: grid;
  position: relative;
}

.team-photo {
  position: relative;
}

.team-photo._1 {
  background-image: url('../images/pexels-miquel-ferran-gomez-figueroa-3814446-1.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.team-photo._2 {
  background-image: url('../images/pexels-cottonbro-4253300.jpg');
  background-position: 50% 40%;
  background-repeat: no-repeat;
  background-size: cover;
}

.team-photo._3 {
  background-image: url('../images/pexels-cottonbro-4253312.jpg');
  background-position: 50% 100%;
  background-size: cover;
}

.team-photo._4 {
  background-image: url('../images/pexels-taryn-elliott-4457124.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
}

.footer {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 6.25vh;
  display: flex;
}

.footer-grid {
  grid-column-gap: 40px;
  grid-row-gap: 16px;
  border-top: 1px solid var(--dark-sea-green);
  border-bottom: 1px solid var(--dark-sea-green);
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 85.5%;
  padding-top: 12.5vh;
  padding-bottom: 12.5vh;
  display: grid;
}

.footer-utilities-wrap {
  justify-content: space-between;
  align-items: center;
  width: 85.5%;
  min-height: 80px;
  display: flex;
}

.copyright-text {
  color: var(--dark-olive-green);
  font-size: 14px;
}

.terms-and-privacy-wrap {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-link {
  color: var(--dark-olive-green);
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 14px;
  line-height: 1.7;
  transition: color .2s;
}

.footer-link:hover {
  color: var(--dark-goldenrod);
}

.footer-link.right-margin {
  margin-right: 20px;
}

.footer-link.delete {
  color: #fff;
  width: auto;
  padding-left: 0;
  padding-right: 0;
}

.footer-link.delete:hover {
  color: var(--dark-sea-green);
}

.footer-link.footer {
  padding-bottom: 0;
}

.footer-column {
  flex-direction: column;
  align-items: flex-start;
  max-width: 360px;
  display: flex;
}

.footer-title {
  text-transform: uppercase;
  margin-top: 0;
  font-size: 27px;
  font-weight: 400;
}

.footer-text {
  color: var(--dark-olive-green);
  margin-bottom: 20px;
  padding-top: 7px;
  padding-bottom: 7px;
  font-size: 14px;
  line-height: 1.7;
}

.footer-button {
  border: 1px solid var(--dark-olive-green);
  background-color: var(--dark-olive-green);
  color: #fff;
  padding-top: 12px;
  padding-bottom: 12px;
  font-family: Lato, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  transition: color .6s cubic-bezier(.23, 1, .32, 1), background-color .6s cubic-bezier(.23, 1, .32, 1);
}

.footer-button:hover {
  color: var(--dark-olive-green);
  background-color: #0000;
}

.footer-button.w--current {
  display: none;
}

.navigation-wrap {
  z-index: 1000;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: absolute;
}

.loading-animation-wrap {
  z-index: 2147483647;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0;
}

.overflow-hidden {
  overflow: hidden;
}

.contact-grid {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.contact-column {
  padding: 2.5rem;
}

.contact-column.centered {
  border-right: 1px solid var(--dark-sea-green);
  border-left: 1px solid var(--dark-sea-green);
}

.map {
  background-image: url('../images/Frame-16.png');
  background-position: 100% 0;
  background-size: auto;
  width: 100%;
  min-width: 100%;
  height: 100%;
  min-height: 500px;
}

.contact-text {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.contact-map {
  min-width: 100%;
  min-height: 600px;
  margin-bottom: 40px;
  margin-right: 0;
}

.contact-form-title {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 2.25rem;
}

.form-container {
  justify-content: center;
  align-items: center;
  display: flex;
}

.submit-button {
  border: 1px solid var(--dark-olive-green);
  width: 100%;
  color: var(--dark-olive-green);
  background-color: #0000;
  padding: 17px 32px;
  font-size: 15px;
  line-height: 2;
  transition: color .6s cubic-bezier(.23, 1, .32, 1), background-color .6s cubic-bezier(.23, 1, .32, 1);
}

.submit-button:hover {
  background-color: var(--dark-olive-green);
  color: #fff;
}

.field-label {
  color: var(--dark-olive-green);
  margin-top: 20px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.25;
}

.form-block {
  width: 100%;
  margin-bottom: 0;
}

.success-message {
  background-color: var(--dark-olive-green);
}

.success-text {
  color: #f7f4f0;
  font-size: 16px;
  line-height: 1.25;
}

.link-span {
  color: var(--dark-goldenrod);
  font-weight: 700;
}

.reservation-field {
  border-style: solid;
  border-width: 1px;
  border-color: transparent transparent var(--dark-olive-green);
  width: 100%;
  height: 35px;
  color: var(--dark-olive-green);
  background-color: #0000;
  padding-left: 0;
  font-size: 16px;
  line-height: 1.25;
}

.reservation-field:hover {
  border-style: none none solid;
  border-color: black black var(--dark-olive-green);
}

.reservation-field:active, .reservation-field:focus {
  border-style: none none solid;
  border-color: #222 #222 var(--dark-olive-green);
}

.reservation-field.message {
  height: 100px;
  margin-bottom: 40px;
}

.fixed-image-menu {
  background-image: url('../images/5fd6abfb5422073b2e3ee655_pexels-cottonbro-4253308-1.jpg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100vh;
}

.grid-image-overlay {
  z-index: 100;
  background-color: var(--seashell);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.grid-image-overlay._2, .grid-image-overlay._1 {
  display: none;
}

.large-photo-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: 300px 300px 300px;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-top: 7.5vh;
  display: grid;
  position: relative;
}

.text-grid {
  grid-column-gap: 120px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-top: 45px;
  display: grid;
}

.fixed-image-restaurant {
  background-image: url('../images/5fd627762a8c8a03e5a09c82_reuben-teo-JCKOyDMGmcI-unsplash-1-1.jpg');
  background-position: 0 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100vh;
}

.fixed-image-team {
  background-image: url('../images/group-chefs-working-kitchen.jpg');
  background-position: 50% 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  width: 100%;
  height: 100vh;
}

.menu-title-wrap {
  align-items: center;
  margin-bottom: 50px;
}

.menu-title {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 20px;
  font-size: 32px;
  line-height: 1;
  display: inline-block;
}

.menu-subtitle {
  font-size: 16px;
  display: inline-block;
}

.menu-list {
  width: 100%;
  padding-left: 0;
  list-style-type: none;
}

.menu-item {
  justify-content: space-between;
  display: flex;
}

.menu-wrap {
  width: 100%;
  max-width: 875px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}

.parallax-image-container {
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 4200px;
  display: flex;
  position: relative;
}

.parallax-image-wrap {
  flex-direction: row;
  justify-content: center;
  align-items: flex-end;
  display: flex;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.parallax-image {
  width: 33%;
  max-width: none;
  display: inline-block;
}

.parallax-image._4 {
  width: 33%;
  margin-bottom: 400px;
  position: relative;
  right: 14vw;
}

.parallax-image._1 {
  width: 33%;
  margin-bottom: 2350px;
  position: relative;
  left: 15vw;
}

.parallax-image._2 {
  width: 33%;
  margin-bottom: 3400px;
}

.parallax-image._3 {
  width: 33%;
  margin-bottom: 1300px;
}

.label {
  color: var(--dark-olive-green);
  margin-bottom: 10px;
}

.changelog-number-wrap {
  border: 2px solid var(--dark-sea-green);
  background-color: #0000;
  justify-content: center;
  align-items: center;
  width: 55px;
  height: 55px;
  display: flex;
}

.template-info-title {
  align-self: flex-start;
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 84px;
  line-height: 1.1;
}

.template-info-title.bottom-margin {
  margin-bottom: 45px;
}

.changelog-top-line {
  border-top: 2px solid var(--dark-sea-green);
  justify-content: space-between;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
}

.changelog-point {
  color: var(--dark-olive-green);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 32px;
  line-height: 1.1;
}

.changelog-text {
  color: var(--dark-olive-green);
  margin-top: 25px;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.5;
}

.changelog-text-container {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 67%;
  display: flex;
}

.changelog-number {
  color: var(--dark-olive-green);
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}

.changelog-container {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.licensing-text {
  align-self: flex-start;
  max-width: 450px;
  margin-bottom: 45px;
}

.typography-info-grid {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 50px;
  display: grid;
}

.styleguide-title-container {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 50px;
  padding: 20px;
  display: flex;
}

.styleguide-title-container.last {
  margin-bottom: 0;
}

.colors-info-container {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 750px;
  display: grid;
}

.style-guide-text {
  color: var(--dark-olive-green);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
}

.titles-style-guide {
  font-family: Butler, sans-serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.5;
}

.styleguide-color {
  width: 100%;
  padding-top: 100%;
}

.styleguide-color.bkg {
  background-color: var(--seashell);
  box-shadow: 2px 2px 6px #0a0a0a1a;
}

.styleguide-color.text, .styleguide-color.links {
  background-color: var(--dark-olive-green);
}

.text-style-guide {
  font-size: 60px;
  line-height: 1.5;
}

.styleguide-h2 {
  margin-top: 0;
  margin-bottom: 15px;
  line-height: 1.3;
}

.typography-square {
  background-color: var(--white);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 250px;
  display: flex;
}

.instagram-image-overlay {
  background-color: var(--seashell);
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.transparent-container {
  background-color: #0000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 95%;
  display: flex;
}

.transparent-grid {
  grid-column-gap: 5vw;
  grid-row-gap: 25vh;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 90%;
  margin-bottom: 25vh;
  display: grid;
}

.transparent-grid.no-bottom-margin {
  margin-bottom: 0;
}

.loading-animation {
  background-color: var(--dark-olive-green);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: absolute;
  top: 0;
}

.loader-wrap {
  justify-content: center;
  align-items: center;
  padding: 30px 20px;
  display: flex;
  position: relative;
}

.loader-logo {
  filter: contrast(200%) invert();
  width: 140px;
}

.loader-line {
  background-color: #fff;
  width: 6px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.loader-line._2 {
  width: 100%;
  height: 6px;
  top: auto;
  bottom: 0;
}

.loader-line._3 {
  width: 6px;
  height: 100%;
  inset: auto 0 0 auto;
}

.loader-line._4 {
  width: 100%;
  height: 6px;
  inset: 0 0 auto auto;
}

.instagram-photo {
  position: relative;
}

.instagram-photo._2 {
  background-image: url('../images/Bild-20.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.instagram-photo._3 {
  background-image: url('../images/Bild-15.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.instagram-photo._1 {
  background-image: url('../images/10.png');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.place-photo {
  position: relative;
}

.place-photo._1 {
  background-image: url('../images/pexels-maria-orlova-4915622.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.place-photo._2 {
  background-image: url('../images/patrick-schneider-Qackx5pq2ts-unsplash.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.place-photo._3 {
  background-image: url('../images/achim-ruhnau-lz5gwIR-A8I-unsplash.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.place-photo._4 {
  background-image: url('../images/pexels-simone-dasgoni-5547853.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
}

.nav-link {
  color: var(--dark-olive-green);
  font-family: Butler, sans-serif;
  font-size: 42px;
  transition: opacity .5s cubic-bezier(.77, 0, .175, 1);
  display: block;
}

.nav-link:hover {
  color: var(--dark-sea-green);
}

.menu-right {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: 80vh;
  padding-left: 5%;
  padding-right: 10%;
  display: flex;
}

.menu-text {
  color: #000;
  font-size: 16px;
  line-height: 1.6;
  transition: color .3s;
  display: block;
}

.menu-text:hover {
  color: var(--dark-sea-green);
}

.menu {
  z-index: 99;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0;
}

.menu-all-caps-text {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.menu-column {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.menu-small-text {
  color: #000;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.social-link {
  color: #000;
  margin-right: 15px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  transition: opacity .5s cubic-bezier(.77, 0, .175, 1);
}

.social-link:hover {
  opacity: .2;
}

.menu-left {
  background-color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 50%;
  height: 80vh;
  padding-left: 10%;
  padding-right: 5%;
  display: flex;
}

.menu-overflow-hidden {
  position: relative;
  overflow: hidden;
}

.menu-overflow-hidden.small-bottom-margin {
  margin-bottom: 5px;
}

.menu-overflow-hidden.medium-bottom-margin {
  margin-bottom: 13px;
}

.menu-overflow-hidden.large-bottom-margin {
  margin-bottom: 40px;
}

.delete {
  background-color: #14141d;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
}

.flowyak-banner {
  z-index: 2147483647;
  background-color: var(--dark-olive-green);
  color: #fff;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 12rem;
  padding: 1.25rem;
  display: flex;
  position: fixed;
  bottom: 10px;
  right: 10px;
}

.close-banner {
  cursor: pointer;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  line-height: 1;
  display: flex;
  position: absolute;
  top: .5rem;
  right: .5rem;
}

.banner-text {
  margin-bottom: 1rem;
  font-size: .875rem;
  line-height: 1.25rem;
}

.flowyak-banner-button {
  background-color: var(--dark-goldenrod);
  padding: .5rem 1rem;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.25rem;
  transition: background-color .3s;
  display: block;
}

.image-2 {
  object-fit: cover;
  min-width: 404px;
  min-height: 525.336px;
  max-height: 800px;
}

.image-3 {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 39% 39% 39% 0;
  min-width: 782px;
  max-width: 782px;
  min-height: 100px;
  max-height: 703.797px;
  box-shadow: 20px 20px 5px -1px #a3832a1f;
}

.image-4 {
  position: absolute;
}

.map-2 {
  min-width: auto;
  height: 600px;
  min-height: auto;
}

.image-5 {
  max-width: 150px;
  margin-bottom: 22px;
}

.f-header-grid-asymmetrical {
  grid-column-gap: 40px;
  text-align: center;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr .75fr;
  justify-content: center;
  align-items: center;
  display: flex;
}

.f-header-image-wrapper-bottom {
  border-radius: 12px 12px 0 0;
  justify-content: center;
  align-items: center;
  height: 600px;
  margin-top: 72px;
  display: flex;
  overflow: hidden;
}

.f-container-regular {
  width: 100%;
  max-width: none;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.f-header-section-special {
  margin-bottom: -120px;
  padding: 140px 5% 0;
  position: relative;
}

.f-h2-heading {
  color: var(--dark-olive-green);
  letter-spacing: -.04em;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 120px;
  line-height: 1;
}

.f-header-background-block {
  background-color: var(--white);
  width: 100%;
  height: 630px;
  position: absolute;
  inset: 0% 0% auto;
}

.f-margin-bottom-24 {
  margin-bottom: 10px;
}

.f-button-secondary {
  color: #160042;
  letter-spacing: -.02em;
  background-color: #fff;
  border: 1px solid #e4e6f1;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: border-color .3s, background-color .3s;
  display: flex;
}

.f-button-secondary:hover {
  background-color: #f3f5fb;
  border-color: #0000;
}

.f-image-cover {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.f-header-button-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.f-button-neutral {
  color: #fff;
  text-align: center;
  letter-spacing: -.02em;
  background-color: #160042;
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  min-width: 120px;
  min-height: 48px;
  padding: 12px 32px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .3s;
  display: flex;
}

.f-button-neutral:hover {
  background-color: #282556;
}

.f-paragraph-large {
  letter-spacing: -.02em;
  margin-bottom: 0;
  font-size: 18px;
  line-height: 32px;
}

.gradient-line-wrapper {
  max-width: 790px;
  margin-top: 20px;
}

.gradient-line-wrapper.home-version {
  z-index: 10;
  min-width: 690px;
  max-width: 690px;
  margin-top: 10px;
  position: relative;
}

.header-text-block {
  z-index: 3;
  max-width: 1000px;
  height: 120vh;
  min-height: 700px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 20vh;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

.home-header-image-block {
  z-index: 1;
  background-image: linear-gradient(#000, #000);
  width: 100vw;
  height: 105vh;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

.line {
  background-color: #fff;
  background-image: linear-gradient(to bottom, var(--dark-olive-green), var(--dark-olive-green));
  width: 100%;
  height: 4px;
  display: none;
}

.presentation-video-full-wrapper {
  max-width: 1250px;
  height: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding: 0 30px;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.home-text-block {
  z-index: 20;
  max-width: 620px;
  margin-top: 20px;
  position: relative;
}

.image-header {
  opacity: .9;
  object-fit: cover;
  background-image: linear-gradient(#00000080, #00000080);
  width: 100%;
  height: 100%;
}

.main-header {
  background-color: var(--seashell);
  opacity: 1;
  color: #fff;
  align-items: flex-end;
  width: 100vw;
  height: auto;
  min-height: auto;
  padding-bottom: 0;
  display: block;
  position: relative;
}

.home-intro-text {
  color: var(--white);
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 300;
  line-height: 34px;
  display: none;
}

.header-titles-wrapper {
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
  position: sticky;
  top: 10vh;
}

.header-gradient {
  z-index: 10;
  background-image: linear-gradient(#0000, #000);
  width: 100%;
  height: 40%;
  position: absolute;
  inset: auto 0% 0%;
}

.scroll-title-block-2 {
  z-index: 10;
  position: absolute;
  inset: auto 0% 10px auto;
}

.video-sticky-elements-wrapper {
  height: 790px;
  position: relative;
  top: 50%;
  transform: translate(0, -50%);
}

.homepage-title {
  color: var(--seashell);
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 20px;
  font-family: Butler, sans-serif;
  font-size: 120px;
  font-weight: 500;
  line-height: 90px;
}

.image-header-copy {
  opacity: .9;
  object-fit: cover;
  background-image: linear-gradient(#00000080, #00000080);
  width: 100%;
  height: 100%;
}

.scroll-title-block-1 {
  min-width: 890px;
  position: absolute;
  inset: 90px auto auto 0;
}

.scrolling-titles-wrapper {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% 0% auto;
  overflow: hidden;
}

.header-video-section {
  z-index: 2;
  height: 180vh;
  min-height: 730px;
  position: relative;
}

.header-video-section.video {
  height: 10vh;
}

.presentatie-video {
  z-index: 1;
  width: 80%;
  height: 600px;
  margin-left: auto;
  margin-right: auto;
  top: 55%;
  transform: translate(0, -50%);
  box-shadow: 7px 7px 60px -10px #0006;
}

.scroll-title {
  text-transform: uppercase;
  font-family: Butler, sans-serif;
  font-size: 120px;
  font-weight: 500;
  line-height: 90px;
}

.div-block {
  border-radius: 100%;
  position: static;
  inset: auto 0% 0% auto;
}

.image-6 {
  max-width: 290px;
}

.image-6.mt-48 {
  margin-top: 48px;
}

.image-7 {
  max-width: 150px;
}

.div-block-3 {
  justify-content: center;
  align-items: center;
  display: flex;
}

.menu-item-text-wrapper {
  cursor: pointer;
  transition: all .2s;
  display: inline-block;
}

.menu-item-text-wrapper:hover {
  text-shadow: 4px 4px 3px #ccc;
  transform: translate(-5px, -5px);
}

.marker-container {
  color: #aaa;
  justify-content: flex-end;
  align-items: center;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 18px;
  font-weight: 700;
  display: flex;
}

.marker-container.hide {
  opacity: 0;
}

.container-homepage {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80vh;
  display: flex;
}

.img-container-1b {
  z-index: 3;
  opacity: 0;
  position: absolute;
  transform: scale(.7)translate(-55%);
}

.grid-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto auto;
  grid-template-columns: 1fr 1.25fr;
  align-items: center;
  position: relative;
}

.img-container-3 {
  z-index: 4;
  position: absolute;
  transform: scale(.8)translate(-35%);
}

.section-homepage {
  width: 100%;
  height: 80vh;
}

.menu-item-header-container {
  color: var(--dark-olive-green);
  padding: 5px;
  font-family: Great Vibes, cursive;
  font-size: 36px;
  line-height: 48px;
}

.showcase-slider-columns {
  align-items: center;
  display: flex;
}

.images-showcase-col {
  text-align: center;
}

.menu-item-text-container {
  color: #aaa;
  margin: 10px;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

.img-container-1 {
  z-index: 6;
  position: absolute;
}

.img-wrapper-2 {
  color: #fff;
  background-color: #7bcea3;
  background-image: url('../images/WhatsApp-Image-2024-04-18-at-11.31.58.jpeg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 500px;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-size: 150px;
  line-height: 150px;
  display: flex;
  position: relative;
  box-shadow: -11px 11px 15px #0003;
}

.showcase-images-container {
  position: relative;
}

.images-text-menu-col {
  z-index: 999;
  left: -215px;
}

.img-container-2b {
  z-index: 2;
  opacity: 0;
  position: absolute;
  transform: scale(.7)translate(-55%);
}

.img-wrapper-3 {
  color: #fff;
  background-color: #92a4c2;
  background-image: url('../images/WhatsApp-Image-2024-04-21-at-18.09.49.jpeg');
  background-position: 0 0;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 500px;
  font-size: 150px;
  line-height: 150px;
  display: flex;
  position: relative;
  box-shadow: -11px 11px 15px #0003;
}

.showcase-images-wrapper {
  perspective: 1000px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  transform: perspective(1000px);
}

.img-wrapper-1 {
  color: #fff;
  text-align: center;
  background-color: #d66262;
  background-image: url('../images/WhatsApp-Image-2024-04-18-at-11.31.58-4.jpeg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 350px;
  height: 500px;
  font-family: Impact, Haettenschweiler, Franklin Gothic Bold, Charcoal, sans-serif;
  font-size: 150px;
  line-height: 150px;
  display: flex;
  position: relative;
  box-shadow: -11px 11px 15px #0003;
}

.marker-number {
  color: #fff;
}

.img-container-2 {
  z-index: 5;
  position: absolute;
  transform: scale(.9)translate(-20%);
}

.showcase-slider-container {
  width: 100%;
  max-width: 1300px;
}

.menu-item-text {
  color: #333;
  font-family: Lato, sans-serif;
  font-size: 24px;
  font-weight: 400;
  display: inline-block;
  transform: translate(0);
}

.menu-item-text:hover {
  text-shadow: none;
}

.marker-line {
  perspective-origin: 100%;
  transform-origin: 100%;
  background-color: #ccc;
  width: 0%;
  height: 1px;
  margin: 10px;
}

.marker-line.show {
  width: 100%;
}

.text-block {
  font-family: Butler, sans-serif;
}

.hero-section {
  color: #302e2f;
  background-color: #efeeea;
  flex-direction: column;
  min-height: 60vh;
  padding-top: 88px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.hero-section.bottom {
  background-color: var(--seashell);
}

.page-hero {
  flex-flow: column;
  display: flex;
}

.container-2 {
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 48px;
  padding-right: 48px;
}

.hero-image {
  height: 65vh;
  padding-bottom: 0%;
  position: relative;
}

.hero-image.narrow {
  height: 70vh;
}

.grid-image {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.grid-image._2 {
  object-position: 50% 70%;
}

.grid-image._2.about, .grid-image._2.about-copy {
  object-fit: cover;
  object-position: 50% 15%;
}

.grid-image._1 {
  object-position: 0% 50%;
}

.intro-rows {
  grid-column-gap: 148px;
  grid-row-gap: 148px;
  flex-direction: column;
  display: flex;
}

.container-s {
  width: 100%;
  max-width: 700px;
}

.intro-image-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: end stretch;
  display: grid;
}

.intro-image-grid.reverse {
  place-items: end start;
}

.intro-grid-image-xl {
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  position: relative;
}

.intro-grid-left {
  padding-bottom: 0%;
  position: relative;
}

.intro-grid-right {
  position: relative;
}

.content-row-xs {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.intro-grid-image-xs {
  width: 20vw;
  height: 0;
  padding-bottom: 100%;
  padding-left: 0%;
  position: relative;
}

.intro-grid-image-xs._2 {
  width: 35vw;
}

.section-2 {
  background-color: #efeeea;
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-2.bg-beige {
  color: #302e2f;
  background-color: #fff;
  display: block;
}

.text-quote {
  color: var(--dark-olive-green);
  letter-spacing: -2px;
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Butler, sans-serif;
  font-size: 46px;
  font-weight: 300;
  line-height: 1.3em;
}

.intro-grid-rows {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-flow: column;
  display: flex;
}

.text-small {
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.4em;
}

.text-small.muted {
  opacity: .6;
}

.fade-in {
  width: 100%;
}

.grid-2-col {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-large {
  letter-spacing: 0;
  margin-bottom: 0;
  font-size: 22px;
  font-weight: 300;
  line-height: 1.6em;
}

.micro-title-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
}

.info-section {
  background-color: #efeeea;
}

.info-section.about {
  background-color: var(--seashell);
}

.container-xs {
  width: 100%;
  max-width: 360px;
}

.heading-style-4 {
  letter-spacing: -2px;
  text-transform: none;
  font-family: Butler, sans-serif;
  font-size: 42px;
  font-weight: 400;
  line-height: 1.2em;
}

.info-content {
  background-image: none;
  background-position: 0 0;
  background-size: auto;
  padding-top: 184px;
  padding-bottom: 184px;
}

.info-content.copy {
  background-image: none;
  padding-top: 60px;
  padding-bottom: 100px;
}

.square-image-xs {
  width: 200px;
  height: 200px;
}

.info-text-content {
  grid-column-gap: 48px;
  grid-row-gap: 48px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  color: #fff;
  letter-spacing: 0;
  text-transform: none;
  white-space: nowrap;
  word-break: normal;
  background-color: #451500;
  background-image: linear-gradient(0deg, #0000, #ffffff24);
  border: 1px #451500;
  border-radius: 40px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  min-width: 180px;
  height: 40px;
  padding: 0 40px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.button:hover {
  opacity: .83;
}

.button.emphasis {
  color: #451500;
  text-transform: none;
  background-color: #f2e4d6;
  background-image: linear-gradient(#0000, #2929292e);
  border-style: none;
  border-color: #f2e4d6;
  font-weight: 400;
}

.sidebar-row {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.sidebar-row.spaced {
  grid-column-gap: 92px;
  grid-row-gap: 92px;
}

.uppercase-text {
  letter-spacing: .5px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4em;
}

.micro-title {
  border-bottom: 1px solid #0000000d;
  padding-top: 24px;
  padding-bottom: 24px;
}

.sidebar-row-footer {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.image-8 {
  max-width: 100px;
}

.container-3 {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 85.5%;
  display: flex;
  position: relative;
}

.container-3.left-alignment {
  align-items: flex-start;
}

.section-3 {
  background-color: #f8f0eb;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 12.5vh;
  padding-bottom: 12.5vh;
  display: flex;
}

.section-3.height-auto, .section-3.height-auto-copy {
  background-color: #f8f0eb;
  padding-top: 20vh;
  position: relative;
  overflow: hidden;
}

.seiseralm {
  max-width: 200px;
  margin-bottom: 0;
}

.fs-cc-manager_trigger {
  display: none;
}

.fs-cc-banner_text-link {
  border-bottom: 2px solid var(--dark-goldenrod);
  color: var(--dark-olive-green);
  -webkit-text-stroke-color: #ff4b1f;
  font-weight: 400;
  text-decoration: none;
}

.fs-cc-banner_close-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.fs-cc-prefs_buttons-wrapper {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-end;
  margin-top: 2rem;
  margin-right: -.5rem;
  display: flex;
}

.fs-cc-prefs_checkbox {
  z-index: 1;
  opacity: 0;
  cursor: pointer;
  width: 100%;
  height: 100%;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs_trigger {
  display: none;
}

.fs-cc-prefs_overlay {
  z-index: -1;
  background-color: #1111118c;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.fs-cc-prefs_button {
  border: 2px solid var(--dark-olive-green);
  background-color: var(--dark-sea-green);
  color: var(--dark-olive-green);
  border-radius: 0;
  margin-right: .5rem;
  padding: .625rem 1.5rem;
  font-size: .875rem;
  font-weight: 700;
}

.fs-cc-prefs_button:hover {
  color: var(--dark-goldenrod);
}

.fs-cc-prefs_button.fs-cc-button-alt {
  border-color: var(--dark-olive-green);
  color: var(--dark-goldenrod);
  background-color: #fff;
}

.fs-cc-banner_button {
  border: 2px solid var(--dark-olive-green);
  background-color: var(--dark-sea-green);
  min-width: 8.75rem;
  color: var(--dark-olive-green);
  text-align: center;
  border-radius: 0;
  margin-left: 1rem;
  padding: .625rem 1.25rem;
  font-size: 1rem;
}

.fs-cc-banner_button:hover {
  color: var(--dark-goldenrod);
}

.fs-cc-banner_button.fs-cc-button-alt {
  border-color: var(--dark-olive-green);
  color: var(--dark-olive-green);
  background-color: #f5f5f5;
  border-radius: 0;
}

.fs-cc-prefs_close-icon {
  color: #021a7c;
  width: 1rem;
  height: 1rem;
}

.fs-cc-banner_component {
  z-index: 998;
  background-color: #f5f6ff;
  border-top: 1px solid #4353ff29;
  padding: 1.5rem 2rem;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.fs-cc-prefs_option {
  border-bottom: 1px solid #33333326;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.fs-cc-manager_button {
  color: #333;
  cursor: pointer;
  background-color: #fff;
  border-radius: 999rem;
  flex-direction: column;
  padding: .625rem;
  transition: color .2s;
  display: flex;
}

.fs-cc-manager_button:hover {
  color: #4353ff;
}

.fs-cc-prefs_checkbox-label {
  display: none;
}

.fs-cc-prefs_component {
  z-index: 10000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  padding: 2rem;
  display: none;
  position: fixed;
  inset: 0%;
}

.fs-cc-manager_component {
  z-index: 999;
  display: none;
  position: fixed;
  inset: auto auto 1.25rem 1.25rem;
}

.fs-cc-prefs_space-medium {
  margin-bottom: 2.5rem;
}

.fs-cc-banner_buttons-wrapper {
  flex-direction: row;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.fs-cc-prefs_submit-hide {
  display: none;
}

.fs-cc-banner_text {
  color: #616161;
  margin-right: 1.5rem;
}

.fs-cc-banner_trigger {
  display: none;
}

.fs-cc-prefs_content {
  height: 100%;
  padding: 2.5rem 2rem;
  overflow: scroll;
}

.fs-cc-prefs_close {
  z-index: 1;
  color: #333;
  cursor: pointer;
  background-color: #f5f6ff;
  border-radius: 100%;
  padding: .625rem;
  font-size: 1.25rem;
  text-decoration: none;
  position: absolute;
  inset: -.75rem -.75rem auto auto;
  box-shadow: -1px 1px 12px #3333331a;
}

.fs-cc-prefs_text {
  color: #0a202e;
  font-size: .75rem;
}

.text-span-4 {
  font-weight: 700;
}

.fs-cc-prefs_toggle-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.fs-cc-manager_icon {
  width: 2rem;
  height: 2rem;
}

.link-2 {
  color: #070707;
}

.fs-cc-banner_close {
  opacity: 1;
  cursor: pointer;
  background-color: #fff;
  border-radius: 999rem;
  margin-left: .75rem;
  padding: .625rem;
  box-shadow: 1px 1px 12px #0000001a;
}

.fs-cc-banner_container {
  align-items: center;
  width: 100%;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.fs-cc-prefs_checkbox-field {
  background-color: #ccc;
  border-radius: 999rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: stretch;
  width: 2.75rem;
  height: 1.5rem;
  margin-bottom: 0;
  padding: .125rem;
  display: flex;
  position: relative;
}

.fs-cc-prefs_title {
  color: #0a202e;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2em;
}

.fs-cc-prefs_space-small {
  margin-bottom: .75rem;
}

.fs-cc-prefs_toggle {
  background-color: #fff;
  border-radius: 999px;
  width: 1.25rem;
  height: 1.25rem;
}

.fs-cc-prefs_form {
  background-color: #fff;
  border-radius: 0;
  width: 100%;
  max-width: 36rem;
  height: 100%;
  max-height: 70vh;
  margin-bottom: 0;
  position: relative;
}

.fs-cc-prefs_label {
  color: var(--dark-olive-green);
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 2rem;
  font-size: 1rem;
  font-weight: 700;
}

.wg-element-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.wg-element-wrapper.sw4, .wg-element-wrapper.sw4-copy {
  margin-top: 10px;
}

.wg-element-wrapper.sw5 {
  display: flex;
}

.wg-element-wrapper.sw4-copy {
  margin-top: 10px;
}

.wg-element-wrapper.desktop {
  display: flex;
}

.wg-element-wrapper.mobile {
  display: none;
}

.wg-selector3-text-lang2 {
  text-transform: uppercase;
  font-family: Butler, sans-serif;
  font-size: 14px;
}

.wg-selector-3-line {
  width: 2rem;
  height: 2px;
  position: relative;
  overflow: hidden;
}

.wg-selector-3-line-fill {
  background-color: #000;
  width: 100%;
  height: 100%;
}

.wg-selector-3-line-fill.f2 {
  background-color: var(--dark-goldenrod);
  position: absolute;
  inset: 0% auto auto 0%;
  transform: translate(-100%);
}

.wg-selector-3-line-fill.f1 {
  position: relative;
}

.wg-selector-3-line-fill.f1-copy {
  background-color: var(--white);
  position: relative;
}

.wg-selector3-text-lang1 {
  color: var(--dark-goldenrod);
  text-transform: uppercase;
  font-family: Butler, sans-serif;
  font-size: 14px;
}

.wg-selector-3 {
  color: #000;
  padding: 10px;
  font-weight: 700;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.wg-selector-3.w--current {
  cursor: default;
}

.wg-selector-3.s1 {
  color: var(--dark-goldenrod);
}

.floating-label {
  z-index: 555;
  color: #fff;
  background-color: #c0b8a3;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8px 12px;
  display: flex;
  position: absolute;
  top: 180px;
  right: 0;
}

.m-0 {
  text-align: right;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Butler, sans-serif;
}

.m-0.mobile {
  display: none;
}

.wg-selector3-text-lang2-copy {
  color: var(--white);
  text-transform: uppercase;
  font-family: Butler, sans-serif;
  font-size: 14px;
}

.wg-selector3-text-lang1-copy {
  color: var(--dark-goldenrod);
  text-transform: uppercase;
  font-family: Butler, sans-serif;
  font-size: 14px;
}

.wg-dropdown-2 {
  flex-direction: column;
  align-items: stretch;
  width: auto;
  font-weight: 700;
}

.wg-dd-2-togle {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2rem;
  padding: 0 15px;
  transition: color .2s;
  display: flex;
}

.wg-dd-2-togle:hover, .wg-dd-2-togle.w--open {
  color: var(--dark-olive-green);
}

.wg-dd-2-list {
  transform-origin: 100% 0;
  background-color: #fff;
  padding-top: 2.5rem;
  padding-bottom: .5rem;
  inset: -.5rem auto auto 0%;
  overflow: hidden;
  box-shadow: 0 3px 11px -1px #4049ff1c;
}

.wg-dropdown-2-link {
  color: #000;
  justify-content: flex-start;
  align-items: center;
  height: 2rem;
  padding: 0 1rem;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.wg-dropdown-2-link:hover {
  color: var(--dark-goldenrod);
}

.wg-dropdown-2-link.w--current {
  color: var(--dark-olive-green);
}

.text-block-2 {
  color: var(--seashell);
  font-size: 14px;
  font-weight: 400;
}

.wg-dd-2-togle-2 {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 2rem;
  padding: 0 15px;
  transition: color .2s;
  display: flex;
}

.wg-dd-2-togle-2:hover {
  color: #ff6640;
}

.wg-dropdown-2-link-2 {
  color: #000;
  justify-content: flex-start;
  align-items: center;
  height: 2rem;
  padding: 0 1rem;
  text-decoration: none;
  transition: color .2s;
  display: flex;
}

.wg-dropdown-2-link-2:hover {
  color: #ff6640;
}

.m-0-2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Butler, sans-serif;
}

.m-0-2.small {
  font-size: 15px;
}

.wg-dropdown-1 {
  text-transform: uppercase;
  flex-direction: column;
  align-items: stretch;
  width: auto;
  font-weight: 700;
}

.wg-dd-1-togle {
  z-index: 1;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  flex-direction: column;
  width: 100%;
  padding: 10px 15px;
}

.wg-dd-1-togle:hover {
  background-color: var(--dark-goldenrod);
  color: #fff;
}

.wg-dd-1-togle.w--open:hover {
  background-color: var(--dark-olive-green);
}

.wg-dd-1-list {
  background-color: #fff;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  overflow: hidden;
  box-shadow: 0 -13px 50px 3px #11179c12;
}

.wg-dropdown-1-link {
  color: #000;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding: 10px 15px;
  text-decoration: none;
  transition: background-color .1s;
  display: flex;
}

.wg-dropdown-1-link:hover {
  background-color: var(--dark-olive-green);
  color: #fff;
}

.div-block-4 {
  margin-top: 40px;
}

.image-header-2 {
  opacity: .9;
  object-fit: cover;
  background-image: linear-gradient(#00000080, #00000080);
  width: 100%;
  height: 100%;
}

.image-9 {
  width: 100%;
}

.instagram-image-overlay-2 {
  background-color: #f8f0eb;
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
}

.div-block-5 {
  border-radius: 100%;
  position: static;
  inset: auto 0% 0% auto;
}

.image-10 {
  width: 100%;
}

.image-header-3, .image-header-4 {
  opacity: .9;
  object-fit: cover;
  background-image: linear-gradient(#00000080, #00000080);
  width: 100%;
  height: 100%;
}

.image-11 {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: 50% 20%;
  border-radius: 39% 39% 39% 0;
  min-width: 782px;
  max-width: 782px;
  min-height: 100px;
  max-height: 703.797px;
  box-shadow: 20px 20px 5px -1px #a3832a1f;
}

.div-block-6 {
  grid-column-gap: 13px;
  grid-row-gap: 13px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  margin-bottom: 20px;
  display: flex;
}

@media screen and (min-width: 1440px) {
  .section.v1 {
    background-color: var(--seashell);
  }

  .image-3 {
    aspect-ratio: 1;
    box-shadow: none;
    filter: none;
    object-position: 70% 50%;
  }

  .presentation-video-full-wrapper {
    max-width: 1700px;
    min-height: 930px;
  }

  .header-titles-wrapper {
    top: 5vh;
  }

  .video-sticky-elements-wrapper {
    height: 850px;
  }

  .scroll-title-block-1 {
    min-width: 1340px;
  }

  .presentatie-video {
    width: 70%;
    height: 490px;
  }

  .scroll-title {
    font-size: 137px;
    line-height: 100px;
  }

  .div-block-2 {
    outline-offset: 0px;
    outline: 3px #451500;
    max-width: 40%;
    margin-top: 60px;
  }

  .image-6 {
    max-width: 250px;
  }

  .image-11 {
    aspect-ratio: 1;
    box-shadow: none;
    filter: none;
    object-position: 70% 50%;
  }
}

@media screen and (min-width: 1920px) {
  .h1-utilities {
    font-size: 48px;
  }

  .h2 {
    max-width: 550px;
    font-size: 64px;
  }

  .column.centered.text {
    justify-content: center;
    align-items: center;
  }

  .column.text {
    justify-content: center;
    align-items: flex-start;
  }

  .column.text.schamrk {
    justify-content: center;
    align-items: center;
    padding-left: 0;
  }

  .h3-title {
    text-align: center;
    max-width: 550px;
    font-size: 64px;
  }

  .relative-image-2, .video-container {
    display: none;
  }

  .home-photo-grid {
    grid-template-rows: 400px 400px;
  }

  .team-photo._4 {
    background-image: url('../images/pexels-taryn-elliott-4457124.jpg');
    background-position: 50% 0;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .contact-column.centered {
    padding: 3rem;
  }

  .contact-map {
    margin-right: 3rem;
  }

  .large-photo-grid {
    grid-template-rows: 400px 400px 400px;
  }

  .parallax-image-container {
    height: 5000px;
  }

  .parallax-image._1 {
    margin-bottom: 2750px;
  }

  .parallax-image._2 {
    margin-bottom: 4000px;
  }

  .parallax-image._3 {
    margin-bottom: 1500px;
  }

  .loader-line {
    width: 3px;
  }

  .loader-line._2 {
    height: 3px;
  }

  .loader-line._3 {
    width: 3px;
  }

  .loader-line._4 {
    height: 3px;
  }

  .home-text-block {
    display: none;
  }

  .presentatie-video {
    width: 1148px;
    height: 600px;
    min-height: 900px;
  }

  .div-block-2 {
    margin-top: 60px;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 48px;
  }

  h3 {
    font-size: 42px;
  }

  h4 {
    font-size: 30px;
  }

  h5 {
    font-size: 24px;
  }

  h6 {
    font-size: 18px;
  }

  p, blockquote {
    font-size: 16px;
  }

  .form-button {
    padding: 16px 27px;
  }

  .error-message {
    max-width: 738px;
  }

  .utilities-section {
    padding-left: 30px;
    padding-right: 30px;
  }

  .section {
    padding: 75px 35px;
  }

  .section.video {
    padding-top: 140px;
    padding-bottom: 30px;
  }

  .section.licensing {
    padding-top: 120px;
  }

  .container, .photos-loop-container {
    width: 100%;
  }

  .photos-loop {
    width: 33vw;
  }

  .navigation {
    width: 100%;
    padding-left: 35px;
    padding-right: 35px;
  }

  .h2 {
    margin-bottom: 25px;
    font-size: 42px;
  }

  .h2.centered {
    font-size: 42px;
  }

  .text-wrap.centered {
    max-width: none;
  }

  .grid {
    width: 95%;
  }

  .h3-title {
    font-size: 32px;
  }

  .green-container {
    width: 100%;
    padding-bottom: 165px;
  }

  .green-container.no-video {
    padding-bottom: 0;
  }

  .relative-image-1 {
    margin-top: -45px;
  }

  .circle {
    width: 65px;
    height: 65px;
    padding-left: 25px;
  }

  .lightbox-icon {
    display: block;
  }

  .background-video {
    width: 100%;
    min-height: 70vh;
  }

  .home-photo-grid {
    grid-template-rows: 260px 260px;
    width: 100%;
    max-width: none;
  }

  .footer {
    padding-top: 45px;
  }

  .footer-grid {
    padding-top: 75px;
    padding-bottom: 75px;
  }

  .footer-column {
    max-width: 250px;
  }

  .footer-title {
    font-size: 24px;
  }

  .contact-grid {
    grid-row-gap: 60px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
  }

  .contact-column {
    padding: 0;
  }

  .contact-column.centered {
    padding-left: 2.5rem;
  }

  .large-photo-grid {
    grid-template-rows: 260px 260px;
    width: 100%;
    max-width: none;
    margin-top: 45px;
  }

  .menu-wrap {
    margin-bottom: 75px;
  }

  .parallax-image-container {
    width: 100%;
    max-width: none;
    height: 2800px;
  }

  .parallax-image._4 {
    margin-bottom: 400px;
  }

  .parallax-image._1 {
    margin-bottom: 1600px;
  }

  .parallax-image._2 {
    margin-bottom: 2200px;
  }

  .parallax-image._3 {
    margin-bottom: 1000px;
  }

  .label {
    margin-bottom: 5px;
  }

  .changelog-number-wrap {
    align-self: flex-start;
    width: 55px;
    height: 55px;
  }

  .template-info-title {
    font-size: 64px;
  }

  .changelog-point {
    font-size: 27px;
  }

  .changelog-text {
    margin-top: 15px;
    font-size: 18px;
  }

  .changelog-text-container {
    width: 635px;
  }

  .changelog-number {
    font-size: 28px;
  }

  .style-guide-container {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    display: flex;
  }

  .colors-info-container {
    width: 100%;
  }

  .style-guide-text {
    font-size: 18px;
  }

  .styleguide-h2 {
    font-size: 48px;
  }

  .transparent-container {
    width: 100%;
  }

  .transparent-container.no-video {
    padding-bottom: 0;
  }

  .transparent-grid {
    width: 100%;
  }

  .f-header-grid-asymmetrical {
    grid-template-columns: 1fr;
  }

  .gradient-line-wrapper.home-version {
    max-width: 620px;
  }

  .presentation-video-full-wrapper {
    padding-left: 20px;
    padding-right: 20px;
  }

  .scroll-title-block-2 {
    bottom: -10px;
  }

  .video-sticky-elements-wrapper {
    height: 710px;
  }

  .homepage-title {
    font-size: 90px;
    line-height: 70px;
  }

  .scroll-title-block-1 {
    top: 75px;
  }

  .presentatie-video {
    width: 100%;
    height: 410px;
    top: 55%;
  }

  .scroll-title {
    font-size: 100px;
  }

  .hero-section {
    min-height: 0;
  }

  .container-2 {
    padding-left: 32px;
    padding-right: 32px;
  }

  .section-2 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .text-quote {
    font-size: 38px;
    line-height: 52px;
  }

  .intro-grid-rows {
    grid-column-gap: 92px;
    grid-row-gap: 92px;
    flex-flow: column;
    display: flex;
  }

  .text-small {
    margin-bottom: 0;
  }

  .grid-2-col {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
    grid-template-columns: 1fr;
  }

  .grid-2-col.md-gap-xl {
    grid-column-gap: 128px;
    grid-row-gap: 128px;
  }

  .heading-style-4 {
    font-size: 42px;
  }

  .info-content {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .sidebar-row.spaced {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
  }

  .container-3 {
    width: 100%;
  }

  .section-3 {
    padding: 75px 35px;
  }

  .fs-cc-banner_buttons-wrapper {
    margin-top: 1rem;
  }

  .fs-cc-banner_text {
    margin-right: 0;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 30px;
  }

  h4 {
    font-size: 24px;
  }

  h5 {
    font-size: 21px;
  }

  h6 {
    font-size: 16px;
  }

  p {
    font-size: 15px;
  }

  ul, ol, strong, em {
    font-size: 16px;
  }

  blockquote {
    font-size: 15px;
  }

  .error-message {
    width: 100%;
    max-width: none;
  }

  .utilities-section {
    padding-left: 25px;
    padding-right: 25px;
  }

  .utilities-container {
    padding: 50px;
  }

  .utilities-button {
    font-size: 16px;
  }

  .section {
    padding: 45px 25px;
  }

  .section.video {
    padding-top: 120px;
    padding-bottom: 15px;
  }

  .section.licensing {
    padding-top: 100px;
  }

  .hero-heading {
    font-size: 48px;
  }

  .navigation {
    padding-left: 25px;
    padding-right: 25px;
  }

  .logo-text {
    font-size: 14px;
  }

  .gold-line-dot {
    width: 6px;
    height: 6px;
  }

  .gold-line {
    width: 1px;
    height: 60px;
  }

  .h2, .h2.centered {
    font-size: 36px;
  }

  .gold-line-wrap {
    width: 1px;
    height: 60px;
  }

  .text-wrap.centered {
    max-width: none;
  }

  .image {
    order: 0;
  }

  .grid {
    grid-row-gap: 90px;
    grid-template-columns: 1fr;
    width: 90%;
  }

  .column.centered {
    align-items: flex-start;
  }

  .column.centered.text {
    margin-top: 0;
  }

  .column.text {
    margin-top: -40px;
    margin-bottom: 20px;
  }

  .h3-title {
    font-size: 36px;
  }

  .h3-title.centered {
    text-align: left;
  }

  .green-container {
    padding-bottom: 150px;
  }

  .green-container.no-video {
    padding-bottom: 45px;
  }

  .relative-image-1 {
    margin-top: -30px;
  }

  .paragraph.butler {
    font-size: 21px;
  }

  .paragraph.bottom-margin, .paragraph.bottom-margin-copy {
    margin-bottom: 40px;
  }

  .video-container {
    width: 90%;
  }

  .home-photo-grid {
    margin-top: 100px;
  }

  .footer {
    padding-top: 30px;
  }

  .footer-grid {
    padding-top: 45px;
    padding-bottom: 45px;
  }

  .copyright-text, .footer-link {
    font-size: 13px;
  }

  .footer-column {
    max-width: 220px;
  }

  .footer-title {
    font-size: 21px;
  }

  .footer-text {
    font-size: 13px;
  }

  .contact-grid {
    grid-row-gap: 45px;
  }

  .contact-column.centered {
    padding-left: 30px;
  }

  .contact-map {
    margin-right: 30px;
  }

  .large-photo-grid {
    margin-top: 30px;
  }

  .fixed-image-restaurant {
    background-position: 50%;
  }

  .menu-title-wrap {
    margin-bottom: 30px;
  }

  .menu-wrap {
    margin-bottom: 60px;
  }

  .menu-wrap.last {
    margin-bottom: 0;
  }

  .label {
    font-size: 14px;
  }

  .changelog-number-wrap {
    order: -1;
    width: 45px;
    height: 45px;
    margin-bottom: 30px;
  }

  .template-info-title {
    font-size: 48px;
  }

  .template-info-title.bottom-margin {
    margin-bottom: 30px;
  }

  .changelog-top-line {
    flex-direction: column;
  }

  .changelog-point {
    font-size: 24px;
  }

  .changelog-text {
    font-size: 16px;
  }

  .changelog-text-container {
    width: 100%;
  }

  .changelog-number {
    font-size: 24px;
  }

  .licensing-text {
    margin-bottom: 35px;
  }

  .typography-info-grid {
    width: 100%;
  }

  .style-guide-text {
    font-size: 16px;
  }

  .styleguide-h2 {
    font-size: 36px;
  }

  .typography-square {
    width: 100%;
  }

  .transparent-container.no-video {
    padding-bottom: 45px;
  }

  .transparent-grid {
    grid-row-gap: 30px;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-bottom: 60px;
  }

  .nav-link {
    font-size: 24px;
  }

  .menu-text, .menu-all-caps-text {
    font-size: 15px;
  }

  .menu-small-text, .social-link {
    font-size: 14px;
  }

  .menu-overflow-hidden.medium-bottom-margin {
    margin-bottom: 10px;
  }

  .menu-overflow-hidden.large-bottom-margin {
    margin-bottom: 15px;
  }

  .f-header-section-special {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .f-h2-heading {
    font-size: 44px;
  }

  .header-text-block {
    height: 100vh;
    min-height: 600px;
    padding-bottom: 5vh;
  }

  .presentation-video-full-wrapper {
    min-height: 860px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-intro-text {
    font-size: 22px;
    line-height: 33px;
  }

  .scroll-title-block-2 {
    bottom: 10px;
  }

  .video-sticky-elements-wrapper {
    height: 530px;
  }

  .homepage-title {
    margin-bottom: 10px;
    font-size: 70px;
    line-height: 60px;
  }

  .scroll-title-block-1 {
    top: 50px;
  }

  .header-video-section {
    height: 200vh;
  }

  .presentatie-video {
    height: 280px;
    top: 54%;
  }

  .scroll-title {
    font-size: 80px;
    line-height: 70px;
  }

  .hero-section {
    min-height: 0;
    padding-top: 64px;
  }

  .container-2 {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-image {
    width: 100vw;
    height: 100%;
    margin-left: -24px;
    margin-right: -24px;
    padding-bottom: 79%;
    position: relative;
    inset: 0% auto auto 0%;
  }

  .hero-image.narrow {
    margin-left: -24px;
    margin-right: -24px;
  }

  .intro-rows {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .container-s {
    max-width: 420px;
  }

  .intro-grid-image-xs {
    width: 25vw;
  }

  .section-2 {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .text-quote {
    letter-spacing: -1px;
    font-size: 32px;
    line-height: 1.4em;
  }

  .intro-grid-rows {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
  }

  .text-small {
    margin-bottom: 0;
    font-size: 14px;
  }

  .grid-2-col {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
    grid-template-columns: 1fr;
  }

  .grid-2-col.md-gap-xl {
    grid-column-gap: 92px;
    grid-row-gap: 92px;
  }

  .text-large {
    font-size: 20px;
    line-height: 28px;
  }

  .micro-title-grid {
    align-items: center;
  }

  .heading-style-4 {
    font-size: 36px;
  }

  .info-content {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .square-image-xs {
    width: 160px;
    height: 160px;
  }

  .sidebar-row.spaced {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .micro-title {
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .section-3 {
    padding: 45px 25px;
  }

  .fs-cc-banner_container {
    flex-direction: column;
    align-items: flex-start;
  }

  .fs-cc-prefs_title {
    font-size: 1.25rem;
  }

  .image-9, .image-10 {
    order: 0;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 30px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 21px;
  }

  p, ul, ol, strong, em {
    font-size: 15px;
  }

  blockquote {
    font-size: 14px;
  }

  .form-button {
    flex: none;
    align-self: stretch;
  }

  .input-field {
    margin-bottom: 10px;
  }

  .utilities-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .utilities-container {
    padding: 40px;
  }

  .h1-utilities {
    font-size: 36px;
  }

  .utilities-text {
    margin-bottom: 25px;
    font-size: 18px;
  }

  .utilities-button {
    font-size: 15px;
  }

  .section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section.food {
    display: none;
  }

  .section.low {
    padding-bottom: 0;
  }

  .section.hero-copy {
    display: none;
  }

  .hero-heading {
    font-size: 36px;
  }

  .photo-wrap {
    height: 100vh;
  }

  .navigation {
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
    display: flex;
    position: relative;
    top: 0;
  }

  .navigation.double {
    display: none;
    top: 20px;
  }

  .navigation-right {
    display: none;
  }

  .nav-button {
    background-color: var(--dark-olive-green);
    color: var(--seashell);
    margin-left: 0;
  }

  .phone-number {
    display: none;
  }

  .menu-container {
    display: flex;
  }

  .h2 {
    font-size: 27px;
  }

  .h2.centered {
    font-size: 24px;
  }

  .text-wrap.centered {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .image {
    width: 100%;
  }

  .grid {
    grid-row-gap: 30px;
    flex-flow: column;
    grid-template-columns: minmax(200px, 1fr);
    display: flex;
  }

  .column {
    flex-flow: column;
    min-width: 100%;
    display: flex;
  }

  .column.text {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 0;
    margin-bottom: 30px;
  }

  .column.mobile {
    display: none;
  }

  .column.desktop {
    display: flex;
  }

  .h3-title {
    font-size: 24px;
  }

  .h3-title.centered {
    margin-bottom: 20px;
  }

  .green-container {
    padding-top: 45px;
    padding-bottom: 90px;
  }

  .green-container.no-video {
    padding-bottom: 45px;
  }

  .relative-image-1 {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100%;
    max-height: 100%;
    margin-top: 0;
  }

  .relative-image-2 {
    display: none;
  }

  .paragraph.bottom-margin {
    margin-bottom: 30px;
  }

  .paragraph.bottom-margin-copy {
    text-align: left;
    margin-bottom: 30px;
  }

  .paragraph.sub {
    margin-top: 5px;
    margin-left: 0;
  }

  .link-button {
    flex-flow: row;
    justify-content: flex-start;
    align-items: center;
  }

  .circle {
    width: 55px;
    height: 55px;
    padding-left: 20px;
  }

  .button-text {
    margin-left: 80px;
    font-size: 16px;
  }

  .background-video {
    height: 30vh;
    min-height: 0;
  }

  .home-photo-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    margin-top: 100px;
    position: relative;
  }

  .team-photo._1 {
    height: 260px;
  }

  .team-photo._2 {
    background-image: url('../images/PEXELS-burst.jpg');
    background-position: 50%;
    background-size: cover;
    height: 260px;
  }

  .team-photo._3 {
    height: 260px;
  }

  .footer-grid {
    grid-row-gap: 30px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .footer-utilities-wrap {
    flex-flow: column;
  }

  .contact-grid {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .contact-column.centered {
    border-left-style: none;
    border-right-style: none;
    padding-left: 0;
  }

  .map {
    min-height: 250px;
  }

  .contact-map {
    margin-right: 0;
  }

  .form-container {
    width: 100%;
  }

  .large-photo-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    position: relative;
  }

  .text-grid {
    grid-row-gap: 17px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-flow: column;
    margin-top: 30px;
  }

  .parallax-image._4 {
    width: 140px;
    margin-left: -120px;
  }

  .parallax-image._1 {
    width: 120px;
    margin-right: -70px;
  }

  .parallax-image._2 {
    width: 120px;
  }

  .parallax-image._3 {
    width: 100px;
    margin-left: -80px;
  }

  .label {
    font-size: 14px;
  }

  .hide-on-mobile {
    display: none;
  }

  .changelog-number-wrap {
    order: -1;
    margin-bottom: 25px;
  }

  .template-info-title {
    font-size: 36px;
  }

  .changelog-point {
    font-size: 21px;
  }

  .changelog-text {
    margin-top: 10px;
    font-size: 14px;
  }

  .changelog-text-container {
    width: 100%;
  }

  .typography-info-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
  }

  .colors-info-container {
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .style-guide-text {
    font-size: 15px;
  }

  .style-guide-text.colors {
    display: none;
  }

  .styleguide-h2 {
    font-size: 30px;
  }

  .typography-square {
    width: 100%;
  }

  .transparent-container.no-video {
    padding-bottom: 45px;
  }

  .instagram-photo._1, .instagram-photo._2, .instagram-photo._3, .instagram-photo._2, .instagram-photo._3, .instagram-photo._1, .place-photo._1 {
    height: 260px;
  }

  .place-photo._2 {
    background-image: url('../images/PEXELS-burst.jpg');
    background-position: 50%;
    background-size: cover;
    height: 260px;
  }

  .place-photo._3 {
    height: 260px;
  }

  .menu-right {
    padding-left: 15px;
    padding-right: 30px;
  }

  .menu-left {
    padding-left: 30px;
    padding-right: 15px;
  }

  .menu-social-link-wrap {
    display: none;
  }

  .menu-overflow-hidden.medium-bottom-margin {
    margin-bottom: 5px;
  }

  .menu-overflow-hidden.large-bottom-margin {
    margin-bottom: 10px;
  }

  .delete {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .image-2 {
    min-width: 0;
    min-height: 0;
  }

  .image-3 {
    min-width: 0;
    max-width: 100%;
  }

  .gradient-line-wrapper {
    margin-top: 10px;
  }

  .gradient-line-wrapper.home-version {
    min-width: 300px;
  }

  .header-text-block {
    z-index: 1;
    padding-bottom: 0;
    position: relative;
  }

  .home-header-image-block {
    height: 100vh;
  }

  .presentation-video-full-wrapper {
    min-height: 0;
  }

  .home-text-block {
    margin-top: 25px;
  }

  .image-header {
    opacity: 1;
    background-image: linear-gradient(#00000080, #00000080);
    display: none;
  }

  .main-header {
    opacity: 1;
  }

  .home-intro-text {
    font-size: 18px;
    line-height: 27px;
  }

  .header-titles-wrapper {
    top: 6.5vh;
  }

  .scroll-title-block-2 {
    min-width: 310px;
    bottom: 48px;
  }

  .video-sticky-elements-wrapper {
    height: 480px;
    top: 53%;
  }

  .homepage-title {
    margin-bottom: 4px;
    font-size: 39px;
    line-height: 40px;
  }

  .image-header-copy {
    opacity: 1;
    background-image: url('../images/Bildschirmfoto-2024-05-28-um-10.31.33.png');
    background-position: 45%;
    background-size: cover;
  }

  .scroll-title-block-1 {
    top: 35px;
  }

  .presentatie-video {
    height: 250px;
    top: 48%;
  }

  .scroll-title {
    font-size: 55px;
    line-height: 50px;
  }

  .image-6 {
    max-width: 200px;
  }

  .div-block-3 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .section-homepage {
    display: none;
  }

  .showcase-slider-columns {
    flex-flow: column;
  }

  .container-2 {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-image {
    margin-left: -16px;
    margin-right: -16px;
    padding-bottom: 100%;
  }

  .hero-image.narrow {
    height: 320px;
    margin-left: -16px;
    margin-right: -16px;
  }

  .intro-rows {
    grid-column-gap: 48px;
    grid-row-gap: 48px;
  }

  .intro-image-grid {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
    grid-template-columns: 1fr;
  }

  .intro-grid-image-xs {
    width: 50vw;
  }

  .intro-grid-image-xs._2 {
    width: 80vw;
  }

  .section-2.bg-beige {
    display: block;
  }

  .text-quote {
    letter-spacing: -1px;
    font-size: 26px;
    line-height: 1.3em;
  }

  .intro-grid-rows {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .grid-2-col {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
  }

  .grid-2-col.md-gap-xl {
    grid-column-gap: 64px;
    grid-row-gap: 64px;
  }

  .text-large {
    font-size: 18px;
    line-height: 26px;
  }

  .heading-style-4 {
    font-family: Butler, sans-serif;
  }

  .info-content {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .square-image-xs {
    width: 120px;
    height: 120px;
  }

  .sidebar-row.spaced {
    grid-column-gap: 24px;
    grid-row-gap: 24px;
  }

  .section-3 {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-3.height-auto-copy {
    padding-top: 15vh;
  }

  .fs-cc-prefs_button {
    margin-bottom: .5rem;
  }

  .fs-cc-banner_button {
    width: 100%;
    margin-bottom: .5rem;
    margin-left: 0;
  }

  .fs-cc-prefs_component {
    padding: 1.5rem;
  }

  .fs-cc-banner_buttons-wrapper {
    text-align: center;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%;
  }

  .fs-cc-prefs_content {
    padding: 1.5rem;
  }

  .fs-cc-banner_close {
    position: absolute;
    inset: -1.5rem .75rem auto auto;
  }

  .wg-element-wrapper.sw4 {
    margin-top: 0;
    margin-left: 10px;
  }

  .wg-element-wrapper.sw5 {
    display: flex;
  }

  .wg-element-wrapper.sw4-copy {
    margin-top: 0;
    margin-left: 10px;
  }

  .wg-element-wrapper.desktop, .wg-element-wrapper.mobile {
    display: flex;
  }

  .floating-label {
    z-index: 2147483647;
    flex-flow: column;
    justify-content: center;
    align-items: flex-start;
    min-width: 220px;
    max-width: none;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 18px;
    display: flex;
    inset: 0% auto auto 0%;
  }

  .m-0 {
    text-align: left;
    white-space: nowrap;
    word-break: break-all;
    font-size: 14px;
    display: none;
  }

  .m-0.mobile {
    display: flex;
  }

  .paragraph-7 {
    font-size: 12px;
    display: none;
  }

  .m-0-2 {
    white-space: nowrap;
    word-break: keep-all;
    font-size: 16px;
  }

  .m-0-2.small {
    font-size: 13px;
  }

  .wg-dd-1-togle {
    color: var(--dark-olive-green);
  }

  .image-header-2 {
    background-image: url('../images/image00023.jpeg'), linear-gradient(#00000080, #00000080);
    background-position: 0 0, 0 0;
    background-size: cover, auto;
    display: none;
  }

  .image-9, .image-10 {
    width: 100%;
  }

  .image-header-3, .image-header-4 {
    background-image: url('../images/image00023.jpeg'), linear-gradient(#00000080, #00000080);
    background-position: 0 0, 0 0;
    background-size: cover, auto;
    display: none;
  }

  .image-11 {
    min-width: 0;
    max-width: 100%;
  }

  .div-block-6 {
    flex-flow: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

#w-node-_94d3fb7f-52fb-7a5e-b4db-e71af62be39c-0486b9f8 {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_94d3fb7f-52fb-7a5e-b4db-e71af62be39e-0486b9f8 {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-c772caec-7c5c-f58e-4823-6c1b24364233-0486b9f8 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c772caec-7c5c-f58e-4823-6c1b24364243-0486b9f8 {
  justify-self: stretch;
}

#w-node-f8bef3be-dad4-b6c4-b364-587938c277c5-0486b9f8 {
  align-self: center;
}

#w-node-_0fbf1864-f2de-b7ab-1629-fc42398b8273-398b8266, #w-node-d5fc164c-f563-6fa7-cf9d-77d1812cf946-0486b9fc {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-c772caec-7c5c-f58e-4823-6c1b24364233-89d49197 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c772caec-7c5c-f58e-4823-6c1b24364243-89d49197 {
  justify-self: stretch;
}

#w-node-_8bd257a1-a26e-febc-f256-be70a418928c-89d49197 {
  justify-self: end;
}

#w-node-_8bd257a1-a26e-febc-f256-be70a4189295-89d49197 {
  justify-self: stretch;
}

#w-node-_39283223-766a-1591-0c94-db2eada3035f-89d49197 {
  justify-self: end;
}

#w-node-f8bef3be-dad4-b6c4-b364-587938c277c5-89d49197 {
  align-self: center;
}

#w-node-a21b7bcf-498b-054d-8e61-0bf1be40c047-be40c039 {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_94d3fb7f-52fb-7a5e-b4db-e71af62be39c-e2b515ba {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_94d3fb7f-52fb-7a5e-b4db-e71af62be39e-e2b515ba {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-c772caec-7c5c-f58e-4823-6c1b24364233-e2b515ba {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c772caec-7c5c-f58e-4823-6c1b24364243-e2b515ba {
  justify-self: stretch;
}

#w-node-f8bef3be-dad4-b6c4-b364-587938c277c5-e2b515ba {
  align-self: center;
}

#w-node-c772caec-7c5c-f58e-4823-6c1b24364233-f6e1c166 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c772caec-7c5c-f58e-4823-6c1b24364243-f6e1c166 {
  justify-self: stretch;
}

#w-node-_8bc9e6dd-aacf-127c-36aa-2fd667903307-f6e1c166 {
  align-self: center;
}

#w-node-_8bc9e6dd-aacf-127c-36aa-2fd66790330b-f6e1c166 {
  align-self: end;
}

#w-node-_8bd257a1-a26e-febc-f256-be70a418928c-f6e1c166 {
  justify-self: end;
}

#w-node-_8bd257a1-a26e-febc-f256-be70a4189295-f6e1c166 {
  justify-self: stretch;
}

#w-node-f8bef3be-dad4-b6c4-b364-587938c277c5-f6e1c166 {
  align-self: center;
}

#w-node-d5fc164c-f563-6fa7-cf9d-77d1812cf946-320af69e {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_94d3fb7f-52fb-7a5e-b4db-e71af62be39c-3c19820a {
  grid-area: 2 / 1 / 3 / 2;
}

#w-node-_94d3fb7f-52fb-7a5e-b4db-e71af62be39e-3c19820a {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-c772caec-7c5c-f58e-4823-6c1b24364233-3c19820a {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c772caec-7c5c-f58e-4823-6c1b24364243-3c19820a {
  justify-self: stretch;
}

#w-node-_7b9c0512-f12e-fe4b-d5a4-f41a8955c15b-3c19820a {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-f8bef3be-dad4-b6c4-b364-587938c277c5-3c19820a {
  align-self: center;
}

#w-node-c772caec-7c5c-f58e-4823-6c1b24364233-a5cd916e {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-c772caec-7c5c-f58e-4823-6c1b24364243-a5cd916e {
  justify-self: stretch;
}

#w-node-_8bd257a1-a26e-febc-f256-be70a418928c-a5cd916e {
  justify-self: end;
}

#w-node-_8bd257a1-a26e-febc-f256-be70a4189295-a5cd916e {
  justify-self: stretch;
}

#w-node-_39283223-766a-1591-0c94-db2eada3035f-a5cd916e {
  justify-self: end;
}

#w-node-f8bef3be-dad4-b6c4-b364-587938c277c5-a5cd916e {
  align-self: center;
}

#w-node-_5ad1dc73-7f98-b99c-ab89-98de9afe85f0-a5cd916e {
  grid-area: 1 / 1 / 3 / 2;
}

@media screen and (min-width: 1920px) {
  #w-node-_0fbf1864-f2de-b7ab-1629-fc42398b8273-398b8266, #w-node-d5fc164c-f563-6fa7-cf9d-77d1812cf946-0486b9fc, #w-node-a21b7bcf-498b-054d-8e61-0bf1be40c047-be40c039, #w-node-d5fc164c-f563-6fa7-cf9d-77d1812cf946-320af69e, #w-node-_7b9c0512-f12e-fe4b-d5a4-f41a8955c15b-3c19820a, #w-node-_5ad1dc73-7f98-b99c-ab89-98de9afe85f0-a5cd916e {
    grid-area: 1 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-c772caec-7c5c-f58e-4823-6c1b24364232-0486b9f8 {
    justify-self: end;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa16789-0486b9fc {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa167a2-0486b9fc {
    order: 9999;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa167b8-0486b9fc {
    order: -9999;
  }

  #w-node-c772caec-7c5c-f58e-4823-6c1b24364232-89d49197 {
    justify-self: end;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa16789-a7e78e88 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa167a2-a7e78e88 {
    order: 9999;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa167b8-a7e78e88 {
    order: -9999;
  }

  #w-node-c772caec-7c5c-f58e-4823-6c1b24364232-e2b515ba, #w-node-c772caec-7c5c-f58e-4823-6c1b24364232-f6e1c166 {
    justify-self: end;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa16789-320af69e {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa167a2-320af69e {
    order: 9999;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa167b8-320af69e {
    order: -9999;
  }

  #w-node-c772caec-7c5c-f58e-4823-6c1b24364232-3c19820a, #w-node-c772caec-7c5c-f58e-4823-6c1b24364232-a5cd916e {
    justify-self: end;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_1abc9810-961c-0510-d5ab-f6520126aaa4-0486b9f8 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-f8bef3be-dad4-b6c4-b364-587938c277c5-0486b9f8 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa16774-0486b9fc {
    justify-self: start;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa167b8-0486b9fc {
    order: -9999;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa167bf-0486b9fc {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa167cd-0486b9fc {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_1abc9810-961c-0510-d5ab-f6520126aaa4-89d49197 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-f8bef3be-dad4-b6c4-b364-587938c277c5-89d49197 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa16774-a7e78e88 {
    justify-self: start;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa167b8-a7e78e88 {
    order: -9999;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa167bf-a7e78e88 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa167cd-a7e78e88 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_1abc9810-961c-0510-d5ab-f6520126aaa4-e2b515ba {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-f8bef3be-dad4-b6c4-b364-587938c277c5-e2b515ba {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_1abc9810-961c-0510-d5ab-f6520126aaa4-f6e1c166 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-f8bef3be-dad4-b6c4-b364-587938c277c5-f6e1c166 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa16774-320af69e {
    justify-self: start;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa167b8-320af69e {
    order: -9999;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa167bf-320af69e {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_24bdf769-d7b0-260f-31ba-cc25faa167cd-320af69e {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_1abc9810-961c-0510-d5ab-f6520126aaa4-3c19820a {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-f8bef3be-dad4-b6c4-b364-587938c277c5-3c19820a {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_1abc9810-961c-0510-d5ab-f6520126aaa4-a5cd916e {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-f8bef3be-dad4-b6c4-b364-587938c277c5-a5cd916e {
    grid-area: 2 / 1 / 3 / 3;
  }
}


@font-face {
  font-family: 'Butler';
  src: url('../fonts/Butler_Ultra_Light.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Butler';
  src: url('../fonts/Butler_Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Butler';
  src: url('../fonts/Butler_Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Butler';
  src: url('../fonts/Butler_Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}