:root {
  --colors--black: #121212;
  --fonts--manrope: Manrope, sans-serif;
  --colors--white: #fff;
  --text--h1-desktop: 128px;
  --text--h1-mobile: 68px;
  --text--h2: 48px;
  --text--h2-mobile: 32px;
  --text--h3: 32px;
  --text--h4: 18px;
  --text--h5: 14px;
  --text--h6: 12px;
  --text--paragraph: 16px;
  --black: black;
  --white: white;
  --colors--light-grey: #ffffff40;
  --colors--grey: #000000bf;
  --text--h3-mobile: 26px;
}

.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 {
  background-color: var(--colors--black);
  font-family: var(--fonts--manrope);
  color: var(--colors--white);
  font-size: 14px;
  line-height: 20px;
}

h1 {
  font-family: var(--fonts--manrope);
  color: var(--colors--white);
  font-size: var(--text--h1-desktop);
  margin-top: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 120%;
}

h2 {
  font-family: var(--fonts--manrope);
  color: var(--colors--white);
  font-size: var(--text--h2);
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 100%;
}

h3 {
  font-family: var(--fonts--manrope);
  color: var(--colors--white);
  font-size: var(--text--h3);
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 121%;
}

h4 {
  font-family: var(--fonts--manrope);
  color: var(--colors--white);
  font-size: var(--text--h4);
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 100%;
}

h5 {
  font-family: var(--fonts--manrope);
  color: var(--colors--white);
  font-size: var(--text--h5);
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 100%;
}

h6 {
  font-family: var(--fonts--manrope);
  color: var(--colors--white);
  font-size: var(--text--h6);
  margin-top: 10px;
  margin-bottom: 10px;
  font-weight: 700;
  line-height: 100%;
}

p {
  color: var(--colors--white);
  font-size: var(--text--paragraph);
  margin-bottom: 10px;
  line-height: 150%;
}

a {
  color: var(--colors--white);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: #ffffffbf;
}

blockquote {
  color: var(--colors--white);
  font-size: var(--text--paragraph);
  border-left: 5px solid #e2e2e2;
  margin-top: 20px;
  margin-bottom: 20px;
  margin-left: 20px;
  padding: 10px 20px;
  line-height: 100%;
}

