:root {
  --white: #e7e7e7;
  --charcoal: #333;
  --g-s-green: #068747;
  --g-s-red: #ed2124;
}

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

body {
  color: #333;
  font-family: Palatino Linotype, Book Antiqua, Palatino, serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 38px;
  font-weight: bold;
  line-height: 44px;
}

a {
  color: var(--white);
  text-decoration: none;
}

.body {
  background-color: var(--white);
  color: var(--charcoal);
  padding-left: 0;
  font-family: Futura Medium, sans-serif;
  font-weight: 500;
  position: relative;
}

.h1 {
  z-index: 10;
  color: var(--white);
  text-align: left;
  text-transform: capitalize;
  width: auto;
  margin-top: 0;
  margin-bottom: 20px;
  padding-top: 0;
  padding-bottom: 0;
  font-family: Didot Bold, sans-serif;
  font-size: 55px;
  font-weight: 700;
  line-height: 1.3;
  position: relative;
}

.h1.white {
  color: var(--white);
}

.h2 {
  color: var(--white);
  text-transform: capitalize;
  margin-bottom: 20px;
  font-family: Didot Bold, sans-serif;
  font-size: 35px;
  font-weight: 700;
  line-height: 1.5;
}

.h2.white {
  color: var(--white);
  text-align: center;
  max-width: 700px;
}

