:root {
  --black: black;
  --white: white;
  --chocolate: #b4622a;
  --dark-green: #2c582c;
  --paragraph: "Playfair Display", sans-serif;
}

.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-layout-layout {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
  grid-auto-columns: 1fr;
  justify-content: center;
  padding: 20px;
}

.w-layout-cell {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

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

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

.navbar-no-shadow-container {
  z-index: 5;
  background-color: #0000;
  width: 100%;
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding: 2rem 20px;
}

.container-regular {
  width: 100%;
  max-width: 1260px;
  min-height: 30px;
  margin-left: auto;
  margin-right: auto;
}

.navbar-wrapper {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.nav-menu {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0;
  padding-bottom: 0;
  padding-left: 0;
  display: flex;
}

.nav-link {
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 4px solid #0000;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-family: Playfair Display, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: all .2s;
}

.nav-link:hover {
  border-bottom-color: var(--chocolate);
  color: var(--white);
}

.nav-link:focus-visible, .nav-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 4px;
  outline: 2px solid #0050bd;
}

.nav-dropdown {
  margin-left: 5px;
  margin-right: 5px;
}

.nav-dropdown-toggle {
  letter-spacing: .25px;
  padding: 5px 30px 5px 10px;
  font-size: 14px;
  line-height: 20px;
}

.nav-dropdown-toggle:hover {
  color: #1a1b1fbf;
}

.nav-dropdown-toggle:focus-visible, .nav-dropdown-toggle[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-dropdown-icon {
  margin-right: 10px;
}

.nav-dropdown-list {
  background-color: #fff;
  border-radius: 12px;
}

.nav-dropdown-list.w--open {
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav-dropdown-link {
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 14px;
}

.nav-dropdown-link:focus-visible, .nav-dropdown-link[data-wf-focus-visible] {
  outline-offset: 0px;
  color: #0050bd;
  border-radius: 5px;
  outline: 2px solid #0050bd;
}

.nav-button-wrapper {
  margin-left: 120px;
}

.button-primary {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  transition: all .2s;
}

.button-primary:hover {
  color: #fff;
  background-color: #32343a;
}

.button-primary:active {
  background-color: #43464d;
}

.header-section {
  background-image: url('../images/Twin-Trees-Landing-Image.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 100vh;
  display: flex;
  position: relative;
}

.header-section.restaurant {
  background-image: url('../images/Twin-Trees-Quote-Image-2.jpg');
}

.header-section.wine-boutique {
  background-image: url('../images/Twin-Trees-Wine-Boutique-Landing-Image.jpg');
}

.header-section.events {
  background-image: url('../images/Twin-Trees-Events-Landing-Image.jpg');
}

.header-section.about {
  background-image: url('../images/Twin-Trees-About-Us-Landing.jpg');
}

.header-section.contact {
  background-image: url('../images/Twin-Trees-The-Table-is-set-4.jpg');
}

.overlay {
  z-index: 0;
  background-color: #0000;
  background-image: linear-gradient(#000, #fff0);
  height: 50%;
  position: absolute;
  inset: 0% 0% auto;
}

.image {
  width: 250px;
}

.social-link-holder {
  flex-direction: row;
  align-items: center;
  height: 100%;
  margin-left: 1rem;
  display: flex;
}

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

.social-icon {
  width: 25px;
  height: 25px;
  transition: all .4s;
}

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

.image-2 {
  width: 500px;
}

.cta-button {
  background-color: var(--black);
  color: var(--white);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 19px;
  font-family: Playfair Display, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  transition: all .4s;
  box-shadow: 0 2px 5px 4px #0003;
}

.cta-button:hover {
  background-color: var(--white);
  color: var(--black);
  transform: translate(0, -5px);
}

.cta-button.top-rem {
  margin-top: 2rem;
}

.div-block {
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 5rem;
  display: flex;
  position: relative;
}

.main-section {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.main-section.bg {
  background-image: url('../images/Twin-Trees-Background.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}

.main-container {
  z-index: 1;
  width: 100%;
  padding-top: 8rem;
  padding-bottom: 8rem;
  position: relative;
}

.grid {
  grid-column-gap: 50px;
  grid-template-rows: auto;
}

.quick-stack {
  padding: 0;
}

.grid-text-holder {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.h1-holder {
  margin-bottom: 2rem;
}

.branch {
  opacity: .7;
  width: 15%;
  position: absolute;
  inset: auto 0% 0% auto;
}

.branch._2 {
  inset: auto auto 0% 0%;
}

.branch._3 {
  inset: 0% 0% auto auto;
}

.branch._4 {
  inset: auto auto 0% 0%;
}

.branch._6 {
  inset: 0% auto auto 0%;
}

.h1-cursive {
  color: var(--dark-green);
  text-align: center;
  margin-top: 0;
  margin-bottom: .25rem;
  font-family: Square Peg, sans-serif;
  font-size: 4rem;
  font-weight: 400;
}

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

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

.h1 {
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  margin-top: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

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

.main-paragraph {
  color: var(--black);
  text-align: center;
  font-family: Playfair Display, sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
}

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

.main-paragraph.review {
  font-family: var(--paragraph);
  text-align: left;
}

.main-paragraph.top-rem {
  margin-top: 2rem;
}

.button {
  border-bottom: 4px solid var(--chocolate);
  color: var(--black);
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #0000;
  margin-top: 2rem;
  padding-left: 0;
  padding-right: 0;
  font-family: Playfair Display, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.2;
  transition: all .4s;
}

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

.button.top-margin {
  margin-top: 0;
}

.grid-2 {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 80%;
  margin-top: 8rem;
  margin-bottom: 8rem;
}

.quick-stack-2 {
  grid-column-gap: 0px;
  padding: 0;
}

.service-icon {
  width: auto;
  height: 50%;
}

.service-cel-1 {
  justify-content: center;
  align-items: center;
}

.service-cel-2 {
  justify-content: center;
}

.image-section {
  background-image: url('../images/Twin-Trees.webp');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  height: 80vh;
  display: flex;
}

.image-section._2 {
  background-image: url('../images/Twin-Trees-Quote-Image-2.jpg');
}

.image-section._3 {
  background-image: url('../images/Twin-Trees-Restaurant-Quote-2.jpg');
}

.image-section._4 {
  background-image: url('../images/Twin-Trees-Wine-Boutique-Quote.jpg');
}

.heading-container {
  background-color: #00000080;
  width: 100%;
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.heading-container.sub-pages {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 14rem;
  display: flex;
}

.review-slider {
  background-color: #ddd0;
  height: 200px;
}

.testimonial-holder {
  align-items: flex-start;
  height: 100%;
  display: flex;
}

.guest-name {
  font-family: var(--paragraph);
  color: var(--black);
  text-transform: uppercase;
  margin-top: 1rem;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
}

.image-3 {
  width: 10%;
  margin-right: 1rem;
}

.left-arrow {
  display: none;
}

.right-arrow {
  display: block;
}

.footer-dark {
  background-color: var(--black);
  border-bottom: 1px solid #e4ebf3;
  padding: 50px 30px 6rem;
  position: relative;
}

.container {
  width: 100%;
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
}

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

.footer-content {
  grid-column-gap: 70px;
  grid-row-gap: 40px;
  grid-template-rows: auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  display: grid;
}

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

.title-small {
  font-family: var(--paragraph);
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 700;
  line-height: 16px;
}

.footer-link {
  font-family: var(--paragraph);
  color: var(--white);
  margin-top: 12px;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 400;
  line-height: 16px;
  text-decoration: none;
}

.footer-link:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer-social-block {
  justify-content: flex-start;
  align-items: center;
  margin-top: 12px;
  margin-left: -12px;
  display: flex;
}

.footer-social-link {
  margin-left: 12px;
}

.footer-divider {
  background-color: #e4ebf3;
  width: 80%;
  height: 1px;
  margin: 70px auto 15px;
}

.footer-text {
  color: var(--white);
  text-align: center;
  margin-bottom: 1rem;
  font-size: 14px;
  line-height: 16px;
}

.image-4 {
  width: 200px;
}

.div-block-2 {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 2rem;
  display: flex;
}

.whatsapp-button {
  z-index: 99999;
  color: #000;
  background-color: #fff;
  border-radius: 5px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 2px 8px;
  text-decoration: none;
  display: flex;
  position: fixed;
  inset: auto 1% 2% auto;
  box-shadow: 0 0 5px #8787879e;
}

.whatsapp-button:hover {
  box-shadow: 0 0 10px #2f2f2f59;
}

.text-block-2 {
  background-color: #0000;
  border-radius: 0;
  margin-right: 5px;
  padding: 0;
  font-weight: 500;
}

.image-13 {
  width: 50px;
}

.section-images {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.icon {
  color: var(--black);
  margin-bottom: 0;
}

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

.events-stack {
  grid-column-gap: 37px;
}

.event-holder {
  justify-content: flex-end;
  align-items: stretch;
}

.h3 {
  font-family: var(--paragraph);
  color: var(--black);
  text-align: center;
  margin-top: 0;
  margin-bottom: .25rem;
  font-size: 1.5rem;
  font-weight: 400;
}

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

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

.event-advert {
  margin-top: 1rem;
}

.h2-cursive {
  color: var(--dark-green);
  text-align: center;
  margin-top: 0;
  margin-bottom: .25rem;
  font-family: Square Peg, sans-serif;
  font-size: 3rem;
  font-weight: 400;
}

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

.h2-cursive.white {
  color: var(--white);
}

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

.events-grid {
  grid-template-rows: auto auto auto auto;
}

.paragraph-link {
  color: var(--black);
  text-decoration: underline;
}

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

.contact-icon-div {
  align-items: center;
  display: flex;
}

.contact-link {
  color: var(--black);
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
}

.contact-link:hover {
  opacity: .5;
}

.contact-icon {
  width: 40px;
}

.contact-icon-grid {
  grid-column-gap: 0px;
  grid-template-rows: auto;
  width: 100%;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.form {
  width: 100%;
}

.textarea {
  min-height: 150px;
}

.button-holder {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.code-embed {
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  width: 90%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.facebook-feed-holder {
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.link {
  color: var(--black);
  font-weight: 700;
  text-decoration: underline;
}

@media screen and (max-width: 991px) {
  .nav-menu-wrapper {
    background-color: #0000;
  }

  .nav-menu {
    background-color: var(--black);
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    padding-top: 2rem;
    padding-bottom: 2rem;
    padding-left: 0;
    display: flex;
  }

  .nav-link {
    padding-left: 5px;
    padding-right: 5px;
    font-size: 1.2rem;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: absolute;
  }

  .nav-button-wrapper {
    width: 100%;
    margin-left: 0;
  }

  .menu-button {
    color: var(--white);
    padding: 12px;
  }

  .menu-button.w--open {
    background-color: var(--black);
    color: #fff;
  }

  .header-section {
    height: auto;
  }

  .header-section.restaurant, .header-section.wine-boutique, .header-section.events, .header-section.about, .header-section.contact {
    height: 500px;
  }

  .overlay {
    height: 90%;
  }

  .social-link-holder {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-left: 0;
    padding-top: 2rem;
  }

  .social-link {
    margin-bottom: 1rem;
    margin-right: 0;
  }

  .image-2 {
    width: 400px;
  }

  .div-block {
    margin-top: 0;
    margin-bottom: 4rem;
  }

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

  .branch {
    width: 25%;
  }

  .h1-cursive.white {
    font-size: 3rem;
  }

  .grid-2 {
    grid-row-gap: 0px;
    grid-template-columns: 1fr;
  }

  .image-section {
    height: 60vh;
  }

  .heading-container.sub-pages {
    margin-top: 6rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    position: relative;
  }

  .container {
    max-width: 728px;
  }

  .footer-content {
    grid-column-gap: 60px;
  }

  .whatsapp-button {
    display: flex;
  }

  .menu-list-item {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .navbar-brand {
    padding-left: 0;
  }

  .nav-menu {
    flex-direction: column;
    padding-bottom: 30px;
    padding-left: 0;
  }

  .nav-link {
    padding-top: 10px;
    padding-bottom: 10px;
    display: inline-block;
  }

  .nav-dropdown {
    flex-direction: column;
    align-items: center;
    display: flex;
  }

  .nav-dropdown-toggle {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-dropdown-list.shadow-three {
    box-shadow: 0 8px 50px #0000000d;
  }

  .nav-dropdown-list.shadow-three.w--open {
    position: relative;
  }

  .nav-dropdown-list.shadow-three.mobile-shadow-hide {
    box-shadow: none;
  }

  .mobile-margin-top-10 {
    margin-top: 10px;
  }

  .main-container {
    padding: 4rem 2rem;
  }

  .main-paragraph.left {
    text-align: center;
  }

  .grid-2 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    margin-top: 4rem;
    margin-bottom: 4rem;
  }

  .service-icon {
    width: 15%;
    height: auto;
  }

  .service-cel-2 {
    text-align: center;
    align-items: center;
  }

  .image-section {
    height: 40vh;
  }

  .review-slider {
    height: 350px;
  }

  .footer-dark {
    padding-left: 15px;
    padding-right: 15px;
  }

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

  .footer-content {
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

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

  .footer-link, .footer-link:hover, .footer-link.w--current:hover {
    color: var(--white);
  }

  .footer-social-block {
    margin-top: 20px;
    margin-left: 0;
  }

  .footer-social-link {
    margin-left: 20px;
  }

  .footer-divider {
    margin-top: 60px;
  }

  .whatsapp-button {
    display: flex;
  }

  .contact-icon-div {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .contact-link {
    font-size: 1.2rem;
  }

  .contact-icon {
    margin-bottom: 1rem;
  }

  .contact-icon-grid {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  .nav-menu {
    flex-direction: column;
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .nav-button-wrapper {
    width: auto;
  }

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

  .header-section {
    background-position: 40%;
    height: 100vh;
  }

  .header-section.restaurant {
    background-position: 50%;
    height: auto;
  }

  .header-section.wine-boutique, .header-section.events, .header-section.about, .header-section.contact {
    height: auto;
  }

  .overlay {
    height: 60%;
  }

  .image {
    width: 200px;
  }

  .social-link-holder {
    padding-top: .5rem;
  }

  .image-2 {
    width: 350px;
  }

  .div-block {
    margin-top: 10%;
  }

  .main-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .branch {
    width: 45%;
  }

  .h1-cursive {
    font-size: 3rem;
  }

  .h1-cursive.white {
    font-size: 3rem;
    line-height: .8;
  }

  .h1 {
    font-size: 1.8rem;
  }

  .grid-2 {
    grid-row-gap: 4.75rem;
  }

  .service-icon {
    width: 35%;
  }

  .service-icon._2 {
    width: 50%;
  }

  .heading-container {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .heading-container.sub-pages {
    margin-top: 0;
    margin-bottom: 4rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .review-slider {
    height: auto;
  }

  .container {
    max-width: none;
  }

  .footer-divider {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .div-block-2 {
    padding-top: 0;
  }

  .image-13 {
    width: 45px;
  }

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

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

  .events-grid-inside {
    grid-template-columns: 1fr 1fr;
  }

  .menu-list-item {
    padding-top: .5rem;
    padding-bottom: .5rem;
  }
}

#w-node-_4acd6b9f-3aa6-c84a-ff2e-98a06dca371c-234c19f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4b4c6099-348e-cb23-2bbd-f5d81ce9c7e2-234c19f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_4b4c6099-348e-cb23-2bbd-f5d81ce9c7e3-234c19f1, #w-node-_4b4c6099-348e-cb23-2bbd-f5d81ce9c7e4-234c19f1, #w-node-ce2add4a-ae05-3bb6-781d-2bf6f7ae5679-234c19f1, #w-node-bc39aa75-946d-bdc7-05c3-9badaa77b09c-234c19f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-e3826d4f-66c9-52b1-7e52-b7a12945b8dd-234c19f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
}

#w-node-e3826d4f-66c9-52b1-7e52-b7a12945b8de-234c19f1, #w-node-e3826d4f-66c9-52b1-7e52-b7a12945b8e0-234c19f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_91585efa-741b-af33-1b08-cdedb60ee835-234c19f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
}

#w-node-_91585efa-741b-af33-1b08-cdedb60ee836-234c19f1, #w-node-_91585efa-741b-af33-1b08-cdedb60ee838-234c19f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_295e5da3-aeb9-8262-760d-b8abc3b864d2-234c19f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  grid-template-rows: auto;
  grid-template-columns: 1fr 2fr;
}

#w-node-_295e5da3-aeb9-8262-760d-b8abc3b864d3-234c19f1, #w-node-_295e5da3-aeb9-8262-760d-b8abc3b864d5-234c19f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a1ad323b-2863-c3bc-cf9f-45cea6fe7dd1-234c19f1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-a1ad323b-2863-c3bc-cf9f-45cea6fe7dd2-234c19f1, #w-node-a1ad323b-2863-c3bc-cf9f-45cea6fe7dd4-234c19f1, #w-node-a1ad323b-2863-c3bc-cf9f-45cea6fe7dd6-234c19f1, #w-node-a1ad323b-2863-c3bc-cf9f-45cea6fe7dd8-234c19f1, #w-node-_17250fa5-43b0-85b0-3fb4-86fe7af9b1b7-234c19f1, #w-node-bb5f00bb-3acf-db72-87d0-089626230f27-26230f21, #w-node-bb5f00bb-3acf-db72-87d0-089626230f3b-26230f21, #w-node-_4acd6b9f-3aa6-c84a-ff2e-98a06dca371c-80a922cf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_276ffe1d-ea32-ce11-58a5-169f11146964-80a922cf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_276ffe1d-ea32-ce11-58a5-169f11146965-80a922cf, #w-node-_276ffe1d-ea32-ce11-58a5-169f11146967-80a922cf, #w-node-_276ffe1d-ea32-ce11-58a5-169f11146969-80a922cf, #w-node-_276ffe1d-ea32-ce11-58a5-169f1114696b-80a922cf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_17250fa5-43b0-85b0-3fb4-86fe7af9b1c4-80a922cf {
  grid-area: span 1 / span 1 / span 1 / span 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_17250fa5-43b0-85b0-3fb4-86fe7af9b1c5-80a922cf, #w-node-_17250fa5-43b0-85b0-3fb4-86fe7af9b1c6-80a922cf, #w-node-_17250fa5-43b0-85b0-3fb4-86fe7af9b1c7-80a922cf, #w-node-_17250fa5-43b0-85b0-3fb4-86fe7af9b1c8-80a922cf, #w-node-_17250fa5-43b0-85b0-3fb4-86fe7af9b1b7-80a922cf, #w-node-_4acd6b9f-3aa6-c84a-ff2e-98a06dca371c-b06197ad, #w-node-bc875f64-dbb5-dac1-328d-82d94947eb00-b06197ad, #w-node-_473f978c-047c-29e6-0068-774b9aca7504-b06197ad, #w-node-_90823690-e1a3-a10f-1361-61498deaa8bc-b06197ad, #w-node-aef874a3-90e6-222c-a45d-5fb288227fb8-b06197ad, #w-node-_7b4e9dfe-baf5-1c63-b142-59e00a1b75ff-b06197ad, #w-node-_6f59b8a7-5bb3-ddac-f64e-45c429fca6ee-b06197ad, #w-node-d787678b-4b73-bb67-0564-57ff8bffbbc0-b06197ad, #w-node-a9f39485-ebed-5387-dc9f-060b5b2f0197-b06197ad, #w-node-c41e4ec3-efe9-7c79-ac22-2eda4a23af02-b06197ad, #w-node-_1fadcd58-4fb0-ed84-77dd-e34c1338fffd-b06197ad, #w-node-_36b4dbf9-7b1b-7041-63bf-6b3054b4eec1-b06197ad, #w-node-_697c03cb-54d4-94b9-344d-c1f2bfbf882f-b06197ad, #w-node-cfde3e78-5c99-5dc2-c6cd-df2f2db40139-b06197ad, #w-node-_738c78ae-783c-67ec-f2ca-b635553255fa-b06197ad, #w-node-edee1b4d-a8ef-941f-d607-2c5e22492a83-b06197ad, #w-node-_175461cf-4ebe-912c-6946-b65ee51648e7-b06197ad, #w-node-e7be8fec-e20e-a768-d625-4e5e319038bd-b06197ad {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_01d7750b-5c38-db73-65b1-98e5f2f7c2b7-385763e7, #w-node-_37f6d7f0-d58d-0dc2-2e87-b9860d91b2f3-385763e7, #w-node-_4b11c863-d82d-6959-117e-386d1c0ffca3-385763e7, #w-node-_04336d3c-d3f2-8a11-5b35-dcd2d5b8fb8f-385763e7, #w-node-dfa728f0-dafa-ea38-06d5-dfbb702078b6-385763e7, #w-node-_2781f07f-e61e-18b1-1fa2-b15a85fce440-385763e7, #w-node-a23f8c19-9437-c5f7-18d7-4d6793a9dc77-385763e7, #w-node-a23f8c19-9437-c5f7-18d7-4d6793a9dc78-385763e7, #w-node-a23f8c19-9437-c5f7-18d7-4d6793a9dc79-385763e7, #w-node-a23f8c19-9437-c5f7-18d7-4d6793a9dc7a-385763e7, #w-node-a23f8c19-9437-c5f7-18d7-4d6793a9dc7b-385763e7, #w-node-_7fc0463f-1860-9db5-2e5f-fc57367c6fa8-385763e7 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_4acd6b9f-3aa6-c84a-ff2e-98a06dca371c-27dee3d9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4b4c6099-348e-cb23-2bbd-f5d81ce9c7e2-27dee3d9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_4b4c6099-348e-cb23-2bbd-f5d81ce9c7e3-27dee3d9, #w-node-_4b4c6099-348e-cb23-2bbd-f5d81ce9c7e4-27dee3d9, #w-node-ce2add4a-ae05-3bb6-781d-2bf6f7ae5679-27dee3d9, #w-node-bc39aa75-946d-bdc7-05c3-9badaa77b09c-27dee3d9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_2394ba6e-2401-60f0-bdb0-4a49d87dd541-27dee3d9 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
}

#w-node-_2394ba6e-2401-60f0-bdb0-4a49d87dd542-27dee3d9, #w-node-_2394ba6e-2401-60f0-bdb0-4a49d87dd544-27dee3d9, #w-node-_2394ba6e-2401-60f0-bdb0-4a49d87dd546-27dee3d9, #w-node-_2394ba6e-2401-60f0-bdb0-4a49d87dd548-27dee3d9, #w-node-_2394ba6e-2401-60f0-bdb0-4a49d87dd534-27dee3d9, #w-node-_4acd6b9f-3aa6-c84a-ff2e-98a06dca371c-a750f1f8, #w-node-_6639bcb8-050c-2abc-ddd7-a3c3e4572a1a-a750f1f8, #w-node-_02c52dc5-27c7-c666-8912-0327775c7e07-a750f1f8 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-e3826d4f-66c9-52b1-7e52-b7a12945b8dd-234c19f1, #w-node-_91585efa-741b-af33-1b08-cdedb60ee835-234c19f1, #w-node-_295e5da3-aeb9-8262-760d-b8abc3b864d2-234c19f1 {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }
}