.sub-title-wrapper {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.spacer._20px {
  width: 20px;
  height: 20px;
}

.spacer._20px.borders {
  border: 1px solid var(--colors--white);
}

.spacer._80px {
  color: var(--black);
  width: 20px;
  height: 80px;
}

.spacer._80px.borders {
  border: 1px solid var(--colors--white);
}

.spacer._15vw {
  width: 20px;
  height: 15vw;
}

.spacer._15vw.borders {
  border: 1px solid var(--colors--white);
}

.spacer._30px {
  width: 20px;
  height: 30px;
}

.spacer._30px.borders {
  border: 1px solid var(--colors--white);
}

.spacer._50px {
  width: 20px;
  height: 50px;
}

.spacer._50px.borders {
  border: 1px solid var(--colors--white);
}

.content-container {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.gray-line {
  z-index: 1;
  background-color: #ffffff80;
  height: 1px;
  position: relative;
}

.color-block {
  background-color: var(--colors--black);
  border: 1px solid #ffffffbf;
  width: 100%;
  height: 100px;
}

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

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

.primary-button {
  border: 1px solid var(--colors--white);
  color: var(--colors--white);
  background-color: #fff0;
  border-radius: 20px;
  padding: 10px 50px;
  font-size: 14px;
  transition: background-color .2s;
}

.primary-button:hover {
  background-color: #ffffff40;
  font-weight: 400;
}

.style-guide-buttons-wrapper {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  flex-direction: row;
  display: flex;
}

.secondary-button {
  color: #fff;
  background-color: #0000;
  border: 1px solid #fff;
  padding: 13px 50px;
  font-size: 14px;
  transition: background-color .2s;
}

.secondary-button:hover {
  background-color: #ffffff4d;
}

.form-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: grid;
}

.form-button-wrapper {
  justify-content: center;
  align-items: center;
  display: flex;
}

.section {
  background-color: var(--black);
  color: var(--black);
  padding: 140px 20px;
}

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

.navbar {
  background-color: #ddd0;
  padding-top: 20px;
}

.nav-logo {
  padding-top: 12px;
}

.nav-link {
  color: var(--colors--white);
  font-size: var(--text--paragraph);
  transition: color .2s;
}

.nav-link:hover {
  color: var(--colors--light-grey);
}

.nav-link.w--current {
  color: var(--colors--white);
}

.nav-menu {
  align-items: center;
  display: flex;
}

.nav-container {
  max-width: 1160px;
  padding-left: 20px;
  padding-right: 20px;
}

.hero-grid {
  grid-column-gap: NaNpx;
  grid-row-gap: NaNpx;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr;
}

.hero-social {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: flex-start;
  display: flex;
}

.hero-paragraph {
  max-width: 320px;
}

.scroll-animated-text {
  color: var(--colors--light-grey);
  text-transform: uppercase;
  line-height: 150%;
}

.section-heading-wrapper {
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  overflow: hidden;
}

.services-card {
  border-radius: 20px;
  align-items: flex-end;
  height: 390px;
  margin-bottom: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.tint {
  z-index: 1;
  background-color: #0000;
  position: absolute;
  inset: 0%;
}

.tint.bpost {
  background-color: #00000045;
}

.services-card-text {
  z-index: 2;
  padding-bottom: 20px;
  padding-left: 20px;
  position: relative;
}

.arrow-button {
  z-index: 2;
  background-image: url('../images/Arrow-Button.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 70px;
  height: 70px;
  position: absolute;
  inset: 5% 5% auto auto;
}

.projects-wrapper {
  flex-direction: column;
  display: flex;
  position: static;
}

.projects-card {
  border-radius: 50px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  min-height: 470px;
  margin-top: 60px;
  margin-bottom: 60px;
  padding-bottom: 40px;
  padding-left: 40px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.projects-card-wrapper {
  position: static;
}

.projects-card-text {
  z-index: 2;
  position: relative;
}

.projects-card-text-block {
  border-right: 1px solid var(--colors--white);
  color: var(--white);
  margin-right: 10px;
  padding-right: 10px;
}

.projects-card-services-cms {
  display: inline-block;
}

.projects-card-cms {
  position: sticky;
  top: 10dvh;
}

.projects-card-cms.not-sticky {
  position: relative;
}

.projects-card-link-block {
  z-index: 3;
  position: absolute;
  inset: 0%;
}

.testimonial-slider-wrapper {
  height: 300vh;
}

.testimonial-card {
  background-color: var(--colors--white);
  border-radius: 50px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 560px;
  display: flex;
}

.testimonial-text {
  color: var(--colors--black);
  font-size: var(--text--h3);
  max-width: 860px;
}

.testimonial-text-wrapper {
  position: relative;
}

.quote {
  position: absolute;
  inset: -35% auto auto -2%;
}

.testimonial-client {
  grid-column-gap: 10px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.testimonial-card-wrapper {
  background-color: var(--colors--white);
  border-radius: 50px;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  min-width: 1160px;
  min-height: 560px;
  margin-left: 10px;
  display: flex;
}

.dark-text {
  color: var(--colors--black);
}

.grey-text {
  color: var(--colors--grey);
}

.testomonial-slider {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  min-height: 100vh;
  display: flex;
}

.testimonial-slider-sticky {
  width: 100%;
  position: sticky;
  top: 10vh;
  overflow: hidden;
}

.blog-post-card {
  border-radius: 20px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  min-height: 400px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.blog-post-card-text {
  z-index: 2;
  width: 80%;
  position: relative;
}

.blog-post-card-image {
  z-index: 0;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.faq-row {
  border-bottom: 1px solid var(--black);
  outline-offset: 0px;
  cursor: pointer;
  outline: 3px #000;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.faq-answer {
  display: block;
}

.faq-question {
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.paragraph {
  color: var(--black);
  margin-top: 10px;
}

.footer {
  padding: 140px 20px 20px;
}

.centered-heading-grid {
  grid-column-gap: 0px;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.centered-heading {
  min-width: 660px;
}

.centered-heading-plus-icon-wrapper {
  text-align: left;
}

.centered-heading-wrapper {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.footer-links-wrapper {
  border-top: 1px solid var(--colors--white);
  justify-content: space-between;
  margin-top: 40px;
  padding-top: 40px;
  display: flex;
}

.footer-links {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  justify-content: space-between;
  display: flex;
}

.powerd-by {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  color: var(--colors--light-grey);
  flex-direction: row;
  display: flex;
}

.services-card-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: block;
  position: absolute;
  inset: 0%;
}

.preloader {
  z-index: 9999;
  background-color: var(--colors--white);
  perspective-origin: 50% 0;
  transform-origin: 50% 0;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0%;
}

.overflow-hidden {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.overflow-hidden.re {
  margin-left: -170px;
}

.hero-section-image-wrapper {
  margin-left: 20px;
  position: relative;
  overflow: hidden;
}

.hero-section-image-wrapper._2 {
  margin-left: 20px;
}

.image-animation-mask {
  z-index: 3;
  background-color: var(--colors--black);
  perspective-origin: 50% 0;
  transform: scale3d(1none, 1none, 1none);
  transform-origin: 50% 0;
  transform-style: preserve-3d;
  display: none;
  position: absolute;
  inset: 0%;
}

.hero-image {
  overflow: clip;
}

.services-card-wrapper {
  width: 100%;
}

.projects-card-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: scroll;
  position: absolute;
  inset: 0%;
}

.about-us-wrapper {
  border-radius: 50px;
  overflow: hidden;
}

.about-us-image {
  object-fit: cover;
}

.about-us-grid {
  grid-row-gap: 79px;
}

.blog-cms-main-image {
  height: 470px;
}

.blog-cms-main-image-wrapper {
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}

.blog-post-cms-text {
  z-index: 2;
  position: absolute;
  inset: auto auto 6% 5%;
}

.blog-post-cms-rich-text {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.project-cms-heading-wrapper {
  justify-content: space-between;
  align-items: flex-end;
  display: flex;
}

.project-cms-heading {
  align-items: flex-start;
  display: flex;
}

.project-cms-services {
  margin-bottom: 40px;
}

.project-cms-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 470px;
}

.project-cms-image-wrapper {
  border-radius: 50px;
  position: relative;
  overflow: hidden;
}

.project-cms-text-grid {
  grid-template-rows: auto;
}

.project-cms-gallery-image-wrapper {
  border-radius: 50px;
  height: 470px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.project-cms-gallery-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.service-cms-heading-wrapper {
  align-items: flex-start;
  display: flex;
}

.service-cms-main-image-wrapper {
  border-radius: 50px;
  height: 470px;
  position: relative;
  overflow: hidden;
}

.service-cms-main-imaage {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  inset: 0%;
}

.service-cms-text-grid {
  grid-template-rows: auto;
}

.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;
  max-width: 1160px;
  display: flex;
}

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

.text-field {
  background-color: var(--colors--black);
  padding-top: 20px;
  padding-bottom: 20px;
}

.license-flex-box {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: column;
  display: flex;
}

.hero-section {
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 140px 20px;
  display: flex;
}

.testimonial-section {
  padding-top: 140px;
  padding-bottom: 0;
  padding-left: 20px;
}

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

.image {
  max-width: 100%;
}

.heading-2, .heading-3, .heading-4, .bold-text, .bold-text-2, .bold-text-3 {
  color: var(--black);
}

.image-2 {
  max-width: 55%;
}

.link {
  font-weight: 700;
}

.div-block {
  background-color: var(--white);
  color: var(--colors--black);
  width: 600px;
  min-width: 200px;
  height: 200px;
  overflow: auto;
}

.div-block-2 {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: center;
  align-items: center;
  margin-left: 15px;
  margin-right: 15px;
  font-size: 15px;
  font-weight: 400;
  display: flex;
}

.div-block-2.rrrss {
  margin-right: 0;
}

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

.image-3 {
  overflow: clip;
}

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

@media screen and (max-width: 991px) {
  .content-container.mobile-padding, .section, .nav-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hero-grid {
    grid-row-gap: 18px;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .testimonial-slider-wrapper {
    height: 100%;
  }

  .testimonial-card {
    min-height: auto;
    padding-left: 40px;
    padding-right: 40px;
  }

  .testimonial-text {
    font-size: var(--text--h4);
  }

  .quote {
    width: 100px;
    top: -47%;
    left: -2%;
  }

  .testimonial-card-wrapper {
    min-width: 90%;
    height: 300px;
    min-height: auto;
  }

  .testomonial-slider {
    flex-direction: column;
    padding-right: 10px;
  }

  .testimonial-slider-sticky {
    position: relative;
  }

  .footer {
    padding-left: 10px;
    padding-right: 10px;
  }

  .project-cms-heading-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-section {
    height: 130vh;
    padding-left: 0;
    padding-right: 0;
  }

  .testimonial-section {
    padding-left: 10px;
  }
}

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

  .primary-button.mobile-hidden {
    display: none;
  }

  .secondary-button {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .nav-link {
    font-size: var(--text--h1-mobile);
    line-height: 100%;
  }

  .nav-menu {
    background-color: var(--colors--black);
    height: 100vh;
  }

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

  .scroll-animated-text {
    font-size: var(--text--h2-mobile);
  }

  .quote {
    top: -20%;
  }

  .footer {
    padding-top: 0;
  }

  .centered-heading {
    min-width: 300px;
  }

  .menu-button, .menu-button.w--open {
    background-color: #c8c8c800;
  }

  .nav-button-line {
    perspective-origin: 50%;
    transform-origin: 50%;
    background-color: #fff;
    width: 30px;
    height: 2px;
    margin-bottom: 5px;
    padding-bottom: 0;
    padding-right: 0;
  }

  .hero-section {
    height: 100vh;
    padding-top: 60px;
    padding-bottom: 100px;
  }

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

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

  .spacer._80px {
    display: none;
  }

  .primary-button {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding: 40px 0 100px;
  }

  .nav-link {
    font-size: var(--text--h1-mobile);
  }

  .services-card {
    height: 300px;
  }

  .tint.bpost {
    background-color: #00000087;
  }

  .projects-card {
    min-height: 300px;
  }

  .testimonial-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .testimonial-card-wrapper {
    height: 400px;
  }

  .blog-post-card {
    min-height: 300px;
  }

  .blog-post-card-text {
    width: 90%;
  }

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

  .centered-heading-grid {
    grid-row-gap: 0px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr;
  }

  .centered-heading-grid.medium-padding-bottom {
    margin-bottom: 40px;
  }

  .centered-heading {
    width: 300px;
    min-width: auto;
  }

  .centered-heading-plus-icon-wrapper {
    text-align: right;
  }

  .centered-heading-wrapper {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .powerd-by {
    margin-top: 40px;
  }

  .overflow-hidden.re {
    margin-left: 0;
  }

  .heading {
    font-size: var(--text--h3-mobile);
  }

  .testomonial-header {
    font-size: var(--text--h2);
  }

  .header-plus-icon {
    width: 30px;
  }

  .menu-button {
    background-color: #c8c8c800;
  }

  .about-us-wrapper {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .about-us-grid {
    grid-row-gap: 21px;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
  }

  .blog-post-cms-rich-text {
    margin-top: 40px;
  }

  .project-cms-text-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .project-cms-gallery-image-wrapper {
    height: 300px;
  }

  .service-cms-text-grid {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr;
    margin-top: 40px;
  }

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

  .testimonial-section {
    padding-top: 40px;
    padding-bottom: 100px;
    padding-left: 0;
  }

  .image-2 {
    max-width: 20%;
    margin-top: -267px;
    padding-bottom: 0;
  }

  .div-block-2 {
    grid-column-gap: 32px;
    grid-row-gap: 32px;
    flex-flow: row;
    justify-content: center;
    align-items: center;
    margin-left: 5px;
    margin-right: 5px;
  }

  .div-block-2.rrrss {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    margin-left: 0;
  }

  .div-block-2.rrss {
    grid-column-gap: 3px;
    grid-row-gap: 3px;
    margin-left: 0;
    margin-right: 0;
  }

  .text-block.rrss {
    font-size: 12px;
  }

  .image-3 {
    max-width: 23px;
  }

  .image-4, .image-5 {
    max-width: 25%;
  }

  .image-5.rrss {
    max-width: 22px;
  }

  .image-6 {
    max-width: 80%;
  }
}

#w-node-_05a6eb84-c4f9-b2ec-320e-6cc7f9f3c162-6c3785ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: start;
}

#w-node-_416db251-208e-a3f1-1dad-b15b1de91f13-6c3785ef {
  place-self: center;
}

#w-node-_20fbb33d-d017-0020-783f-3bdafb45f937-6c3785ef {
  place-self: center start;
}

#w-node-_37913404-8c8e-9498-3624-c76ba4a9813b-6c3785ef {
  justify-self: start;
}

#w-node-f33845a3-7bc6-c9c0-d051-e23b24c662ec-6c3785ef {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ccd2c61b-5107-9cc3-4533-d317520f4eb9-6c3785ef {
  justify-self: end;
}

#w-node-_3d854ebc-cbae-a989-cc41-ed88a7f6cec0-a7f6cebc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start end;
}

#w-node-_3d854ebc-cbae-a989-cc41-ed88a7f6cec2-a7f6cebc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3d854ebc-cbae-a989-cc41-ed88a7f6cec5-a7f6cebc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end start;
}

#w-node-_6a99ef34-a87b-565c-b60a-39d0fc5273e1-fc5273d0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a99ef34-a87b-565c-b60a-39d0fc5273e3-fc5273d0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_6a99ef34-a87b-565c-b60a-39d0fc5273ef-fc5273d0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a99ef34-a87b-565c-b60a-39d0fc5273f1-fc5273d0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_6a99ef34-a87b-565c-b60a-39d0fc5273fd-fc5273d0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a99ef34-a87b-565c-b60a-39d0fc5273ff-fc5273d0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_6a99ef34-a87b-565c-b60a-39d0fc52740b-fc5273d0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6a99ef34-a87b-565c-b60a-39d0fc52740d-fc5273d0 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: center start;
}

#w-node-_9a29e3ba-0c04-64cf-48af-9d06eb6af23e-6c3785f5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start end;
}

#w-node-_9a29e3ba-0c04-64cf-48af-9d06eb6af240-6c3785f5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9a29e3ba-0c04-64cf-48af-9d06eb6af243-6c3785f5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end start;
}

#w-node-_75755ef0-4256-9010-ea59-4036ff47866c-6c3785f5, #w-node-_2f6cfbbc-f48c-38c6-8e34-8cc43736599f-6c3785f5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff1f77bc-eaec-d177-b0aa-ae11491fe802-6c3785f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start end;
}

#w-node-ff1f77bc-eaec-d177-b0aa-ae11491fe804-6c3785f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff1f77bc-eaec-d177-b0aa-ae11491fe807-6c3785f6 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end start;
}

