:root {
  --cream: #f5f2e9;
  --brand-black: #1a1a1a;
  --brand-white: #f8f8f8;
  --auburn: #551a13;
  --text: #333;
}

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

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

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

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

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

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

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

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

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

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

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

body {
  background-color: var(--cream);
  color: #333;
  font-family: Work Sans, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

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

p {
  margin-bottom: 1rem;
  line-height: 1.5;
}

a {
  text-decoration: underline;
}

li {
  line-height: 1.5;
}

.logo {
  width: auto;
  height: auto;
  max-height: 45px;
}

.navbar {
  z-index: 10;
  background-color: var(--brand-black);
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.container {
  height: 5rem;
  max-width: 1440px;
  justify-content: space-between;
  align-items: center;
  padding-left: 10rem;
  padding-right: 4rem;
  display: flex;
}

.brand {
  order: -1;
}

.nav-menu {
  order: 1;
}

.nav-link {
  color: #fff;
  letter-spacing: .5px;
  margin-left: 12px;
  margin-right: 12px;
  padding: 12px 24px;
  font-family: Comfortaa, sans-serif;
  text-decoration: none;
  transition: opacity .1s;
}

.nav-link:hover {
  opacity: .7;
}

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

.nav-link.cta {
  color: #333;
  background-color: #fff;
  border-radius: 5px;
  margin-left: 24px;
  margin-right: 0;
}

.nav-link.cta:hover {
  opacity: .85;
}

.hero-section {
  height: 100svh;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, .45), rgba(0, 0, 0, .45)), url('../images/pizza.webp');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 6rem;
  display: flex;
}

.button {
  background-color: var(--brand-white);
  color: #333;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 5px;
  margin-top: 2rem;
  padding: 22px 60px;
  font-family: Comfortaa, sans-serif;
  font-size: 15px;
  font-weight: 700;
  transition: background-color .1s;
}

.button:hover {
  background-color: #e6e6e6;
}

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

.button.dark:hover {
  opacity: .9;
}

.benefit-image {
  width: 30%;
  max-width: 340px;
  aspect-ratio: 84 / 100;
  object-fit: cover;
  margin-left: 30px;
  margin-right: 30px;
}

.benefits-section {
  justify-content: center;
  padding: 8rem 1rem 6rem;
  display: flex;
}

.testimonial {
  max-width: 400px;
  text-align: center;
}

.testimonial-holder {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  justify-content: center;
  display: flex;
}

.secondary-heading {
  margin-bottom: 2rem;
  font-family: Comfortaa, sans-serif;
  line-height: 1.2;
}

.testimonial-container {
  max-width: 1440px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--brand-white);
  border-radius: 20px;
  flex-direction: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: flex-start;
  padding: 4rem 4rem 5rem 10rem;
  display: flex;
}

.section {
  margin-bottom: 6rem;
  margin-left: 1rem;
  margin-right: 1rem;
}

.section.offset {
  margin-top: 5rem;
}

.info-block {
  grid-column-gap: 20px;
  grid-row-gap: 8px;
  grid-template-rows: auto auto auto auto auto auto;
  grid-template-columns: min-content max-content;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  display: grid;
}

.info-name {
  font-weight: 600;
}

.section-container {
  max-width: 1440px;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-color: var(--brand-white);
  border-radius: 20px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: stretch;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  padding: 5rem 4rem 5rem 10rem;
  display: grid;
}

.margin {
  margin-top: 12px;
}

.info-link {
  color: #333;
  text-decoration: none;
}

.info-link:hover {
  text-decoration: underline;
}

.info-container {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.map {
  border-radius: 10px;
  order: 1;
}

.social-icon {
  height: auto;
  max-width: 20px;
  transition: opacity .1s;
}

.social-icon:hover {
  opacity: .6;
}

.social-link {
  margin-right: 1.2rem;
}

.delivery-icon {
  height: auto;
  max-width: 60px;
  border-radius: 22.5%;
}

.delivery-link {
  margin-right: 2rem;
  transition: opacity .1s;
}

.delivery-link:hover {
  opacity: .9;
}

.text-block {
  max-width: 350px;
  margin-bottom: 2rem;
  line-height: 150%;
}

.about-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  background-image: url('../images/Ellipse-1.webp');
  background-position: 50% 0;
  background-size: cover;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: center;
  padding: 12rem 2rem 6rem;
  display: grid;
}

