:root {
  --white: white;
  --black: black;
  --dark-green: #192e29;
  --green: #1d4239;
  --faint-green: #d5dddb;
  --light-green: #517a70;
  --soft-green: #a9b8b4;
}

.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-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(--white);
  color: var(--black);
  letter-spacing: -.2px;
  font-family: Inter, sans-serif;
  font-size: 16px;
  line-height: 1.4em;
}

h1 {
  margin-top: 0;
  margin-bottom: 24px;
  font-family: PT Serif, serif;
  font-size: 45px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.25em;
}

h2 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: PT Serif, serif;
  font-size: 38px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.2em;
}

h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-family: PT Serif, serif;
  font-size: 26px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4em;
}

h4 {
  margin-top: 0;
  margin-bottom: 8px;
  font-family: PT Serif, serif;
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4em;
}

h5 {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5em;
}

h6 {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.5em;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5em;
}

a {
  color: var(--dark-green);
  transition: color .2s;
}

a:hover {
  opacity: .8;
  color: var(--green);
}

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

li {
  margin-bottom: 4px;
  font-size: 16px;
  line-height: 1.4em;
}

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

label {
  color: var(--green);
  margin-bottom: 8px;
  font-weight: 400;
  display: block;
}

blockquote {
  border-left: 5px solid var(--faint-green);
  margin-bottom: 16px;
  padding: 10px 20px;
  font-size: 16px;
  line-height: 1.4em;
}

.wrapper {
  min-height: 90vh;
  padding-top: 75px;
  overflow: hidden;
}

.wrapper.no-padding {
  padding-top: 0;
}

.wrapper.light-green {
  background-color: var(--white);
}

.section {
  z-index: 0;
  background-color: var(--white);
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
}

.section.half-padding {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section.hero {
  transform: scale3d(1none, 1none, 1none);
  color: var(--white);
  text-align: center;
  transform-style: preserve-3d;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding-top: 0;
  padding-bottom: 0;
  display: block;
}

.section.green {
  background-color: var(--black);
  color: var(--white);
}

.section.light-green {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--faint-green);
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: none;
}

.section.top-image-banner {
  height: 300px;
  margin-top: -75px;
}

.section.image-banner {
  height: 500px;
}

.button {
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  flex: none;
  margin-bottom: 8px;
  padding: 9px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: opacity .2s, border-color .2s, color .2s, background-color .2s;
}

.button:hover {
  opacity: .75;
  color: var(--white);
}

.button:active {
  opacity: .6;
}

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

.button.outline {
  box-shadow: inset 0 0 0 2px var(--black);
  color: var(--black);
  background-color: #0000;
}

.button.outline:hover {
  background-color: var(--black);
  box-shadow: inset 0 0 0 2px var(--black);
  color: #fff;
}

.button.outline:active {
  opacity: .6;
}

.button.disabled {
  box-shadow: none;
  opacity: .15;
}

.button.disabled:hover {
  color: #fff;
}

.button.secondary {
  background-color: var(--faint-green);
  color: var(--black);
}

.button.full {
  width: 100%;
}

.button.special {
  float: right;
  clear: none;
  text-align: center;
  margin-right: 10px;
  display: inline-block;
}

.spacer {
  background-color: #0000;
  width: 48px;
  height: 48px;
  display: block;
}

.spacer._64 {
  background-color: #0000;
  width: 64px;
  height: 64px;
}

.spacer._32 {
  background-color: #0000;
  border-radius: 6px;
  width: 32px;
  height: 32px;
}

.spacer._24 {
  text-transform: uppercase;
  background-color: #0000;
  width: 24px;
  height: 24px;
}

.spacer._48 {
  background-color: #0000;
  border-radius: 6px;
  width: 48px;
}

.spacer._128 {
  background-color: #0000;
  width: 128px;
  height: 128px;
}

.spacer._80 {
  background-color: #0000;
  width: 80px;
  height: 80px;
}

.spacer._96 {
  background-color: #5eb2f400;
  width: 96px;
  height: 96px;
}

.spacer._32 {
  background-color: #0000;
  height: 32px;
}

.spacer._16 {
  background-color: #0000;
  width: 16px;
  height: 16px;
}

.text-box {
  max-width: 600px;
  transition: opacity .2s, color .2s;
}

.text-box._550px {
  max-width: 550px;
}

.text-box._500px {
  max-width: 700px;
  display: block;
}

.text-box._800px {
  max-width: 800px;
}

.text-box._800px.centered {
  margin-left: auto;
  margin-right: auto;
}

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

._12-columns {
  flex-flow: wrap;
  place-content: stretch center;
  align-items: flex-start;
  margin-left: -16px;
  margin-right: -16px;
  display: flex;
}

._12-columns.flex-horizontal {
  flex-wrap: nowrap;
  justify-content: flex-start;
  display: flex;
}

._12-columns.align-top {
  align-items: flex-start;
}

._12-columns.align-left {
  justify-content: flex-start;
}

.container {
  object-position: 50% 50%;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  min-height: 50px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: relative;
}