.h2.subheading {
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Futura Medium, sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.h2.charcoal {
  color: var(--charcoal);
  text-align: left;
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 0;
  padding-right: 0;
}

.h2.footer {
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.h2.max-width-medium {
  max-width: 48rem;
}

.h3 {
  border-bottom: 1px none var(--g-s-green);
  color: var(--charcoal);
  text-transform: capitalize;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  font-family: Didot Bold, sans-serif;
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  display: block;
  position: static;
}

.h3.white {
  border-bottom-color: var(--white);
  color: var(--white);
}

.h3.with-underline {
  border-bottom-style: solid;
  border-bottom-width: 2px;
  margin-right: 15px;
  padding-bottom: 5px;
  font-size: 22px;
  font-weight: 700;
}

.overflow-container {
  overflow: hidden;
}

.hero-section {
  text-align: center;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  height: 100vh;
  padding-bottom: 5rem;
  display: flex;
  position: relative;
}

.image {
  width: 60%;
  margin-top: 3%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.nav-menu {
  justify-content: space-around;
  align-items: center;
  width: 85%;
  min-height: 40px;
  margin-bottom: 20px;
  margin-left: auto;
  margin-right: auto;
  padding: 15px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.start-button {
  border-style: solid none none solid;
  border-width: 3px;
  border-color: var(--g-s-red);
  background-color: var(--g-s-green);
  text-transform: uppercase;
  border-radius: 15px 0 0;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  width: 35%;
  max-width: 350px;
  height: 130px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding: 20px 40px;
  font-size: 40px;
  line-height: 1.2;
  transition: color .2s;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: auto;
  right: 0%;
  box-shadow: inset 1px 1px 8px -2px #000, 8px 8px 4px -5px rgba(0, 0, 0, .5);
}

.start-button:hover {
  color: var(--charcoal);
}

.hero-menu-text {
  color: var(--white);
  background-color: rgba(51, 51, 51, .5);
  border-top-right-radius: 20px;
  flex: none;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  font-size: 30px;
  line-height: 1.2;
  transition: background-color 1s, font-size .3s;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.hero-menu-text:hover {
  background-color: rgba(51, 51, 51, .8);
  font-size: 32px;
}

.section {
  z-index: 1;
  background-color: var(--g-s-green);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  min-height: 0;
  padding: 0 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.section.green {
  background-color: var(--white);
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.section.red {
  background-color: var(--charcoal);
  padding-bottom: 0;
}

.divider-line-div {
  background-color: var(--g-s-green);
  width: 140px;
  height: 2px;
}

.divider-line-div.white {
  background-color: var(--white);
  margin-bottom: 60px;
}

.menu-wrapper {
  border: 2px solid var(--g-s-green);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 95%;
  max-width: 1400px;
  margin-top: 40px;
  margin-bottom: 100px;
  padding: 0;
  display: flex;
}

.menu-item-description {
  text-transform: capitalize;
  margin-bottom: 0;
  padding: 15px;
  font-family: Futura Medium, sans-serif;
  font-size: 2.5vw;
  font-weight: 500;
  line-height: 1;
}

.menu-item-description.caveat {
  color: var(--g-s-green);
  font-family: Futura Condensed Medium, sans-serif;
  font-size: 3vw;
  font-weight: 500;
}

.item-ingredients-span {
  font-size: 15px;
}

.restaurant-menu-grid {
  grid-column-gap: 15px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: .75fr .25fr .75fr .25fr;
  grid-auto-columns: 1fr;
  align-self: center;
  align-items: center;
  justify-items: start;
  width: 80%;
  display: grid;
}

.restaurant-menu-grid.cooldrinks {
  grid-column-gap: 15px;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr .25fr 1fr .25fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  justify-items: start;
  display: grid;
}

.restaurant-menu-grid.cooldrinks.bottom-margin {
  justify-items: center;
  margin-bottom: 40px;
}

.menu-item-price {
  font-size: 35px;
  line-height: 1.3;
}

.menu-item-price.bottom-margin {
  font-size: 30px;
}

.step-designation {
  z-index: 10;
  border: 2px none var(--g-s-green);
  background-color: var(--g-s-green);
  color: var(--white);
  cursor: pointer;
  border-radius: 100%;
  margin-top: 100px;
  margin-bottom: 0;
  padding-left: 40px;
  padding-right: 40px;
  font-size: 20vw;
  line-height: 1.3;
  transition: transform .2s, box-shadow .18s ease-in-out;
  position: relative;
  transform: scale(1);
  box-shadow: 6px 6px 12px 1px rgba(0, 0, 0, .25);
}

.step-designation:hover {
  box-shadow: none;
  transform: scale(.9);
}

.step-designation:active {
  opacity: 1;
}

.step-designation.green {
  background-color: var(--white);
  color: var(--charcoal);
  margin-top: 100px;
  margin-bottom: 0;
  padding-left: 40px;
  padding-right: 40px;
}

.step-designation.red {
  background-color: var(--charcoal);
  margin-top: 100px;
}

.contact-icon {
  color: var(--white);
  font-family: "Font awesome 5 brands 400", sans-serif;
  font-size: 15vw;
  font-weight: 400;
  line-height: 1;
}

.contact-icon.phone {
  font-size: 13vw;
}

.direct-contact-link-block {
  flex: 0 auto;
  margin-top: 0;
  padding: 25px;
}

.direct-contact-wrapper {
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  max-width: 800px;
  margin-top: 140px;
  margin-bottom: 10px;
  display: flex;
}

.direct-contact-wrapper.phone {
  flex-wrap: nowrap;
  max-width: 1000px;
  margin-top: 10px;
  margin-bottom: 140px;
}

.direct-contact-wrapper.right-aligned {
  max-width: 1000px;
}

.contact-number {
  color: var(--white);
  flex: 0 auto;
  font-size: 4vw;
  line-height: 1.2;
}

.instructions-text {
  justify-content: center;
  align-items: center;
  width: auto;
  font-family: Caveat, sans-serif;
  font-weight: 400;
  line-height: 1.3;
  display: flex;
  position: relative;
  bottom: auto;
}

.instructions-text.white {
  color: var(--white);
  justify-content: center;
  font-family: Sue Ellen Francisco, sans-serif;
  font-size: 30px;
}

.instructions-text.white.mobile-only {
  display: none;
}

.instructions-text-and-arrow-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  width: 30%;
  display: flex;
  position: relative;
  bottom: 60px;
  left: 0;
}

.instructions-text-and-arrow-wrapper.phone {
  align-items: flex-start;
  width: 30%;
  top: 60px;
  bottom: 0;
  left: 0;
}

.arrow {
  transform: rotate(70deg);
}

.arrow.pointing-left {
  align-self: flex-start;
  transform: rotate(-125deg);
}

.section-text {
  max-width: 700px;
  font-size: 20px;
  line-height: 1.4;
}

.section-text.white {
  z-index: 5;
  color: var(--white);
  text-align: left;
  align-self: auto;
  margin-bottom: 20px;
  font-weight: 500;
  line-height: 1.5;
  position: relative;
}

.section-text.white.mobile-only {
  display: none;
}

.section-text.white.all-done {
  z-index: 10;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 40px;
  font-family: Sue Ellen Francisco, sans-serif;
  font-size: 9vw;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
}

.section-text.white.added-margin {
  margin-top: 60px;
  margin-bottom: 60px;
}

.bold-text {
  font-family: "Font awesome 5 free solid 900", sans-serif;
  font-weight: 400;
}

.disappearing-div {
  z-index: 10;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.colour-splash {
  z-index: 2;
  background-color: var(--white);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.colour-splash.green {
  background-color: var(--g-s-green);
}

.colour-splash.red {
  background-color: var(--g-s-red);
}

.colour-splash.first-section {
  max-height: 100%;
  top: 7%;
}

.text-link {
  transition: border-width .2s ease-in-out, letter-spacing .15s ease-in-out;
}

.text-link:hover {
  border-style: none none solid;
  border-width: 2px;
  border-color: black black var(--white);
  letter-spacing: 2px;
  text-decoration: none;
}

.text-link.reverse:hover {
  letter-spacing: normal;
}

.text-link.red {
  color: var(--g-s-red);
}

.site-footer {
  background-color: var(--charcoal);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
}

.image-2 {
  width: 30%;
  padding: 0;
}

.calbie-text {
  direction: ltr;
  color: var(--white);
  letter-spacing: 2px;
  margin-top: 60px;
  margin-bottom: 60px;
  font-family: Futura Medium, sans-serif;
  font-size: 16px;
  font-weight: 500;
}

.footer-text {
  color: var(--white);
  text-align: center;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 20px;
  line-height: 1.5;
}

.footer-text.small.hours {
  text-align: center;
  max-width: 700px;
  margin-top: 0;
}

.footer-text.no-bottom-margin {
  margin-bottom: 0;
}

.click-here-text {
  z-index: 2;
  color: var(--white);
  text-align: center;
  width: 80%;
  margin-bottom: 60px;
  font-family: Caveat, sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  position: relative;
}

.click-here-text.green {
  color: var(--g-s-green);
}

.click-here-text.red {
  color: var(--g-s-red);
  line-height: 1.2;
}

.parallax-phone {
  object-fit: contain;
  align-self: auto;
  width: 100%;
  min-width: 0;
  max-width: none;
  position: relative;
}

.phone-mockup-wrapper {
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 50px;
  justify-content: center;
  align-items: flex-start;
  width: 80%;
  max-width: 650px;
  margin-top: 40px;
  padding-bottom: 60px;
  display: flex;
  overflow: hidden;
  box-shadow: inset 0 50px 50px 20px rgba(0, 0, 0, .4);
}

.whatsapp-message-list {
  color: var(--white);
  max-width: 650px;
  margin-top: 40px;
  margin-bottom: 40px;
  font-size: 25px;
  line-height: 1.5;
}

.whatsapp-order-message-list-item {
  margin-bottom: 20px;
}

.subtext {
  font-size: 18px;
}

.image-3 {
  width: 85%;
  max-width: 650px;
}

.lightbox-link {
  border-style: solid solid none none;
  border-width: 3px 3px 1px 1px;
  border-color: var(--g-s-red) var(--g-s-red) black black;
  border-top-right-radius: 25px;
  justify-content: center;
  align-items: center;
  width: 35%;
  height: 130px;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
  overflow: hidden;
}

.image-4 {
  object-fit: cover;
  border-top-left-radius: 0;
  border-top-right-radius: 20px;
  width: 100%;
  box-shadow: 5px 5px 13px -3px rgba(0, 0, 0, .5);
}

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

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

.heading-2 {
  color: var(--g-s-green);
  font-family: Didot Regular, sans-serif;
  font-size: 45px;
  font-weight: 400;
  line-height: 1.1;
}

.div-block-2 {
  margin-top: 10px;
  font-size: 20px;
  line-height: 1.2;
}

.button {
  background-color: var(--g-s-green);
  text-transform: uppercase;
  margin-top: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}

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

.homelink-block {
  align-self: flex-start;
  width: 40vw;
  margin-top: 40px;
}

.homelink-block.w--current {
  z-index: 100;
  align-self: auto;
  max-width: 450px;
  margin-top: 0;
  position: absolute;
  top: 3%;
  bottom: auto;
  left: auto;
  right: auto;
}

.homelink-block.footer {
  width: 20vw;
  min-width: 200px;
  max-width: 350px;
  margin-bottom: 20px;
  position: relative;
}

.html-embed {
  z-index: 100;
  background-color: rgba(0, 0, 0, 0);
  align-self: auto;
  position: relative;
  top: auto;
  left: auto;
  right: auto;
}

.html-embed.relative {
  border: 1px none var(--charcoal);
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  margin-left: 70px;
  transition: box-shadow .3s;
  display: block;
  position: relative;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, .5);
}

.html-embed.relative:hover {
  box-shadow: 1px 1px 30px rgba(0, 0, 0, .5);
}

.html-embed.relative.footer {
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-left: 0;
  display: flex;
}

.page-section {
  background-color: var(--g-s-green);
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.typical-container {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: auto;
  align-items: center;
  justify-items: center;
  width: 100%;
}

.typical-container.reviews {
  padding-top: 70px;
  padding-bottom: 70px;
}

.typical-container.reversed {
  padding-right: 25px;
}

.typical-container.is-top-border.background-colour-red {
  background-color: var(--charcoal);
}

.typical-container.background-colour-charcoal {
  background-color: var(--charcoal);
  padding-left: 25px;
}

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

.heading-content-wrapper.is-padding-horizontal-medium {
  padding-left: 5rem;
  padding-right: 5rem;
}

.hero-bg-img-wrapper {
  z-index: 10;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.hero-img {
  object-fit: cover;
  object-position: 50% 50%;
  width: 100%;
  height: 110%;
}

.grid-img-wrapper {
  width: 50vw;
  max-width: none;
  height: 100%;
  max-height: 70vh;
  overflow: hidden;
}

.img-content {
  object-fit: cover;
  width: 100%;
  height: 115%;
}

.hours-wrapper {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  justify-content: center;
  align-items: stretch;
  width: 500px;
  min-height: 50px;
  display: flex;
  overflow: hidden;
}

.hours-block {
  border: 3px solid var(--white);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 50%;
  height: auto;
  min-height: 50px;
  padding: 20px;
  display: flex;
}

.hours-block.white {
  background-color: var(--white);
  justify-content: center;
  align-items: center;
  display: flex;
}

.hours-text {
  color: var(--white);
  letter-spacing: 1px;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.hours-text.holidays {
  font-family: Futura Bold, sans-serif;
}

.btn {
  border: 5px solid var(--charcoal);
  background-color: var(--white);
  color: var(--charcoal);
  text-transform: capitalize;
  border-radius: 3px;
  padding: 40px 60px;
  font-family: Didot Regular, sans-serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  transition: background-color .8s, box-shadow .3s;
  box-shadow: 1px 1px 20px rgba(0, 0, 0, .5);
}

.btn:hover {
  background-color: #fff;
  box-shadow: 1px 1px 30px rgba(0, 0, 0, .3);
}

.base-options-popup {
  z-index: 5000;
  background-color: var(--white);
  border-radius: 0 0 10px 10px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: auto;
  max-width: 700px;
  min-height: 100px;
  max-height: 90vh;
  margin-left: auto;
  margin-right: auto;
  padding-top: 0;
  padding-bottom: 0;
  display: none;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
  overflow: visible;
}

.base-options-content-subtext {
  margin-bottom: 40px;
  padding-left: 0;
  padding-right: 0;
  font-size: 18px;
}

.base-options-ingredients-wrapper {
  width: 100%;
  max-width: 500px;
  height: auto;
  min-height: 50px;
  margin-top: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  overflow: auto;
}

.banting-base-ingredients-list {
  margin-top: 20px;
  margin-bottom: 20px;
}

.banting-base-ingredients-list-item {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.5;
}

.banting-base-ingredients-list-item.beetroot {
  font-family: Futura Bold, sans-serif;
  font-weight: 700;
}

.close-popup {
  border: 2px solid var(--charcoal);
  cursor: pointer;
  border-radius: 3px;
  justify-content: center;
  align-items: center;
  width: 70px;
  height: 70px;
  font-size: 50px;
  line-height: 1;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 3%;
  left: auto;
  right: 3%;
}

.close-icon {
  font-family: Futura Bold, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  display: inline;
}

.site-footer {
  background-color: var(--charcoal);
  height: auto;
  max-height: none;
  padding: 60px 40px;
}

.footer-grid {
  grid-row-gap: 60px;
  border-top: 2px solid var(--white);
  grid-template-rows: auto;
  grid-template-columns: 3fr 1fr;
  align-items: center;
  justify-items: center;
  width: 100%;
  max-width: 700px;
  margin-top: 40px;
  padding-top: 20px;
}

.footer-grid.feedback {
  grid-row-gap: 20px;
  border-right: 2px solid var(--white);
  grid-template-rows: auto auto auto auto;
}

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

.footer-info-wrapper.left {
  width: 100%;
  min-height: 50px;
}

.footer-info-wrapper.right {
  align-items: flex-end;
  width: 100%;
  min-height: 50px;
}

.footer-contact-wrapper {
  color: var(--white);
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  font-family: Futura Medium, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  display: flex;
}

.footer-contact-wrapper.no-bottom-margin {
  margin-bottom: 0;
}

.mr-d-link {
  width: 90px;
  height: 90px;
}

.contact-icon {
  margin-right: 15px;
  font-family: "Font awesome 5 free solid 900", sans-serif;
  font-size: 20px;
}

.contact-txt {
  font-size: 20px;
  line-height: 1.4;
}

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

.footer-txt {
  color: var(--white);
  font-size: 18px;
}

.footer-txt.calbie {
  margin-top: 60px;
  font-family: Didot Bold, sans-serif;
  font-weight: 700;
}

.footer-inline-link {
  color: var(--g-s-green);
  cursor: pointer;
  padding-left: 10px;
  padding-right: 10px;
  font-family: Futura Bold, sans-serif;
  font-weight: 700;
  transition: letter-spacing .3s;
  display: inline;
}

.footer-inline-link:hover {
  letter-spacing: 1px;
}

.footer-inline-link.calbie {
  font-family: Didot Bold, sans-serif;
  font-weight: 700;
}

.footer-inline-link.calbie:hover {
  letter-spacing: .5px;
}

.link {
  color: var(--g-s-green);
  padding-left: 10px;
  padding-right: 10px;
  font-family: Futura Bold, sans-serif;
  font-weight: 700;
}

.link:hover {
  letter-spacing: 1px;
}

.reviews-wrapper {
  justify-content: center;
  align-items: stretch;
  width: 100%;
  min-height: 100px;
  margin-top: 20px;
  display: flex;
}

.review-card {
  border: 2px solid var(--charcoal);
  background-color: var(--white);
  border-radius: 5px;
  flex-direction: column;
  justify-content: space-between;
  align-self: flex-start;
  width: 280px;
  margin-left: 3rem;
  margin-right: 3rem;
  padding: 40px 35px;
  transition: box-shadow .4s;
  display: flex;
  box-shadow: 1px 1px 30px -5px rgba(0, 0, 0, .3);
}

.review-card:hover {
  box-shadow: 1px 1px 40px rgba(0, 0, 0, .3);
}

.reviewer-name {
  border-top: 2px solid var(--charcoal);
  padding-top: 20px;
  font-family: Futura Bold, sans-serif;
  font-weight: 700;
}

.reviewer-txt {
  margin-bottom: 20px;
  font-size: 1.3rem;
  line-height: 1.6;
}

.review-divider {
  background-color: var(--charcoal);
  width: 100%;
  height: 2px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.margin-top-small {
  margin-top: 2rem;
}

.text-block {
  z-index: 20;
  color: var(--white);
  text-align: center;
  margin-bottom: 30px;
  font-size: 25px;
  line-height: 1.5;
  position: relative;
  top: auto;
  left: 0%;
  right: 0%;
}

.text-span {
  color: var(--g-s-red);
  font-family: "Font awesome 5 free solid 900", sans-serif;
  font-weight: 400;
}

.hero-image-overlay {
  background-image: linear-gradient(to bottom, transparent, rgba(51, 51, 51, .7) 60%, var(--charcoal) 83%);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.div-block-3 {
  z-index: 20;
  position: relative;
}

@media screen and (min-width: 1920px) {
  .h3 {
    font-family: Didot Bold, sans-serif;
  }

  .homelink-block.w--current {
    width: 30vw;
  }

  .html-embed.relative {
    transition: box-shadow .3s;
    box-shadow: 1px 1px 20px rgba(0, 0, 0, .5);
  }

  .html-embed.relative:hover {
    box-shadow: 1px 1px 30px rgba(0, 0, 0, .5);
  }

  .html-embed.relative.footer {
    margin-left: 0;
  }

  .grid-img-wrapper {
    overflow: hidden;
  }

  .img-content {
    height: 130%;
  }

  .hours-wrapper {
    border-radius: 10px 0 0 10px;
    margin-top: 20px;
    overflow: hidden;
  }

  .btn {
    border-width: 5px;
    border-color: var(--charcoal);
    background-color: var(--white);
    color: var(--charcoal);
    margin-top: 20px;
    padding: 40px 60px;
    font-family: Didot Bold, sans-serif;
    font-size: 24px;
    font-weight: 700;
  }

  .base-options-popup {
    border-right: 5px solid var(--charcoal);
    border-bottom: 5px solid var(--charcoal);
    border-left: 5px solid var(--charcoal);
    display: none;
    box-shadow: 14px 14px 50px rgba(0, 0, 0, .25);
  }

  .footer-grid {
    grid-row-gap: 60px;
    grid-template-columns: 5fr 1fr;
    max-width: 900px;
  }

  .footer-info-wrapper.left {
    flex-flow: column;
    align-content: flex-start;
    justify-content: space-around;
    align-items: flex-start;
  }

  .contact-icon {
    margin-right: 7px;
    font-family: "Font awesome 5 free solid 900", sans-serif;
    font-size: 25px;
  }

  .contact-txt {
    font-size: 20px;
  }
}

@media screen and (max-width: 991px) {
  .h1 {
    margin-top: 60px;
    margin-bottom: 10px;
    padding-left: 30px;
    padding-right: 30px;
    font-size: 4.5vw;
  }

  .h2 {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 3.2vw;
  }

  .h2.white {
    margin-top: 10px;
  }

  .h2.subheading {
    padding-left: 30px;
    padding-right: 30px;
    font-size: 2vw;
  }

  .h3 {
    border-bottom-width: 2px;
    font-size: 2.8vw;
    font-weight: 700;
  }

  .h3.white {
    margin-top: 10px;
  }

  .hero-section {
    padding-left: 10px;
    padding-right: 10px;
  }

  .image {
    width: 75%;
  }

  .nav-menu {
    width: 95%;
  }

  .start-button {
    border-bottom-style: none;
    border-right-style: none;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    width: 35%;
    height: 140px;
    margin-bottom: 0;
    padding-top: 40px;
    padding-bottom: 40px;
    font-size: 35px;
    top: auto;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .hero-menu-text {
    background-color: rgba(51, 51, 51, .3);
  }

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

  .menu-item-description {
    font-size: 23px;
  }

  .restaurant-menu-grid {
    justify-items: center;
    width: 100%;
  }

  .restaurant-menu-grid.cooldrinks.bottom-margin {
    margin-bottom: 20px;
  }

  .menu-item-price {
    font-size: 4vw;
  }

  .menu-item-price.bottom-margin {
    margin-right: 10px;
    font-size: 30px;
  }

  .step-designation, .step-designation.green, .step-designation.red {
    margin-top: 60px;
  }

  .direct-contact-wrapper {
    max-width: 600px;
  }

  .direct-contact-wrapper.right-aligned {
    margin-top: 80px;
  }

  .instructions-text.white {
    display: none;
  }

  .instructions-text.white.mobile-only {
    display: block;
  }

  .instructions-text-and-arrow-wrapper {
    width: 20%;
    bottom: 100px;
  }

  .section-text.white {
    display: none;
  }

  .section-text.white.mobile-only {
    text-align: center;
    letter-spacing: 1px;
    max-width: 500px;
    margin-bottom: 40px;
    line-height: 1.5;
    display: block;
  }

  .section-text.white.all-done {
    z-index: 2;
    position: relative;
  }

  .section-text.white.all-done.mobile-only {
    text-align: center;
    margin-top: 60px;
    line-height: 1.2;
  }

  .colour-splash.first-section {
    top: 4.5%;
  }

  .image-2 {
    width: 35%;
  }

  .calbie-text, .footer-text {
    text-align: center;
  }

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

  .click-here-text, .click-here-text.green {
    margin-bottom: 20px;
  }

  .click-here-text.red {
    margin-bottom: 10px;
  }

  .phone-mockup-wrapper {
    margin-bottom: 40px;
  }

  .lightbox-link {
    border-style: solid solid none none;
    border-width: 3px;
    border-color: var(--g-s-red);
    object-fit: cover;
    border-top-right-radius: 25px;
    width: 35%;
    max-width: 350px;
    height: 140px;
    overflow: hidden;
  }

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

  .html-embed, .html-embed.relative {
    margin-left: 30px;
    margin-right: 30px;
  }

  .typical-container.background-colour-charcoal {
    padding-left: 0;
  }

  .heading-content-wrapper {
    padding: 0;
  }

  .heading-content-wrapper.is-padding-horizontal-medium {
    padding: 2rem 1.5rem;
  }

  .grid-img-wrapper {
    max-height: none;
  }

  .hours-wrapper {
    width: 90%;
    margin-left: 30px;
  }

  .hours-block {
    justify-content: center;
    align-items: center;
    width: 70%;
  }

  .hours-block.white {
    width: 30%;
  }

  .hours-text {
    font-size: 12px;
  }

  .hours-text.holidays {
    margin-bottom: 0;
  }

  .btn {
    border-width: 3px;
    margin-bottom: 20px;
    margin-left: 30px;
    margin-right: 30px;
    padding: 30px 25px;
    font-size: 18px;
  }

  .footer-grid.feedback {
    border-radius: 5px;
  }

  .contact-txt {
    font-size: 18px;
  }

  .footer-inline-link {
    border: 2px solid var(--g-s-green);
    border-radius: 5px;
    margin-left: 10px;
    padding: 10px;
    display: inline-block;
  }

  .footer-inline-link.calbie {
    border: 2px none var(--g-s-green);
    border-radius: 5px;
    margin-left: 0;
    padding: 15px 10px;
    display: inline;
  }

  .review-card {
    border-width: 3px;
    align-self: flex-start;
    width: 250px;
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .reviewer-name {
    border-top: 2px solid var(--g-s-green);
    padding-top: 20px;
    font-size: 12px;
  }

  .reviewer-txt {
    margin-bottom: 20px;
    font-size: 1rem;
  }

  .text-block {
    margin-left: 40px;
    margin-right: 40px;
  }
}

@media screen and (max-width: 767px) {
  .h1 {
    margin-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.7rem;
  }

  .h1.white {
    color: var(--charcoal);
    font-size: 8vw;
  }

  .h2 {
    margin-top: 0;
    margin-bottom: 10px;
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1.7rem;
  }

  .h2.white {
    margin-top: 0;
  }

  .h2.subheading {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 1rem;
  }

  .h2.footer, .h2.reviews {
    font-size: 4.5vw;
  }

  .h3 {
    width: 90%;
    font-size: 3.5vw;
  }

  .image {
    width: 80%;
  }

  .nav-menu {
    flex-flow: column;
    margin-bottom: 0;
  }

  .start-button {
    width: 35%;
    max-width: 285px;
    height: 130px;
    margin-top: 20px;
    font-size: 5vw;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .hero-menu-text {
    background-color: rgba(51, 51, 51, .3);
    border-radius: 0 20px 0 0;
    flex: 0 auto;
    justify-content: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    padding: 15px;
    font-size: 5vw;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

  .divider-line-div.white {
    margin-bottom: 40px;
  }

  .menu-item-description {
    text-align: center;
    font-size: 5vw;
  }

  .menu-item-description.caveat {
    font-size: 5vw;
    line-height: 1.3;
  }

  .item-ingredients-span {
    font-size: 3vw;
  }

  .restaurant-menu-grid {
    grid-column-gap: 6px;
    grid-row-gap: 3px;
    flex-direction: column;
    grid-template-rows: auto auto auto;
    grid-template-columns: .75fr .5fr;
    grid-auto-columns: 1fr;
    grid-auto-flow: row dense;
    align-self: auto;
    justify-items: center;
    display: grid;
  }

  .restaurant-menu-grid.cooldrinks {
    grid-column-gap: 4px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr .25fr;
  }

  .restaurant-menu-grid.cooldrinks.bottom-margin {
    grid-template-rows: auto auto auto;
  }

  .menu-item-price {
    border-bottom: 1px solid var(--g-s-green);
    text-align: center;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 6vw;
  }

  .menu-item-price.bottom-margin {
    margin-bottom: 0;
    padding-bottom: 20px;
    font-size: 5vw;
  }

  .step-designation {
    margin-top: 20px;
    font-size: 30vw;
  }

  .direct-contact-wrapper {
    margin-bottom: 10px;
  }

  .direct-contact-wrapper.phone {
    margin-top: -60px;
    margin-bottom: 100px;
  }

  .direct-contact-wrapper.right-aligned {
    margin-top: 80px;
  }

  .contact-number {
    display: none;
  }

  .instructions-text.white.mobile-only {
    font-size: 25px;
  }

  .instructions-text-and-arrow-wrapper {
    bottom: 80px;
    left: 20px;
  }

  .instructions-text-and-arrow-wrapper.phone {
    left: 0;
  }

  .section-text.white.mobile-only {
    width: 85%;
    margin-bottom: 40px;
    font-size: 16px;
  }

  .section-text.white.mobile-only.bottom-margin {
    margin-bottom: 30px;
  }

  .section-text.white.all-done.mobile-only {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 50px;
  }

  .colour-splash.first-section {
    top: 0%;
  }

  .site-footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .image-2 {
    width: 70%;
  }

  .calbie-text {
    margin-bottom: 40px;
  }

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

  .click-here-text {
    color: var(--white);
  }

  .phone-mockup-wrapper {
    margin-top: 10px;
    margin-bottom: 40px;
    padding-bottom: 40px;
  }

  .whatsapp-message-list {
    margin-top: 15px;
  }

  .lightbox-link {
    object-fit: cover;
    border-bottom-style: none;
    border-left-style: none;
    border-radius: 0 25px 0 0;
    flex-wrap: wrap;
    width: 35%;
    max-width: 285px;
    height: 130px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: auto;
    overflow: hidden;
  }

  .image-4 {
    opacity: 1;
    object-fit: cover;
    border-radius: 0 20px 0 0;
    width: 100%;
    position: relative;
  }

  .image-4:hover {
    opacity: 1;
  }

  .html-embed {
    width: 90%;
    margin-left: 20px;
    margin-right: 20px;
  }

  .html-embed.relative {
    width: 90%;
    margin-left: 15px;
    margin-right: 15px;
  }

  .typical-container {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .typical-container.reviews {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .typical-container.reversed {
    grid-template-columns: 1fr;
  }

  .typical-container.is-top-border {
    border-top: 1px solid var(--white);
  }

  .heading-content-wrapper {
    padding: 0;
  }

  .grid-img-wrapper {
    width: 100%;
    max-height: none;
    padding-top: 2rem;
  }

  .hours-wrapper {
    width: 85%;
    margin-left: 15px;
  }

  .hours-block {
    width: 60%;
    padding: 12px;
  }

  .hours-block.white {
    width: 40%;
    padding: 12px;
  }

  .btn {
    margin-bottom: 30px;
    margin-left: 20px;
    margin-right: 20px;
    padding: 20px 15px;
    font-size: 15px;
    line-height: 1;
  }

  .site-footer {
    padding: 30px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr .5fr;
  }

  .footer-contact-wrapper, .footer-contact-wrapper.no-bottom-margin {
    padding: 10px;
  }

  .contact-txt {
    line-height: 1.4;
  }

  .footer-txt {
    font-size: 14px;
  }

  .footer-txt.calbie {
    margin-top: 40px;
  }

  .reviews-wrapper {
    flex-wrap: wrap;
  }

  .review-card {
    margin: 15px;
  }

  .text-block {
    font-size: 20px;
  }

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

@media screen and (max-width: 479px) {
  .h1 {
    text-align: center;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 9vw;
  }

  .h2 {
    text-align: center;
    font-size: 7vw;
  }

  .h2.white {
    margin-bottom: 10px;
    line-height: 1.3;
  }

  .h2.subheading {
    font-size: 4.5vw;
  }

  .h2.footer {
    text-align: center;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 8vw;
  }

  .h2.reviews {
    text-align: center;
    font-size: 8vw;
  }

  .h3 {
    font-size: 12vw;
  }

  .hero-section {
    height: 100vh;
  }

  .image {
    width: 80%;
    margin-top: 25%;
  }

  .nav-menu {
    flex-direction: column;
    flex: 0 auto;
    justify-content: space-around;
  }

  .start-button {
    width: 40%;
    max-width: 290px;
    height: 140px;
    margin-top: 20px;
    padding: 15px;
    font-size: 7vw;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: auto;
    right: 0%;
  }

  .hero-menu-text {
    color: var(--white);
    background-color: rgba(51, 51, 51, .5);
    font-size: 6vw;
    position: absolute;
    box-shadow: inset 0 -7px 11px -4px rgba(0, 0, 0, .5);
  }

  .hero-menu-text:hover {
    font-size: 6.5vw;
  }

  .menu-wrapper {
    width: 100%;
  }

  .menu-item-description {
    font-size: 8vw;
    line-height: 1.1;
  }

  .menu-item-description.caveat {
    font-size: 8vw;
  }

  .menu-item-description.cooldrinks {
    font-size: 7vw;
  }

  .item-ingredients-span {
    font-size: 4vw;
    line-height: 1.3;
  }

  .restaurant-menu-grid {
    justify-items: center;
  }

  .restaurant-menu-grid.cooldrinks {
    grid-template-rows: auto auto auto auto auto auto auto;
    grid-template-columns: 1fr .25fr;
    justify-items: center;
  }

  .menu-item-price {
    border-left: 1px solid var(--g-s-green);
    font-size: 8vw;
  }

  .menu-item-price.bottom-margin {
    font-size: 8vw;
  }

  .step-designation {
    margin-top: 40px;
    font-size: 40vw;
  }

  .contact-icon {
    font-size: 30vw;
  }

  .contact-icon.phone {
    font-size: 25vw;
  }

  .direct-contact-link-block {
    padding: 12px;
  }

  .direct-contact-wrapper {
    width: 100%;
    margin-top: 100px;
    margin-bottom: 0;
  }

  .direct-contact-wrapper.phone {
    flex-direction: row;
    margin-top: 0;
    margin-bottom: 140px;
  }

  .direct-contact-wrapper.right-aligned {
    margin-top: 80px;
  }

  .contact-number {
    font-size: 5vw;
  }

  .instructions-text.white.mobile-only {
    font-family: Caveat, sans-serif;
    line-height: 1.2;
  }

  .instructions-text-and-arrow-wrapper {
    width: 35%;
    bottom: 80px;
    left: 0;
  }

  .instructions-text-and-arrow-wrapper.phone {
    width: 35%;
    top: 80px;
  }

  .section-text.white.mobile-only {
    width: 100%;
    margin-bottom: 20px;
    font-size: 4vw;
  }

  .section-text.white.mobile-only.bottom-margin {
    margin-bottom: 40px;
  }

  .section-text.white.all-done.mobile-only {
    font-size: 40px;
  }

  .text-link.reverse {
    letter-spacing: normal;
  }

  .image-2 {
    width: 85%;
  }

  .calbie-text {
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 14px;
  }

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

  .footer-text.small {
    margin-bottom: 10px;
    font-size: 16px;
  }

  .phone-mockup-wrapper {
    width: 100%;
  }

  .lightbox-link {
    object-fit: cover;
    flex-direction: row;
    width: 40%;
    max-width: 290px;
    height: 140px;
    position: absolute;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: auto;
  }

  .image-4 {
    object-fit: cover;
    width: auto;
    max-width: none;
  }

  .homelink-block.w--current {
    width: 70vw;
  }

  .html-embed {
    flex-direction: column;
    display: flex;
  }

  .html-embed.relative {
    flex-direction: column;
    align-items: stretch;
    margin-top: 20px;
    margin-bottom: 30px;
    display: flex;
  }

  .typical-container {
    flex-direction: column;
    grid-template-columns: 1fr;
    display: flex;
  }

  .typical-container.reversed {
    flex-direction: column-reverse;
  }

  .heading-content-wrapper {
    align-items: center;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .grid-img-wrapper {
    width: 100%;
    height: 60vh;
  }

  .hours-wrapper {
    border-radius: 5px;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  .hours-block {
    align-items: flex-start;
    width: 100%;
  }

  .hours-block.white {
    width: 100%;
  }

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

  .btn {
    text-align: center;
    align-self: center;
    width: 90%;
    margin-top: 20px;
    padding: 30px;
    font-size: 16px;
  }

  .site-footer {
    padding-left: 14px;
    padding-right: 14px;
  }

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

  .footer-grid.feedback {
    border-top-left-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
  }

  .footer-info-wrapper.left, .footer-info-wrapper.right {
    align-items: center;
  }

  .footer-contact-wrapper {
    flex-direction: column;
  }

  .contact-icon {
    margin-bottom: 10px;
    margin-right: 0;
    font-size: 15vw;
  }

  .contact-txt {
    text-align: center;
    font-size: 14px;
  }

  .footer-txt {
    text-align: center;
    flex-direction: column;
    font-size: 4.5vw;
    line-height: 1.5;
    display: flex;
  }

  .footer-txt.calbie {
    font-size: 3.5vw;
    display: block;
  }

  .footer-inline-link {
    width: 150px;
    max-width: none;
    margin-top: 15px;
    margin-left: auto;
    margin-right: auto;
  }

  .review-card {
    width: 90%;
    padding: 40px 25px;
  }
}

#w-node-ac8ca372-bd13-a231-1b86-f9c00c141672-04e33274 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
  justify-self: stretch;
}

#w-node-e0f52008-4e52-248c-f6bc-ee457823fbfb-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_4d675e4e-f193-9c8a-443f-bfeba9f6ca41-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-ed0b789e-0c6e-3f6e-2040-fc10b184633c-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_9a710f2b-b051-0e3d-cbeb-d9658590deb2-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-ce58dbd8-4953-895d-3bde-21cf7a03014c-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-ffec5e8b-f756-4be4-24fc-9bdd9474f057-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_61198a68-b4ac-ab8d-29cc-3010b44e440c-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_22748f56-fa61-248f-59d7-7d2383a63118-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-c45cd27d-ffc2-7e95-ed5e-fbb80e6268ee-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-e91f0162-0969-6867-fddf-c92d9d4bf824-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-bed33d9b-751d-716e-2127-974212c5732e-04e33274 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  justify-self: stretch;
}

#w-node-_68a81f58-d90e-7ee4-9d9e-e680f353358b-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_0b31ed99-3510-e045-1c2a-cbe27d089d18-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-c01d23b9-4043-778f-93d4-1d49e52da2a7-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-dc3b63d3-0b89-840f-a8c0-421a78ee84d8-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_6e154481-fcfc-b47a-905f-8ba2b0f57811-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_730bbdb0-fb2e-1f32-0876-70fad5845a4e-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_4786d97a-ae58-a8b0-d2e7-2f8089f5a6a8-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_38810a34-6287-22ed-501f-23f20de8cfaa-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-b8eaaa79-41d4-c709-badc-7f9fcce5b64f-04e33274 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  justify-self: stretch;
}

#w-node-c36b528a-b9b4-ef53-40fb-c0ee67ba281d-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_05936807-f44d-aaa5-bd80-b58d68539bc8-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_31d3091e-7c6b-306b-a0d7-6a2f2b73b3f4-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-a0323299-9dfa-4f27-2cf1-55bc45fd963d-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_4880251e-9de6-528e-0d5d-b913fe833797-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_131f4dc3-6e0f-8a94-df44-3e712f1d1f9d-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_176a752f-34b9-6646-b04b-b7815e955710-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_473c563f-4ea8-be54-89aa-15524be51c9a-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_5435e23b-5bd1-5c12-3336-60d4002bf0df-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_6862f199-5485-1574-be26-bbed3eb371e7-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_68348f12-d94f-c300-d9cf-92aa6fba8187-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_44c77fff-ee94-20ac-ae6c-8454ef5feff1-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_117ff963-224f-3b85-5b4a-66b59146a960-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-a880c6a5-f5a9-b8b2-3743-922296f3a6d3-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-a4b1ea08-1bf6-a070-24e0-aeec88bada51-04e33274 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
  justify-self: stretch;
}

#w-node-a4b1ea08-1bf6-a070-24e0-aeec88bada53-04e33274 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: auto;
  justify-self: center;
}

#w-node-_06b060ed-c155-f132-89e7-6ed2e07c410e-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_78c5204c-d343-6ccf-e86e-34099f643672-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-a497263f-49bb-9865-2a2e-aea8df19f10c-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_4116277d-aa35-546a-ece8-26e276203766-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_7aa82fe7-8f51-28a7-a7ad-d970c60b9669-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-fc93ebcb-dd3d-85f9-d279-ba9907c2e31a-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_7cf2e0bf-9c07-e127-0344-6d84d637e56b-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_34a0dd72-645e-9571-90c4-2fdc6fcce611-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-a6dcd970-517c-4aa0-425e-ede9fe1eaec5-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-ae609bb0-36f5-f142-a633-79662be65d8f-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_20955db4-915a-30f8-31df-efd446e15ef6-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_30c42850-5c0e-61b7-ded1-177d7d3f891f-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-df5bc497-c16b-cb4e-e7a7-535e7394d964-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_4d7ca1b0-9153-76b4-315d-80154a94c68b-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_86381a3b-5fbf-07d9-666c-23cd6c7370cb-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-faffecdf-dce5-355c-f741-bc43745896e8-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-b0986df4-6a29-34c1-55b2-77997c758714-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_85d286f3-e721-9531-2ea5-191c4bd4724c-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_941afb00-1921-e722-3a45-9c5157f486f5-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-df2773df-1456-e69a-85e1-53afadde5a7a-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_3ce42bc5-d7f5-16a8-b3c5-492af65227bb-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_4141d8a8-c293-bce9-600c-04582783d36f-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_2b50d87e-b888-9520-ba44-6f8fd971d092-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_3f054dd0-523f-4b01-dd08-a5dd8f6c57a9-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_6b19be7c-20bf-0be2-c83d-4ef05e5a3e7c-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-ea313ec5-00bb-fadb-509a-532850b92be2-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_28ca74e7-fbbb-2ad2-8f9f-832b83794707-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-c2e7d9d1-7a11-ea22-fd52-a072969c65e5-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_6f1c823c-52fe-99d2-9ee7-1bf70e20d8d5-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_5392a7dc-87d8-989d-0e76-3ec3d5c8e3a4-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_98ab3e03-bc1e-bfee-beaa-4723b39837dc-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-a747c798-368c-2058-12c1-5a9b118723d0-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-e459d9cb-c03b-e2dc-b96d-aaae6b0d1e3d-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_4f52b0a8-dc92-92ab-9392-5af3e985adf2-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_2828d8c7-2588-5b68-62de-7c35478a1b95-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-d839258b-11a5-4171-5665-d2a8b9a24f59-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-bb6958be-4287-a841-50a0-31225fd3bf0a-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-e4f9fec4-ee5c-28d6-01a8-9116b863ab55-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_501933a7-5d3c-9da6-410a-989052d4de29-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_7b6982a4-534f-c42c-9011-fa3e2e95480c-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-c61ec74e-b435-937c-00b1-336c1b4de4d2-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_70725816-d707-cca0-12e2-b49a58c48835-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-ac940745-a8f2-64ad-b7ad-333d0e87ab62-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-a759fce7-c216-3b88-b8a6-7c64deb3295d-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_738c8598-482b-6c15-fa40-3c528a7f999f-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-ba30a660-29b8-827a-4c90-61e14e5f25e3-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_84b2ab7b-357a-bf06-23d3-82e4806240ca-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-b217593a-75f5-52ec-d712-e6006563d32f-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_05f6c006-c163-9a7c-3481-e9f54e1f9da6-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-e13ac24e-087e-754a-c5bb-d74bd2740cfc-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_2ff37063-fec5-8514-144d-a2be3b69488d-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_4d7349b3-701f-e0db-8d88-f645a35ddf02-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-fd4f321e-7d53-c0dc-fcde-f30f0bf7323f-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_38e11e4f-c49b-3a5c-9e33-781a8b998cff-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-ff3ad147-2cb8-f4a7-5b7b-f0b687ed0b76-04e33274 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: auto;
  justify-self: center;
}

#w-node-_79d201c7-2284-91b7-b242-9b787461f68d-04e33274 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
  justify-self: stretch;
}

#w-node-_79d201c7-2284-91b7-b242-9b787461f699-04e33274 {
  align-self: auto;
  justify-self: end;
}

#w-node-_79d201c7-2284-91b7-b242-9b787461f69f-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-b095a65b-4967-445b-c454-a502334fb796-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_79d201c7-2284-91b7-b242-9b787461f6aa-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_79d201c7-2284-91b7-b242-9b787461f6a3-04e33274 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: auto;
  justify-self: auto;
}

#w-node-_79d201c7-2284-91b7-b242-9b787461f6b4-04e33274 {
  align-self: auto;
  justify-self: auto;
}

#w-node-_0847d3b0-94fe-84b3-2df2-b735721f97b3-04e33274 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
  justify-self: stretch;
}

#w-node-_0847d3b0-94fe-84b3-2df2-b735721f97c3-04e33274 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
  justify-self: auto;
}

#w-node-_0847d3b0-94fe-84b3-2df2-b735721f97c6-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-f1fe37c5-572f-38ca-a2b7-431de5805cc9-04e33274 {
  grid-area: span 1 / span 2 / span 1 / span 2;
  align-self: auto;
  justify-self: auto;
}

#w-node-_1d484b4d-dd6c-4eab-feb7-77e6c0fa217a-04e33274 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
  justify-self: stretch;
}

#w-node-_1d484b4d-dd6c-4eab-feb7-77e6c0fa217c-04e33274 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
  justify-self: auto;
}

#w-node-_1d484b4d-dd6c-4eab-feb7-77e6c0fa217f-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_0b82a38d-a373-09ed-7e8d-2b53e067215a-04e33274 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
  justify-self: auto;
}

#w-node-_571dc3e9-1467-e144-4a35-c59320e80067-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_97df8c18-96d4-93e3-6ea6-216317bfe302-04e33274 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
  justify-self: auto;
}

#w-node-_42464749-9a58-c944-9beb-bb71be06a5ce-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_12fc285d-1db9-815c-8420-633497b9d2cb-04e33274 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
  justify-self: auto;
}

#w-node-_5369e36d-afb3-d0b4-3d33-2f573fb944ca-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_95cb5b02-edea-73ae-e7ee-bd7bfbfc13e9-04e33274 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
  justify-self: auto;
}

#w-node-cdf3e383-8b8b-3c51-e052-19025f6e6f24-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_1b217987-abd4-3198-c935-66ab53173bc0-04e33274 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
  justify-self: auto;
}

#w-node-_3d2bcaca-803d-8469-f04c-57e41c8e100c-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_88c14d29-dc3a-6603-6b3a-b282368114b7-04e33274 {
  grid-area: span 1 / span 4 / span 1 / span 4;
  align-self: center;
  justify-self: stretch;
}