.footer {
  background-color: var(--auburn);
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 3rem 2rem;
}

.copyright {
  font-size: 14px;
}

.footer-container {
  max-width: 1000px;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.footer-info-item {
  text-align: center;
  line-height: 2;
}

.footer-info-item-div {
  text-align: center;
  flex-direction: column;
  align-items: center;
  line-height: 2;
  display: flex;
}

.footer-link {
  color: #fff;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

.section-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  border-radius: 10px;
}

.legal-links-container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  margin-top: 4rem;
  display: flex;
}

.legal-link {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 12px;
  text-decoration: none;
}

.legal-link:hover {
  text-decoration: underline;
}

.text-cta {
  border-bottom: 1px solid var(--text);
  color: #333;
  margin-right: 1rem;
  text-decoration: none;
}

.text-cta:hover {
  border-bottom-style: solid;
  border-bottom-color: rgba(0, 0, 0, 0);
}

.about-image {
  width: auto;
  height: auto;
  max-height: 500px;
}

.about-text {
  max-width: 400px;
  margin-left: 6rem;
}

.paragraph {
  margin-bottom: 20px;
}

.main-heading {
  color: #fff;
  text-align: center;
  margin-top: 0;
  font-family: Comfortaa, sans-serif;
  line-height: 1.2;
}

.main-heading.dark {
  color: var(--text);
}

.author {
  font-size: 14px;
  font-style: italic;
}

.footer-heading {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: Comfortaa, sans-serif;
  font-size: 12px;
  font-weight: 700;
}

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

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

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

.legal-container {
  max-width: 70ch;
}

.stipulation {
  margin-top: 3rem;
  margin-bottom: 10px;
  font-family: Comfortaa, sans-serif;
  font-size: 24px;
  line-height: 1.3;
}

.update-info {
  text-transform: none;
  margin-top: 3rem;
}

.policy-link {
  color: #333;
  text-decoration: underline;
}

.policy-link:hover {
  text-decoration: none;
}

.disclaimer {
  text-transform: uppercase;
}

.no-link {
  pointer-events: none;
  color: #333;
  text-decoration: none;
}

.testimonial-text {
  margin-bottom: 1rem;
  line-height: 1.5;
}

.policy-contact {
  margin-bottom: 5px;
}

.secondary-heading-legal {
  text-align: center;
  margin-bottom: 3rem;
  font-family: Comfortaa, sans-serif;
  font-size: 36px;
  line-height: 1.3;
}

.main-heading-legal {
  color: var(--text);
  text-align: center;
  margin-top: 8rem;
  margin-bottom: 6rem;
  font-family: Comfortaa, sans-serif;
  line-height: 1.3;
}

.list {
  margin-bottom: 1rem;
  padding-left: 25px;
}

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

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

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

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

.fs-cc-manager_component {
  z-index: 999;
  display: none;
  position: fixed;
  top: auto;
  bottom: 1.25rem;
  left: 1.25rem;
  right: auto;
}

