:root {
  --black: #111;
  --white: whitesmoke;
  --primary: #ffcf82;
  --light-gray: #d7d7d8;
  --gray: #9c9ca7;
  --matte: #212121;
  --border-radius: 4px;
  --transparent: #0000;
  --lighter-black: #1e1e1e;
  --1e1e1e: var(--lighter-black);
}

.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-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  background-color: var(--black);
  color: var(--white);
  letter-spacing: .6px;
  font-family: Barlow, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

h1 {
  letter-spacing: 0;
  text-transform: uppercase;
  margin-top: 12px;
  margin-bottom: 0;
  font-family: Gilda Display, sans-serif;
  font-size: 56px;
  font-weight: 400;
  line-height: 56px;
}

h2 {
  letter-spacing: 0;
  text-transform: capitalize;
  margin-top: 12px;
  margin-bottom: 0;
  font-family: Gilda Display, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 45px;
}

h3 {
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Gilda Display, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 36px;
}

h4 {
  letter-spacing: 0;
  text-transform: capitalize;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Gilda Display, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5em;
}

h5 {
  letter-spacing: 0;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Gilda Display, sans-serif;
  font-size: 21px;
  font-weight: 400;
  line-height: 1.55em;
}

h6 {
  color: var(--primary);
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Barlow Condensed, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 20px;
}

p {
  color: var(--light-gray);
  margin-bottom: 0;
  font-size: 17px;
  line-height: 24px;
}

a {
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.7em;
  text-decoration: none;
  transition: color .25s;
}

a:hover {
  color: var(--primary);
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 0;
}

ol {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  color: var(--gray);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 17px;
  line-height: 24px;
}

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

label {
  margin-bottom: 8px;
  font-weight: 400;
  display: block;
}

blockquote {
  border-left: 5px solid var(--primary);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 1.1rem;
  line-height: 22px;
}

figure {
  margin-bottom: 10px;
}

figcaption {
  text-align: center;
  margin-top: 5px;
}

.team-text-wrapper {
  grid-row-gap: 8px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
}

.centered {
  color: var(--primary);
  text-align: center;
  padding-top: 0;
}

.section {
  width: 100%;
}

.section.gradient-down {
  padding-top: 20px;
  padding-bottom: 10px;
}

.section.gradient-up {
  background-image: linear-gradient(180deg, var(--matte), var(--black));
}

.section.background-matte {
  background-color: var(--matte);
  cursor: auto;
}

.team-socials-wrapper {
  grid-column-gap: 15px;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  min-height: 16px;
  margin-top: 16px;
  margin-bottom: 32px;
  display: flex;
}

.social-link-wrapper-small {
  justify-content: center;
  align-items: center;
  max-width: 16px;
  max-height: 16px;
  display: flex;
}

.team-image {
  object-fit: cover;
  object-position: 50% 0%;
  min-width: 100%;
  min-height: 360px;
  max-height: 360px;
}

.title-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.team-wrapper-thirds {
  background-color: var(--matte);
  min-width: 320px;
  max-width: 320px;
  position: relative;
}

.container-full {
  width: 100%;
  max-width: 1440px;
  overflow: hidden;
}

.container-full.padding-5 {
  padding-left: 72px;
  padding-right: 72px;
}

.container-full.padding-10 {
  background-color: #1b1b1b;
  padding: 22px 144px 0;
}

.container-full.padding-10.overflow {
  overflow: visible;
}

.container-full.padding-15 {
  padding-left: 100px;
  padding-right: 100px;
}

.container-full.footer-background-light-navy {
  background-color: var(--matte);
  max-width: none;
}

.container-full.no-max-width {
  cursor: zoom-in;
  max-width: none;
}

.social-icon {
  object-fit: contain;
  max-height: 100%;
}

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

.team-card:hover {
  color: #fff;
}