#w-node-_88c14d29-dc3a-6603-6b3a-b282368114b9-04e33274 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
  justify-self: auto;
}

#w-node-_88c14d29-dc3a-6603-6b3a-b282368114bc-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_88c14d29-dc3a-6603-6b3a-b282368114c0-04e33274 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: auto;
  justify-self: auto;
}

#w-node-_88c14d29-dc3a-6603-6b3a-b282368114c3-04e33274 {
  align-self: auto;
  justify-self: start;
}

#w-node-_764b889e-5d60-5efa-3b1b-6fbc3c8672cc-3397ceac {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: center;
  justify-self: center;
}

#w-node-_3654d886-081d-159b-5094-dcb797146726-3397ceac, #w-node-dc061bac-b74f-3aee-9f8a-02dc3780a1e1-3397ceac, #w-node-d416b90c-a53a-2a61-f97f-a9c39f02f338-3397ceac {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_80b8b1fd-3a58-4199-cf7b-047cc000b1f4-3397ceac, #w-node-_666f2a71-5441-fee0-b025-9c5cfeb1cc89-3397ceac {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-a92add9b-efa6-82f5-01fa-c7331a1420cb-3397ceac, #w-node-b5069fdc-5e25-109e-88a1-6fbe1261a978-3397ceac {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9ce1954c-a835-7290-8aad-a284ee87df55-3397ceac, #w-node-ef77c782-d49e-d5ae-7bdb-4810a1d2f764-3397ceac, #w-node-b7245ea5-b68e-f504-d9b0-9f4f2233b392-3397ceac, #w-node-ca52f445-b7f3-3290-45fb-916db92c9ed6-3397ceac {
  grid-area: span 1 / span 2 / span 1 / span 2;
  justify-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-_38810a34-6287-22ed-501f-23f20de8cfaa-04e33274 {
    align-self: auto;
    justify-self: start;
  }

  #w-node-f1fe37c5-572f-38ca-a2b7-431de5805cc9-04e33274 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    align-self: auto;
    justify-self: auto;
  }
}