#w-node-_27a9a869-969b-00d5-fc76-b3d52d66d354-6c3785f9, #w-node-_745f7756-cb9c-4fa4-df2b-5f7a370e60ff-6c3785f9, #w-node-_0fca2bd4-068d-50e1-d32f-7f9642f7ba7b-6c3785f9, #w-node-e847fee3-04af-20be-fa8a-2fac2a0f151c-6c3785fa, #w-node-_3aaa436a-eb60-a79b-717f-74ac7b7cf9b8-6c3785fa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3e8cc5b1-66af-9f36-f2cb-20eb330794b5-6c3785fa {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start end;
}

#w-node-_3e8cc5b1-66af-9f36-f2cb-20eb330794b7-6c3785fa {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3e8cc5b1-66af-9f36-f2cb-20eb330794ba-6c3785fa {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end start;
}

#w-node-fb1abd0d-a35f-8f20-d0df-d977d6324f67-6c3785fc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start end;
}

#w-node-fb1abd0d-a35f-8f20-d0df-d977d6324f69-6c3785fc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-fb1abd0d-a35f-8f20-d0df-d977d6324f6c-6c3785fc {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end start;
}

#w-node-_765a3a11-720e-2301-7458-ce57d01b3740-6c3785fd, #w-node-_765a3a11-720e-2301-7458-ce57d01b3743-6c3785fd {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f9e236d-8266-2336-498a-606c76aa5cdf-6c3785ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: start end;
}

#w-node-_4f9e236d-8266-2336-498a-606c76aa5ce1-6c3785ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_4f9e236d-8266-2336-498a-606c76aa5ce4-6c3785ff {
  grid-area: span 1 / span 1 / span 1 / span 1;
  place-self: end start;
}

@media screen and (max-width: 991px) {
  #w-node-_37913404-8c8e-9498-3624-c76ba4a9813b-6c3785ef, #w-node-f33845a3-7bc6-c9c0-d051-e23b24c662ec-6c3785ef, #w-node-ccd2c61b-5107-9cc3-4533-d317520f4eb9-6c3785ef {
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_05a6eb84-c4f9-b2ec-320e-6cc7f9f3c162-6c3785ef {
    grid-area: span 1 / span 1 / span 1 / span 1;
    justify-self: start;
  }

  #w-node-_37913404-8c8e-9498-3624-c76ba4a9813b-6c3785ef, #w-node-_3d854ebc-cbae-a989-cc41-ed88a7f6cec0-a7f6cebc {
    justify-self: start;
  }

  #w-node-_3d854ebc-cbae-a989-cc41-ed88a7f6cec5-a7f6cebc {
    justify-self: end;
  }
}


