:root {
  --black: #231f20;
  --white: #fff;
  --beige: #fff8f3;
  --red: #a7353a;
}

.w-layout-hflex {
  flex-direction: row;
  align-items: flex-start;
  display: flex;
}

.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: var(--black);
  letter-spacing: .05rem;
  font-family: Oswald, sans-serif;
  font-size: 14px;
  line-height: 20px;
}

h1 {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: nexa-rust-slab-black-2, sans-serif;
  font-size: 56px;
  line-height: 1.5;
}

h2 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: nexa-rust-sans-black-2, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.25;
}

h3 {
  margin-top: 0;
  margin-bottom: .5rem;
  font-family: nexa-rust-sans-black-2, sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

p {
  max-width: 900px;
  margin-bottom: 2rem;
  font-size: 20px;
  line-height: 1.5;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 2rem;
  font-size: 18px;
  line-height: 2;
  list-style-type: square;
}

blockquote {
  border-left: 4px solid var(--black);
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 1.5em;
}

.section {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  padding: 4rem;
  display: flex;
  position: relative;
}

.section.hero {
  color: var(--white);
  min-height: 512px;
}

.section.off-white {
  background-color: var(--beige);
}

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

.section.cta {
  color: var(--white);
}

.content_wrapper {
  z-index: 3;
  width: 100%;
  position: relative;
}

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

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

.button {
  border: 2px solid var(--white);
  background-color: var(--red);
  background-image: linear-gradient(45deg, #231f208c, var(--red));
  text-transform: uppercase;
  border-radius: 1rem;
  padding: 1rem;
  font-family: nexa-rust-sans-black-2, sans-serif;
  font-size: 18px;
  font-weight: 800;
  transition: all .4s;
  box-shadow: 0 0 7px 2px #0003;
}

.button:hover {
  box-shadow: none;
  transform: translate(0, -.25rem);
}

.red {
  color: var(--red);
}

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

.logo.interior-navbar-4 {
  filter: invert();
}

.navbar {
  z-index: 1;
  background-color: #fff;
  padding: .25rem 1rem;
  box-shadow: 0 2px 5px #0003;
}

.navbar.interior-navbar {
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  background-color: #fff;
  position: sticky;
  box-shadow: 0 2px 8px -4px #0003;
}

.nav-menu {
  background-color: var(--white);
  border-radius: 1rem;
  padding: .5rem;
  box-shadow: 0 0 5px -2px #231f20b3;
}

.navlink {
  color: var(--black);
  text-align: center;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-size: 1rem;
  font-weight: 400;
  transition: all .4s;
}

.navlink:hover, .navlink.w--current {
  color: var(--red);
}

.navlink.interior-navbar-9 {
  color: #1c1c1c;
}

.navlink.cta {
  color: #fff;
  background-color: #862022;
  border-radius: 1rem;
  font-family: nexa-rust-sans-black-2, sans-serif;
}

.navlink.cta:hover {
  opacity: 1;
  color: #fff;
}

.navlink.cta.interior-navbar-10 {
  color: #1c1c1c;
}

.nav_flex {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.brand {
  width: 150px;
  padding-left: 0;
  transition: opacity .35s;
}

.contact-flex {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.contact-flex-link {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  color: #fff;
  border-radius: .5rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: flex-start;
  align-items: center;
  width: 3rem;
  height: 3rem;
  padding: .5rem;
  font-size: 1.25rem;
  font-weight: 500;
  text-decoration: none;
  transition: all .4s;
  display: flex;
  box-shadow: 0 0 7px 2px #231f2040;
}

.contact-flex-link:hover {
  filter: invert();
  box-shadow: 0 0 7px -10px #231f2040;
}

.top-banner {
  z-index: 0;
  background-color: var(--red);
  background-image: linear-gradient(135deg, #231f206b, #fff0);
  padding: .75rem 1rem;
  position: relative;
}

.nav_wrapper {
  z-index: 10;
  position: sticky;
  top: 0;
}

.fixed-contact {
  z-index: 10;
  display: none;
  position: fixed;
  inset: auto 0% 0%;
}

.header-shrink {
  font-size: 28px;
}

.hero-h1 {
  font-size: 62px;
  line-height: 1.125;
}

.bkg_wrapper {
  z-index: 0;
  position: absolute;
  inset: 0%;
}

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

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

.text-span {
  color: var(--red);
}

.stained-txtspan {
  background-color: var(--white);
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(270deg, #bf3d42, #fff 80%);
  -webkit-background-clip: text;
  background-clip: text;
}

.flex {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  text-align: left;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.col {
  flex: 1;
}

.col.img-col {
  border-radius: 1rem;
  align-self: stretch;
  overflow: hidden;
}

.col.extendo {
  min-width: 65%;
}

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

.button-2 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-shadow: none;
  background-color: #218190;
  justify-content: center;
  align-items: center;
  padding: 1.25rem;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  transition: all .4s;
}

.button-2:hover {
  background-color: #51c6da;
  transform: scale(1.0125);
}

.heading {
  color: var(--red);
  margin-bottom: 1rem;
}

.bttm-marg-0 {
  margin-bottom: 0;
}

.red-rust {
  color: var(--red);
  font-family: nexa-rust-slab-black-2, sans-serif;
  font-size: 17px;
}

.service-card {
  background-color: var(--white);
  border-radius: 1rem;
  flex: 1;
  min-width: 25%;
  padding: 1rem;
}

.img_wrapper {
  border-radius: 1rem;
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

._100-100 {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.service-description {
  margin-bottom: 0;
  font-size: 18px;
}

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

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

.beneflex-cards {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  border: 2px solid var(--black);
  border-radius: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  width: 30%;
  padding: 1rem;
  transition: all .3s;
  display: flex;
}

.benflex-icon {
  object-fit: contain;
  width: 3rem;
}

.beneflex-conent {
  flex: 1;
  font-size: 1rem;
}

.beneflex-header {
  letter-spacing: 0;
  margin-bottom: .5rem;
  font-family: Lato, sans-serif;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.beneflex-description {
  letter-spacing: 0;
  max-width: 72ch;
  font-family: Lato, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25rem;
}

.card-flex {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.lightbox {
  width: 100%;
  height: 300px;
}

.list {
  column-count: 2;
}

.slider-2 {
  background-color: #fff0;
  height: auto;
}

.testimonial_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.testimonial {
  padding: 0 0 0 1rem;
  font-size: 1.25rem;
}

.hide {
  display: none;
}

.author {
  font-family: nexa-rust-sans-black-2, sans-serif;
  font-size: 18px;
}

.right-arrow {
  color: var(--red);
  width: 3rem;
  height: 3rem;
  font-size: 24px;
  inset: auto 0% 0% auto;
}

.faq-question-bar {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--red);
  color: #fff;
  text-align: left;
  cursor: pointer;
  border-radius: .5rem;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  padding: 1rem;
  font-size: 1.25rem;
  text-decoration: none;
  display: flex;
}

.faq-question-bar:active {
  background-image: none;
}

.faq-question {
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}

.plus-icon-2 {
  object-fit: contain;
  width: 2rem;
  height: 2rem;
}

.faq_content {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-flow: row;
  display: flex;
  overflow: hidden;
}

.faq-line {
  background-color: #fff;
  border-radius: .125rem;
  width: .25rem;
  margin-top: .75rem;
  margin-bottom: .75rem;
  margin-left: .75rem;
}

.faq_answer {
  text-align: left;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 1rem;
}

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

.footer-title {
  color: var(--red);
  text-transform: uppercase;
  font-family: nexa-rust-sans-black-2, sans-serif;
  font-size: 24px;
  font-weight: 800;
}

.logo-img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.footer-nav-link {
  color: #060709;
  text-transform: uppercase;
  padding-top: .5rem;
  padding-bottom: .5rem;
  font-size: 18px;
  text-decoration: none;
  transition: all .25s;
}

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

.footer-col {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  flex-flow: column;
  flex: 1;
  justify-content: flex-start;
  align-self: stretch;
  align-items: flex-start;
  display: flex;
}

.footer-brand {
  width: 200px;
}

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

.social-link {
  background-color: var(--black);
  border-radius: 50px;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  padding: .5rem;
  transition: all .4s;
  display: flex;
}

.social-link:hover {
  background-color: var(--red);
  transform: translate(0, -5px);
}

.section_footer {
  color: #060709;
  background-color: #fefefe;
  flex-flow: column;
  justify-content: center;
  align-items: stretch;
  padding: 2rem 1rem;
  display: flex;
}

.footer-block {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-flow: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

._100-100-contain {
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.txt-link {
  color: var(--red);
  text-decoration: none;
  transition: all .4s;
}

.txt-link:hover {
  color: var(--red);
  text-decoration: underline;
}

.social-flex {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  border-top: 1px #1b9448;
  flex-flow: row;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}

.bottom-credits {
  z-index: 10;
  background-color: var(--black);
  color: #fff;
  text-align: center;
  justify-content: space-between;
  padding: .75rem 2rem;
  font-size: .875rem;
  display: block;
  position: relative;
}

.flex-block-4 {
  flex-flow: row;
  justify-content: space-between;
  display: flex;
}

.copyright-link {
  color: var(--red);
  text-decoration: none;
  transition: all .4s;
}

.copyright-link:hover {
  color: #fff;
  text-decoration: underline;
}

.copyright-link.w--current {
  color: #b01f24;
}

.footer_wrapper {
  z-index: 11;
  position: relative;
}

.before-block {
  color: var(--white);
  text-transform: uppercase;
  justify-content: center;
  align-items: flex-end;
  padding: 1rem;
  font-family: nexa-rust-sans-black-2, sans-serif;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.hover-info {
  color: var(--white);
  background-color: #0003;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
  position: absolute;
  inset: 0%;
}

.after-block {
  color: var(--white);
  text-transform: uppercase;
  justify-content: center;
  align-items: flex-end;
  padding: 1rem;
  font-family: nexa-rust-sans-black-2, sans-serif;
  display: flex;
  position: absolute;
  inset: auto 0% 0%;
}

.before-after_wrapper {
  position: absolute;
  inset: auto 0% 0%;
}

.bas-wrapper {
  border: 1px solid var(--white);
  border-radius: 1rem;
  max-width: 700px;
  height: 256px;
  position: relative;
  overflow: hidden;
}

.bas-image-before {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.bas-image-after-h {
  z-index: 1;
  object-fit: cover;
  width: 50%;
  height: 100%;
  margin-left: auto;
  display: block;
  position: absolute;
  inset: 0;
}

.bas-handle-h {
  z-index: 2;
  background-color: var(--white);
  border-radius: .5rem;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  display: flex;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.bas-icon-regular {
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.bas-line-h {
  z-index: 1;
  background-color: var(--white);
  width: 4px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translate(-50%);
}

.bas-label-before-h {
  z-index: 3;
  color: var(--black);
  cursor: pointer;
  background-color: #fff;
  border-radius: 6px;
  padding: 4px 12px;
  position: absolute;
  top: 24px;
  left: 24px;
}

.bas-label-after-h {
  z-index: 3;
  color: var(--red);
  cursor: pointer;
  background-color: #fff;
  border-radius: 6px;
  padding: 4px 12px;
  position: absolute;
  top: 24px;
  right: 24px;
}

.gallery_wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.div-block {
  justify-content: center;
  align-items: center;
  padding: 1rem;
  display: flex;
  position: sticky;
}

@media screen and (max-width: 991px) {
  .section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .navbar {
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .nav-menu {
    background-color: #000;
    border-radius: 0;
    padding: 0;
  }

  .navlink {
    color: #fff;
    margin-left: 0;
    margin-right: auto;
    font-size: 1.25rem;
    line-height: 48px;
  }

  .navlink:hover {
    color: #fff;
  }

  .navlink.cta {
    border-radius: 0;
    margin-left: auto;
    font-size: 1rem;
  }

  .navlink.cta:hover {
    color: #fff;
  }

  .menu-button {
    color: var(--black);
    border-radius: .25rem;
    padding: 1rem;
    font-size: 2rem;
    box-shadow: 0 0 7px #0003;
  }

  .menu-button.w--open {
    color: var(--red);
    background-color: #0000;
    box-shadow: 0 0 2px #0003;
  }

  .menu-button.interior-navbar-11 {
    opacity: 100;
    color: #1c1c1c;
  }

  .brand {
    z-index: 1;
    width: 125px;
  }

  .contact-flex-link {
    box-shadow: 0 0 7px #231f2040;
  }

  .header-shrink {
    font-size: 20px;
  }

  .hero-h1 {
    font-size: 50px;
  }

  .flex {
    flex-flow: column;
  }

  .col {
    align-self: stretch;
  }

  .col.img-col {
    flex: 0 auto;
    height: 375px;
  }

  .col.extendo {
    min-width: auto;
  }

  .button-2:hover {
    background-color: #218190;
    transform: none;
  }

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

  .beneflex-cards {
    width: 100%;
  }

  .beneflex-cards:hover {
    transform: none;
  }

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

  .testimonial {
    font-size: 1.125rem;
  }

  .faq-question-bar {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    width: 100%;
  }

  .faq-question {
    font-size: 1rem;
  }

  .plus-icon-2 {
    width: 2rem;
    height: 2rem;
  }

  .footer-col {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
  }

  .footer_grid {
    text-align: center;
    flex-flow: column;
    display: flex;
  }

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

  .bottom-credits {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

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

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

  .section.hero {
    min-height: auto;
  }

  .navbar {
    padding-left: .25rem;
  }

  .brand {
    width: 100px;
    margin-bottom: 0;
  }

  .fixed-contact, .hom {
    display: none;
  }

  .header-shrink {
    font-size: 17px;
  }

  .hero-h1 {
    font-size: 42px;
  }

  .flex {
    flex-flow: column;
  }

  .col.img-col {
    flex: 0 auto;
    height: 325px;
  }

  .flexed-img.adjust-fit {
    object-position: 50% 60%;
  }

  .beneflex-cards {
    flex-flow: column;
  }

  .beneflex-header {
    font-size: 1rem;
  }

  .card-flex {
    flex-flow: column;
    display: flex;
  }

  .lightbox {
    height: 256px;
  }

  .right-arrow {
    width: 2rem;
    height: 2rem;
  }

  .faq-question-bar {
    padding: .75rem;
  }

  .plus-icon-2 {
    width: 1.75rem;
    height: 1.75rem;
  }

  .faq_wrapper {
    flex-flow: column;
    display: flex;
  }

  .footer-col {
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .footer_grid {
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
    display: flex;
  }

  .footer-block {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
  }

  .social-flex {
    justify-content: center;
    align-items: flex-end;
  }

  .bottom-credits {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    padding-left: .5rem;
    padding-right: .5rem;
    font-size: 12px;
  }

  .flex-block-4 {
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }

  .gallery_wrapper {
    flex-flow: column;
    display: flex;
  }
}

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

  .section.hero {
    min-height: 675px;
  }

  .content_wrapper {
    text-align: center;
  }

  .contact-flex {
    justify-content: center;
    align-items: center;
  }

  .contact-flex-link {
    flex-flow: column;
  }

  .contact-icon {
    width: 3rem;
    height: 3rem;
  }

  .fixed-contact {
    display: block;
  }

  .header-shrink {
    font-size: 18px;
  }

  .hero-h1 {
    font-size: 7vw;
  }

  .flexed-img.adjust-fit {
    object-position: 50% 50%;
  }

  .flex-block {
    flex-flow: column;
    display: flex;
  }

  .beneflex-cards {
    text-align: center;
    flex-flow: column;
    justify-content: flex-start;
    align-items: center;
  }

  .benflex-icon {
    height: 3rem;
  }

  .list {
    column-count: 1;
    padding-left: 0;
    list-style-type: none;
  }

  .testimonial {
    text-align: center;
  }

  .faq-question-bar {
    grid-column-gap: .5rem;
    grid-row-gap: .5rem;
    text-align: center;
    flex-flow: column;
  }

  .faq-line {
    width: 1rem;
  }

  .footer-title {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-col {
    text-align: center;
    justify-content: flex-start;
    align-items: center;
  }

  .footer_grid {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    justify-content: flex-start;
    align-items: center;
  }

  .social-link {
    width: 42px;
    height: 42px;
  }

  .section_footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .footer-block {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: column;
    justify-content: center;
    display: flex;
  }

  .social-flex {
    justify-content: center;
  }

  .bottom-credits {
    text-align: center;
    align-items: center;
    padding-left: .5rem;
    padding-right: .5rem;
  }

  .flex-block-4 {
    grid-column-gap: .25rem;
    grid-row-gap: .25rem;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
  }
}

#w-node-b80778c1-bc1b-e125-3d9f-22c96a0258ff-bb24d39f, #w-node-_8b48fc35-518f-34a6-fe3b-2ff75b7ddfaa-96fdb409 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1199106d-87f6-3d08-6f7e-ee1b836863cc-96fdb409, #w-node-_8b48fc35-518f-34a6-fe3b-2ff75b7de09e-96fdb409 {
  align-self: end;
}