@media screen and (max-width: 767px) {
  #w-node-ac8ca372-bd13-a231-1b86-f9c00c141672-04e33274 {
    grid-column: span 2 / span 2;
    justify-self: center;
  }

  #w-node-e0f52008-4e52-248c-f6bc-ee457823fbfb-04e33274 {
    justify-self: auto;
  }

  #w-node-bed33d9b-751d-716e-2127-974212c5732e-04e33274 {
    grid-column: span 2 / span 2;
    justify-self: center;
  }

  #w-node-b8eaaa79-41d4-c709-badc-7f9fcce5b64f-04e33274 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-a4b1ea08-1bf6-a070-24e0-aeec88bada51-04e33274 {
    grid-column: span 2 / span 2;
    justify-self: center;
  }

  #w-node-a4b1ea08-1bf6-a070-24e0-aeec88bada53-04e33274, #w-node-ff3ad147-2cb8-f4a7-5b7b-f0b687ed0b76-04e33274 {
    grid-column: span 2 / span 2;
  }

  #w-node-_79d201c7-2284-91b7-b242-9b787461f68d-04e33274 {
    grid-column: span 2 / span 2;
    justify-self: center;
  }

  #w-node-_79d201c7-2284-91b7-b242-9b787461f699-04e33274 {
    justify-self: auto;
  }

  #w-node-_79d201c7-2284-91b7-b242-9b787461f6a3-04e33274 {
    grid-column: span 2 / span 2;
  }

  #w-node-_79d201c7-2284-91b7-b242-9b787461f6b4-04e33274 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: auto;
  }

  #w-node-_0847d3b0-94fe-84b3-2df2-b735721f97b3-04e33274, #w-node-_1d484b4d-dd6c-4eab-feb7-77e6c0fa217a-04e33274, #w-node-_88c14d29-dc3a-6603-6b3a-b282368114b7-04e33274 {
    grid-column: span 2 / span 2;
    justify-self: center;
  }
}