.container.center-align {
  text-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.color-block {
  background-color: var(--black);
  width: 100%;
  height: 60px;
  margin-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
}

.color-block.green {
  background-color: var(--green);
}

.color-block.light-green {
  background-color: var(--light-green);
}

.color-block.dark-green {
  background-color: var(--dark-green);
}

.color-block.soft-green {
  background-color: var(--soft-green);
}

.color-block.faint-green {
  background-color: var(--faint-green);
}

.color-block.white {
  border: 1px solid var(--faint-green);
  background-color: #fff;
}

.white {
  color: #fff;
}

.column-styleguide {
  background-color: var(--faint-green);
  width: 100%;
  height: 40px;
  margin-bottom: 20px;
}

.column {
  flex-flow: column;
  flex: 0 auto;
  align-items: stretch;
  min-height: 32px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  position: relative;
}

.column.desktop-10-column {
  width: 83.33%;
}

.column.desktop-11-column {
  width: 91.66%;
}

.column.desktop-6-column {
  width: 50%;
}

.column.desktop-6-column.tablet-12-column {
  overflow: hidden;
}

.column.desktop-5-column {
  width: 41.66%;
}

.column.desktop-1-column {
  flex: 0 auto;
  width: 8.33%;
}

.column.desktop-4-column {
  width: 33.33%;
}

.column.desktop-9-column {
  width: 75%;
}

.column.desktop-3-column {
  flex: none;
  width: 25%;
}

.column.desktop-2-column {
  width: 16.66%;
}

.column.desktop-7-column {
  width: 58.3333%;
}

.column.desktop-8-column {
  width: 66.6667%;
}

.ds-block {
  margin-bottom: 32px;
  font-size: 18px;
}

.horizontal-line {
  background-color: var(--black);
  opacity: .2;
  width: 100%;
  height: 1px;
  margin-bottom: 36px;
}

.horizontal-line.design-system {
  position: relative;
  bottom: -80px;
}

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

.logo-div {
  z-index: 3;
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  margin-right: 100px;
  display: block;
}

.nav-logo {
  margin-bottom: -5px;
  transition: opacity .2s;
}

.nav-logo:hover {
  opacity: .75;
}

.nav-logo.w--current {
  display: flex;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-link {
  color: var(--white);
  cursor: pointer;
  margin-bottom: 0;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 15px;
  text-decoration: none;
  transition: color .2s, opacity .2s ease-in-out;
  display: block;
}

.footer-link:hover {
  opacity: 1;
  color: var(--light-green);
}

.footer-link.w--current {
  opacity: 1;
  display: none;
}

.footer-link.twitter {
  display: none;
}

.footer-links-container {
  flex-direction: column;
  margin-bottom: 24px;
  display: flex;
}

.footer {
  z-index: 0;
  background-color: var(--black);
  color: var(--black);
  padding-top: 80px;
  padding-bottom: 50px;
  position: relative;
}

.paragraph {
  text-align: center;
  margin-bottom: 16px;
}

.paragraph.small {
  color: var(--white);
  margin-top: 17px;
  font-size: 14px;
  line-height: 1.4em;
  display: flex;
}

.paragraph.large {
  font-size: 18px;
  line-height: 1.4em;
}

.ds-menu-brand {
  width: 160px;
  margin-bottom: 50px;
  margin-left: 30px;
}

.ds-menu {
  width: 100%;
}

.ds-menu-link {
  color: var(--green);
  border-left: 4px solid #0000;
  width: 100%;
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 27px;
}

.ds-menu-link:hover {
  background-color: var(--white);
}

.ds-menu-link.w--current {
  background-color: var(--faint-green);
  color: var(--black);
  padding-right: 0;
  font-weight: 500;
}

.ds-nav {
  background-color: #fff;
  border-right: 1px solid #ced5db;
  width: 240px;
  padding-top: 40px;
  position: fixed;
  inset: 0% auto 0% 0%;
  overflow: auto;
}

.form-radio-button {
  margin-bottom: 16px;
  padding-left: 24px;
}

.radio-button {
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-left: -24px;
  margin-right: 10px;
}

.radio-button.w--redirected-checked {
  border-width: 6px;
  border-color: #184736;
}

.form-error {
  background-color: var(--faint-green);
  color: #444;
  padding: 16px;
}

.form {
  margin-bottom: 8px;
  display: none;
}

.form-checkbox {
  margin-bottom: 16px;
  padding-left: 24px;
}

.check-box {
  width: 20px;
  height: 20px;
  margin-top: 0;
  margin-left: -24px;
  margin-right: 10px;
}

.check-box.w--redirected-checked {
  background-color: #184736;
  background-position: 50%;
  background-size: 16px;
  border-color: #184736;
}

.ds-content {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  margin-left: 240px;
  display: flex;
  position: relative;
}

.form-success {
  background-color: var(--soft-green);
  color: var(--dark-green);
  padding: 32px;
  font-size: 16px;
  line-height: 1.4em;
}

.ds-section {
  z-index: 0;
  text-align: left;
  padding: 60px 80px 48px 60px;
  position: relative;
}

.ds-section.top {
  background-color: var(--green);
  color: var(--white);
}

.ds-title {
  color: var(--dark-green);
  margin-bottom: 8px;
}

.ds-section-header {
  margin-bottom: 50px;
}

.text-input {
  border: 1px solid var(--faint-green);
  border-radius: 2px;
  margin-bottom: 16px;
  padding: 22px 16px;
  font-size: 15px;
  line-height: 1.4px;
}

.text-input:focus {
  border-color: var(--soft-green);
}

.text-input::placeholder {
  color: var(--faint-green);
}

.text-input.form {
  min-height: 120px;
}

.text-area {
  border: 1px solid var(--faint-green);
  border-radius: 2px;
  min-height: 120px;
  margin-bottom: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 15px;
}

.text-area:focus {
  border-color: var(--soft-green);
}

.text-area::placeholder {
  color: var(--soft-green);
}

.tabs-menu {
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 48px;
  display: flex;
}

.vertical-tab {
  width: 100%;
  display: none;
}

.tab-link {
  border-bottom: 2px solid var(--soft-green);
  opacity: .5;
  color: var(--green);
  text-align: center;
  background-color: #0000;
  flex: 0 auto;
  margin-left: 0;
  margin-right: 0;
  padding: 15px 24px;
  font-size: 18px;
}

.tab-link:hover {
  border-bottom-color: #184736;
}

.tab-link.w--current {
  border-bottom-color: var(--black);
  opacity: 1;
  color: var(--black);
  background-color: #0000;
  font-weight: 700;
}

.ds-description {
  color: #929aa1;
  max-width: 400px;
}

.nav-container {
  background-color: var(--black);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 100%;
  max-width: 1400px;
  height: 75px;
  margin-left: 0;
  margin-right: 0;
  padding: 20px 24px 20px 26px;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
}

.error-2 {
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.logo {
  margin-right: 100px;
}

.nav-link {
  color: var(--white);
  cursor: pointer;
  padding: 6px 12px;
  font-weight: 500;
  line-height: 24px;
  transition: background-color .2s, transform .2s, color .2s;
  display: inline-block;
}

.nav-link:active {
  transform: translate(0);
}

.nav-link.w--current {
  color: #fff;
  display: block;
}

.nav-link.cta {
  background-color: var(--white);
  color: var(--black);
  margin-left: 11px;
}

.form-dropdown {
  border: 1px solid var(--faint-green);
  background-color: #fff;
  border-radius: 0;
  width: 100%;
  height: 48px;
  margin-bottom: 16px;
  padding: 8px 16px;
  font-size: 15px;
  position: relative;
}

.form-dropdown:hover, .form-dropdown:focus {
  color: #37474e;
}

.form-dropdown::placeholder {
  color: #999;
  font-size: 15px;
}

.field-block {
  z-index: 1;
  border: 1px solid #0000;
  flex-direction: column;
  flex: 1;
  align-items: stretch;
  min-width: 50px;
  min-height: 20px;
  margin-bottom: 8px;
  display: flex;
}

.image-cover {
  object-fit: cover;
  object-position: 50% 70%;
  width: 100%;
  height: 100%;
}

.image-cover.black-and-white-background {
  filter: grayscale();
  position: absolute;
  inset: 0%;
}

.image-cover.background {
  position: absolute;
  inset: 0%;
}

.error {
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-left: -15px;
  margin-right: -15px;
  display: flex;
}

.footer-container {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
}

.ds-colour-block {
  width: 12.5%;
  padding-right: 16px;
  display: inline-block;
}

.ds-colour-grid {
  flex-wrap: wrap;
  margin-top: 24px;
  display: flex;
}

.ds-module {
  background-color: var(--faint-green);
  flex-direction: column;
  min-width: 100px;
  min-height: 100px;
  display: flex;
  position: relative;
}

._2-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

._1-2-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: end;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

._3-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

._2-1-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 2fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: end;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.heading {
  font-family: PT Serif, serif;
  font-style: italic;
  font-weight: 400;
}

.heading.xl {
  color: var(--black);
  margin-bottom: 12px;
  font-size: 50px;
  line-height: 1.25em;
}

.heading.xl.home {
  color: var(--white);
}

.heading.l {
  text-align: center;
  margin-bottom: 12px;
  font-size: 42px;
  line-height: 1.3em;
}

.heading.m {
  font-size: 32px;
  line-height: 1.4em;
}

.heading.s {
  margin-bottom: 12px;
  font-size: 24px;
  line-height: 1.4em;
}

.heading.xs {
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.5em;
}

.heading._2xs {
  font-size: 12px;
  line-height: 1.5em;
}

.heading._2xl {
  margin-bottom: 12px;
  font-size: 58px;
  line-height: 1.25em;
}

.heading.xl {
  margin-bottom: 12px;
  font-size: 50px;
  line-height: 1.25em;
}

.heading.xl-copy {
  color: #fff;
  margin-bottom: 12px;
  font-size: 50px;
  line-height: 1.25em;
}

.heading.xl-copy.home {
  color: var(--white);
}

.error2 {
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 1230px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
  display: block;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
}

.licenses-grid {
  grid-column-gap: 96px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.utility-page-wrap {
  background-color: var(--faint-green);
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  padding-top: 75px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 300px;
  display: flex;
}

.utility-page-form {
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 400px;
  display: flex;
}

.visible-spacer {
  background-color: var(--faint-green);
  margin-bottom: 24px;
  display: inline-block;
}

.link.grey {
  color: var(--dark-green);
}

.field-split {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.field-spacer {
  width: 24px;
  height: 10px;
}

.radio-button-input {
  margin-right: 20px;
  display: inline-block;
}

.nav-button-animated {
  z-index: 900;
  background-color: #0000;
  width: 60px;
  height: 55px;
  margin-top: 0;
  margin-right: -8px;
  padding: 0;
  position: relative;
  top: 0;
  right: 0;
}

.nav-button-animated.w--open {
  background-color: #0000;
  position: relative;
}

.top-line {
  background-color: var(--black);
  width: 36px;
  height: 3px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 17px;
  left: 0;
  right: 0;
}

.bottom-line {
  background-color: var(--black);
  width: 36px;
  height: 3px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 37px;
  left: 0;
  right: 0;
}

.nav-menu {
  z-index: 4;
  text-align: right;
  background-color: #0000;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  display: flex;
}

.hidden {
  display: none;
}

.navigation {
  z-index: 201;
  background-color: var(--white);
  color: var(--black);
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  box-shadow: 0 1px 12px #0000000d;
}

.project-cover-link {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  transition: filter .2s, color .2s;
  display: flex;
}

.project-cover-link:hover {
  opacity: 1;
  filter: brightness(110%);
}

.horizontal-divider {
  background-color: var(--soft-green);
  width: 100%;
  height: 1px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.colour-cover {
  object-fit: cover;
  background-color: #0000;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
}

.text-link {
  display: block;
}

.menu-rich-text ul {
  margin-bottom: 64px;
  padding-left: 16px;
  list-style-type: none;
}

.menu-rich-text li {
  margin-bottom: 20px;
  font-size: 18px;
}

.menu-rich-text h2 {
  color: var(--green);
  margin-bottom: 28px;
  font-size: 28px;
}

.menu-rich-text p {
  font-size: 18px;
}

.menu-grid {
  grid-column-gap: 80px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.above-box-right {
  background-color: var(--faint-green);
  width: 115%;
  padding: 40px 40px 32px;
  transition: opacity .2s, color .2s;
  position: relative;
  top: 32px;
  left: -15%;
}

.above-box-right.white {
  background-color: var(--white);
  color: var(--black);
}

.above-box-right.green {
  background-color: var(--black);
  color: var(--white);
}

.above-box-left {
  background-color: var(--faint-green);
  width: 115%;
  padding: 40px 40px 32px;
  transition: opacity .2s, color .2s;
  position: relative;
  top: 32px;
}

.above-box-left.green {
  color: var(--white);
  background-color: #000;
}

.image-block {
  height: 440px;
}

.map {
  height: 50vw;
  max-height: 600px;
  display: none;
}

._4-grid {
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  position: relative;
}

.photo-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-columns: 1fr 1fr;
  width: 100%;
}

.grid-image {
  height: 300px;
  overflow: hidden;
}

.grid-image.large {
  height: 620px;
}

.image {
  margin-right: 19px;
  padding-right: 0;
}

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

.slide-nav, .right-arrow {
  display: block;
}

.slider {
  transform: scale3d(1none, 1none, 1none);
  transform-style: preserve-3d;
  width: 100%;
  height: 100vh;
}

.left-arrow, .cloneable {
  display: block;
}

.slide-content {
  background-image: url('../images/Picture-1.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100vh;
}

.slide-content._2 {
  float: left;
  background-image: url('../images/Picture-2.webp');
  background-position: 50%;
}

.slide-content._3 {
  background-image: url('../images/Picture-3.webp');
}

.slide {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  transform: translate(0);
}

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

.paragraph-2, .field-label, .field-label-2, .field-label-3, .field-label-4, .field-label-5, .field-label-6, .field-label-7 {
  color: var(--black);
}

.link-2 {
  color: var(--white);
}

.image-2 {
  background-color: #0000;
}

.form-block {
  display: none;
}

.form-success-2 {
  color: #192e29;
  background-color: #a9b8b4;
  padding: 32px;
  font-size: 16px;
  line-height: 1.4em;
}

.button-2 {
  color: #fff;
  text-align: center;
  background-color: #000;
  flex: none;
  margin-bottom: 8px;
  padding: 9px 28px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  transition: opacity .2s, border-color .2s, color .2s, background-color .2s;
}

.button-2:hover {
  opacity: .75;
  color: #fff;
}

.button-2:active {
  opacity: .6;
}

.form-error-2 {
  color: #444;
  background-color: #d5dddb;
  padding: 16px;
}

.text-area-2 {
  border: 1px solid #d5dddb;
  border-radius: 2px;
  min-height: 120px;
  margin-bottom: 16px;
  padding-top: 12px;
  padding-bottom: 12px;
  font-size: 15px;
}

.text-area-2:focus {
  border-color: #a9b8b4;
}

.text-area-2::placeholder {
  color: #a9b8b4;
}

.text-input-2 {
  border: 1px solid #d5dddb;
  border-radius: 2px;
  margin-bottom: 16px;
  padding: 22px 16px;
  font-size: 15px;
  line-height: 1.4px;
}

.text-input-2:focus {
  border-color: #a9b8b4;
}

.text-input-2::placeholder {
  color: #d5dddb;
}

.form-2 {
  margin-bottom: 8px;
}

.spacer-2 {
  background-color: #a9b8b4;
  width: 48px;
  height: 48px;
}

.spacer-2._16 {
  background-color: #0000;
  width: 16px;
  height: 16px;
}

.form-block-2 {
  display: none;
}

.about-left-column {
  padding-top: 0;
}

.food-image {
  object-fit: cover;
  width: 291px;
  height: 236px;
}

.food-image.about {
  object-fit: scale-down;
  border-radius: 24px;
  width: 100%;
  height: 70%;
  margin-bottom: 16px;
  display: block;
  overflow: visible;
}

.food-image.about.rightimage {
  height: 107%;
}

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

._2-column-grid.about-hero-wrapper {
  grid-column-gap: 40px;
  grid-template-columns: 1.3fr 1fr;
}

.mg-bottom-0px {
  margin-bottom: 0;
  line-height: 1.25em;
  display: block;
}

.color-primary-1 {
  color: #ff7629;
}

.inner-container-600px {
  max-width: 600px;
}

.html-embed {
  object-fit: fill;
  justify-content: flex-start;
  align-items: stretch;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.top-line-2 {
  background-color: #000;
  width: 36px;
  height: 3px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 17px;
  left: 0;
  right: 0;
}

.logo-2 {
  margin-top: 9px;
  padding-top: 0;
}

.nav-container-2 {
  background-color: #000;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  min-width: 100%;
  max-width: 1400px;
  height: 75px;
  margin-left: 0;
  margin-right: 0;
  padding: 20px 24px 20px 26px;
  display: flex;
  top: 0;
  left: 0;
  right: 0;
}

.logo-div-2 {
  z-index: 3;
  object-fit: contain;
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  margin-top: 0;
  margin-bottom: 4px;
  display: block;
}

.navigation-2 {
  z-index: 201;
  color: #000;
  background-color: #fff;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 20px;
  left: 20px;
  right: 20px;
  box-shadow: 0 1px 12px #0000000d;
}

.nav-button-animated-2 {
  z-index: 900;
  background-color: #0000;
  width: 60px;
  height: 55px;
  margin-top: 0;
  margin-right: -8px;
  padding: 0;
  position: relative;
  top: 0;
  right: 0;
}

.nav-button-animated-2.w--open {
  background-color: #0000;
  position: relative;
}

.nav-logo-2 {
  margin-bottom: -5px;
  transition: opacity .2s;
}

.nav-logo-2:hover {
  opacity: .75;
}

.nav-logo-2.w--current {
  margin-top: auto;
  margin-bottom: auto;
}

.nav-link-2 {
  color: #fff;
  cursor: pointer;
  padding: 6px 12px;
  font-weight: 500;
  line-height: 24px;
  transition: background-color .2s, transform .2s, color .2s;
}

.nav-link-2:active {
  transform: translate(0);
}

.nav-link-2.w--current {
  background-color: var(--soft-green);
  color: var(--white);
  -webkit-text-fill-color: inherit;
  background-clip: border-box;
}

.nav-link-2.cta {
  color: #000;
  background-color: #fff;
  margin-left: 11px;
}

.bottom-line-2 {
  background-color: #000;
  width: 36px;
  height: 3px;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 37px;
  left: 0;
  right: 0;
}

.nav-menu-2 {
  z-index: 4;
  text-align: right;
  background-color: #0000;
  flex: 1;
  justify-content: center;
  align-items: center;
}

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

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

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

.button-3 {
  color: #0000;
  text-align: center;
  background-color: #0000;
  border: 1px solid #0000;
  padding: .75rem 1.5rem;
}

.button-3.is-secondary {
  color: #0000;
  background-color: #0000;
}

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

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

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

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

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

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

.layout65_item {
  display: flex;
}

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

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

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

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

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

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

.paragraph-3 {
  margin-top: 0;
  margin-bottom: 9px;
}

.paragraph-4 {
  margin-bottom: 0;
}

.link-3 {
  text-decoration: none;
}

.container-2 {
  flex-wrap: wrap;
  place-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
}

.posts-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  display: flex;
}

.posts-wrapper.cc-top-post {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.top-post-item {
  perspective: 2000px;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
}

.h2 {
  color: #000;
  text-transform: uppercase;
  margin-top: 15px;
  margin-bottom: 25px;
  font-size: 36px;
  font-weight: 400;
  line-height: 42px;
}

.post-author-text {
  margin-top: 30px;
  display: flex;
}

.post-image {
  justify-content: center;
  align-items: center;
  display: flex;
}

.top-post-text {
  width: 40%;
  margin-left: -75px;
  padding-left: 0;
}

.top-post-link-block {
  text-decoration: none;
}

.post-author {
  color: #000;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 10px;
  font-weight: 600;
  line-height: 12px;
  text-decoration: none;
}

.post-author:hover {
  text-decoration: underline;
}

.post-author.cc-top-margin {
  margin-right: 5px;
}

.post-short-text {
  color: #666;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
}

.container-3 {
  flex-wrap: wrap;
  place-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 90%;
  margin-top: 151px;
  margin-left: auto;
  margin-right: auto;
}

.top-post-image {
  width: 60%;
  display: flex;
}

.slider__arrow {
  color: #101010;
  background-color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: color .2s, background-color .2s;
  display: flex;
  box-shadow: 0 8px 20px #0006;
}

.slider__arrow:hover {
  color: #fff;
  background-color: #000;
}

.slider__arrow.left {
  transform: translate(-50%);
}

.slider__arrow.right {
  transform: translate(50%);
}

.slide-2 {
  position: static;
  inset: 0%;
  overflow: visible;
}

.slider__icon {
  font-size: 24px;
  font-weight: 700;
}

.slide__image {
  z-index: 1;
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0% auto auto 0%;
  box-shadow: 0 10px 40px #00000080;
}

.slide__image.previous {
  z-index: 0;
  transform-origin: 50%;
  transform: translate(-120px)rotate(-3deg)scale(.8);
}

.slide__image.current {
  z-index: 2;
  transform-origin: 50%;
}

.slide__image.next {
  z-index: 1;
  transform-origin: 50%;
  transform: translate(120px)rotate(3deg)scale(.8);
}

.slider-2 {
  background-color: #0000;
  width: 80%;
  margin-left: 155px;
}

.slider__mask {
  position: static;
  overflow: visible;
}

.slider__nav {
  padding-top: 40px;
  padding-bottom: 40px;
}

.slide-3 {
  position: static;
  inset: 0%;
  overflow: visible;
}

.slider-3 {
  background-color: #0000;
  width: 800px;
  height: 600px;
}

.page-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  overflow: hidden;
}

.section-3 {
  margin-top: 134px;
}

.div-block-2 {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 7px;
  display: flex;
}

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

.text-span {
  display: flex;
}

.paragraph-5 {
  font-size: 14px;
}

.link-4 {
  color: var(--white);
}

.link-4:hover {
  color: #f26157;
}

@media screen and (min-width: 1280px) {
  .section.hero {
    display: block;
  }

  .paragraph {
    font-size: 18px;
  }

  .heading._2xl {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    font-size: 68px;
  }

  .heading._2xl.virtual-tour {
    margin-top: 157px;
    margin-bottom: -65px;
  }

  .slide-nav-2, .right-arrow-2, .cloneable-2 {
    display: block;
  }

  .html-embed {
    margin-top: 0;
  }

  .html-embed.virtual-tours {
    margin-top: 79px;
  }
}

@media screen and (max-width: 991px) {
  .button {
    position: relative;
  }

  .button.white, .button.secondary {
    font-size: 18px;
    line-height: 1.4;
  }

  ._12-columns {
    flex-flow: wrap;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .column {
    width: 50%;
  }

  .column.desktop-6-column.tablet-12-column, .column.desktop-5-column.tablet-12-column {
    width: 100%;
  }

  .column.desktop-3-column {
    flex-wrap: nowrap;
    width: 33.33%;
  }

  .column.desktop-2-column.tablet-1-column {
    width: 8.33333%;
  }

  .ds-block {
    margin-bottom: 40px;
  }

  .logo-div {
    flex: 0 auto;
  }

  .nav-logo {
    flex: 1;
  }

  .footer-links-container {
    flex-direction: column;
    align-items: flex-start;
    display: flex;
  }

  .ds-menu-brand {
    margin-top: 6px;
    margin-bottom: 0;
    padding-left: 0;
  }

  .ds-menu {
    z-index: 500;
    border-bottom: 1px solid var(--faint-green);
    background-color: #fff;
    padding-top: 17px;
    padding-bottom: 17px;
    display: block;
    position: absolute;
    inset: 80px auto auto 0%;
  }

  .ds-nav {
    z-index: 10;
    width: 100%;
    padding-top: 20px;
    position: sticky;
    bottom: auto;
    left: auto;
    overflow: visible;
  }

  .ds-content {
    margin-left: 0;
    position: static;
  }

  .nav-container {
    padding-left: 26px;
    padding-right: 26px;
  }

  .nav-link {
    padding-left: 9px;
    padding-right: 9px;
  }

  .nav-link.cta {
    margin-left: 8px;
  }

  ._2-grid {
    margin-left: 0;
  }

  ._1-2-grid {
    grid-template-columns: 1fr 1.5fr;
  }

  ._3-grid {
    margin-left: 0;
  }

  ._2-1-grid {
    grid-template-columns: 1.5fr 1fr;
    margin-left: 0;
  }

  .error2 {
    padding-left: 30px;
    padding-right: 30px;
  }

  .licenses-grid {
    grid-column-gap: 40px;
    margin-left: 0;
  }

  .ds-body {
    flex-direction: column;
    display: flex;
  }

  .ds-menu-button {
    margin-right: 12px;
    top: -10px;
  }

  .ds-menu-button.w--open {
    background-color: #184736;
    border-radius: 40px;
  }

  .menu-grid {
    grid-column-gap: 64px;
    margin-left: 0;
  }

  ._4-grid {
    margin-left: 0;
  }

  .slide-content {
    background-position: 0%;
  }

  .button-2 {
    position: relative;
  }

  .mg-bottom-0px {
    margin-bottom: 263px;
  }

  .inner-container-600px.mg-bottom-medium-64px {
    margin-bottom: 48px;
  }

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

  .logo-div-2 {
    flex: 0 auto;
  }

  .nav-logo-2 {
    flex: 1;
  }

  .nav-link-2 {
    padding-left: 9px;
    padding-right: 9px;
  }

  .nav-link-2.cta {
    margin-left: 8px;
  }

  .nav-menu-2 {
    flex: none;
    display: block;
  }

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

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

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

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

  .container-2 {
    flex-flow: column;
    align-items: center;
  }

  .top-post-item {
    flex-wrap: wrap;
  }

  .top-post-text {
    width: 100%;
    padding-left: 0;
  }

  .container-3 {
    flex-flow: column;
    align-items: center;
  }

  .top-post-image {
    width: 100%;
    margin-bottom: 30px;
  }

  .slider__arrow.left {
    margin-left: 0;
  }

  .slider__arrow.right {
    margin-right: 0;
  }

  .slide-3 {
    overflow: visible;
  }

  .slider-3 {
    width: 500px;
    height: 400px;
  }
}

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

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 15px;
  }

  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .section.top-image-banner, .section.image-banner {
    height: 240px;
  }

  .button {
    padding: 7px 28px;
    font-size: 15px;
  }

  .spacer {
    height: 32px;
  }

  .spacer._64 {
    width: 48px;
    height: 48px;
  }

  .spacer._32 {
    width: 24px;
    height: 24px;
  }

  .spacer._128 {
    width: 96px;
    height: 96px;
  }

  ._12-columns.flex-horizontal {
    flex-flow: wrap;
    margin-bottom: 0;
  }

  .column.desktop-10-column, .column.desktop-11-column, .column.desktop-6-column {
    width: 100%;
  }

  .column.desktop-5-column {
    order: -1;
    width: 100%;
  }

  .column.desktop-1-column.mobile-hidden {
    display: none;
  }

  .column.desktop-4-column, .column.desktop-9-column {
    width: 100%;
  }

  .column.desktop-3-column {
    width: 50%;
  }

  .column.desktop-3-column.tablet-4-column {
    width: 100%;
  }

  .column.desktop-2-column {
    width: 50%;
  }

  .column.desktop-7-column, .column.desktop-8-column {
    width: 100%;
  }

  .logo-div {
    margin-right: auto;
  }

  .footer-logo {
    padding-left: 0;
  }

  .footer-links-container {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 48px;
    display: flex;
  }

  .paragraph {
    font-size: 15px;
  }

  .ds-menu-brand.w--current {
    margin-top: 14px;
  }

  .ds-menu {
    background-color: #fff;
    padding: 16px 24px 24px;
  }

  .ds-content {
    margin-left: 0;
  }

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

  .tabs-menu {
    flex-wrap: wrap;
  }

  .tab-link {
    border-bottom-width: 0;
    margin-bottom: 8px;
    margin-right: 8px;
    padding: 10px 18px;
  }

  .tab-link.w--current {
    background-color: var(--soft-green);
    color: var(--dark-green);
  }

  .nav-link {
    text-align: center;
    margin-left: 25px;
    margin-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-link:hover {
    transform: none;
  }

  .nav-link.cta {
    margin-top: 8px;
    margin-left: 25px;
  }

  .field-block {
    min-height: auto;
  }

  .footer-container {
    flex-direction: column;
  }

  .ds-colour-block {
    width: 25%;
  }

  ._2-grid {
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  ._1-2-grid {
    grid-column-gap: 0px;
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  ._3-grid {
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
  }

  ._2-1-grid {
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  .heading.xl {
    font-size: 38px;
  }

  .heading.l {
    font-size: 30px;
  }

  .heading.s {
    font-size: 18px;
  }

  .heading._2xl, .heading.xl, .heading.xl-copy {
    font-size: 38px;
  }

  .licenses-grid {
    grid-template-columns: 1fr;
    margin-left: 0;
  }

  .nav-menu {
    background-color: var(--white);
    padding-top: 15px;
    padding-bottom: 25px;
  }

  .menu-rich-text ul {
    margin-bottom: 48px;
  }

  .menu-rich-text li {
    font-size: 16px;
  }

  .menu-grid {
    grid-template-columns: 2fr;
    margin-left: 0;
  }

  .above-box-right {
    width: 100%;
    top: 0;
    left: auto;
  }

  .above-box-left {
    width: 100%;
    top: 0;
  }

  .map {
    height: 80vw;
  }

  ._4-grid {
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
  }

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

  .grid-image {
    height: 50vw;
  }

  .grid-image.large {
    height: 80vw;
  }

  .slide-content {
    background-position: 0%;
  }

  .slide-content._3 {
    background-position: 50%;
  }

  .button-2 {
    padding: 7px 28px;
    font-size: 15px;
  }

  .spacer-2 {
    height: 32px;
  }

  .about-left-column {
    padding-top: 0;
  }

  .food-image.about {
    border-radius: 16px;
    max-height: 500px;
  }

  ._2-column-grid, ._2-column-grid.about-hero-wrapper {
    grid-template-columns: 1fr;
  }

  .top-line-2 {
    background-color: #fff;
  }

  .logo-div-2 {
    margin-right: auto;
  }

  .nav-link-2 {
    text-align: center;
    margin-left: 25px;
    margin-right: 25px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-link-2:hover {
    transform: none;
  }

  .nav-link-2.cta {
    margin-top: 8px;
    margin-left: 25px;
  }

  .bottom-line-2 {
    background-color: #fff;
  }

  .nav-menu-2 {
    background-color: #fff;
    padding-top: 15px;
    padding-bottom: 25px;
  }

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

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

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

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

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

  .h2 {
    font-size: 20px;
    line-height: 24px;
  }

  .slider-3 {
    width: 400px;
    height: 300px;
  }
}

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

  .spacer._80 {
    width: 48px;
    height: 48px;
  }

  ._12-columns.flex-horizontal {
    flex-direction: row;
  }

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

  .color-block {
    margin-bottom: 20px;
  }

  .column {
    margin-bottom: 0;
  }

  .column.desktop-6-column {
    align-items: flex-start;
    width: 100%;
  }

  .column.desktop-5-column, .column.desktop-3-column {
    width: 100%;
  }

  .ds-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .text-input, .text-area {
    width: 100%;
  }

  .tabs-menu {
    margin-bottom: 32px;
  }

  .nav-container {
    padding: 10px 20px;
  }

  .nav-link {
    color: #000;
    font-size: 16px;
  }

  .footer-container {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .heading._2xl {
    font-size: 32px;
  }

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

  .field-split {
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
  }

  .field-spacer {
    display: none;
  }

  .nav-button-animated {
    color: #fff;
    background-color: #fff;
  }

  .nav-menu {
    flex-direction: column;
    display: flex;
  }

  .above-box-right, .above-box-left {
    padding: 24px 24px 16px;
  }

  .image-block {
    height: 360px;
  }

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

  .slide-content {
    background-position: 0%;
    background-size: cover;
  }

  .slide-content._3 {
    background-position: 50%;
  }

  .text-area-2, .text-input-2 {
    width: 100%;
  }

  .food-image {
    object-fit: cover;
    border-radius: 18px;
  }

  ._2-column-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .top-line-2 {
    background-color: #fff;
  }

  .logo-2 {
    max-width: none;
  }

  .nav-container-2 {
    padding: 10px 20px;
  }

  .logo-div-2 {
    flex: 1;
    margin-right: 0;
    padding-right: 26px;
  }

  .nav-button-animated-2 {
    color: #fffcf8;
    background-color: #0000;
  }

  .nav-link-2 {
    color: #000;
    font-size: 16px;
  }

  .bottom-line-2 {
    background-color: #fff;
  }

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

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

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

  .slider-3 {
    width: 250px;
    height: 200px;
  }
}

#w-node-_3d490be6-a1be-103a-74bc-3cc38055b835-07166d1b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3d490be6-a1be-103a-74bc-3cc38055b837-07166d1b {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_3d490be6-a1be-103a-74bc-3cc38055b839-07166d1b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_7ec5eb58-86f8-1ab5-fb8a-7df25091650c-07166d1b, #w-node-_7ec5eb58-86f8-1ab5-fb8a-7df250916512-07166d1b, #w-node-_7ec5eb58-86f8-1ab5-fb8a-7df250916518-07166d1b {
  align-self: start;
}

#w-node-_5b78352d-86e5-da2d-3b8c-295dd2abb8ff-7a166d29 {
  place-self: start end;
}

@media screen and (max-width: 991px) {
  #w-node-_5b78352d-86e5-da2d-3b8c-295dd2abb8ff-7a166d29 {
    align-self: stretch;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_5b78352d-86e5-da2d-3b8c-295dd2abb8ff-7a166d29 {
    justify-self: stretch;
  }
}