.teams-wrapper {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.space {
  min-height: 64px;
}

.space.spaceblog {
  min-height: 128px;
}

.space-large {
  border: 1px solid #1b1b1b;
  min-height: 4rem;
}

.space-large.space-2 {
  min-height: 3rem;
}

.team-image-wrapper {
  justify-content: center;
  align-items: center;
  min-width: 320px;
  max-width: 320px;
  min-height: 360px;
  max-height: 360px;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 15px -5px #0000003d;
}

.space-semi {
  min-height: 32px;
}

.space-text {
  min-height: 8px;
}

.teams-flex-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 64px;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.invert {
  filter: invert();
}

.events-card-link {
  flex-direction: column;
  min-width: 350px;
  max-width: 350px;
  min-height: 460px;
  max-height: 460px;
  display: flex;
  position: relative;
}

.button {
  z-index: 1;
  border: 1px solid var(--primary);
  border-radius: var(--border-radius);
  pointer-events: auto;
  color: var(--white);
  text-align: center;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  background-color: #dfb1871a;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.42857;
  transition-property: background-color;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.button:hover {
  background-color: var(--primary);
  color: var(--black);
}

.button-text-with-overlay {
  z-index: 2;
  position: relative;
}

.button-overlay {
  z-index: 1;
  background-color: #e3af5a;
  max-width: 100%;
  position: absolute;
  inset: 0% 0% 0% -100%;
}

.button-overlay:hover {
  border-color: #0000;
}

.paragraph-max-width {
  max-width: 520px;
}

.space-text-half {
  min-height: 4px;
}

.color-white {
  color: #fff;
}

.hero-image-overlay {
  z-index: 0;
  background-image: linear-gradient(90deg, var(--black), #11111180 46%, var(--transparent) 59%);
  min-width: 100%;
  min-height: 100%;
  position: absolute;
  inset: 0%;
}

.space-small {
  min-height: 16px;
}

.numbers-description {
  color: var(--light-gray);
  white-space: nowrap;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  line-height: 1.8;
  display: flex;
}

.wrapper-quarter {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.numbers-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  cursor: auto;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: center;
  max-width: none;
  margin-top: 48px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: grid;
}

.icon-sqaure-wrapper {
  box-sizing: border-box;
  background-color: var(--matte);
  cursor: zoom-in;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 80px;
  max-width: 128px;
  min-height: 80px;
  max-height: 128px;
  display: flex;
  position: static;
}

.icon-sqaure-wrapper:hover {
  min-width: 80px;
  min-height: 80px;
}

.icon-wrapper-circle {
  border: .5px solid var(--primary);
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 96px;
  max-width: 96px;
  min-height: 96px;
  max-height: 96px;
  display: flex;
}

.history-line {
  background-color: #ffc328;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 1px;
  display: flex;
}

.utilities-title-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 80%;
  min-height: 1px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.description-max-width {
  box-sizing: border-box;
  text-align: center;
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20px;
  display: flex;
}

.row-utilities {
  flex-wrap: wrap;
  width: 89%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.utilities-wrapper {
  text-align: center;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
}

.utilities-rtb-wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 80%;
  min-height: 1px;
  margin-bottom: 30px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.rich-text {
  text-align: left;
  width: 100%;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.utility-page-wrap {
  background-image: linear-gradient(#000c, #000c), url('../images/A_wine_menu2_1A_wine_menu2.webp');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.utility-page-form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.hero-text-block {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 40rem;
  display: flex;
  position: relative;
}

.personeel {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: start stretch;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: grid;
}

.personeel.gastvrouw {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  place-content: end center;
  place-items: stretch stretch;
  max-width: 100%;
  padding-top: 140px;
  display: grid;
}

.chef-wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  max-width: 22rem;
  display: flex;
}

.chef-wrapper.slide-from-left-animation {
  object-fit: fill;
  height: 50%;
  max-height: 100%;
  display: block;
}

.chef-wrapper.slide-from-left-animation.tekst-tamar {
  flex-flow: column;
  justify-content: flex-start;
  align-items: stretch;
  display: block;
}

.who-icon-wrapper {
  background-color: var(--matte);
  text-align: center;
  border-radius: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-width: 64px;
  max-width: 64px;
  height: 64px;
  min-height: 64px;
  max-height: 64px;
  display: flex;
}

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

.who-card {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-width: 240px;
  max-width: 240px;
  display: flex;
}

.chef-feature-flex {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  object-fit: fill;
  flex-flow: column;
  flex: 0 auto;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  margin-top: 0;
  display: block;
}

.chef-feature-flex.tekst-tamar {
  margin-top: -70px;
}

.who-signature {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: left;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-bottom: 0;
  display: flex;
}

.center-text-block {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.center-text-block.slide-up-animation {
  padding-top: 22px;
  padding-bottom: 14px;
}

.center-text-block.news {
  mix-blend-mode: hard-light;
  background-color: #0000;
  border: 2px solid #e6bd97;
}

.features-slider-wrapper {
  background-color: #0000;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  height: 320px;
  display: flex;
  position: relative;
}

.feature-card-content {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.mask {
  max-width: 512px;
  overflow: visible;
}

.feature-slide {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: left;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  min-width: 512px;
  max-width: 512px;
  padding: 48px 32px;
  transition: background-color .25s, color .25s;
  display: flex;
}

.sub-hero-wrapper {
  z-index: 10;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  min-height: 100vh;
  padding: 64px 128px;
  display: flex;
  position: relative;
}

.sub-hero-image {
  z-index: 0;
  object-fit: cover;
  min-width: 50%;
  max-width: 720px;
  min-height: 100vh;
  position: relative;
}

.space-48px {
  min-height: 48px;
}

.max-width-480px {
  max-width: 480px;
}

.events-single-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.hero-single-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  background-attachment: scroll;
  align-items: center;
  width: 100%;
  min-height: 360px;
  max-height: 360px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.badge-card {
  background-color: var(--matte);
  box-shadow: none;
  color: #f6f6f4;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
  justify-content: center;
  align-self: center;
  align-items: center;
  font-family: Changa One, Impact, sans-serif;
  font-size: .6rem;
  font-weight: 400;
  line-height: 1;
  transition: transform .4s, border-color .4s, background-color .4s;
  display: flex;
}

.badge-card:hover {
  color: #f5f5f5;
}

.badge-card.padding {
  padding: 8px 24px;
}

.event-single-wrapper {
  background-color: #0000;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
}

.left-arrow-slide {
  max-width: 32px;
  max-height: 64px;
  margin: 128px 0;
  position: fixed;
  inset: 0% 100% 0% 0%;
}

.right-arrow-slide {
  max-width: 64px;
  max-height: 64px;
  margin-left: 0;
  margin-right: 0;
  inset: 0% 0% 0% 100%;
}

.slide-nav {
  position: absolute;
}

.team-single-page {
  z-index: 3;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.social-link {
  justify-content: center;
  align-items: flex-start;
  height: 16px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.image-team-full {
  object-fit: contain;
  min-width: 100%;
  min-height: 38rem;
  max-height: 38rem;
}

.team-bottom-content {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.content-card-description {
  text-align: center;
  max-width: 320px;
  margin-top: 0;
}

.team-top-content {
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.socials-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  align-items: center;
  height: 32px;
  display: flex;
}

.content-card-body {
  z-index: 2;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  flex: auto;
  justify-content: center;
  align-items: center;
  min-height: 280px;
  margin-left: auto;
  margin-right: auto;
  padding: 40px 1.875rem;
  display: flex;
  position: relative;
}

.wrapper-team-content {
  align-self: center;
  width: 100%;
  max-width: 50%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}

.team-single-image-wrapper {
  max-width: 50%;
  min-height: 38rem;
  max-height: 38rem;
  position: relative;
  overflow: hidden;
}

.team-email-link {
  font-size: 16px;
  line-height: 16px;
}

.practice-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 216px;
  padding-right: 216px;
  display: flex;
}

.fix-scroll-container {
  z-index: 1;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.heading-h3-team-title {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.7rem;
}

.wrapper-thirds {
  display: flex;
  position: relative;
}

.price-card-brochure {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  background-color: var(--matte);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 360px;
  max-width: 360px;
  padding: 48px 64px;
  display: flex;
}

.line-divider-small {
  border: 1px solid #99999980;
  width: 120px;
}

.packages-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
  display: flex;
}

.package-paragraph-content {
  text-align: center;
  width: 100%;
  margin-bottom: 16px;
}

.blog-hero-single-image {
  object-fit: cover;
  margin-left: auto;
  margin-right: auto;
}

.blog-wrapper-full-single {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blog-catagory {
  background-color: var(--matte);
  justify-content: center;
  padding: 8px 15px 8px 21px;
  display: flex;
}

.space-blog {
  min-height: 64px;
  display: flex;
}

.blog-page-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: 1fr .3fr;
  grid-auto-flow: row;
  align-items: start;
}

.image {
  object-fit: fill;
  width: 100%;
  height: auto;
}

.blog-card-image-wrapper {
  box-shadow: none;
  background-color: #fff;
  border-radius: 50%;
  width: 128px;
  max-width: 128px;
  max-height: 128px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.blod-card-author {
  background-color: var(--matte);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 280px;
  max-width: 280px;
  display: flex;
}

.blog-side-bar-left {
  position: relative;
}

.color-primary {
  color: var(--primary);
}

.blog-side-bar-right {
  position: sticky;
  top: 32px;
}

.blog-author-info {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  border-radius: 6px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 80%;
  margin-top: 16px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.events-rich-text {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.title-wrapper-align-left {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.title-wrapper-align-left.slide-in-from-left-animation {
  justify-content: center;
  align-items: center;
}

.hero-text-wrapper {
  z-index: 1;
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: left;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 1152px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.rich-text-block {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  flex-direction: column;
  display: flex;
}

.blog-title-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 540px;
  display: flex;
}

.footer-bottom-text {
  color: var(--gray);
  letter-spacing: 0;
  white-space: nowrap;
  font-size: 15px;
  line-height: 1.7em;
}

.footer-paragraph {
  letter-spacing: .1px;
  width: 75%;
  padding-bottom: 10px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7em;
}

.footer-content-wrapper {
  flex-direction: column;
  width: 40%;
  display: flex;
}

.flex-footer {
  grid-column-gap: 15px;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  max-width: 100%;
  display: flex;
}

.footer-text-wrapper {
  background-color: #0000;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 0;
}

.footer-text {
  letter-spacing: 0;
  cursor: pointer;
  flex: 0 auto;
  max-width: 100%;
  font-family: Barlow, sans-serif;
  font-size: 17px;
  font-weight: 300;
  text-decoration: none;
}

.space-mid {
  min-height: 90px;
  position: relative;
}

.footer-bottom-text-link {
  color: var(--gray);
  letter-spacing: 0;
  white-space: nowrap;
  width: 100%;
  font-size: 15px;
  text-decoration: underline;
}

.footer-bottom-text-link:hover {
  color: #dfb187;
}

.footer-icon {
  max-height: 15px;
  position: relative;
  top: 2px;
}

.footer-wrapper {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.footer-text-flex {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-social-link {
  width: 1.2em;
}

.footer-bottom-wrapper {
  background-color: var(--lighter-black);
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-bottom-flex {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.footer-social-links-wrapper {
  grid-column-gap: 15px;
  justify-content: flex-start;
  align-items: center;
  width: 110px;
  display: flex;
}

.footer-links-text {
  grid-row-gap: 9px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  display: flex;
}

.footer-links-wrapper {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  grid-template: ". . . Area"
  / .5fr .7fr .5fr 1fr;
  justify-items: end;
}

.footer-link {
  color: var(--gray);
  letter-spacing: 0;
  cursor: pointer;
  font-size: 16px;
  text-decoration: none;
}

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

.footer-links-title {
  color: var(--light-gray);
  font-family: Barlow Condensed, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7em;
}

.footer-flex-wrapper {
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blog-title-single {
  line-height: 55px;
}

.blog-author-occupation {
  text-align: center;
  line-height: 18px;
}

.utility-image {
  filter: invert();
}

.container-nav {
  background-image: linear-gradient(180deg, #1111117a 57%, #11111114 85%, var(--transparent));
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-height: 96px;
  max-height: 96px;
  margin-left: auto;
  margin-right: auto;
  font-family: Great Vibes, cursive;
  display: flex;
  position: relative;
}

.nav-link {
  color: #f5f5f5;
  text-transform: uppercase;
  font-size: 32px;
  font-weight: 200;
  line-height: 32px;
}

.nav-link.w--current {
  color: #dfb187;
}

.nav-menu {
  z-index: 997;
  background-color: var(--lighter-black);
  color: #fff;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  min-width: 100vw;
  min-height: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding-top: 160px;
  padding-bottom: 160px;
  display: none;
}

.navbar {
  background-color: #0000;
  background-image: linear-gradient(#000000e0 60%, #fff0);
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  min-height: 96px;
  max-height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: fixed;
  inset: 0% 0% auto;
}

.logo-brand {
  z-index: 998;
  justify-content: center;
  align-items: center;
  min-height: 64px;
  max-height: 64px;
  margin-top: 16px;
  margin-left: 72px;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: 0% auto auto 0%;
}

.red-font {
  color: red;
  font-size: 1rem;
  line-height: 1.2em;
}

.horizontal-line {
  background-color: var(--primary);
  width: 96px;
  height: .5px;
}

.horizontal-line._160px {
  width: 160px;
}

.cta-image {
  z-index: 1;
  object-fit: cover;
  object-position: 50% 50%;
  background-image: url('../images/danoi.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  min-width: 50vw;
  max-width: 50vw;
  min-height: 720px;
  max-height: 720px;
  position: relative;
}

.cta-paragraph {
  max-width: 32rem;
}

.cta-image-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: flex-end;
  height: 100%;
  display: flex;
  position: relative;
}

.cta-text-wrapper {
  z-index: 100;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.cta-text-wrapper.slide-from-right-animation {
  cursor: auto;
}

.gradient-overlay {
  z-index: 99;
  cursor: auto;
  background-image: radial-gradient(circle, #000, #fff0 0%, #0000007d);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.cta-wrapper {
  grid-row-gap: 0px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  place-items: center;
  display: grid;
}

.gradient-overlay-bottom {
  z-index: 99;
  background-image: linear-gradient(0deg, var(--black), transparent 14%);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.gradient-overlay-top {
  z-index: 99;
  background-image: linear-gradient(0deg, transparent 86%, var(--black));
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.chef-image-wrapper {
  z-index: 1;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: var(--border-radius);
  flex-flow: row;
  flex: 0 auto;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  min-width: 26.3rem;
  max-width: 26.3rem;
  min-height: 35rem;
  max-height: 35rem;
  padding-top: 0;
  display: block;
  position: relative;
  overflow: hidden;
}

.overlay-trigger {
  object-fit: fill;
  max-width: 100%;
  padding-top: 0;
  display: flex;
  position: absolute;
  inset: 0%;
}

.overlay-trigger.overlay-tamar {
  justify-content: flex-start;
  align-items: center;
  padding-top: 0;
  inset: 0%;
}

.image-overlay {
  z-index: 100;
  background-color: var(--primary);
  max-width: 100%;
  padding-top: 0;
  padding-bottom: 0;
  display: none;
  position: absolute;
  inset: 0%;
}

.slides-overlay-right {
  z-index: 3;
  background-image: linear-gradient(90deg, var(--transparent), var(--lighter-black) 10%);
  border: 1px solid #1b1b1b;
  min-width: 100%;
  max-width: 100%;
  min-height: 100%;
  max-height: 100%;
  position: absolute;
  inset: 0% 0% 0% 95%;
}

.slides-overlay-left {
  z-index: 3;
  background-image: linear-gradient(90deg, var(--1e1e1e) 95%, var(--transparent) 98%);
  border: 1px solid #1b1b1b;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 100%;
  max-height: 100%;
  position: absolute;
  inset: 0% 0% 0% -98%;
}

.subheading-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  padding-top: 0;
  display: flex;
}

.width-32px {
  background-color: var(--primary);
  width: 32px;
  height: .5px;
}

.width-32px.shift-left {
  position: relative;
  left: -6px;
}

.feature-image {
  border-radius: var(--border-radius);
  width: 192px;
  height: 192px;
}

.width-64px {
  background-color: var(--primary);
  width: 64px;
  height: .5px;
}

.image-steps-wrapper {
  object-fit: cover;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 240px;
  max-height: 240px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.steps-flex {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.title-wrapper-thirds {
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.story-wrapper {
  grid-row-gap: 32px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  min-width: 380px;
  max-width: 380px;
  display: flex;
  position: relative;
}

.steps-paragraph {
  text-align: center;
  max-width: 280px;
}

.steps-image {
  object-fit: cover;
  min-width: 100%;
  max-width: 100%;
  min-height: 240px;
  max-height: 240px;
}

.trigger {
  position: absolute;
  inset: 0%;
}

.features-description {
  max-width: 25rem;
}

.text-wrapper {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.features-image-wrapper {
  z-index: 1;
  border-radius: var(--border-radius);
  align-self: flex-start;
  max-width: 100%;
  position: relative;
  overflow: hidden;
}

.flex-wrapper {
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  border-radius: 4px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: relative;
}

.features-image {
  border-radius: var(--border-radius);
  object-fit: cover;
  min-width: 41.4vw;
  max-width: 41.4vw;
  min-height: 41.4vw;
  max-height: 41.4vw;
  box-shadow: 0 8px 10px -5px #0003, 0 5px 15px -8px #0000003d;
}

.features-image.shrink-in-big-image {
  min-width: 0;
  max-width: 100%;
  min-height: 20%;
}

.gallery-grid {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-content: center;
  place-items: center;
  display: grid;
}

.gallery-image-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 25vw;
  height: 25vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.gallery-image-wrapper:hover {
  width: 30vw;
  height: 30vw;
}

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

.on-hover-icon {
  z-index: 1;
  filter: invert();
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
  display: none;
  position: absolute;
}

.half-hero-wrapper {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  text-align: center;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 50vh;
  min-height: 450px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 144px;
  padding-right: 144px;
  display: flex;
  position: relative;
}

.half-hero-image {
  z-index: 0;
  object-position: 50% 100%;
  align-self: flex-end;
  min-width: 100%;
  max-width: 100%;
  height: 50vh;
  min-height: 450px;
  position: absolute;
  inset: 0%;
}

.half-hero-section {
  background-image: linear-gradient(180deg, var(--matte), var(--black));
  width: 100%;
  padding-bottom: 15px;
  position: relative;
}

.max-width-320px {
  max-width: 320px;
}

.chef-button-wrapper {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.circle-left-arrow {
  pointer-events: auto;
  border: .5px solid #ffffff80;
  border-radius: 100px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  min-height: 160px;
  max-height: 160px;
  display: flex;
  left: -30px;
}

.hero-title-wrapper {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  min-width: 80%;
  max-width: 80%;
  display: flex;
}

.hero-title-wrapper.slide-up-animation {
  justify-content: flex-start;
  align-items: center;
  padding-top: 165px;
}

.hero-title-wrapper.slide-up-animation.header-title {
  grid-column-gap: 55px;
  grid-row-gap: 55px;
}

.hero-slide-nav {
  display: none;
}

.circle-right-arrow {
  border: .5px solid #ffffff80;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  min-width: 160px;
  min-height: 160px;
  max-height: 160px;
  display: flex;
  inset: 0% -30px 0% auto;
}

.hero-description {
  text-align: center;
  max-width: 420px;
}

.hero-main-wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slider {
  background-color: var(--transparent);
  pointer-events: auto;
  min-height: 100vh;
  overflow: visible;
}

.hero-image-slide-01 {
  z-index: -1;
  -webkit-text-fill-color: inherit;
  background-image: linear-gradient(#0003, #000000a6 30%, #0000004d 78%, #0000), url('../images/Danoi-elten.jpeg');
  background-position: 0 0, 50%;
  background-repeat: repeat, no-repeat;
  background-size: auto, cover;
  background-attachment: scroll, scroll;
  background-clip: border-box;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  min-width: 100%;
  min-height: 100vh;
  display: block;
  position: absolute;
  inset: 0% 0% auto;
}

.steps-text-flex {
  grid-column-gap: 32px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  padding-bottom: 10px;
  display: flex;
  position: relative;
  left: 96px;
}

.steps-text-flex.opposite {
  flex-direction: row-reverse;
  left: -96px;
}

.circle-steps-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-width: 96px;
  max-width: 96px;
  min-height: 96px;
  max-height: 96px;
  display: flex;
  position: relative;
}

.steps-inro-wrapper {
  margin-left: auto;
  margin-right: auto;
}

.features-wrapper {
  grid-row-gap: 64px;
  flex-direction: column;
  max-width: 80%;
  display: flex;
}

.steps-feature-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 96px;
  height: 100%;
  display: flex;
  position: relative;
  top: 64px;
}

.vertical-steps-line-wrapper {
  position: relative;
  overflow: hidden;
}

.line-vertical-separator {
  background-color: var(--primary);
  width: 1px;
  height: 56px;
}

.features-main-flex {
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-start;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.image-story-wrapper {
  border-radius: var(--border-radius);
  object-fit: cover;
  justify-content: center;
  align-items: flex-end;
  min-width: 720px;
  max-width: 720px;
  min-height: 240px;
  max-height: 240px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.circle-number {
  font-weight: 400;
}

.max-width-450px {
  max-width: 450px;
}

.max-width-450px.centered-on-mobile {
  padding-bottom: 16px;
}

.steps-description {
  max-width: 440px;
  top: -2px;
}

.vertical-steps-line {
  background-color: #dfb18740;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1px;
  height: 330px;
  display: flex;
}

.absolute {
  position: absolute;
}

.features-card-wrapper {
  grid-row-gap: 64px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  max-width: 100%;
  display: flex;
  position: relative;
}

.image-scroll-movement {
  min-width: 0%;
  max-height: 50%;
}

.body {
  background-color: var(--lighter-black);
  pointer-events: auto;
}

.text-block {
  font-family: Great Vibes, cursive;
  font-size: 20px;
}

.image-4 {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.div-block-2 {
  -webkit-text-fill-color: inherit;
  background-color: #ffcf82d6;
  background-clip: border-box;
  border-radius: 10px;
  width: 35%;
  max-width: 100%;
}

.link {
  color: var(--black);
}

.section-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  display: grid;
}

.image-5 {
  flex: 1;
  order: -1;
  align-self: auto;
  max-width: 100%;
  height: auto;
  max-height: 100%;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
  position: static;
  overflow: scroll;
}

.image-5.kop-tamar {
  margin-top: 0;
  padding-top: 0;
}

.link-2 {
  flex-flow: row;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  max-height: 100%;
  font-family: Great Vibes, cursive;
  font-size: 1.9rem;
  font-weight: 400;
  display: block;
}

.link-2.w--current {
  font-size: 2.2rem;
}

.space-3 {
  cursor: auto;
  min-height: 5rem;
}

.intro {
  object-fit: fill;
  flex: 0 auto;
  align-self: auto;
  max-height: 100%;
  display: block;
  overflow: clip;
}

.intro:hover {
  min-width: 80px;
  min-height: 80px;
}

.icon-2 {
  z-index: 8;
}

.icon-3 {
  z-index: 8;
  margin: 12px;
  position: absolute;
}

.text-block-2 {
  box-sizing: border-box;
  text-align: left;
  text-overflow: clip;
  object-fit: fill;
  text-decoration: none;
}

.image-6, .image-7 {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.menu {
  width: 100%;
  height: 100%;
  max-height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.text-block-3 {
  text-align: center;
  padding-top: 100px;
  padding-bottom: 25px;
  font-weight: 600;
}

.heading-4 {
  font-family: Bitter, serif;
  font-size: 28px;
  font-weight: 400;
}

.text-span-2, .text-span-3 {
  color: var(--primary);
}

@media screen and (min-width: 1920px) {
  .container-full.padding-15 {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    max-width: 1080px;
    display: block;
  }

  .personeel.gastvrouw {
    padding-top: 175px;
    display: flex;
  }

  .chef-wrapper.slide-from-left-animation {
    position: relative;
  }

  .chef-wrapper.slide-from-left-animation.tekst-tamar {
    text-align: left;
    margin-top: -70px;
    position: static;
  }

  .who-card {
    text-align: left;
    position: static;
  }

  .chef-feature-flex, .who-signature {
    text-align: left;
  }

  .heading-4 {
    background-color: #202020;
  }
}

@media screen and (max-width: 991px) {
  .section {
    margin-left: 5px;
  }

  .social-link-wrapper-small {
    margin-left: 0;
  }

  .title-wrapper {
    width: 90%;
  }

  .container-full.padding-5 {
    padding-left: 5%;
    padding-right: 5%;
  }

  .container-full.padding-10 {
    padding-left: 10%;
    padding-right: 10%;
  }

  .container-full.padding-15 {
    padding: 10%;
  }

  .container-full.padding-15.news {
    background-color: #00000014;
  }

  .container-full.no-max-width {
    padding-top: 0;
  }

  .space {
    display: none;
  }

  .space-large {
    min-height: 7rem;
    display: none;
  }

  .hero-image-overlay {
    background-image: linear-gradient(0deg, var(--black), #11111180 62%, var(--transparent) 90%);
  }

  .wrapper-quarter {
    justify-content: flex-start;
    width: 210px;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .utilities-title-wrapper {
    width: 90%;
  }

  .row-utilities {
    width: 100%;
  }

  .utilities-rtb-wrapper {
    width: 90%;
  }

  .personeel {
    flex-direction: column;
    align-items: center;
  }

  .personeel.gastvrouw {
    padding-left: 15%;
  }

  .who-card {
    margin-top: 0;
    position: relative;
  }

  .who-card.who-card-tamar {
    top: -20px;
  }

  .who-card.who-card-marcello {
    margin-top: 0;
    top: -120px;
  }

  .chef-feature-flex.tekst-tamar {
    margin-top: 0;
  }

  .who-signature {
    margin-top: -10px;
    padding-bottom: 150px;
  }

  .who-signature.signature-tamar {
    margin-top: 0;
    padding-bottom: 60px;
    position: relative;
    top: -20px;
  }

  .who-signature.signature-marcello {
    margin-top: 0;
    position: relative;
    top: -120px;
  }

  .sub-hero-wrapper {
    min-height: auto;
  }

  .sub-hero-image {
    object-fit: cover;
    min-width: 100%;
    max-width: 100%;
    min-height: 50svh;
    max-height: 50svh;
  }

  .space-48px {
    pointer-events: none;
  }

  .max-width-480px {
    margin-top: 0;
    position: relative;
    top: -130px;
  }

  .max-width-480px.tekst-tamar {
    width: 300px;
    top: -20px;
  }

  .max-width-480px.tekst-marcello {
    top: -120px;
  }

  .max-width-480px.tekst-ingredienten {
    top: 0;
  }

  .events-single-wrapper, .hero-single-image {
    padding-left: 60px;
    padding-right: 60px;
  }

  .left-arrow-slide, .right-arrow-slide {
    top: -510px;
  }

  .image-team-full, .team-single-image-wrapper {
    min-height: 24rem;
    max-height: 24rem;
  }

  .practice-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    padding-left: 64px;
    padding-right: 64px;
  }

  .wrapper-thirds {
    min-width: 70%;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }

  .price-card-brochure {
    min-width: 100%;
    max-width: 100%;
  }

  .blog-wrapper-full-single {
    padding-left: 0%;
    padding-right: 0%;
  }

  .blog-page-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  .blog-side-bar-right {
    padding-right: 0;
  }

  .footer-content-wrapper {
    width: 100%;
    padding-bottom: 15%;
  }

  .footer-text-wrapper {
    max-width: 44rem;
  }

  .footer-text {
    padding-top: 0%;
  }

  .space-mid {
    margin-top: -64px;
  }

  .footer-social-link {
    margin-left: 0;
  }

  .footer-bottom-wrapper {
    flex-wrap: wrap;
    align-items: flex-start;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .footer-bottom-flex {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-flow: column wrap;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: space-between;
    place-items: center;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    display: grid;
  }

  .footer-social-links-wrapper {
    display: flex;
  }

  .footer-link {
    padding-top: 0%;
  }

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

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

  .nav-link {
    text-align: center;
  }

  .nav-menu {
    z-index: 997;
    justify-content: flex-start;
    align-items: center;
    min-width: 100%;
    min-height: 100vh;
    padding: 128px 160px 0;
    position: fixed;
    top: 0;
    left: auto;
  }

  .navbar {
    min-height: 96px;
  }

  .logo-brand {
    justify-content: center;
    align-items: center;
    margin-left: 32px;
    display: flex;
  }

  .cta-image {
    object-position: 50% 50%;
    background-size: cover;
    min-width: 90vw;
    max-width: 90vw;
  }

  .cta-image-wrapper.slide-from-left-animation {
    margin-top: 0;
  }

  .cta-text-wrapper {
    bottom: 0;
    left: 0;
  }

  .cta-text-wrapper.slide-from-right-animation {
    justify-content: center;
    align-items: center;
    margin-top: 0;
    margin-bottom: -329px;
    padding-top: 0;
    position: relative;
    top: 310px;
  }

  .gradient-overlay {
    background-image: linear-gradient(#00000080, #00000080);
    margin-top: 0;
  }

  .cta-wrapper {
    grid-column-gap: 15px;
    flex-flow: column;
    display: flex;
  }

  .chef-image-wrapper {
    margin-left: auto;
    margin-right: auto;
  }

  .steps-flex {
    flex-flow: column;
  }

  .title-wrapper-thirds {
    width: 90%;
  }

  .text-wrapper, .features-image-wrapper {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .flex-wrapper {
    flex-flow: column;
  }

  .features-image {
    min-width: 37.25rem;
    max-width: 37.25rem;
    min-height: 37.25rem;
    max-height: 37.25rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-image-wrapper {
    width: 50vw;
    height: 50vw;
  }

  .gallery-image-wrapper:hover {
    width: 100%;
    height: 100%;
  }

  .half-hero-wrapper {
    padding-top: 4rem;
  }

  .circle-left-arrow {
    min-width: 120px;
    min-height: 120px;
    max-height: 120px;
    left: -10px;
  }

  .circle-right-arrow {
    min-width: 120px;
    min-height: 120px;
    max-height: 120px;
    right: -10px;
  }

  .hero-description {
    text-align: center;
    font-size: 21px;
  }

  .slider {
    margin-left: 0;
  }

  .hero-image-slide-01 {
    min-height: 100vh;
    padding-left: 15px;
    padding-right: 15px;
  }

  .steps-text-flex, .steps-text-flex.opposite {
    left: auto;
  }

  .features-main-flex {
    grid-column-gap: 60px;
  }

  .image-story-wrapper {
    min-width: 480px;
    max-width: 480px;
  }

  .features-card-wrapper {
    grid-row-gap: 32px;
    max-width: 100%;
  }

  .image-5.kop-tamar {
    object-fit: cover;
    max-width: 90%;
    margin-top: 0;
    padding-top: 0;
    position: absolute;
    inset: auto 0% 0%;
  }

  .heading {
    position: relative;
    top: -130px;
  }

  .heading.heading-marcello {
    top: -100px;
  }

  .heading-4 {
    padding-bottom: 0;
    font-size: 24px;
  }

  .heading-5 {
    position: relative;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 42px;
    line-height: 50px;
  }

  .section.gradient-down {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding-left: 5px;
    padding-right: 5px;
  }

  .teams-wrapper {
    width: 100%;
  }

  .space-large {
    min-height: 5rem;
  }

  .center-on-mobile {
    text-align: center;
  }

  .events-card-link {
    min-height: auto;
    max-height: none;
    margin-left: auto;
    margin-right: auto;
  }

  .centered-on-mobile {
    text-align: center;
  }

  .hero-image-overlay {
    background-image: linear-gradient(0deg, var(--black), #11111180 54%, var(--transparent) 90%);
    display: block;
  }

  .numbers-grid {
    grid-template-columns: 1fr 1fr;
  }

  .history-line {
    display: none;
  }

  .hero-text-block {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .personeel.gastvrouw {
    margin-left: 15%;
    margin-right: 0%;
  }

  .personeel.kok {
    padding-right: 25%;
  }

  .features-slider-wrapper {
    height: 256px;
  }

  .mask {
    max-width: 448px;
  }

  .feature-slide {
    min-width: 448px;
    max-width: 448px;
  }

  .slides {
    left: auto;
  }

  .sub-hero-wrapper {
    justify-content: center;
    align-items: center;
    padding-left: 32px;
    padding-right: 32px;
  }

  .space-48px.hide-from-mobile {
    display: none;
  }

  .left-arrow-slide {
    top: -530px;
    right: 82px;
  }

  .right-arrow-slide {
    top: -530px;
    right: 50px;
  }

  .wrapper-team-content {
    max-width: 100%;
  }

  .team-single-image-wrapper {
    max-width: 70%;
  }

  .wrapper-thirds {
    min-width: 90%;
    max-width: 90%;
  }

  .blog-hero-single-image {
    height: 360px;
  }

  .blog-page-grid {
    grid-template-columns: 1fr;
  }

  .blod-card-author {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
  }

  .blog-side-bar-left {
    position: static;
  }

  .events-rich-text {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .title-wrapper-align-left {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .hero-text-wrapper {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    justify-content: flex-start;
    align-items: center;
  }

  .footer-bottom-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }

  .footer-bottom-flex {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .footer-social-links-wrapper {
    margin-top: 10px;
  }

  .footer-links-text {
    flex-wrap: wrap;
    padding-right: 12px;
  }

  .footer-links-wrapper {
    place-items: stretch center;
    position: relative;
  }

  .nav-menu {
    padding-left: 80px;
    padding-right: 80px;
  }

  .logo-brand {
    justify-content: center;
    align-items: center;
    padding-right: 10px;
  }

  .cta-image {
    min-width: 100vw;
    max-width: 100vw;
  }

  .cta-text-wrapper {
    text-align: center;
    align-items: center;
    padding-left: 64px;
    padding-right: 64px;
  }

  .cta-wrapper {
    grid-template-columns: 1fr;
  }

  .chef-image-wrapper {
    width: 20rem;
    max-width: 26.3rem;
    margin-left: 0;
    margin-right: 0;
    display: block;
    overflow: hidden;
  }

  .slides-overlay-left {
    left: -90%;
  }

  .feature-image {
    width: 128px;
    height: 128px;
  }

  .title-wrapper-thirds {
    text-align: center;
  }

  .features-image {
    min-width: 26.25rem;
    max-width: 26.25rem;
    min-height: 26.25rem;
    max-height: 26.25rem;
  }

  .gallery-grid {
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: .5fr .5fr;
    grid-auto-columns: 1fr;
    align-items: center;
  }

  .gallery-image-wrapper {
    flex-direction: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .half-hero-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    padding-top: 6rem;
  }

  .half-hero-section {
    background-image: linear-gradient(180deg, var(--matte), var(--black) 25%);
  }

  .circle-left-arrow, .circle-right-arrow {
    display: none;
  }

  .steps-text-flex {
    grid-row-gap: 15px;
    text-align: center;
    flex-direction: column;
  }

  .steps-text-flex.opposite {
    flex-direction: column;
  }

  .line-vertical-separator {
    display: none;
  }

  .features-main-flex {
    justify-content: space-around;
    align-items: flex-start;
  }

  .image-story-wrapper {
    min-width: 280px;
    max-width: 280px;
    min-height: 180px;
    max-height: 180px;
  }

  .features-card-wrapper {
    grid-row-gap: 16px;
  }
}

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

  .centered {
    font-size: 11vw;
    line-height: 12vw;
  }

  .section {
    overflow: hidden;
  }

  .section.gradient-down {
    padding-bottom: 0;
  }

  .section.background-matte {
    pointer-events: auto;
    display: none;
  }

  .title-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .team-wrapper-thirds {
    min-width: 90%;
    max-width: 90%;
    padding-left: 0;
    padding-right: 0;
  }

  .container-full.padding-10 {
    padding-top: 40px;
    padding-bottom: 100px;
  }

  .container-full.padding-15 {
    padding-bottom: 0%;
    padding-left: 10%;
    padding-right: 10%;
  }

  .team-image-wrapper {
    min-width: 100%;
    max-width: 100%;
  }

  .center-on-mobile {
    margin-left: 0;
  }

  .events-card-link {
    min-width: 100%;
    max-width: 100%;
  }

  .button {
    border-color: var(--primary);
    background-color: #dfb187;
  }

  .button-text-with-overlay {
    color: var(--black);
  }

  .hero-image-overlay {
    background-image: linear-gradient(0deg, var(--black), #11111180 80%, var(--transparent) 90%);
  }

  .wrapper-quarter {
    width: 80%;
    max-width: 80%;
  }

  .numbers-grid {
    grid-template-columns: 1fr;
    display: none;
  }

  .utilities-title-wrapper {
    margin-top: 64px;
    padding-left: 0;
    padding-right: 0;
  }

  .row-utilities {
    align-items: center;
  }

  .h1-mobile {
    font-size: 11vw;
  }

  .utilities-rtb-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-text-block {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    max-width: 100%;
    padding-left: 10%;
    padding-right: 10%;
  }

  .personeel {
    text-align: center;
  }

  .personeel.gastvrouw {
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-auto-flow: row;
    margin-top: 0;
    margin-left: 5%;
    padding-top: 0;
    padding-left: 5%;
    position: relative;
    top: -120px;
  }

  .personeel.kok {
    grid-template-columns: 1fr;
    place-items: center start;
    padding-right: 0%;
  }

  .who-card.who-card-tamar {
    top: -160px;
  }

  .who-card.who-card-marcello {
    justify-content: flex-start;
    align-items: center;
  }

  .chef-feature-flex {
    text-align: center;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
  }

  .chef-feature-flex.tekst-tamar {
    margin-left: 0%;
    margin-right: 5%;
    padding: 0% 5% 0% 0%;
    position: relative;
  }

  .who-signature {
    text-align: center;
    align-items: center;
  }

  .who-signature.signature-tamar {
    margin-top: -135px;
    top: -25px;
  }

  .who-signature.signature-marcello {
    padding-bottom: 0;
  }

  .center-text-block {
    text-align: center;
    align-items: center;
  }

  .features-slider-wrapper {
    height: 384px;
  }

  .feature-card-content {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .mask {
    max-width: 100%;
  }

  .feature-slide {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    min-width: 100%;
    max-width: 100%;
    padding-left: 32px;
    padding-right: 32px;
  }

  .sub-hero-wrapper {
    padding-left: 16px;
    padding-right: 16px;
  }

  .space-48px {
    min-height: 112px;
  }

  .max-width-480px.tekst-tamar {
    width: 280px;
    top: -160px;
  }

  .max-width-480px.tekst-marcello {
    padding-top: 15px;
  }

  .events-single-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }

  .hero-single-image {
    padding-left: 0;
    padding-right: 0;
  }

  .badge-card {
    inset: auto 0% 0%;
  }

  .left-arrow-slide {
    top: -300px;
    right: 62px;
  }

  .right-arrow-slide {
    top: -300px;
    right: 30px;
  }

  .slide-nav {
    z-index: 2147483647;
    justify-content: center;
    align-items: center;
    padding-top: 0;
    display: flex;
    inset: auto 0% -27%;
  }

  .image-team-full {
    object-fit: cover;
    min-height: 20rem;
    max-height: 20rem;
  }

  .team-bottom-content {
    padding-left: 0;
    padding-right: 0;
  }

  .content-card-body {
    max-width: 100%;
    min-height: auto;
    padding: 64px 1rem 0;
  }

  .team-single-image-wrapper {
    max-width: 100%;
    min-height: 20rem;
    max-height: 20rem;
  }

  .practice-wrapper {
    width: 90%;
    padding-left: 0;
    padding-right: 0;
    display: flex;
  }

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

  .wrapper-thirds {
    min-width: 100%;
    max-width: 100%;
  }

  .price-card-brochure {
    padding-left: 30px;
    padding-right: 30px;
  }

  .blog-hero-single-image {
    top: 600px;
  }

  .space-blog.smaller-on-mobile {
    min-height: 50px;
  }

  .blog-page-grid {
    grid-template-columns: 1fr;
    place-content: center;
    place-items: center;
    width: 100%;
    max-width: 100%;
  }

  .blod-card-author {
    width: 100%;
  }

  .blog-side-bar-left {
    min-width: 90%;
    max-width: 90%;
  }

  .events-rich-text {
    max-width: 85%;
  }

  .footer-bottom-text {
    white-space: normal;
    flex-flow: column wrap;
    place-content: center;
    align-items: center;
    width: 80%;
    display: flex;
  }

  .footer-paragraph {
    text-align: center;
    font-size: 17px;
  }

  .footer-content-wrapper {
    justify-content: center;
    align-items: center;
  }

  .flex-footer {
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .footer-text-wrapper {
    max-width: none;
  }

  .footer-text {
    text-align: center;
    font-size: 18px;
  }

  .space-mid {
    min-height: 60px;
    display: none;
  }

  .footer-bottom-text-link {
    text-align: center;
  }

  .footer-text-flex {
    text-align: center;
    flex-flow: column wrap;
    justify-content: center;
    align-self: center;
    align-items: center;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-bottom-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-bottom-flex {
    grid-row-gap: 15px;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer-social-links-wrapper {
    justify-content: space-between;
  }

  .footer-links-text {
    text-align: center;
    place-content: flex-start space-around;
    align-items: center;
  }

  .footer-links-wrapper {
    flex-direction: column;
    grid-template: "."
    / 1fr 1fr;
    align-items: center;
    display: flex;
  }

  .footer-link {
    text-align: center;
    font-size: 17px;
  }

  .footer-links-title {
    text-align: center;
    font-size: 20px;
  }

  .footer-flex-wrapper {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .footer-flex-block {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .utility-image {
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }

  .nav-link {
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    font-size: 24px;
    line-height: 24px;
  }

  .nav-menu {
    padding-top: 192px;
    padding-left: 0;
    padding-right: 0;
  }

  .logo-brand {
    margin-left: 8px;
  }

  .horizontal-line {
    width: 64px;
  }

  .horizontal-line._160px {
    width: 96px;
  }

  .cta-image {
    min-height: 360px;
    max-height: 360px;
  }

  .cta-text-wrapper {
    padding-left: 32px;
    padding-right: 32px;
  }

  .cta-text-wrapper.slide-from-right-animation {
    justify-content: center;
    align-items: center;
    margin-bottom: -329px;
    padding-left: 16px;
    padding-right: 16px;
    top: 5px;
  }

  .cta-wrapper {
    justify-content: space-around;
    align-items: center;
    margin-top: 10px;
    padding-bottom: 10px;
  }

  .chef-image-wrapper {
    min-width: 100%;
    max-width: 100%;
    min-height: 20rem;
    max-height: 20rem;
    margin-left: auto;
    margin-right: auto;
  }

  .chef-image-wrapper.image-wrapper-tamar {
    margin-bottom: 0;
  }

  .slides-overlay-right, .slides-overlay-left {
    display: none;
  }

  .image-steps-wrapper {
    min-height: 180px;
    max-height: 180px;
  }

  .title-wrapper-thirds {
    width: 100%;
    padding-left: 0;
    padding-right: 0;
  }

  .story-wrapper {
    min-width: 240px;
    max-width: 240px;
  }

  .text-wrapper {
    align-items: center;
  }

  .text-wrapper.align-left {
    text-align: center;
    justify-content: center;
    align-items: center;
    margin-top: -60px;
  }

  .features-image-wrapper {
    margin-left: auto;
    margin-right: auto;
  }

  .features-image {
    min-width: 100%;
    max-width: 100%;
    min-height: 85vw;
    max-height: 85vw;
  }

  .gallery-grid {
    grid-template-columns: .5fr;
  }

  .gallery-image-wrapper {
    width: 100vw;
    height: 100vw;
  }

  .half-hero-wrapper {
    height: 60vh;
    min-height: 540px;
    padding-left: 0;
    padding-right: 0;
  }

  .half-hero-image {
    height: 60vh;
    min-height: 540px;
  }

  .hero-main-wrapper, .slider {
    height: 100vh;
    min-height: 800px;
  }

  .hero-image-slide-01 {
    background-image: linear-gradient(#0000004d, #000c 30%, #0000004d 70%, #0000), url('../images/Danoi-elten.jpeg');
    background-position: 0 0, 50%;
    background-repeat: repeat, no-repeat;
    background-size: auto, cover;
    background-attachment: scroll, scroll;
    height: 100vh;
    min-height: 800px;
    padding-left: 30px;
    padding-right: 30px;
  }

  .steps-inro-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .features-wrapper {
    max-width: 100%;
  }

  .steps-feature-wrapper {
    display: none;
  }

  .image-story-wrapper {
    min-width: 240px;
    max-width: 240px;
    min-height: 240px;
    max-height: 240px;
  }

  .max-width-450px {
    max-width: 240px;
  }

  .features-card-wrapper {
    padding-left: 0;
    padding-right: 0;
  }

  .image-scroll-movement {
    object-fit: cover;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    position: absolute;
    inset: 0%;
  }

  .image-5.kop-tamar {
    flex: 1;
  }

  .heading-5.heading-tamar {
    width: 280px;
    top: -180px;
  }
}

#w-node-_9ce6fa77-185a-8411-7da5-88575656dc36-1699417c, #w-node-_9ce6fa77-185a-8411-7da5-88575656dc39-1699417c, #w-node-_9ce6fa77-185a-8411-7da5-88575656dc3c-1699417c, #w-node-_9ce6fa77-185a-8411-7da5-88575656dc3f-1699417c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_89dd829f-92a5-c4ac-2c81-a6dd6b9ab16e-8d474cea {
  grid-area: Area;
  justify-self: end;
}

#w-node-_2cf8803d-699e-ebce-01fa-03434d87a8c3-7d6933c9, #w-node-_6b33ddfa-b200-765c-0678-f9aab3d63a3b-1699417d, #w-node-_6b33ddfa-b200-765c-0678-f9aab3d63a3c-1699417d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6b33ddfa-b200-765c-0678-f9aab3d63a49-1699417d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: end;
}

@media screen and (min-width: 1440px) {
  #w-node-_2cf8803d-699e-ebce-01fa-03434d87a8c3-7d6933c9 {
    justify-self: end;
  }
}

@media screen and (max-width: 991px) {
  #w-node-_036fb8f0-612e-3761-1d22-0321bf9cc270-1699417c {
    align-self: center;
  }

  #w-node-_6b33ddfa-b200-765c-0678-f9aab3d63a49-1699417d {
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_036fb8f0-612e-3761-1d22-0321bf9cc270-1699417c {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_6b33ddfa-b200-765c-0678-f9aab3d63a3b-1699417d {
    justify-self: center;
  }
}