@media screen and (max-width: 479px) {
  #w-node-ef77c782-d49e-d5ae-7bdb-4810a1d2f764-3397ceac, #w-node-b7245ea5-b68e-f504-d9b0-9f4f2233b392-3397ceac, #w-node-ca52f445-b7f3-3290-45fb-916db92c9ed6-3397ceac {
    justify-self: center;
  }
}


@font-face {
  font-family: 'Didot Regular';
  src: url('../fonts/Didot-01.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Didot Italic';
  src: url('../fonts/Didot-Italic-02.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Didot Bold';
  src: url('../fonts/Didot-Bold-03.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Futura Bold';
  src: url('../fonts/Futura-Bold-03.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Futura Condensed Bold';
  src: url('../fonts/Futura-CondensedExtraBold-05.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Futura Condensed Medium';
  src: url('../fonts/Futura-CondensedMedium-04.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Futura Medium';
  src: url('../fonts/Futura-Medium-01.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Futura Medium Italic';
  src: url('../fonts/Futura-MediumItalic-02.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
  font-display: auto;
}
@font-face {
  font-family: 'Font awesome 5 free 400';
  src: url('../fonts/Font-Awesome-5-Free-Regular-400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Font awesome 5 brands 400';
  src: url('../fonts/Font-Awesome-5-Brands-Regular-400.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Font awesome 5 free solid 900';
  src: url('../fonts/Font-Awesome-5-Free-Solid-900.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}