@font-face {
  font-family: Nunito Sans;
  src: url('../fonts/NunitoSans-Regular.ttf') format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Nunito Sans;
  src: url('../fonts/NunitoSans-Light.ttf') format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Nunito Sans;
  src: url('../fonts/NunitoSans-SemiBold.ttf') format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Nunito Sans;
  src: url('../fonts/NunitoSans-Bold.ttf') format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Nunito Sans;
  src: url('../fonts/NunitoSans-ExtraBold.ttf') format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --nature-beige: #ebe1b9;
  --black: #323232;
  --light-grey: #f4f4f4;
  --olive: #879623;
  --sunrise-pink: #ef787c;
}

.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-vflex {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

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

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

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

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

body {
  background-color: var(--nature-beige);
  color: var(--black);
  font-family: Nunito Sans, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
}

p {
  margin-bottom: 0;
}

a {
  border-color: var(--black);
  color: var(--black);
  text-decoration: underline;
}

ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.25rem;
}

ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-top: .25rem;
  margin-bottom: .25rem;
  padding-left: .5rem;
}

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

label {
  margin-bottom: .25rem;
  font-weight: 500;
}

blockquote {
  border-left: .1875rem solid var(--black);
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

figure {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

figcaption {
  text-align: center;
  margin-top: .25rem;
}

.z-index-2 {
  z-index: 2;
  position: relative;
}

.max-width-full {
  width: 100%;
  max-width: none;
}

.layer {
  justify-content: center;
  align-items: center;
  position: absolute;
  inset: 0%;
}

.overflow-hidden {
  overflow: hidden;
}

.global-styles {
  display: block;
  position: fixed;
  inset: 0% auto auto 0%;
}

.z-index-1 {
  z-index: 1;
  position: relative;
}

.hide {
  display: none;
}

.text-style-link {
  text-decoration: underline;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.max-width-medium {
  width: 100%;
  max-width: 35rem;
}

.max-width-xsmall {
  width: 100%;
  max-width: 25rem;
}

.max-width-xxsmall {
  width: 100%;
  max-width: 20rem;
}

.page-wrapper {
  background-color: #0000;
}

.container-large {
  margin-left: auto;
  margin-right: auto;
}

.max-width-xxlarge {
  width: 100%;
  max-width: 80rem;
}

.align-center {
  margin-left: auto;
  margin-right: auto;
}

.spacing-clean {
  margin: 0;
  padding: 0;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.max-width-small {
  width: 100%;
  max-width: 30rem;
}

.form-message-error {
  margin-top: .75rem;
  padding: .75rem;
}

.utility_component {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 75vh;
  max-height: 100%;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  display: flex;
}

.utility_form-block {
  text-align: center;
  flex-direction: column;
  max-width: 20rem;
  display: flex;
}

.utility_form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.utility_image {
  margin-bottom: .5rem;
  margin-left: auto;
  margin-right: auto;
}

.container-medium {
  width: 100%;
  max-width: 64rem;
  margin-left: auto;
  margin-right: auto;
}

.container-small {
  width: 100%;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

.margin-tiny {
  margin: .25rem;
}

.margin-xxsmall {
  margin: .5rem;
}

.margin-xsmall {
  margin: 1rem;
}

.margin-small {
  margin: 1.5rem;
}

.margin-medium {
  margin: 2rem;
}

.margin-large {
  margin: 3rem;
}

.margin-xlarge {
  margin: 4rem;
}

.margin-xxlarge {
  margin: 5rem;
}

.margin-huge {
  margin: 6rem;
}

.margin-xhuge {
  margin: 7rem;
}

.margin-xxhuge {
  margin: 10rem;
}

.margin-0 {
  margin: 0;
}

.padding-0 {
  padding: 0;
}

.padding-tiny {
  padding: .25rem;
}

.padding-xxsmall {
  padding: .5rem;
}

.padding-xsmall {
  padding: 1rem;
}

.padding-small {
  padding: 1.5rem;
}

.padding-medium {
  padding: 2rem;
}

.padding-large {
  padding: 3rem;
}

.padding-xlarge {
  padding: 4rem;
}

.padding-xxlarge {
  padding: 5rem;
}

.padding-huge {
  padding: 6rem;
}

.padding-xhuge {
  padding: 7rem;
}

.padding-xxhuge {
  padding: 10rem;
}

.margin-top, .margin-top.margin-custom1, .margin-top.margin-huge, .margin-top.margin-small, .margin-top.margin-tiny, .margin-top.margin-custom3 {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-top.margin-medium {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  display: block;
}

.margin-top.margin-xxsmall, .margin-top.margin-xxhuge, .margin-top.margin-custom2, .margin-top.margin-xsmall, .margin-top.margin-large, .margin-top.margin-xxlarge, .margin-top.margin-xlarge, .margin-top.margin-0, .margin-top.margin-xhuge {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-top.margin-medium {
  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;
  display: grid;
}

.margin-top.margin-medium.baeume_modal-button {
  display: block;
}

.margin-top.margin-medium.button-hide {
  display: none;
}

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-small {
  flex: none;
}

.margin-bottom.margin-large {
  flex-direction: row;
  justify-content: space-around;
  align-items: stretch;
  height: 100%;
  display: flex;
}

.margin-bottom.margin-xxlarge, .margin-bottom.margin-medium, .margin-bottom.margin-custom3, .margin-bottom.margin-custom1, .margin-bottom.margin-tiny, .margin-bottom.margin-small, .margin-bottom.margin-large, .margin-bottom.margin-0, .margin-bottom.margin-xlarge, .margin-bottom.margin-xhuge, .margin-bottom.margin-xxhuge, .margin-bottom.margin-huge {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-xxsmall {
  text-align: left;
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-custom2, .margin-bottom.margin-xsmall {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-left, .margin-left.margin-tiny, .margin-left.margin-xxlarge, .margin-left.margin-0, .margin-left.margin-small, .margin-left.margin-xsmall, .margin-left.margin-large, .margin-left.margin-huge, .margin-left.margin-xlarge, .margin-left.margin-custom3, .margin-left.margin-xxsmall, .margin-left.margin-custom1, .margin-left.margin-custom2, .margin-left.margin-xhuge, .margin-left.margin-xxhuge, .margin-left.margin-medium {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 0;
}

.margin-right, .margin-right.margin-huge, .margin-right.margin-xsmall, .margin-right.margin-xxhuge, .margin-right.margin-small, .margin-right.margin-medium, .margin-right.margin-xlarge, .margin-right.margin-custom3, .margin-right.margin-custom2, .margin-right.margin-xxsmall, .margin-right.margin-xhuge, .margin-right.margin-custom1, .margin-right.margin-large, .margin-right.margin-0, .margin-right.margin-xxlarge, .margin-right.margin-tiny {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
}

.margin-vertical, .margin-vertical.margin-medium, .margin-vertical.margin-xlarge, .margin-vertical.margin-xxsmall, .margin-vertical.margin-xxlarge, .margin-vertical.margin-huge, .margin-vertical.margin-0, .margin-vertical.margin-xxhuge, .margin-vertical.margin-tiny, .margin-vertical.margin-xsmall, .margin-vertical.margin-custom1, .margin-vertical.margin-small, .margin-vertical.margin-large, .margin-vertical.margin-xhuge, .margin-vertical.margin-custom2, .margin-vertical.margin-custom3 {
  margin-left: 0;
  margin-right: 0;
}

.margin-horizontal, .margin-horizontal.margin-medium, .margin-horizontal.margin-tiny, .margin-horizontal.margin-custom3, .margin-horizontal.margin-0, .margin-horizontal.margin-xxlarge, .margin-horizontal.margin-xhuge, .margin-horizontal.margin-huge, .margin-horizontal.margin-xlarge, .margin-horizontal.margin-custom1, .margin-horizontal.margin-xxsmall, .margin-horizontal.margin-xsmall, .margin-horizontal.margin-large, .margin-horizontal.margin-custom2, .margin-horizontal.margin-small, .margin-horizontal.margin-xxhuge {
  margin-top: 0;
  margin-bottom: 0;
}

.padding-top, .padding-top.padding-xhuge, .padding-top.padding-xxhuge, .padding-top.padding-0, .padding-top.padding-large, .padding-top.padding-custom2, .padding-top.padding-xlarge, .padding-top.padding-huge, .padding-top.padding-xxsmall, .padding-top.padding-custom3, .padding-top.padding-tiny, .padding-top.padding-medium, .padding-top.padding-xxlarge, .padding-top.padding-small, .padding-top.padding-xsmall, .padding-top.padding-custom1 {
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-bottom, .padding-bottom.padding-xlarge, .padding-bottom.padding-small, .padding-bottom.padding-xxhuge, .padding-bottom.padding-large, .padding-bottom.padding-xhuge, .padding-bottom.padding-custom2, .padding-bottom.padding-xxsmall, .padding-bottom.padding-xxlarge, .padding-bottom.padding-custom3, .padding-bottom.padding-custom1, .padding-bottom.padding-xsmall, .padding-bottom.padding-huge, .padding-bottom.padding-tiny, .padding-bottom.padding-medium, .padding-bottom.padding-0 {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.padding-left, .padding-left.padding-xhuge, .padding-left.padding-xlarge, .padding-left.padding-0, .padding-left.padding-small, .padding-left.padding-xsmall, .padding-left.padding-medium, .padding-left.padding-xxhuge, .padding-left.padding-huge, .padding-left.padding-custom1, .padding-left.padding-tiny, .padding-left.padding-xxsmall, .padding-left.padding-custom3, .padding-left.padding-custom2, .padding-left.padding-xxlarge, .padding-left.padding-large {
  padding-top: 0;
  padding-bottom: 0;
  padding-right: 0;
}

.padding-right, .padding-right.padding-xxhuge, .padding-right.padding-custom2, .padding-right.padding-large, .padding-right.padding-xlarge, .padding-right.padding-tiny, .padding-right.padding-custom3, .padding-right.padding-custom1, .padding-right.padding-xsmall, .padding-right.padding-xxlarge, .padding-right.padding-xxsmall, .padding-right.padding-medium, .padding-right.padding-xhuge, .padding-right.padding-huge, .padding-right.padding-0, .padding-right.padding-small {
  padding-top: 0;
  padding-bottom: 0;
  padding-left: 0;
}

.padding-vertical, .padding-vertical.padding-0, .padding-vertical.padding-xxhuge, .padding-vertical.padding-large, .padding-vertical.padding-custom3, .padding-vertical.padding-medium, .padding-vertical.padding-tiny, .padding-vertical.padding-xxlarge, .padding-vertical.padding-custom1, .padding-vertical.padding-xsmall, .padding-vertical.padding-xhuge, .padding-vertical.padding-xlarge, .padding-vertical.padding-custom2, .padding-vertical.padding-xxsmall, .padding-vertical.padding-huge, .padding-vertical.padding-small {
  padding-left: 0;
  padding-right: 0;
}

.padding-horizontal, .padding-horizontal.padding-xxsmall, .padding-horizontal.padding-0, .padding-horizontal.padding-custom3, .padding-horizontal.padding-huge, .padding-horizontal.padding-xsmall, .padding-horizontal.padding-medium, .padding-horizontal.padding-xxlarge, .padding-horizontal.padding-large, .padding-horizontal.padding-xhuge, .padding-horizontal.padding-custom1, .padding-horizontal.padding-tiny, .padding-horizontal.padding-custom2, .padding-horizontal.padding-xxhuge, .padding-horizontal.padding-small, .padding-horizontal.padding-xlarge {
  padding-top: 0;
  padding-bottom: 0;
}

.overflow-scroll {
  overflow: scroll;
}

.overflow-auto {
  overflow: auto;
}

.text-weight-medium {
  font-weight: 400;
}

.text-size-medium {
  font-size: 1.25rem;
  font-weight: 400;
}

.text-size-medium.text-shadow.text-color-white {
  text-shadow: none;
}

.heading-medium {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
}

.rl-styleguide-message-delete-this {
  text-align: center;
  background-color: #f1f0ee;
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.rl-styleguide-message-wrapper {
  text-align: left;
  background-color: #e4e2df;
  border-radius: 16px;
  padding: 2.5rem;
}

.rl-styleguide-message-fixed {
  z-index: 99;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2.5rem;
  display: flex;
  position: fixed;
  inset: 0% 0% auto;
}

.margin-top-auto {
  margin-top: auto;
}

.text-style-quote {
  border-left: .1875rem solid #000;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.heading-style-h2 {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.2;
}

.rl-styleguide_tutorial-callout {
  grid-column-gap: 2rem;
  background-color: #fff;
  border: 1px solid #000;
  justify-content: space-between;
  align-items: center;
  padding: .75rem .75rem .75rem 1rem;
  display: flex;
}

.rl-styleguide_callout-link-wrapper {
  background-image: linear-gradient(135deg, #ff744826, #ff484826 50%, #6248ff26), linear-gradient(#fff, #fff);
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: .75rem 1rem;
  display: flex;
}

.rl-styleguide_heading {
  z-index: 4;
  color: #fff;
  background-color: #000;
  padding: .25rem .5rem;
  position: sticky;
  top: 0;
}

.styleguide_grid-colours {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
}

.background-color-gray {
  background-color: var(--light-grey);
}

.heading-style-h6 {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
}

.rl-styleguide_item-row {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 15rem 1fr;
  align-items: center;
}

.icon-1x1-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}

.rl-styleguide_empty-space {
  z-index: -1;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2rem;
  display: flex;
  position: relative;
}

.shadow-xxlarge {
  box-shadow: 0 32px 64px -12px #00000024;
}

.rl-styleguide_icons-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  display: grid;
}

.icon-embed-medium {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;
  display: flex;
}

.form-radio {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.125rem;
  display: flex;
}

.heading-style-h5 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 1.4;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.heading-style-h1 {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
}

.form-checkbox-icon {
  border: 1px solid var(--black);
  cursor: pointer;
  border-radius: 0;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.25rem;
  margin-right: .5rem;
  transition: all .2s;
}

.form-checkbox-icon.w--redirected-checked {
  box-shadow: none;
  background-color: #000;
  background-size: 16px 16px;
  border-width: 1px;
  border-color: #000;
}

.form-checkbox-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
}

.form-checkbox-label {
  margin-bottom: 0;
}

.text-size-tiny {
  font-size: .875rem;
}

.field-label {
  margin-bottom: .5rem;
  font-weight: 400;
}

.button {
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--nature-beige);
  text-align: center;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: .5rem;
  padding: .75rem 1.5rem;
  font-weight: 700;
  transition: background-color .2s;
}

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

.button.is-link {
  color: var(--black);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: underline;
}

.button.is-link:hover {
  color: var(--sunrise-pink);
  line-height: 1;
  text-decoration: none;
}

.button.is-link.is-alternate {
  color: var(--nature-beige);
  background-color: #0000;
}

.button.is-link.is-alternate:hover {
  color: var(--olive);
  background-color: #0000;
}

.button.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.button.is-icon {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.button.is-secondary {
  color: var(--black);
  background-color: #0000;
  border-width: 2px;
  transition: opacity .2s, background-color .2s;
}

.button.is-secondary:hover {
  border-color: var(--olive);
  background-color: var(--olive);
}

.button.is-secondary.is-alternate {
  border-color: var(--nature-beige);
  color: var(--nature-beige);
  background-color: #0000;
}

.button.is-secondary.is-alternate:hover {
  border-color: var(--olive);
  color: var(--black);
}

.button.is-secondary.is-alternate.is-alternate-hover.button-hide {
  display: none;
}

.button.is-secondary.is-small:hover, .button.is-secondary.is-small.is-alternate:hover {
  background-color: var(--olive);
}

.button.is-secondary.is-small.is-alternate.is-alternate-hover:hover {
  background-color: var(--sunrise-pink);
}

.button.is-small {
  padding: .5rem 1.25rem;
}

.button.is-alternate {
  border-color: var(--nature-beige);
  background-color: var(--nature-beige);
  color: var(--black);
  text-transform: uppercase;
  transition: border-color .2s, background-color .2s;
}

.button.is-alternate:hover {
  border-color: var(--olive);
  background-color: var(--olive);
}

.button.is-alternate.is-alternate-hover {
  transition: border-color .2s, background-color .2s;
  display: inline-block;
}

.button.is-alternate.is-alternate-hover:hover, .button.is-alternate-hover:hover {
  border-color: var(--sunrise-pink);
  background-color: var(--sunrise-pink);
}

.text-weight-normal {
  font-weight: 400;
}

.heading-style-h4 {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.3;
}

.text-style-italic {
  font-style: italic;
}

.icon-1x1-xxsmall {
  width: 1rem;
  height: 1rem;
}

.form-radio-label {
  margin-bottom: 0;
}

.rl-styleguide_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  place-content: start;
  place-items: start;
  padding-bottom: 1rem;
  display: grid;
}

.rl-styleguide_item.is-stretch {
  grid-row-gap: 1rem;
  justify-items: stretch;
}

.icon-1x1-xlarge {
  width: 6.5rem;
  height: 6.5rem;
}

.shadow-xlarge {
  box-shadow: 0 24px 48px -12px #0000002e;
}

.text-weight-light {
  font-weight: 300;
}

.rl-styleguide_label {
  color: var(--nature-beige);
  white-space: nowrap;
  cursor: context-menu;
  background-color: #0073e6;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.rl-styleguide_label.is-html-tag {
  background-color: #be4aa5;
}

.text-size-regular {
  font-size: 1.125rem;
}

.text-weight-xbold {
  font-weight: 800;
}

.text-align-right {
  text-align: right;
}

.text-weight-bold {
  font-weight: 700;
}

.icon-height-xlarge {
  height: 6.5rem;
}

.heading-style-h3 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.2;
}

.icon-1x1-large {
  width: 5rem;
  height: 5rem;
}

.form-input {
  border: 1px solid var(--black);
  background-color: var(--nature-beige);
  color: var(--black);
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input:focus {
  border-color: #000;
}

.form-input::placeholder {
  color: #0009;
}

.form-input.is-text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.form-input.is-select-input {
  background-color: #fff;
  background-image: none;
}

.rl-styleguide_paste-text {
  color: #00000080;
  text-align: center;
  border: 1px dashed #00000026;
  padding: 1rem;
}

.rl-styleguide_button-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1.5rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: auto;
  grid-auto-columns: max-content;
  grid-auto-flow: row;
  place-items: center start;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
  display: grid;
}

.rl-styleguide_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  padding-bottom: 4rem;
}

.icon-embed-custom1 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.25rem;
  height: 1.25rem;
  display: flex;
}

.rl-styleguide_color {
  padding-bottom: 8rem;
}

.rl-styleguide_color.is-black {
  background-color: var(--black);
  color: #323232;
}

.rl-styleguide_color.is-gray {
  background-color: var(--light-grey);
}

.rl-styleguide_color.is-beige {
  background-color: var(--nature-beige);
}

.rl-styleguide_color.is-olive {
  background-color: var(--olive);
}

.rl-styleguide_color.is-pink {
  background-color: var(--sunrise-pink);
}

.button-group {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: block;
}

.button-group.is-center {
  justify-content: flex-start;
  display: block;
}

.text-color-white {
  color: var(--nature-beige);
}

.background-color-beige {
  background-color: var(--nature-beige);
}

.text-weight-semibold {
  font-weight: 600;
}

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

.text-style-nowrap {
  white-space: nowrap;
}

.text-align-left {
  text-align: left;
}

.text-align-left.max-width-full {
  align-self: center;
}

.icon-embed-large {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  display: flex;
}

.shadow-xxsmall {
  box-shadow: 0 1px 2px #0000000d;
}

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

.icon-embed-xxsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.icon-height-xxsmall {
  height: 1rem;
}

.background-color-black {
  background-color: var(--black);
  color: var(--nature-beige);
}

.shadow-xsmall {
  box-shadow: 0 1px 3px #0000001a, 0 1px 2px #0000000f;
}

.icon-1x1-custom1 {
  width: 1.25rem;
  height: 1.25rem;
}

.rl-styleguide_header {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
}

.rl-styleguide_subheading {
  z-index: 3;
  color: #000;
  background-color: #d3d3d3;
  padding: .25rem .5rem;
  position: sticky;
  top: 2rem;
}

.form-radio-icon {
  border: 1px solid var(--black);
  cursor: pointer;
  border-radius: 100px;
  width: 1.125rem;
  min-width: 1.125rem;
  height: 1.125rem;
  min-height: 1.125rem;
  margin-top: 0;
  margin-left: -1.125rem;
  margin-right: .5rem;
}

.form-radio-icon.w--redirected-checked {
  background-color: #fff;
  background-image: none;
  border-width: 6px;
  border-color: #000;
}

.form-radio-icon.w--redirected-focus {
  box-shadow: none;
  border-color: #000;
  margin-top: 0;
}

.rl-styleguide_shadows-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  align-items: start;
}

.form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-style-allcaps {
  letter-spacing: .04em;
  text-transform: uppercase;
}

.rl-styleguide_callout-link {
  background-color: #fff;
  background-image: linear-gradient(135deg, #ff7448, #ff4848 50%, #6248ff);
  justify-content: space-between;
  align-items: center;
  padding: 1px;
  display: flex;
}

.icon-height-custom1 {
  height: 1.25rem;
}

.text-align-center {
  text-align: center;
  flex: 1;
  align-self: center;
}

.text-size-small {
  font-size: 1rem;
}

.class-label-column {
  grid-column-gap: .75rem;
  grid-row-gap: .75rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-field-wrapper {
  position: relative;
}

.icon-height-small {
  height: 2rem;
}

.icon-height-large {
  height: 5rem;
}

.shadow-large {
  box-shadow: 0 20px 24px -4px #00000014, 0 8px 8px -4px #00000008;
}

.icon-embed-xlarge {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 6.5rem;
  height: 6.5rem;
  display: flex;
}

.icon-1x1-small {
  width: 2rem;
  height: 2rem;
}

.class-label-row {
  grid-column-gap: .25rem;
  grid-row-gap: .25rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.text-rich-text h1 {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.text-rich-text blockquote {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.text-rich-text h2, .text-rich-text h3, .text-rich-text h4 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}

.text-rich-text h5, .text-rich-text h6 {
  margin-top: 1.25rem;
  margin-bottom: 1rem;
}

.text-rich-text p {
  margin-bottom: 1rem;
}

.text-rich-text a {
  text-decoration: underline;
}

.text-rich-text figcaption {
  border-left: 2px solid var(--black);
  text-align: left;
  margin-top: .5rem;
  padding-left: .5rem;
  font-size: .875rem;
}

.icon-height-medium {
  height: 3rem;
}

.form-checkbox {
  align-items: center;
  margin-bottom: 0;
  padding-left: 1.25rem;
  display: flex;
}

.shadow-small {
  box-shadow: 0 4px 8px -2px #0000001a, 0 2px 4px -2px #0000000f;
}

.icon-1x1-medium {
  width: 3rem;
  height: 3rem;
}

.rl-styleguide_button-row {
  grid-column-gap: 1rem;
  display: flex;
}

.shadow-medium {
  box-shadow: 0 12px 16px -4px #00000014, 0 4px 6px -2px #00000008;
}

.text-size-large {
  font-size: 1.45rem;
}

.text-size-large.text-weight-semibold, .text-size-large.text-weight-semibold.text-align-center {
  text-align: center;
}

.text-size-large.navbar16_bottom-legal_link {
  color: var(--black);
  font-size: .9rem;
}

.text-size-large.navbar16_bottom-legal_link:hover {
  color: var(--sunrise-pink);
}

.icon-height-xsmall {
  height: 1.5rem;
}

.rl-styleguide_spacing-all {
  display: none;
}

.page-wrapper-2 {
  z-index: 0;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.rl-styleguide_empty-box {
  z-index: -1;
  background-color: #eee;
  min-width: 3rem;
  height: 3rem;
  position: relative;
}

.rl-styleguide_spacing {
  border: 1px dashed #d3d3d3;
}

.padding-global {
  color: var(--black);
  background-color: #0000;
  padding-left: 5%;
  padding-right: 5%;
}

.padding-global.background-color-black {
  background-color: var(--black);
}

.padding-section-medium {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.padding-section-large {
  flex: 0 auto;
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.cta4_background-image-wrapper {
  z-index: -1;
  position: absolute;
  inset: 0%;
}

.image-overlay-layer {
  z-index: 1;
  background-color: #00000040;
  position: absolute;
  inset: 0%;
}

.header-100vh {
  align-items: flex-end;
  display: flex;
}

.section_header5 {
  height: 100vh;
  max-height: 60rem;
}

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

.contact-modal3_close-button {
  margin-right: 5%;
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.success-text {
  font-weight: 600;
}

.section_contact-modal3 {
  position: relative;
}

.contact-modal3_form-block {
  flex-direction: column;
  align-items: stretch;
}

.error-message {
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

.button-2 {
  border: 1px solid var(--black);
  background-color: var(--black);
  color: var(--nature-beige);
  text-align: center;
  padding: .75rem 1.5rem;
}

.button-2.is-secondary {
  color: var(--black);
  background-color: #0000;
}

.button-2.is-secondary.is-alternate {
  border-color: var(--nature-beige);
  color: var(--nature-beige);
  background-color: #0000;
}

.button-2.is-link {
  color: var(--black);
  background-color: #0000;
  border-style: none;
  padding: .25rem 0;
  line-height: 1;
  text-decoration: none;
}

.button-2.is-link.is-icon {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
}

.button-2.is-navbar4-button {
  z-index: 1;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.button-2.is-navbar16-button {
  z-index: 1;
  padding-top: .5rem;
  padding-bottom: .5rem;
  position: relative;
}

.form-input-2 {
  border: 1px solid var(--black);
  background-color: var(--nature-beige);
  color: var(--black);
  flex: 1;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input-2:focus {
  border-color: #000;
}

.form-input-2::placeholder {
  color: #0009;
}

.form-input-2.is-text-area {
  height: auto;
  min-height: 11.25rem;
  padding-top: .75rem;
  padding-bottom: .75rem;
  overflow: auto;
}

.form-input-2.is-select-input {
  background-color: var(--nature-beige);
  background-image: none;
}

.error-text {
  color: #e23939;
}

.contact-modal3_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.vision-modal_content-wrapper {
  background-color: var(--nature-beige);
  width: 100%;
  max-width: 50%;
  height: 100vh;
  padding: 5rem 4rem;
  position: absolute;
  overflow: auto;
}

.vision-modal_content-wrapper.text-color-black {
  max-width: 52vw;
  overflow: auto;
}

.success-message {
  background-color: var(--light-grey);
  padding: 1.5rem;
}

.vision-modal_component {
  z-index: 99;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.vision-modal_background-overlay {
  z-index: -1;
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.cta27_background-image-wrapper {
  z-index: -1;
  background-color: var(--olive);
  position: absolute;
  inset: 0%;
}

.section_olivenoel {
  position: relative;
}

.cta27_background-image {
  object-fit: contain;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  inset: 0%;
}

.cta27_background-image.mobil {
  display: none;
}

.cta27_background-image.desktop {
  width: 65%;
  margin-left: auto;
  margin-right: auto;
}

.header37_image {
  object-fit: cover;
  width: 100%;
  min-height: 100%;
  position: absolute;
  inset: 0%;
  transform: rotate(0);
}

.header37_image.mobile {
  display: block;
}

.header37_image.desktop {
  object-fit: cover;
  min-height: auto;
  display: none;
}

.header37_image.transformed {
  transform: none;
}

.header37_image.dekstop {
  display: none;
}

.header_component {
  grid-column-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.header37_image-wrapper {
  object-fit: cover;
  height: 100%;
  padding-top: 100%;
  position: relative;
}

.header37_content {
  width: 100%;
  max-width: 35rem;
  padding: 32px;
}

.header36_image {
  object-fit: cover;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 0%;
  background-size: auto;
  width: 100%;
  height: 100vh;
  max-height: 60rem;
}

.header36_component {
  grid-column-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.header36_content {
  max-width: 35rem;
  padding: 36px;
}

.layout210_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  display: grid;
}

.team6_list {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.team6_social {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-self: center;
  margin-top: 1.5rem;
  display: grid;
}

.team6_image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.social-icon {
  width: 1.5rem;
  height: 1.5rem;
}

.team6_item {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  display: flex;
}

.team6_image-wrapper {
  width: 20rem;
  min-width: auto;
  max-width: 20rem;
  height: 20rem;
  min-height: auto;
  max-height: 20rem;
  padding-top: 100%;
  position: relative;
  overflow: visible;
}

.section_cta15 {
  display: block;
  position: relative;
}

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

.cta15_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.cta15_background-image-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  position: absolute;
  inset: 0%;
}

.contact6_item {
  display: flex;
}

.contact6_form-block {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

.form-field-2col {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact6_contact-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: grid;
}

.content6_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.contact6_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.form-radio-2col {
  grid-column-gap: 1.5rem;
  grid-row-gap: .875rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact6_icon-wrapper {
  flex: none;
  align-self: flex-start;
  margin-right: 1rem;
}

.contact-modal6_form-block {
  flex-direction: column;
  align-items: stretch;
}

.contact-modal6_background-overlay {
  z-index: -1;
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.contact-modal6_content-wrapper {
  background-color: var(--nature-beige);
  width: 100vw;
  height: 100vh;
  padding: 5rem 5%;
  position: absolute;
  overflow: scroll;
}

.contact-modal6_close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.contact-modal6_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact-modal6_component {
  z-index: 99;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.section_contact-modal6 {
  position: relative;
}

.contact1_component {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

.section_kontakt.background-color-beige {
  display: none;
}

.contact1_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.footer8_form {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: minmax(min-content, max-content);
  grid-auto-columns: 1fr;
  margin-bottom: .75rem;
  display: grid;
}

.footer8_credit-text {
  font-size: .875rem;
}

.footer8_top-wrapper {
  grid-row-gap: 3.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  align-items: start;
}

.footer8_bottom-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.footer8_form-block {
  min-width: 25rem;
  max-width: 35rem;
  margin-bottom: 0;
}

.footer8_link-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0px;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: minmax(200px, 1fr);
  grid-auto-columns: minmax(200px, 1fr);
  grid-auto-flow: column;
  justify-content: center;
  justify-items: stretch;
  display: grid;
}

.footer8_logo-link {
  margin-bottom: 2rem;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 0;
}

.footer8_right-wrapper {
  color: var(--nature-beige);
  flex-direction: column;
  display: flex;
}

.footer8_link {
  color: var(--nature-beige);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 300;
}

.footer8_link:hover {
  color: var(--sunrise-pink);
}

.footer8_left-wrapper {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.footer8_legal-link {
  color: var(--nature-beige);
  font-size: .875rem;
  font-weight: 300;
}

.footer8_legal-link:hover {
  color: var(--sunrise-pink);
}

.line-divider {
  background-color: var(--nature-beige);
  color: var(--nature-beige);
  width: 100%;
  height: 1px;
}

.footer8_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: grid;
}

.menu-icon4_line-top {
  background-color: var(--nature-beige);
  width: 24px;
  height: 2px;
  padding-bottom: 0;
  padding-right: 0;
}

.navbar4_menu-dropdown {
  margin-left: 0;
  font-size: 24px;
}

.menu-icon_line-middle-base {
  background-color: #0000;
  width: 24px;
  height: 2px;
  position: absolute;
}

.navbar4_menu-button {
  padding: 0;
}

.navbar4_menu-button.w--open {
  background-color: #0000;
}

.navbar4_link {
  text-align: center;
  flex: 0 auto;
  align-self: auto;
  margin-top: .5rem;
  margin-bottom: .5rem;
  margin-left: 0;
  padding: .5rem 0;
  font-size: 24px;
  display: inline-block;
  position: static;
}

.navbar4_link.w--current {
  color: var(--black);
}

.navbar4_menu {
  background-color: var(--nature-beige);
  flex-direction: column;
  justify-content: center;
  align-self: auto;
  align-items: center;
  height: 100vh;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: absolute;
  overflow: auto;
}

.navbar4_logo-link {
  padding-left: 0;
}

.menu-icon4_line-middle {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 2px;
  margin-top: 6px;
  margin-bottom: 6px;
  display: flex;
}

.menu-icon4_wrapper {
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.navbar4_container {
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar4_dropdown-list {
  position: static;
  overflow: hidden;
}

.navbar4_dropdown-list.w--open {
  background-color: var(--nature-beige);
  position: static;
}

.navbar4_wrapper {
  grid-column-gap: 1rem;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.navbar4_component {
  border-bottom: 1px solid var(--black);
  background-color: var(--nature-beige);
  align-items: center;
  width: 100vw;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.dropdown-icon {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  margin-top: auto;
  margin-bottom: auto;
  margin-right: 1rem;
  display: flex;
  position: absolute;
  inset: 0% 0% 0% auto;
}

.dropdown-icon.is-navbar4 {
  width: 1.5rem;
  height: 1.5rem;
}

.menu-icon4_line-bottom {
  background-color: var(--nature-beige);
  width: 24px;
  height: 2px;
}

.navbar4_dropdown-link {
  margin-top: .5rem;
  margin-bottom: .5rem;
  margin-left: 1.5rem;
  padding: .5rem 0;
  font-size: 24px;
}

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

.navbar4_menu-wrapper {
  flex-direction: column;
  justify-content: center;
  align-self: center;
  align-items: center;
  height: 100%;
  margin-top: -4.5rem;
  display: flex;
}

.menu-icon4 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  display: flex;
  position: relative;
}

.menu-icon_line-middle-top {
  z-index: 2;
  background-color: #0000;
  width: 24px;
  height: 2px;
  position: absolute;
  inset: 0;
}

.navbar4_dropdown-toggle {
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding: .5rem 4rem .5rem 0;
}

.div-block {
  flex-direction: column;
  flex: 0 auto;
  order: 0;
  align-self: center;
  align-items: center;
  display: flex;
  position: static;
}

.navbar16_wrapper {
  grid-column-gap: 1rem;
  flex-direction: row;
  align-items: center;
  display: flex;
}

.navbar16_component {
  background-color: var(--black);
  align-items: center;
  width: 100vw;
  min-height: 4.5rem;
  padding-left: 5%;
  padding-right: 5%;
  position: sticky;
  top: 0;
}

.navbar16_component.background-color-black {
  z-index: 98;
  width: auto;
  min-height: 6rem;
  display: flex;
}

.navbar16_logo-link {
  z-index: 1;
  padding-top: 5px;
  padding-bottom: 5px;
}

.navbar16_social-link {
  align-items: center;
  font-size: 14px;
  text-decoration: none;
  display: flex;
}

.navbar16_social-list {
  grid-column-gap: .75rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  display: grid;
}

.navbar16_menu-wrapper {
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-top: 4.5rem;
  display: flex;
  position: relative;
}

.navbar16_links-wrapper {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  margin-top: 4rem;
  display: flex;
}

.navbar16_bottom {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 4.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar16_bottom.margin-top.margin-large {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}

.navbar16_menu-button {
  z-index: 1;
  padding: 0;
  position: relative;
}

.navbar16_menu-button.w--open {
  background-color: #0000;
}

.navbar16_link {
  color: var(--black);
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding: .5rem 0;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
  position: static;
}

.navbar16_link:hover {
  color: var(--sunrise-pink);
}

.navbar16_link.w--current {
  color: var(--black);
}

.navbar16_logo {
  max-width: 112px;
}

.navbar16_container {
  z-index: 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar16_menu {
  background-color: var(--nature-beige);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: auto;
  padding-left: 5%;
  padding-right: 5%;
  position: absolute;
  inset: 0% 0% auto;
  overflow: auto;
}

.navbar16_menu.shadow-medium {
  border: 1px #000;
  border-radius: 0;
}

.navbar16_links-wrapper-2 {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  display: flex;
}

.navbar16_bottom-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex: none;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-height: 4.5rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.baume-modal_content-wrapper {
  background-color: var(--nature-beige);
  width: 100%;
  max-width: 52%;
  height: 100vh;
  padding: 5rem 4rem;
  position: absolute;
  overflow: scroll;
}

.baeume-modal_component {
  z-index: 99;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: block;
  position: fixed;
  inset: 0%;
}

.baeume-modal_component.text-color-black {
  display: none;
}

.baeume-modal_background-overlay {
  z-index: -1;
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.visual-modal_component {
  z-index: 99;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.visual-modal_content-wrapper {
  background-color: var(--nature-beige);
  width: 100%;
  max-width: 40rem;
  height: 100vh;
  padding: 5rem 4rem;
  position: absolute;
  overflow: scroll;
}

.modal_content-wrapper {
  background-color: var(--nature-beige);
  color: var(--black);
  width: 50%;
  max-width: none;
  height: 100%;
  padding: 15% 5% 5%;
  display: block;
  position: absolute;
  overflow: auto;
}

.background-color-olive {
  background-color: var(--olive);
}

.background-color-pink {
  background-color: var(--sunrise-pink);
}

.text-color-beige {
  color: #f80dc9;
}

.datenschutz_component {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.padding-global-2 {
  padding-left: 5%;
  padding-right: 5%;
}

.text-align-center-2 {
  text-align: center;
}

.heading {
  text-align: left;
}

.datenschutz_paragraph-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.list {
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 1.25rem;
  list-style-type: disc;
}

.list-2 {
  margin-bottom: 0;
}

.list-3 {
  margin-top: 0;
  margin-bottom: 0;
}

.list-4 {
  margin-top: 0;
}

.italic-text, .link {
  text-decoration: none;
}

.link:hover {
  color: var(--sunrise-pink);
}

.modal2_close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.modal2_content-wrapper {
  background-color: var(--nature-beige);
  width: 100%;
  max-width: 40rem;
  height: 100vh;
  padding: 5rem 4rem;
  position: absolute;
  overflow: scroll;
}

.modal2_component {
  z-index: 99;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal2_background-overlay {
  z-index: -1;
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.modal-content-replace-this-div {
  border: 2px dashed #0000001a;
  width: 100%;
  height: 150vh;
}

.heading-2, .slide-nav, .right-arrow, .left-arrow {
  display: none;
}

.text-color-pink {
  color: var(--sunrise-pink);
}

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

.grid {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  grid-template-areas: "Area Area-3"
                       "Area-2 Area-4";
  height: 80vh;
}

.div-block-2, .div-block-3 {
  background-color: #879623;
}

.div-block-4 {
  background-color: #e65f6e;
}

.body {
  background-color: var(--nature-beige);
}

.modal3_close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.modal3_content-wrapper {
  background-color: var(--nature-beige);
  width: 100vw;
  height: 100vh;
  padding: 5rem 5%;
  position: absolute;
  overflow: scroll;
}

.modal3_component {
  z-index: 99;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal3_background-overlay {
  z-index: -1;
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.modal1_close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.show-mobile-landscape {
  display: none;
}

.modal1_component {
  z-index: 99;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal1_content-wrapper {
  background-color: var(--nature-beige);
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 48rem;
  height: auto;
  max-height: 80vh;
  padding: 4rem;
  overflow: scroll;
}

.modal1_background-overlay {
  z-index: -1;
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.field-label-wrapper {
  justify-content: space-between;
  display: flex;
}

.signup-modal3_login-form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.signup-modal3_login-form-block {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 0;
  display: flex;
}

.signup-modal3_background-overlay {
  z-index: -1;
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.nachhaltigkeit-modal_compontent {
  z-index: 99;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.signup-modal3_close-button {
  position: absolute;
  top: 1rem;
  right: 1rem;
}

.signup-modal3_tab-link {
  text-align: center;
  background-color: #0000;
  border-bottom: 1.5px solid #0000;
  width: 50%;
  padding: .75rem 1.5rem;
}

.signup-modal3_tab-link.w--current {
  border-bottom-style: solid;
  border-bottom-color: var(--black);
  text-align: center;
  background-color: #0000;
  width: 50%;
}

.signup-modal3_tabs {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 0;
  display: flex;
}

.signup-modal3_content-wrapper {
  background-color: var(--nature-beige);
  width: 100%;
  max-width: 30rem;
  height: auto;
  max-height: 80vh;
  padding: 3rem;
  overflow: scroll;
}

.form-button-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.signup-modal3_signup-form-block {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 0;
  display: flex;
}

.signup9_signup-form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.signup-modal3_tabs-menu {
  align-self: center;
  width: 100%;
  margin-bottom: 2rem;
  display: flex;
}

.section_signup-modal3 {
  position: relative;
}

.gesundheit-modal_content-wrapper {
  background-color: var(--nature-beige);
  width: 100%;
  max-width: 52%;
  height: 100vh;
  padding: 5rem 4rem;
  position: absolute;
  overflow: scroll;
}

.gesundheit-modal_content-wrapper.text-color-black {
  max-width: 52vw;
}

.nachhaltigkeit-modal_component {
  z-index: 99;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.modal_background-overlay {
  z-index: -1;
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.ernte_modal-component, .haende-modal_component {
  z-index: 99;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.navbar16_link-2 {
  margin-top: .5rem;
  margin-bottom: .5rem;
  padding: .5rem 0;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
  display: inline-block;
  position: static;
}

.navbar16_link-2.w--current {
  color: var(--black);
}

.navbar16_menu-2 {
  background-color: var(--nature-beige);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-left: 5%;
  padding-right: 5%;
  position: absolute;
  inset: 0% 0% auto;
  overflow: auto;
}

.menu-icon_line-middle-base-2 {
  background-color: var(--nature-beige);
  width: 24px;
  height: 2px;
  position: absolute;
}

.menu-icon_line-middle-top-2 {
  z-index: 2;
  background-color: #0000;
  width: 24px;
  height: 2px;
  position: absolute;
  inset: 0;
}

.image-wrapper-1-1 {
  width: 100%;
  padding-top: 100%;
  position: relative;
}

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

.slide {
  object-fit: fill;
  background-image: url('../images/webflow-test.jpg');
  background-position: 50%;
  background-size: cover;
}

.cta4_background-image-wrapper-2 {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  display: block;
  position: absolute;
  inset: 0%;
}

.header-100vh-2 {
  justify-content: center;
  align-items: center;
  height: 100vh;
  display: flex;
}

.section_header {
  position: relative;
}

.container-large-2 {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.slider {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  inset: 0%;
}

.slide-nav-2, .right-arrow-2, .left-arrow-2 {
  display: none;
}

.slide-2 {
  background-image: url('../images/221122_CAS_Manuoleo.jpg');
  background-position: 50%;
  background-size: cover;
}

.icon_list {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.icon_item {
  text-align: center;
  flex-direction: column;
  align-items: stretch;
  max-width: 20rem;
  display: flex;
}

.icon_item.text-color-white {
  width: 100%;
  max-width: 27rem;
}

.icon_image-wrapper {
  width: 30%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30%;
  position: relative;
  overflow: hidden;
}

.footer_image_desktop {
  display: none;
}

.wissenswertes-modal_component {
  z-index: 99;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.wissenswertes-modal_component.text-color-black {
  display: none;
}

.html-embed {
  color: var(--nature-beige);
  width: 7rem;
  height: auto;
  position: relative;
  top: 6px;
}

.paragraph {
  max-width: 35rem;
}

.div-block-5 {
  width: 100%;
  height: 100%;
}

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

.button-group-2 {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-group-2.is-center {
  justify-content: center;
}

.olivenoel-modal_content-wrapper.text-color-black {
  width: 52vw;
  max-width: none;
  overflow: auto;
}

.olivenoel-modal_component {
  z-index: 99;
  justify-content: flex-end;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0%;
}

.contact-modal3_background-overlay {
  z-index: -1;
  background-color: #00000040;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.section_cta-produkte {
  flex-direction: row;
  align-items: flex-end;
  height: 650px;
  display: block;
  position: relative;
}

.team_component-manuel {
  grid-template-rows: auto;
  grid-template-areas: "Area Area-2";
}

.team_component-manuel.max-width-xxlarge.align-center {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
}

.manuel_image-wrapper {
  width: 20rem;
  height: 20rem;
}

.lidia_laki_content-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  text-align: left;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: none;
  display: flex;
}

.body-2 {
  background-color: var(--black);
}

.text-shadow {
  text-shadow: 1px 1px 2px #000;
}

.navbar_links-wrapper {
  color: var(--black);
  flex-flow: wrap;
  justify-content: space-between;
  margin-top: 9rem;
  display: flex;
}

.navbar_links_group {
  flex-direction: column;
  align-items: flex-start;
  min-width: 20%;
  display: flex;
}

.team5_social {
  grid-column-gap: .875rem;
  grid-row-gap: .875rem;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-self: center;
  margin-top: 1.5rem;
  display: grid;
}

.team5_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start center;
  display: grid;
}

.section_team5 {
  background-color: var(--nature-beige);
}

.text-size-medium-2 {
  font-size: 1.125rem;
}

.team5_item {
  text-align: center;
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.team5_image {
  object-fit: cover;
  border-radius: 100%;
  width: 5rem;
  min-width: 15rem;
  height: 5rem;
  min-height: 15rem;
  margin-left: auto;
  margin-right: auto;
}

.manuoleo_icon {
  object-fit: cover;
  width: 90%;
  height: 90%;
  position: absolute;
  inset: 6% 0% 0% 10%;
}

.icon_manuoleo-wrapper {
  background-color: var(--black);
  border-radius: 100%;
  width: 50%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 50%;
  position: relative;
  overflow: hidden;
}

.hero_header-section-large-flex {
  flex-direction: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 7rem;
  display: flex;
}

.section_header-sub_content {
  background-color: var(--nature-beige);
  color: var(--black);
}

.header36_content-alternate {
  width: 100%;
  max-width: 35rem;
  padding: 36px;
}

.slide-3 {
  background-image: url('../images/221122_CAS_Manuoleo.jpg');
  background-position: 50%;
  background-size: cover;
}

.slide-4 {
  background-image: url('../images/221202_CAS_Manuoleo_3.jpg');
  background-position: 50%;
  background-size: cover;
}

.footer8_link_group {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer8_link_heading {
  color: var(--nature-beige);
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
}

.footer8_link_heading:hover {
  color: var(--sunrise-pink);
}

.navbar_heading-link {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.navbar_heading-link:hover {
  color: var(--sunrise-pink);
}

.navbar_link {
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
}

.navbar_link:hover {
  color: var(--sunrise-pink);
}

.navbar_link.text-shadow.text-color-white {
  text-shadow: none;
}

.contact5_form {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.contact_content {
  width: 90%;
}

.padding-section-large-2 {
  padding-top: 7rem;
  padding-bottom: 7rem;
}

.contact_item {
  display: flex;
}

.contact_item.display-none {
  display: none;
}

.contact_component {
  grid-column-gap: 0rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
}

.contact5_form-block {
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 0;
}

.contact5_icon-wrapper {
  flex: none;
  align-self: flex-start;
  margin-right: 1rem;
}

.contact_contact-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: 1.125rem;
  display: grid;
}

.typeform-embed {
  border: 1px solid var(--black);
  border-radius: 7px;
  height: 950px;
}

.paragraph-3 {
  font-weight: 500;
}

.text-span-4 {
  letter-spacing: .05em;
}

.team_anchor {
  height: 0;
  position: relative;
  top: -90px;
}

.text-span-5 {
  font-weight: 400;
}

.heading-4, .heading-5, .heading-6, .heading-7, .heading-8 {
  font-weight: 800;
}

.cta4_background-video-wrapper {
  z-index: -1;
  background-image: linear-gradient(#00000080, #00000080);
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  inset: 0%;
}

.background-video {
  height: 100%;
}

.navbar_button-wrapper {
  display: none;
}

.container-xxsmall {
  width: 100%;
  max-width: 16rem;
  margin-left: auto;
  margin-right: auto;
}

.popup-close {
  z-index: 2;
  background-color: var(--black);
  color: #000;
  cursor: pointer;
  border-radius: 999em;
  justify-content: center;
  align-items: center;
  width: 3.5em;
  height: 3.5em;
  display: flex;
  position: absolute;
  inset: 1.5em 1em auto auto;
}

.copy-large {
  font-size: 1.45em;
  font-weight: 400;
  line-height: 1.4em;
}

.popup-wrapper {
  z-index: 999;
  color: var(--black);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: none;
  position: fixed;
  inset: 0%;
}

.popup-toggle {
  cursor: pointer;
}

.popup-background {
  z-index: 0;
  background-color: #000000a6;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.popup-toggle-text {
  font-size: 2em;
  line-height: 1;
}

.popup-content {
  margin: 2.5em 3em;
}

.popup-inner {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
}

.p-sm-start {
  padding-top: 3em;
}

.popup-content-wrapper {
  z-index: 1;
  background-color: var(--nature-beige);
  border-radius: 1.2em;
  width: 90vw;
  max-width: 32em;
  max-height: 90%;
  position: relative;
  overflow: auto;
}

.popup-close-icon {
  color: var(--nature-beige);
  width: 1em;
  height: 1em;
}

.div-block-6 {
  grid-column-gap: 4px;
  grid-row-gap: 4px;
  grid-template-rows: auto auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.naehrwerttabelle {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: 1.5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.text-block-4, .text-block-5 {
  text-align: right;
}

.line-divider-black {
  background-color: var(--black);
  color: var(--black);
  width: 100%;
  height: 1px;
}

@media screen and (min-width: 1280px) {
  .text-size-medium {
    font-size: 1.2rem;
  }

  .heading-style-h3 {
    letter-spacing: .01em;
    font-size: 2.25rem;
  }

  .header37_image {
    position: static;
    top: auto;
  }

  .header37_image.mobile {
    display: block;
  }

  .header37_image.desktop, .header37_image.dekstop {
    display: none;
  }

  .header37_image-wrapper {
    padding-top: 0%;
    position: static;
  }

  .header37_content {
    padding: 0%;
  }

  .footer_image_mobil {
    display: none;
  }

  .footer_image_desktop {
    display: block;
  }

  .wissenswertes-modal_component.text-color-black {
    display: none;
  }
}

@media screen and (min-width: 1440px) {
  .margin-top.margin-medium.baeume_modal-button, .margin-top.margin-medium.button-hide {
    display: block;
  }

  .cta27_background-image.desktop {
    width: 50%;
  }

  .header37_image.mobile {
    display: none;
  }

  .header37_image.desktop, .header37_image.dekstop {
    display: block;
  }

  .team6_image {
    border-radius: 0%;
  }

  .footer8_top-wrapper {
    grid-column-gap: 3.5rem;
    grid-template-columns: 1fr 1fr;
  }

  .baeume-modal_component.text-color-black, .nachhaltigkeit-modal_component, .ernte_modal-component {
    display: none;
  }

  .slide {
    background-size: cover;
    background-attachment: scroll;
  }

  .olivenoel-modal_component {
    display: none;
  }

  .section_cta-produkte {
    height: 800px;
  }

  .manuoleo_icon {
    border-radius: 0%;
  }
}

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

  h2 {
    font-size: 2.75rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.75rem;
  }

  .hide-tablet {
    display: none;
  }

  .max-width-full-tablet {
    width: 100%;
    max-width: none;
  }

  .margin-large {
    margin: 2.5rem;
  }

  .margin-xlarge {
    margin: 3.5rem;
  }

  .margin-xxlarge {
    margin: 4.5rem;
  }

  .margin-huge {
    margin: 5rem;
  }

  .margin-xhuge {
    margin: 6rem;
  }

  .margin-xxhuge {
    margin: 7.5rem;
  }

  .padding-large {
    padding: 2.5rem;
  }

  .padding-xlarge {
    padding: 3.5rem;
  }

  .padding-xxlarge {
    padding: 4.5rem;
  }

  .padding-huge {
    padding: 5rem;
  }

  .padding-xhuge {
    padding: 6rem;
  }

  .padding-xxhuge {
    padding: 7.5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .heading-medium {
    font-size: 1.75rem;
  }

  .heading-style-h2 {
    font-size: 2.75rem;
  }

  .rl-styleguide_icons-list {
    grid-auto-flow: row;
  }

  .heading-style-h1 {
    font-size: 3.25rem;
  }

  .button:hover {
    border-color: var(--olive);
    background-color: var(--olive);
  }

  .button.is-link:hover {
    color: var(--sunrise-pink);
    background-color: #0000;
    border-color: #0000;
  }

  .button.is-link.is-alternate:hover {
    color: var(--sunrise-pink);
  }

  .button.is-secondary:hover, .button.is-secondary.is-small:hover {
    border-color: var(--olive);
    background-color: var(--olive);
  }

  .button.is-alternate.is-small {
    border-color: var(--nature-beige);
  }

  .button.is-alternate-hover:hover {
    border-color: var(--sunrise-pink);
    background-color: var(--sunrise-pink);
  }

  .heading-style-h4 {
    font-size: 1.75rem;
  }

  .heading-style-h3 {
    font-size: 2.25rem;
  }

  .padding-section-medium {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .padding-section-large {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .vision-modal_content-wrapper {
    width: 80%;
    max-width: none;
    padding: 4rem 3rem;
  }

  .vision-modal_content-wrapper.text-color-black {
    max-width: 80vw;
  }

  .section_olivenoel.modal_content-wrapper {
    padding-left: 5%;
    padding-right: 5%;
  }

  .cta27_background-image {
    object-fit: cover;
  }

  .cta27_background-image.mobil {
    display: inline-block;
  }

  .cta27_background-image.desktop {
    display: none;
  }

  .header37_image {
    height: auto;
    max-height: none;
  }

  .header37_image.mobile {
    display: block;
  }

  .header37_image.desktop {
    display: none;
  }

  .header_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
    padding-top: 6rem;
  }

  .header_component.background-color-black {
    align-items: center;
  }

  .header37_image-wrapper {
    padding-top: 100%;
  }

  .header37_content {
    max-width: 60rem;
    padding-left: 5%;
    padding-right: 5%;
  }

  .header36_image {
    height: auto;
    max-height: none;
  }

  .header36_component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
    padding-top: 6rem;
  }

  .header36_content {
    max-width: 60rem;
    padding-left: 5%;
    padding-right: 5%;
  }

  .layout210_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .team6_list {
    grid-column-gap: 2rem;
  }

  .team6_item {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .cta15_component {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .content6_component {
    grid-column-gap: 3rem;
    grid-auto-flow: row;
    min-height: auto;
  }

  .contact-modal6_content-wrapper {
    padding: 4rem 5%;
  }

  .contact-modal6_component {
    display: none;
  }

  .footer8_top-wrapper {
    grid-row-gap: 3.5rem;
    grid-template-columns: 1fr;
  }

  .footer8_form-block {
    min-width: auto;
  }

  .footer8_link-list {
    grid-column-gap: 1.5rem;
    grid-row-gap: 2.5rem;
  }

  .menu-icon4_line-top {
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar4_menu-dropdown {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    display: block;
    position: relative;
  }

  .menu-icon_line-middle-base {
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: absolute;
  }

  .navbar4_menu-button {
    margin-left: -.5rem;
    padding: 0;
  }

  .navbar4_menu-button.w--open {
    background-color: #0000;
  }

  .navbar4_link {
    margin-top: 0;
    margin-bottom: 0;
    padding: 1rem 0;
    font-size: 1.25rem;
    position: static;
  }

  .navbar4_menu {
    z-index: 1;
    background-color: var(--nature-beige);
    -webkit-text-fill-color: inherit;
    background-clip: border-box;
    flex-direction: column;
    justify-content: center;
    margin-left: 0;
    display: block;
  }

  .menu-icon4_line-middle {
    background-color: #000;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    margin-top: 6px;
    margin-bottom: 6px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: static;
  }

  .menu-icon4_wrapper {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .navbar4_container {
    grid-auto-columns: 1fr;
  }

  .navbar4_dropdown-list {
    position: static;
    overflow: hidden;
  }

  .navbar4_dropdown-list.w--open {
    border-style: none;
    padding: 0;
    position: static;
  }

  .dropdown-icon {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
    inset: auto 0% auto auto;
  }

  .dropdown-icon.is-navbar4 {
    width: 1.25rem;
    height: 1.25rem;
  }

  .menu-icon4_line-bottom {
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .navbar4_dropdown-link {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-right: 0;
    font-size: 20px;
  }

  .menu-icon4 {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 48px;
    height: 48px;
    margin-right: -.5rem;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: relative;
  }

  .menu-icon_line-middle-top {
    z-index: 2;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    inset: 0;
  }

  .navbar4_dropdown-toggle {
    align-items: center;
    width: 100%;
    margin: 0;
    padding: .75rem 2rem .75rem 0;
    display: flex;
    position: relative;
  }

  .navbar16_component {
    position: relative;
  }

  .navbar16_component.background-color-black {
    position: sticky;
  }

  .navbar16_links-wrapper {
    flex: 0 auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .navbar16_bottom {
    padding-top: 1rem;
    padding-bottom: 8rem;
  }

  .navbar16_menu-button {
    margin-left: -.5rem;
    padding: 0;
  }

  .navbar16_menu-button.w--open {
    background-color: #0000;
  }

  .navbar16_link {
    margin-top: 0;
    margin-bottom: 0;
    padding: 1rem 0;
    position: static;
  }

  .navbar16_container {
    grid-auto-columns: 1fr;
  }

  .navbar16_menu {
    flex-direction: column;
    justify-content: center;
    position: absolute;
  }

  .navbar16_links-wrapper-2 {
    flex: 0 auto;
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .navbar16_bottom-2 {
    padding-top: 1rem;
    padding-bottom: 8rem;
  }

  .baume-modal_content-wrapper, .visual-modal_content-wrapper {
    width: 80%;
    max-width: none;
    padding: 4rem 3rem;
  }

  .modal_content-wrapper {
    width: 80vw;
  }

  .modal2_content-wrapper {
    width: 80%;
    max-width: none;
    padding: 4rem 3rem;
  }

  .modal3_content-wrapper {
    padding: 4rem 5%;
  }

  .modal1_content-wrapper, .signup-modal3_content-wrapper {
    width: 90%;
    max-width: none;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .gesundheit-modal_content-wrapper {
    width: 80%;
    max-width: none;
    padding: 4rem 3rem;
  }

  .gesundheit-modal_content-wrapper.text-color-black {
    max-width: none;
  }

  .navbar16_link-2 {
    margin-top: 0;
    margin-bottom: 0;
    padding: 1rem 0;
    position: static;
  }

  .navbar16_menu-2 {
    flex-direction: column;
    justify-content: center;
    position: absolute;
  }

  .menu-icon_line-middle-base-2 {
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    display: flex;
    position: absolute;
  }

  .menu-icon_line-middle-top-2 {
    z-index: 2;
    width: 24px;
    height: 2px;
    padding-bottom: 0;
    padding-right: 0;
    position: absolute;
    inset: 0;
  }

  .icon_list {
    grid-column-gap: 2rem;
  }

  .olivenoel-modal_content-wrapper {
    width: 80%;
    max-width: none;
    padding: 4rem 3rem;
  }

  .olivenoel-modal_content-wrapper.text-color-black {
    width: 80vw;
  }

  .olivenoel-modal_component {
    display: none;
  }

  .team_component-manuel {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-direction: column;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row;
    display: flex;
  }

  .team_component-manuel.max-width-xxlarge.align-center {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .lidia_laki_content-wrapper {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  .navbar_links-wrapper {
    grid-row-gap: 3rem;
  }

  .navbar_links_group {
    min-width: 50%;
  }

  .team5_list {
    grid-column-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .hero_header-section-large-flex {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .header36_content-alternate {
    max-width: 60rem;
    padding-left: 5%;
    padding-right: 5%;
  }

  .padding-section-large-2 {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .contact_component {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .typeform-embed {
    height: 550px;
  }

  .popup-content-wrapper {
    max-height: 92%;
  }
}

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

  h2 {
    font-size: 2.25rem;
  }

  h3 {
    font-size: 2rem;
  }

  h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  h5 {
    font-size: 1.25rem;
  }

  h6 {
    font-size: 1.125rem;
  }

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

  .max-width-full-mobile-landscape {
    width: 100%;
    max-width: none;
  }

  .margin-xsmall {
    margin: .75rem;
  }

  .margin-small {
    margin: 1.25rem;
  }

  .margin-medium {
    margin: 1.5rem;
  }

  .margin-large {
    margin: 2rem;
  }

  .margin-xlarge {
    margin: 2.5rem;
  }

  .margin-xxlarge {
    margin: 3rem;
  }

  .margin-huge {
    margin: 3.5rem;
  }

  .margin-xhuge {
    margin: 4rem;
  }

  .margin-xxhuge {
    margin: 5rem;
  }

  .padding-xsmall {
    padding: .75rem;
  }

  .padding-small {
    padding: 1.25rem;
  }

  .padding-medium {
    padding: 1.5rem;
  }

  .padding-large {
    padding: 2rem;
  }

  .padding-xlarge {
    padding: 2.5rem;
  }

  .padding-xxlarge {
    padding: 3rem;
  }

  .padding-huge {
    padding: 3.5rem;
  }

  .padding-xhuge {
    padding: 4rem;
  }

  .padding-xxhuge {
    padding: 5rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.margin-small {
    text-align: left;
    width: auto;
    height: auto;
    overflow: hidden;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .heading-medium {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .text-style-quote {
    font-size: 1.125rem;
  }

  .heading-style-h2 {
    font-size: 2.25rem;
  }

  .heading-style-h6 {
    font-size: 1.125rem;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

  .heading-style-h1 {
    font-size: 2.5rem;
  }

  .heading-style-h4 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .heading-style-h3 {
    font-size: 2rem;
  }

  .text-style-nowrap {
    white-space: normal;
  }

  .text-size-large {
    font-size: 1.125rem;
  }

  .text-size-large.text-weight-semibold {
    text-align: center;
  }

  .padding-section-small {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .padding-section-medium {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .padding-section-large {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .button-2.is-navbar4-button, .button-2.is-navbar16-button {
    padding: .25rem 1rem;
  }

  .vision-modal_content-wrapper {
    width: 90%;
    padding-bottom: 7rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .vision-modal_content-wrapper.text-color-black {
    width: 100%;
    max-width: 100vw;
  }

  .cta27_background-image {
    padding-top: 25px;
  }

  .header_component, .header36_component {
    padding-top: 4rem;
  }

  .layout210_component, .team6_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .team6_image-wrapper {
    height: 100%;
  }

  .cta15_component, .form-field-2col.is-mobile-1col {
    grid-template-columns: 1fr;
  }

  .content6_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .contact-modal6_content-wrapper {
    padding-bottom: 7rem;
  }

  .footer8_credit-text {
    margin-top: 2rem;
  }

  .footer8_top-wrapper {
    grid-row-gap: 3.5rem;
  }

  .footer8_bottom-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer8_link-list {
    grid-column-gap: 0rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    justify-items: start;
    width: 100%;
  }

  .footer8_legal-list {
    grid-column-gap: 0rem;
    grid-row-gap: 1rem;
    grid-auto-flow: row;
    justify-items: start;
  }

  .navbar4_component, .navbar16_component {
    min-height: 4rem;
  }

  .navbar16_menu-wrapper {
    padding-top: 4rem;
  }

  .navbar16_links-wrapper {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar16_bottom {
    height: 4rem;
  }

  .navbar16_link {
    font-size: 1.5rem;
  }

  .navbar16_links-wrapper-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .navbar16_bottom-2 {
    height: 4rem;
  }

  .baume-modal_content-wrapper, .visual-modal_content-wrapper {
    width: 90%;
    padding-bottom: 7rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .datenschutz_component {
    grid-row-gap: 2.5rem;
  }

  .modal2_content-wrapper {
    width: 90%;
    padding-bottom: 7rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .modal3_content-wrapper {
    padding-bottom: 7rem;
  }

  .show-mobile-landscape {
    display: block;
  }

  .modal1_component {
    align-items: flex-start;
  }

  .modal1_content-wrapper {
    width: 100%;
    height: 100vh;
    max-height: none;
    padding-bottom: 7rem;
    padding-left: 5%;
    padding-right: 5%;
  }

  .nachhaltigkeit-modal_compontent {
    align-items: flex-start;
  }

  .signup-modal3_content-wrapper {
    width: 100%;
    height: 100vh;
    max-height: none;
    padding-bottom: 7rem;
    padding-left: 5%;
    padding-right: 5%;
  }

  .gesundheit-modal_content-wrapper {
    width: 100%;
    padding-bottom: 7rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .navbar16_link-2 {
    font-size: 1.5rem;
  }

  .icon_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .wissenswertes-modal_component.text-color-black {
    display: none;
  }

  .paragraph-2 {
    text-align: left;
  }

  .olivenoel-modal_content-wrapper {
    width: 90%;
    padding-bottom: 7rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .olivenoel-modal_content-wrapper.text-color-black {
    width: 100vw;
  }

  .section_cta-produkte {
    height: 500px;
  }

  .team_component-manuel.max-width-xxlarge.align-center {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
  }

  .team5_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .text-size-medium-2 {
    font-size: 1rem;
  }

  .team5_image {
    display: block;
  }

  .hero_header-section-large-flex {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .navbar_heading-link {
    font-size: 1.25rem;
  }

  .navbar_link {
    font-size: 1rem;
  }

  .contact_content {
    width: 100%;
  }

  .padding-section-large-2 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .contact_component {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .typeform-embed {
    height: 450px;
  }

  .popup-close {
    top: 2em;
  }

  .copy-large {
    font-size: 1.3em;
  }

  .popup-content {
    margin: 3em 2em;
  }

  .p-sm-start {
    padding-top: 2.3em;
  }
}

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

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

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-left {
    margin-top: 0;
    margin-bottom: 0;
    margin-right: 0;
  }

  .margin-right {
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .margin-horizontal {
    margin-top: 0;
    margin-bottom: 0;
  }

  .padding-top {
    padding-bottom: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-bottom {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .padding-left {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 0;
  }

  .padding-right {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .padding-horizontal {
    padding-top: 0;
    padding-bottom: 0;
  }

  .max-width-full-mobile-portrait {
    width: 100%;
    max-width: none;
  }

  .vision-modal_content-wrapper {
    width: 100%;
  }

  .vision-modal_component {
    display: none;
  }

  .cta27_background-image {
    height: 75%;
    margin-top: auto;
    margin-bottom: auto;
    padding-top: 0;
  }

  .header37_image {
    height: 100%;
    position: absolute;
    inset: 0%;
  }

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

  .header37_image-wrapper {
    width: 100%;
    padding-top: 100%;
    position: relative;
  }

  .header36_component, .layout210_component, .team6_list {
    grid-template-columns: 1fr;
  }

  .team6_image-wrapper {
    width: 20rem;
    min-width: 0;
    max-width: 15rem;
    height: 20rem;
    min-height: 0;
    max-height: 15rem;
  }

  .cta15_component, .content6_component {
    grid-template-columns: 1fr;
  }

  .footer8_form {
    grid-row-gap: 12px;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .footer8_top-wrapper {
    grid-row-gap: 2.5rem;
  }

  .footer8_link-list {
    grid-row-gap: 2rem;
  }

  .navbar16_bottom.margin-top.margin-large {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    justify-content: flex-start;
    height: auto;
    display: flex;
  }

  .navbar16_logo {
    max-width: 72px;
  }

  .navbar16_menu.shadow-medium {
    min-height: 100vh;
  }

  .baume-modal_content-wrapper {
    width: 100%;
  }

  .baeume-modal_component, .visual-modal_component {
    display: none;
  }

  .modal_content-wrapper {
    width: 100vw;
  }

  .modal2_component, .modal1_component {
    display: none;
  }

  .gesundheit-modal_content-wrapper {
    width: 100%;
  }

  .nachhaltigkeit-modal_component, .ernte_modal-component, .haende-modal_component {
    display: none;
  }

  .header-100vh-2 {
    height: 60vh;
  }

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

  .wissenswertes-modal_component {
    display: none;
  }

  .html-embed {
    width: 5rem;
  }

  .olivenoel-modal_component {
    display: none;
  }

  .section_cta-produkte {
    height: 370px;
  }

  .manuel_image-wrapper {
    width: 15rem;
    height: 15rem;
  }

  .navbar_links-wrapper {
    grid-row-gap: 1.5rem;
    flex-direction: column;
    align-content: space-between;
  }

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

  .icon_manuoleo-wrapper {
    width: 40%;
    height: auto;
    padding-top: 40%;
  }

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

  .typeform-embed {
    height: 350px;
  }

  .popup-close {
    top: 1em;
  }
}

#w-node-_1f16baba-5495-c2eb-1d6e-41db534b376a-e2e6f2a6, #w-node-_76236f54-8002-2d52-3378-c5c3f118d727-e2e6f2a6 {
  place-self: center;
}

#w-node-_679d5182-1da7-cfdc-ec24-78deb0b51c18-e2e6f2a6 {
  place-self: center end;
}

#w-node-_679d5182-1da7-cfdc-ec24-78deb0b51c27-e2e6f2a6 {
  align-self: center;
}

#w-node-_679d5182-1da7-cfdc-ec24-78deb0b51c2a-e2e6f2a6, #w-node-_679d5182-1da7-cfdc-ec24-78deb0b51c32-e2e6f2a6, #w-node-_679d5182-1da7-cfdc-ec24-78deb0b51c3b-e2e6f2a6, #w-node-fd7e58a9-8cd2-70e4-eb7c-4430158042c8-e2e6f2a6, #w-node-d06b7dbb-ed2b-c80b-e2cf-e8ca9dffb174-e2e6f2a6, #w-node-_679d5182-1da7-cfdc-ec24-78deb0b51c46-e2e6f2a6, #w-node-_679d5182-1da7-cfdc-ec24-78deb0b51c4e-e2e6f2a6, #w-node-_679d5182-1da7-cfdc-ec24-78deb0b51c55-e2e6f2a6 {
  justify-self: end;
}

#w-node-b24ad66b-9b9c-a4de-84c6-662a7e0e4937-e2e6f2a6 {
  place-self: center;
}

#w-node-_195aca14-68a5-e0e2-1346-81b0b03fdf84-e2e6f2a6 {
  place-self: center end;
}

#w-node-_195aca14-68a5-e0e2-1346-81b0b03fdf95-e2e6f2a6 {
  align-self: center;
}

#w-node-_195aca14-68a5-e0e2-1346-81b0b03fdf98-e2e6f2a6, #w-node-_195aca14-68a5-e0e2-1346-81b0b03fdfa2-e2e6f2a6, #w-node-_195aca14-68a5-e0e2-1346-81b0b03fdfa7-e2e6f2a6, #w-node-_195aca14-68a5-e0e2-1346-81b0b03fdfac-e2e6f2a6, #w-node-_195aca14-68a5-e0e2-1346-81b0b03fdfb0-e2e6f2a6, #w-node-_195aca14-68a5-e0e2-1346-81b0b03fdfb9-e2e6f2a6, #w-node-_195aca14-68a5-e0e2-1346-81b0b03fdfc3-e2e6f2a6, #w-node-_195aca14-68a5-e0e2-1346-81b0b03fdfcc-e2e6f2a6 {
  justify-self: end;
}

#w-node-c5d657a5-efba-2426-9fde-ec9b2827e8e5-e2e6f2a6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_48afc467-5278-1349-8a95-316cc834a82d-e2e6f2a6, #w-node-_71fc7b74-a1fd-b1ae-9ecb-f0468e7d47c8-e2e6f2a6, #w-node-_9a0b1272-31e0-2c6b-566b-8251087f9f4f-e2e6f2a6, #w-node-b62e83e4-2678-9b15-fabf-757491567e6d-e2e6f2a6, #w-node-_0e5fabc7-965b-3add-c7c8-e9c73039f601-e2e6f2a6, #w-node-bc92a066-7df7-6a7c-69a0-0511233adb12-e2e6f2a6 {
  place-self: center;
}

#w-node-_8072a3ca-a34d-854e-8c6d-ff56d5c137b5-e2e6f2a6, #w-node-_8072a3ca-a34d-854e-8c6d-ff56d5c137ba-e2e6f2a6, #w-node-_8072a3ca-a34d-854e-8c6d-ff56d5c137bf-e2e6f2a6, #w-node-f7d9a620-a694-56ce-646c-1e7a781559bf-e2e6f2a6 {
  align-self: start;
}

#w-node-f78d59b2-4805-d6db-676d-e10faeeca581-e2e6f2a6, #w-node-_3028a8e6-33c6-37aa-425e-0190af7e130e-e2e6f2a6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3028a8e6-33c6-37aa-425e-0190af7e1311-e2e6f2a6 {
  justify-self: start;
}

#w-node-_3028a8e6-33c6-37aa-425e-0190af7e1312-e2e6f2a6, #w-node-_3028a8e6-33c6-37aa-425e-0190af7e131d-e2e6f2a6, #w-node-_3028a8e6-33c6-37aa-425e-0190af7e1324-e2e6f2a6, #w-node-_761c7d63-c1fc-b185-134b-12fa93dc86b9-5be6f2ae {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_761c7d63-c1fc-b185-134b-12fa93dc86bc-5be6f2ae {
  justify-self: start;
}

#w-node-_761c7d63-c1fc-b185-134b-12fa93dc86bd-5be6f2ae, #w-node-_761c7d63-c1fc-b185-134b-12fa93dc86c8-5be6f2ae, #w-node-_761c7d63-c1fc-b185-134b-12fa93dc86cf-5be6f2ae {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86205-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86207-08e6f2c3 {
  justify-self: center;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621b-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8621c-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86220-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86221-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86225-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86226-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622a-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622b-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8622f-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86230-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86234-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86235-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8623f-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86240-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86244-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86245-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86249-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624a-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624e-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8624f-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86253-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86254-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86258-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86259-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86263-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86264-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86268-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86269-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8626d-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8626e-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86272-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86273-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8627c-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8627d-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86286-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86287-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86299-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629a-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629e-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8629f-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a3-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a4-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a8-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862a9-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ad-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ae-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862b8-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862b9-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862bd-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862be-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c2-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c3-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c7-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862c8-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862cc-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862cd-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d1-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862d2-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862dd-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862de-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e2-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e3-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e7-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862e8-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ec-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862ed-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f1-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f2-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f6-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862f7-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862fb-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc862fc-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86300-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86301-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86305-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86306-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86310-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86311-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86315-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86316-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8631a-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8631b-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86322-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86323-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86367-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc86386-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc86393-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86394-08e6f2c3 {
  justify-self: start;
}

#w-node-_1a2a9779-8ed0-a01b-3671-92436145c05f-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1a2a9779-8ed0-a01b-3671-92436145c060-08e6f2c3 {
  justify-self: start;
}

#w-node-e147dc7c-017b-5659-ea4f-271e3b0f6975-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e147dc7c-017b-5659-ea4f-271e3b0f6976-08e6f2c3 {
  justify-self: start;
}

#w-node-c0045a70-1a99-7331-9ea9-0bee29410b22-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c0045a70-1a99-7331-9ea9-0bee29410b23-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863a4-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863b0-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ba-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863bd-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863be-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c1-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c2-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c5-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863c6-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ca-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863cd-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ce-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d1-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d2-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863d5-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863dd-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863de-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863df-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e1-08e6f2c3, #w-node-_252c3001-a737-e3ad-8f03-e922a383daa3-08e6f2c3, #w-node-_252c3001-a737-e3ad-8f03-e922a383daa4-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_252c3001-a737-e3ad-8f03-e922a383daa5-08e6f2c3 {
  justify-self: start;
}

#w-node-_252c3001-a737-e3ad-8f03-e922a383daa7-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e4-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863e5-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863e6-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ea-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ed-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863ee-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863ef-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f3-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc863f7-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863f8-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc863fe-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc86402-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86403-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86407-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640a-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc8640f-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc86410-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86411-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86415-08e6f2c3, #w-node-_7d1f036d-a4df-ab31-671b-4595983b07c8-08e6f2c3, #w-node-_7d1f036d-a4df-ab31-671b-4595983b07c9-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7d1f036d-a4df-ab31-671b-4595983b07ca-08e6f2c3 {
  justify-self: start;
}

#w-node-_7d1f036d-a4df-ab31-671b-4595983b07ce-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc86418-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc86419-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8641a-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86420-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc86423-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc86424-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86425-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8642b-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642e-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc8642f-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86430-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86438-08e6f2c3, #w-node-_263b0565-1438-bdf1-4ce9-582d64948fd9-08e6f2c3, #w-node-_263b0565-1438-bdf1-4ce9-582d64948fda-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_263b0565-1438-bdf1-4ce9-582d64948fdb-08e6f2c3 {
  justify-self: start;
}

#w-node-_263b0565-1438-bdf1-4ce9-582d64948fe3-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc8643b-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc8643c-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8643d-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86449-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc8644a-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8644b-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8644f-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc86454-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc86455-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86456-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8645c-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc86461-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc86462-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86463-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86469-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc8646e-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc8646f-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86470-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86478-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc8647e-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc8647f-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86485-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc8648f-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc86490-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc86491-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86492-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc86494-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc86497-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649b-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649c-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc8649d-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a6-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a7-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc864a8-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b1-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b2-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc864b3-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864b4-08e6f2c3 {
  justify-self: start;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864ba-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc864bb-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc864bc-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864bd-08e6f2c3 {
  justify-self: start;
}

#w-node-da163454-3d7f-a6d2-8037-3b46b9c50abd-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c3-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c4-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c5-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_336be75c-ab2b-838b-5642-972b6cc864c6-08e6f2c3, #w-node-_336be75c-ab2b-838b-5642-972b6cc864c8-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369290-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369294-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369295-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369297-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369299-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929a-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929c-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929e-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936929f-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a1-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a3-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a4-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a6-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a8-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692a9-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ab-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ad-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ae-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b0-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b2-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b3-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b5-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b6-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b8-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692b9-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bb-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bc-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692be-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692bf-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c1-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c2-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c4-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c5-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692c7-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692cd-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d1-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d2-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d4-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d6-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d7-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692d9-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692db-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692dc-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692de-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e0-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e1-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e3-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e5-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e6-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692e8-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ea-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692eb-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ed-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ef-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f0-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f2-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f4-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f5-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f7-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692f9-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fa-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fc-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692fe-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593692ff-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369301-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369303-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369304-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369306-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930b-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936930f-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369311-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369314-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369319-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936931e-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369323-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369328-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936932f-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369330-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369332-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369333-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369335-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369336-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369338-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369339-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933b-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933c-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933e-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936933f-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369341-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369342-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369344-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369345-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369347-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369348-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934a-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934b-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934d-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936934e-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369350-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369351-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369353-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369354-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369356-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369357-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369359-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935a-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935c-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935d-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936935f-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369360-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369362-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369363-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369365-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369366-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369368-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369369-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936b-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936c-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936e-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936936f-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369371-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369372-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369374-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369375-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369377-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369378-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937a-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937b-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937d-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936937e-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369380-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369381-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369383-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369384-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369386-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369387-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936938c-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369390-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369392-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369395-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939a-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a35936939f-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a4-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693a9-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b0-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b1-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b3-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b4-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b6-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b7-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693b9-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ba-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bc-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bd-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693bf-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c0-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c2-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c3-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c5-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c6-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c8-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693c9-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cb-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cc-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ce-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693cf-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d1-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d2-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d4-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d5-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d7-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693d8-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693da-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693db-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693dd-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693de-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e0-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e1-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e3-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e4-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e6-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e7-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693e9-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ea-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ec-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ed-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ef-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f0-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f2-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f3-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f5-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f6-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f8-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693f9-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fb-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fc-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693fe-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593693ff-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369401-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369402-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369404-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369405-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369407-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369408-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fa-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694fe-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a3593694ff-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369503-08e6f2c3, #w-node-_9a3cb5be-cc97-b70e-6a89-31a359369505-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369506-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950a-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950b-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936950f-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369510-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369514-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369515-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369519-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951a-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951e-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936951f-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369523-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369524-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369528-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369529-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952d-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936952e-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369532-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369533-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369536-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369537-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953a-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953b-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936953f-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369540-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369544-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369545-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369549-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954a-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954e-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a35936954f-08e6f2c3 {
  justify-self: start;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369553-08e6f2c3 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a3cb5be-cc97-b70e-6a89-31a359369554-08e6f2c3 {
  justify-self: start;
}

#w-node-cfc6449a-23d1-7d05-c155-aca906498141-0649813b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-cfc6449a-23d1-7d05-c155-aca906498144-0649813b {
  justify-self: start;
}

#w-node-cfc6449a-23d1-7d05-c155-aca906498145-0649813b, #w-node-cfc6449a-23d1-7d05-c155-aca906498150-0649813b, #w-node-cfc6449a-23d1-7d05-c155-aca906498157-0649813b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ec4e891d-29b8-8a85-b565-99f8945c972d-9d773085 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_1f16baba-5495-c2eb-1d6e-41db534b376a-e2e6f2a6, #w-node-_76236f54-8002-2d52-3378-c5c3f118d727-e2e6f2a6 {
    grid-area: 1 / 1 / 2 / 2;
    place-self: center;
  }

  #w-node-b24ad66b-9b9c-a4de-84c6-662a7e0e4937-e2e6f2a6 {
    justify-self: center;
  }

  #w-node-_48afc467-5278-1349-8a95-316cc834a82d-e2e6f2a6 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-_71fc7b74-a1fd-b1ae-9ecb-f0468e7d47c8-e2e6f2a6 {
    justify-self: center;
  }

  #w-node-_9a0b1272-31e0-2c6b-566b-8251087f9f4f-e2e6f2a6 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-b62e83e4-2678-9b15-fabf-757491567e6d-e2e6f2a6 {
    justify-self: center;
  }

  #w-node-_0e5fabc7-965b-3add-c7c8-e9c73039f601-e2e6f2a6, #w-node-bc92a066-7df7-6a7c-69a0-0511233adb12-e2e6f2a6 {
    grid-area: 1 / 1 / 2 / 2;
    justify-self: center;
  }

  #w-node-_3028a8e6-33c6-37aa-425e-0190af7e130f-e2e6f2a6, #w-node-_761c7d63-c1fc-b185-134b-12fa93dc86ba-5be6f2ae {
    grid-area: 1 / 1 / 2 / 4;
  }

  #w-node-_252c3001-a737-e3ad-8f03-e922a383daa3-08e6f2c3, #w-node-_7d1f036d-a4df-ab31-671b-4595983b07c8-08e6f2c3 {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-cfc6449a-23d1-7d05-c155-aca906498142-0649813b {
    grid-area: 1 / 1 / 2 / 4;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_3028a8e6-33c6-37aa-425e-0190af7e130f-e2e6f2a6 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_3028a8e6-33c6-37aa-425e-0190af7e1311-e2e6f2a6 {
    grid-area: span 1 / span 3 / span 1 / span 3;
    justify-self: start;
  }

  #w-node-_761c7d63-c1fc-b185-134b-12fa93dc86ba-5be6f2ae {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_761c7d63-c1fc-b185-134b-12fa93dc86bc-5be6f2ae {
    grid-area: span 1 / span 3 / span 1 / span 3;
    justify-self: start;
  }

  #w-node-cfc6449a-23d1-7d05-c155-aca906498142-0649813b {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-cfc6449a-23d1-7d05-c155-aca906498144-0649813b {
    grid-area: span 1 / span 3 / span 1 / span 3;
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_3028a8e6-33c6-37aa-425e-0190af7e130f-e2e6f2a6, #w-node-_761c7d63-c1fc-b185-134b-12fa93dc86ba-5be6f2ae, #w-node-cfc6449a-23d1-7d05-c155-aca906498142-0649813b {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Nunito Sans';
  src: url('../fonts/NunitoSans-ExtraBold.ttf') format('truetype');
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}