.fs-cc-prefs_checkbox {
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  border-radius: 999px;
  margin-top: 0;
  margin-left: 0;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.fs-cc-prefs_close {
  z-index: 1;
  color: #333;
  cursor: pointer;
  background-color: #ddd;
  border-radius: 100%;
  padding: .625rem;
  font-size: 1.25rem;
  text-decoration: none;
  position: absolute;
  top: 1rem;
  bottom: auto;
  left: auto;
  right: 1rem;
  box-shadow: -1px 1px 12px rgba(51, 51, 51, .1);
}

.fs-cc-prefs_option {
  border-bottom: 1px solid rgba(51, 51, 51, .15);
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.fs-cc-prefs_option.fs-cc-no_border {
  border-bottom-style: none;
}

.fs-cc-prefs_space-small {
  margin-top: 1rem;
  margin-bottom: 2rem;
}

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

.fs-cc-prefs_title {
  color: #222;
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2em;
}

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

.fs-cc-prefs_text {
  color: #222;
  font-size: 14px;
}

.fs-cc-prefs_text.fs-cc-essential_label {
  letter-spacing: .5px;
  font-size: 12px;
}

.fs-cc-prefs_buttons-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  justify-content: center;
  margin-top: 2rem;
  display: flex;
}

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

.fs-cc-prefs_content {
  height: 100%;
  color: #333;
  padding: 2.5rem;
  overflow: auto;
}

.fs-cc-banner_text-link {
  color: #222;
  font-weight: 400;
  text-decoration: underline;
}

.fs-cc-banner_text-link:hover {
  text-decoration: none;
}

.fs-cc-prefs_form {
  width: 100%;
  max-width: 40rem;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}

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

.fs-cc-prefs_overlay {
  z-index: -1;
  background-color: rgba(0, 0, 0, .5);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.fs-cc-banner_text {
  margin-right: 1.5rem;
  line-height: 1.5;
}

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

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

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

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

.fs-cc-prefs_label {
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 2rem;
  font-size: 16px;
  font-weight: 600;
}

.fs-cc-prefs_button {
  min-width: 9rem;
  color: #fff;
  text-align: center;
  background-color: #151414;
  border: 1px solid #151414;
  border-radius: 6px;
  flex: 1;
  padding: .625rem 1.25rem;
  font-size: 15px;
}

.fs-cc-prefs_button.fs-cc-button-alt {
  color: #222;
  background-color: #f9f9f9;
  border-color: #eee;
}

.fs-cc-banner_button {
  min-width: 8.75rem;
  color: #fff;
  text-align: center;
  background-color: #151414;
  border: 1px solid #151414;
  border-radius: 6px;
  padding: .625rem 1.25rem;
  font-size: 15px;
}

.fs-cc-banner_button.fs-cc-button-alt {
  color: #222;
  background-color: #f9f9f9;
  border-color: #eee;
}

.fs-cc-banner_component {
  z-index: 998;
  width: 100vw;
  color: #222;
  background-color: #fff;
  padding: 1.5rem 2rem;
  font-size: 14px;
  display: block;
  position: fixed;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, .2);
}

.fs-cc-banner_component.fs-cc-middle_banner {
  width: 100%;
  max-width: 50rem;
  border-radius: 6px;
  margin-left: auto;
  margin-right: auto;
  display: none;
  top: auto;
  bottom: 1rem;
  left: 0%;
  right: 0%;
}

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

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

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

.fs-cc-prefs_toggle_off {
  width: 1rem;
  height: 1rem;
  color: #fff;
  display: none;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: auto;
  right: 5px;
  transform: translate(0, -50%);
}

.fs-cc-prefs_toggle_on {
  width: 1rem;
  height: 1rem;
  color: #fff;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 4px;
  right: auto;
  transform: translate(0, -50%);
}

@media screen and (max-width: 991px) {
  .logo {
    max-height: 40px;
  }

  .container {
    height: 5rem;
    padding-left: 3rem;
    padding-right: 3rem;
  }

  .nav-link {
    margin-left: 0;
    margin-right: 0;
  }

  .hero-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .benefit-image {
    margin-left: 18px;
    margin-right: 18px;
  }

  .testimonial-holder {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .testimonial-container, .section-container {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .about-text {
    margin-left: 2rem;
  }

  .main-heading {
    font-size: 42px;
  }

  .menu-button {
    color: var(--brand-white);
    order: 1;
  }

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

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

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

  .fs-cc-banner_button {
    width: 100%;
  }

  .fs-cc-banner_component.fs-cc-middle_banner {
    max-width: 30rem;
  }
}

@media screen and (max-width: 767px) {
  .logo {
    max-height: 35px;
  }

  .container {
    height: 5rem;
    padding-right: 1rem;
  }

  .nav-menu {
    background-color: var(--brand-black);
    padding-top: 10px;
    padding-bottom: 20px;
  }

  .nav-link {
    text-align: center;
    padding-top: 16px;
    padding-bottom: 16px;
  }

  .nav-link.cta {
    background-color: var(--brand-black);
    color: #fff;
    margin-left: 0;
  }

  .button {
    padding: 18px 40px;
    font-size: 14px;
  }

  .testimonial-holder {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    flex-direction: column;
  }

  .testimonial-container {
    padding-top: 2rem;
  }

  .section-container {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .icons-container.cta {
    text-align: center;
  }

  .about-container {
    grid-column-gap: 4rem;
    grid-row-gap: 4rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    padding: 4rem 2rem;
  }

  .copyright {
    order: 1;
  }

  .legal-links-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: center;
    flex-direction: column;
  }

  .legal-link, .about-text {
    margin-left: 0;
  }

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

  .menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
    border-radius: 10px;
  }

  .utility-page-wrap {
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

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

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

  .fs-cc-prefs_buttons-wrapper {
    flex-direction: column;
  }

  .fs-cc-banner_button {
    min-width: 8rem;
  }
}

@media screen and (max-width: 479px) {
  .logo {
    max-height: 30px;
  }

  .container {
    height: 4rem;
    padding-left: 1.5rem;
  }

  .hero-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .button {
    margin-top: 2rem;
  }

  .benefit-image {
    z-index: 3;
    width: 80%;
    position: relative;
  }

  .benefit-image.two {
    z-index: 2;
    margin-top: -131px;
    margin-left: -46px;
  }

  .benefit-image.three {
    z-index: 1;
    margin-top: -101px;
    margin-right: -51px;
  }

  .benefits-section {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    flex-direction: column;
    align-items: center;
    padding-top: 3rem;
    padding-bottom: 4rem;
  }

  .testimonial {
    margin-bottom: 1rem;
  }

  .secondary-heading {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 26px;
    line-height: 1.3;
  }

  .testimonial-container {
    text-align: center;
    align-items: center;
    padding: 1rem 1.5rem 2rem;
  }

  .section {
    margin-bottom: 4rem;
    margin-left: 10px;
    margin-right: 10px;
  }

  .section.offset {
    margin-top: 4rem;
  }

  .section.legal {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .info-block {
    grid-column-gap: 20px;
    grid-row-gap: 10px;
    grid-template-columns: min-content 1fr;
  }

  .section-container {
    padding: 1rem 1.5rem 2rem;
  }

  .footer-link {
    margin-bottom: 4px;
  }

  .section-image {
    min-height: 210px;
  }

  .legal-links-container {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    text-align: center;
    flex-direction: column;
    margin-top: 4rem;
  }

  .legal-link {
    margin-left: 0;
  }

  .main-heading {
    font-size: 34px;
    line-height: 1.3;
  }

  .stipulation {
    font-size: 22px;
  }

  .secondary-heading-legal {
    font-size: 30px;
  }

  .main-heading-legal {
    font-size: 40px;
  }

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

  .fs-cc-manager_component {
    bottom: 1rem;
    left: 1rem;
  }

  .fs-cc-prefs_text.fs-cc-essential_label {
    white-space: nowrap;
  }

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

  .fs-cc-prefs_form {
    border-radius: 18px 18px 0 0;
    margin-top: 4rem;
    display: block;
  }

  .fs-cc-prefs_component {
    justify-content: flex-end;
    padding: 0;
  }

  .fs-cc-banner_button {
    width: 100%;
  }

  .fs-cc-banner_component {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .fs-cc-banner_component.fs-cc-middle_banner {
    width: auto;
    border-radius: 12px 12px 0 0;
    padding-top: 2rem;
    bottom: 0%;
  }
}

#w-node-_4278a52f-34cf-9191-59c4-cfd4e1d429c7-6d7ef136, #w-node-_9bf3ff17-fbec-4f10-2900-45c087f4364c-6d7ef136, #w-node-aba81d76-b0c8-248f-8230-8bf2b25f048b-6d7ef136, #w-node-_8641cf09-e905-ed6c-1251-d5538889d66a-6d7ef136, #w-node-d831ba40-2742-d1f2-011e-4b1dbf5eee99-6d7ef136 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a61d92b0-203f-666f-d453-278f5558ce55-6d7ef136 {
  justify-self: end;
}

#w-node-_16c775ee-39eb-6380-2f7c-0281dd4b4bbc-1ad36e5a {
  justify-self: start;
}

@media screen and (max-width: 767px) {
  #w-node-a61d92b0-203f-666f-d453-278f5558ce55-6d7ef136 {
    grid-row: 2 / 3;
  }

  #w-node-_16c775ee-39eb-6380-2f7c-0281dd4b4bbc-1ad36e5a {
    justify-self: center;
  }
}


@font-face {
  font-family: 'Work Sans';
  src: url('../fonts/WorkSans-VariableFont_wght.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Comfortaa';
  src: url('../fonts/Comfortaa-VariableFont_wght.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}