:root {
  --midnight-blue: #002147;
  --light-coral: #ff4f70;
  --white: white;
  --deep-sky-blue: #38b0eb;
  --white-smoke: #ecedef;
  --black: black;
  --white-smoke-2: #f5f8f9;
  --light-blue: #f0fcff;
}

.w-form-formradioinput--inputType-custom {
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 12px;
  height: 12px;
}

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

.w-form-formradioinput--inputType-custom.w--redirected-checked {
  border-width: 4px;
  border-color: #3898ec;
}

.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-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@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 {
  color: var(--midnight-blue);
  font-family: Montserrat, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.2;
}

h2 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
}

h3 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

p {
  margin-bottom: 10px;
  line-height: 1.5;
}

a {
  color: var(--light-coral);
  text-decoration: underline;
}

.section {
  background-color: var(--white);
  padding-top: 90px;
  padding-bottom: 90px;
}

.section.footer {
  background-image: linear-gradient(142deg, rgba(255, 79, 112, .5), var(--deep-sky-blue));
  padding-bottom: 0;
}

.section.grey {
  background-color: rgba(236, 237, 239, .9);
}

.section.marquee {
  height: 120px;
  padding-top: 35px;
  padding-bottom: 35px;
  overflow: hidden;
}

.section.developer-cards {
  background-image: linear-gradient(145deg, #ff4f70, #38b0eb);
  overflow: hidden;
}

.section.plan-hero {
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url('../images/Plan-hero-image-2.jpg');
  background-position: 0 0, 50%;
  background-size: auto, cover;
  padding-top: 10rem;
  padding-bottom: 10rem;
}

.section.sub-hero {
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(162deg, var(--light-coral), var(--deep-sky-blue));
}

.container {
  max-width: 81.25rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 10px;
  padding-right: 10px;
}

.container.nav {
  justify-content: space-between;
  display: flex;
}

.container.marquee {
  max-width: 100vw;
}

.is-inter-40 {
  font-size: 40px;
}

.is-inter-32 {
  font-size: 32px;
}

.is-bold {
  font-weight: 700;
}

.is-pink-text {
  color: var(--light-coral);
}

.developer__card {
  background-color: var(--white);
  text-align: center;
  border-radius: 5px;
  flex-direction: column;
  align-items: center;
  width: 300px;
  height: 100%;
  min-height: 450px;
  padding: 40px;
  transition: all .3s ease-in-out;
  display: flex;
  box-shadow: 1px 1px 10px rgba(0, 33, 71, .1);
}

.developer__card:hover {
  transform: translate(0, -10px);
}

.image {
  object-fit: contain;
  height: 150px;
  margin-bottom: 14px;
}

.developer__card-name {
  color: var(--midnight-blue);
  margin-right: .5em;
  font-size: 20px;
  font-weight: 500;
  display: inline-block;
}

.developer__card-title {
  color: rgba(0, 33, 71, .5);
  margin-top: 15px;
  margin-right: .5em;
  display: inline-block;
}

.developer__card-quote {
  color: var(--midnight-blue);
  margin-top: 20px;
  font-size: 14px;
}

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

.nav__menu {
  align-items: center;
  margin-left: auto;
  display: flex;
}

.nav__logo {
  max-height: 60px;
}

.navbar {
  background-color: var(--white);
  padding-top: 10px;
  padding-bottom: 10px;
}

.nav__link {
  color: var(--midnight-blue);
  padding-left: 25px;
  padding-right: 25px;
}

.nav__link.w--current {
  display: none;
  overflow: visible;
}

.nav__link.plans {
  display: none;
}

.button {
  background-color: var(--light-coral);
  color: var(--white);
  border-radius: 5px;
  padding: 10px 25px;
  font-size: 18px;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.button:hover {
  transform: translate(0);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
}

.button.large {
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 20px;
}

.button.large.copy-button {
  margin-top: 20px;
}

.button.semi-bold {
  font-weight: 600;
}

.button.is-secondary {
  border: 1px solid var(--light-coral);
  color: var(--midnight-blue);
  background-color: rgba(0, 0, 0, 0);
  border-radius: 100rem;
}

.button.is-navy {
  background-color: var(--midnight-blue);
}

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

.footer__heading {
  text-align: center;
  max-width: 1000px;
  margin-bottom: 35px;
  font-size: 40px;
  font-weight: 400;
  line-height: 1.2;
}

.footer__grid {
  grid-column-gap: 6em;
  grid-row-gap: 6em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: stretch;
  margin-top: 5em;
  display: grid;
}

.footer__column {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.footer__menu-heading {
  font-size: 16px;
  line-height: 1.2;
}

.footer__divider {
  background-color: var(--midnight-blue);
  width: 100%;
  height: 1px;
  margin-bottom: 1em;
}

.link {
  color: var(--midnight-blue);
  margin-top: 1em;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.link:hover {
  opacity: .5;
}

.footer__social-wrapper {
  align-items: center;
  margin-top: 1em;
  display: flex;
}

.footer__social-link {
  margin-right: 1em;
  transition: all .2s ease-in-out;
}

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

.hero__grid {
  grid-column-gap: 2em;
  grid-row-gap: 0em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  transition: all .2s ease-in-out;
  display: grid;
}

.hero__column-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.hero__heading {
  margin-top: 0;
  font-size: 40px;
  line-height: 1.2;
}

.hero__link-wrapper {
  align-items: flex-start;
  margin-top: 4em;
  display: flex;
}

.hero__link-image {
  object-fit: contain;
  max-width: 200px;
  height: 63px;
  margin-left: 2em;
}

.hero__text {
  align-self: center;
  max-width: 480px;
  line-height: 2;
}

.marquee__camera {
  width: 100vw;
}

.marquee__outer {
  width: 200vw;
  display: flex;
}

.marquee__inner {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: center;
  align-items: center;
  justify-items: center;
  width: 100vw;
  padding-left: 1em;
  padding-right: 1em;
  display: grid;
}

.logo__image {
  max-height: 50px;
}

.developer__slider {
  background-color: rgba(0, 0, 0, 0);
  height: auto;
  margin-top: 2rem;
  margin-bottom: 4rem;
}

.developer__slider-mask {
  width: 300px;
  overflow: visible;
}

.developer__slide {
  width: 300px;
  margin-right: 2rem;
}

.testimonials1_arrow {
  border: 1px solid var(--white-smoke);
  color: #24292e;
  background-color: rgba(21, 29, 83, 0);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  transition: background-color .2s ease-in-out;
  display: flex;
  position: absolute;
  top: auto;
  bottom: -5rem;
  left: auto;
  right: 0%;
}

.testimonials1_arrow:hover {
  box-shadow: 1px 1px 3px rgba(0, 255, 0, .5);
}

.testimonials1_arrow.left {
  border-color: var(--white-smoke);
  right: 4.5rem;
}

.testimonials1_arrow-icon {
  color: var(--white-smoke);
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.testimonials1_slider-nav {
  display: none;
}

.text__wrapper {
  flex-direction: column;
  align-items: center;
  max-width: 830px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.text__heading {
  color: var(--light-coral);
  text-align: center;
  max-width: 725px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 40px;
}

.text__sub-heading {
  color: var(--midnight-blue);
  text-align: center;
  margin-top: 60px;
  font-size: 32px;
  font-weight: 400;
}

.text__sub-heading.short {
  max-width: 610px;
}

.text__body {
  align-self: stretch;
  margin-top: 60px;
  margin-bottom: 30px;
  line-height: 2;
}

.howto__wrapper {
  text-align: center;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.howto__grid {
  grid-column-gap: 1em;
  grid-row-gap: 2em;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-self: stretch;
  margin-top: 110px;
  display: grid;
}

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

.howto__arrow-wrapper.light {
  opacity: .6;
}

.howto__circle {
  background-color: var(--midnight-blue);
  color: var(--white);
  border-radius: 500px;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  font-size: 40px;
  display: flex;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
}

.howto__sub-heading {
  max-width: 210px;
  font-size: 22px;
  font-weight: 700;
}

.howto__text {
  line-height: 2;
}

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

.testimonial__grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-self: stretch;
  margin-top: 6em;
  display: grid;
}

.testimonial__card {
  border-radius: 5px;
  flex-direction: column;
  align-items: flex-start;
  padding: 60px 50px;
  display: flex;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
}

.testimonial__logo {
  object-fit: contain;
  align-self: center;
  width: 150px;
  height: 70px;
}

.testimonial__text {
  color: rgba(0, 33, 71, .5);
  margin-top: 3em;
}

.testimonial__name {
  color: #002147;
  margin-top: 2em;
  font-weight: 700;
}

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

.provide__text {
  text-align: center;
  max-width: 830px;
  margin-top: 3em;
  line-height: 2;
}

.provide__grid {
  grid-column-gap: 2em;
  grid-row-gap: 1em;
  text-align: center;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr .25fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: column;
  align-self: stretch;
  margin-top: 110px;
  padding-left: 0;
  padding-right: 4em;
  display: grid;
  position: relative;
}

.provide__image {
  z-index: 2;
  position: relative;
}

.image-3 {
  z-index: 1;
  width: 100%;
  position: absolute;
  top: 42px;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.footer__footer {
  background-color: var(--white);
  margin-top: 110px;
  padding-top: 10px;
  padding-bottom: 10px;
}

.footer__footer-wrapper {
  justify-content: space-between;
  display: flex;
}

.footer__footer-left {
  align-items: center;
  display: flex;
}

.footer__brand-link {
  margin-right: 2em;
}

.footer__logo {
  max-height: 50px;
  margin-top: -5px;
}

.footer__footer-right {
  color: rgba(0, 33, 71, .5);
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.footer__footer-text {
  margin-right: 1em;
}

.footer__footer-link {
  color: rgba(0, 33, 71, .5);
  margin-right: 1em;
}

.dummy-items-wrapper {
  display: flex;
}

.typeform__slide-nav {
  display: none;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.typeform__content-wrapper {
  z-index: 4;
  flex-direction: column;
  display: flex;
  position: relative;
}

.text-block-2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
}

.success-message {
  background-color: rgba(56, 176, 235, .2);
  border-radius: 5px;
  max-width: 640px;
  max-height: none;
  padding: 57px 100px;
}

.text-block {
  font-size: 18px;
  line-height: 1;
}

.text-block.text-block-extra {
  display: block;
}

.typeform__radio-button {
  align-items: center;
  margin-bottom: 1em;
  display: flex;
}

.button-2 {
  color: #fff;
  background-color: #ff4f70;
  border-radius: 5px;
  padding: 10px 25px;
  font-size: 18px;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.button-2:hover {
  transform: translate(0);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
}

.button-2.success {
  margin-top: 48px;
}

.typeform__container {
  flex-direction: column;
  max-width: 640px;
  padding-left: 20px;
  padding-right: 20px;
  display: flex;
}

.typeform__slider {
  border-bottom: 1px solid var(--white-smoke);
  background-color: rgba(0, 0, 0, 0);
  height: auto;
}

.radio-button {
  background-color: rgba(56, 176, 235, .2);
  border-style: none;
  width: 17px;
  height: 17px;
  margin-top: 0;
  margin-right: 1em;
  transition: all .2s ease-in-out;
}

.radio-button:hover {
  background-color: rgba(56, 176, 235, .4);
}

.radio-button.w--redirected-checked {
  background-color: #002147;
  border-style: solid;
  border-color: #d5f1ff;
  border-radius: 100%;
}

.typeform__arrow {
  z-index: 6;
  color: #fff;
  background-color: #ff4f70;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 42px;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  position: absolute;
  top: auto;
  bottom: -65px;
  left: auto;
  right: 0%;
}

.typeform__arrow.left {
  color: #ff4f70;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #ff4f70;
  border-radius: 5px;
  margin-left: 0;
  margin-right: auto;
  display: flex;
  top: auto;
  bottom: -65px;
  left: 0%;
  right: auto;
}

.typeform__arrow.wide {
  width: 400px;
  padding-left: 10px;
  padding-right: 10px;
}

.link-2 {
  color: #ff4f70;
}

.typeform__submit-button {
  z-index: 6;
  color: #fff;
  background-color: #ff4f70;
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 130px;
  height: 42px;
  margin-top: 22px;
  margin-left: auto;
  display: flex;
  position: static;
  top: auto;
  bottom: -42px;
  left: auto;
  right: 0%;
}

.typeform__slide {
  z-index: 4;
}

.typeform__text-field {
  color: #002147;
  border: 1px solid #ecedef;
  border-radius: 5px;
  height: 48px;
  margin-bottom: 1em;
}

.typeform__text-field.message {
  max-width: 100%;
  height: 202px;
  box-shadow: 1px 1px 3px #ecedef;
}

.typeform__text-field.message:focus {
  border-color: #ecedef;
}

.link-block {
  margin-bottom: 80px;
  margin-left: auto;
  margin-right: auto;
}

.typeform__logo {
  object-fit: contain;
  height: 50px;
}

.typeform__label {
  margin-bottom: 1.5em;
  font-size: 20px;
}

.typeform__next-icon {
  display: none;
}

.typeform__radio-label {
  max-width: 80%;
  margin-bottom: 0;
}

.typeform__heading {
  margin-bottom: 16px;
  font-size: 20px;
  font-weight: 700;
}

.typeform__text {
  margin-bottom: 32px;
}

.max-width-medium {
  width: 100%;
  max-width: 37rem;
}

.text-size-medium {
  font-size: 1.125rem;
}

.margin-top {
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-top.margin-medium {
  margin-top: 3rem;
}

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

.button-group {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  display: flex;
}

.button-group.is-center {
  justify-content: center;
}

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

.margin-bottom {
  margin-top: 0;
  margin-left: 0;
  margin-right: 0;
}

.margin-bottom.margin-small {
  margin-bottom: 1rem;
}

.margin-bottom.margin-xxlarge {
  margin-bottom: 3.5rem;
}

.margin-bottom.margin-medium {
  margin-bottom: 3rem;
}

.margin-bottom.margin-large {
  margin-bottom: 1.5rem;
}

.container-large {
  width: 100%;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
}

.container-large.hero {
  max-width: none;
}

.padding-global {
  justify-content: center;
  max-height: none;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.padding-section-large {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.header_background-video-wrapper {
  z-index: -1;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.header_background-video {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.container-small {
  width: 100%;
  max-width: 58rem;
  margin-left: auto;
  margin-right: auto;
}

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

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

.plan-card {
  background-color: var(--midnight-blue);
  border-radius: 5px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 12px 32px 32px;
  box-shadow: 1px 1px 2rem rgba(0, 0, 0, .25);
}

.heading-style-h5 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.layout_background-video-wrapper {
  z-index: -1;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.layout_background-video {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.layout_component {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  justify-items: start;
  margin-bottom: 4rem;
  display: grid;
}

.icon-1x1-medium {
  width: 3rem;
  height: 3rem;
}

.heading-style-h6 {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
}

.heading-style-h6.calculator {
  background-color: rgba(0, 0, 0, 0);
  font-size: 1.5rem;
}

.pricing_component {
  width: 100%;
  margin-bottom: 4rem;
  position: relative;
}

.icon-1x1-xsmall {
  width: 1.5rem;
  height: 1.5rem;
}

.pricing_heading-row {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: grid;
}

.pricing_heading-row.top-margin {
  margin-top: 4rem;
}

.pricing_feature {
  z-index: 4;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  display: flex;
  position: relative;
}

.text-weight-semibold {
  font-weight: 600;
}

.max-width-large {
  width: 100%;
  max-width: 48rem;
}

.pricing_row-content {
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 4rem;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.pricing_row {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  align-items: stretch;
}

.pricing_row.background-color-gray {
  background-color: var(--white-smoke);
}

.pricing_row.background-color-blue {
  background-color: rgba(56, 176, 235, .2);
  font-weight: 600;
}

.plan-hero-heading {
  font-size: 3.5rem;
}

.sub-hero-text {
  color: var(--white);
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
}

.plan-card_heading-wrapper {
  align-items: center;
  display: flex;
}

.most-popular {
  background-color: var(--deep-sky-blue);
  border-radius: 5px;
  margin-top: 0;
  margin-bottom: 10px;
  margin-left: 1rem;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.most-popular.hide {
  display: none;
}

.pricing_heading-wrapper {
  align-items: flex-start;
  display: flex;
}

.pricing_heading-wrapper.center-align {
  justify-content: center;
}

.pricing_heading-icon {
  margin-right: 1rem;
}

.calculator {
  background-color: var(--white-smoke);
  border-radius: 5px;
}

.form-block {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
  display: flex;
}

.rate-plan-select-field {
  background-color: var(--white);
  color: rgba(0, 0, 0, .5);
  border: 1px #000;
  border-radius: 5px;
  margin-bottom: 0;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, .1);
}

.info-link-block {
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: 0%;
}

.icon {
  color: #160042;
  justify-content: center;
  align-items: center;
  width: 24px;
  height: 24px;
  display: flex;
}

.calculator-wrapper {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  border: 1px solid var(--white-smoke);
  border-radius: 5px;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  grid-template-columns: .3fr 3fr 6fr;
  grid-auto-rows: 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  margin-bottom: 2rem;
  padding: 2rem;
  font-size: 1rem;
  font-weight: 600;
  display: grid;
}

.calculator-number {
  color: var(--white-smoke);
  margin-top: -20px;
  font-size: 3rem;
  font-weight: 900;
}

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

.result-card {
  background-image: linear-gradient(to bottom, var(--white-smoke), var(--white-smoke));
  color: var(--black);
  border-radius: 5px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  display: flex;
}

.result-card.subscription {
  background-image: linear-gradient(rgba(236, 237, 239, .5), rgba(236, 237, 239, .5));
}

.result-card.button-wrap {
  text-align: center;
  background-image: none;
  justify-content: space-between;
  align-items: stretch;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
}

.result-number {
  margin-top: 1rem;
  font-size: 4rem;
}

.text-color-blue {
  color: var(--deep-sky-blue);
}

.text-span {
  font-size: 1.25rem;
}

.price-plan-heading {
  font-size: 2.5rem;
  font-weight: 700;
}

.cta-text {
  margin-bottom: 1rem;
}

.slider-wrapper {
  align-items: center;
  margin-bottom: 4rem;
  display: flex;
  position: relative;
}

.tabs-content {
  display: none;
}

.tabs-menu {
  flex-direction: row;
  flex: 1;
  display: flex;
}

.tabs {
  border-radius: .3125rem;
  flex: 1;
  display: flex;
  overflow: hidden;
}

.tab-link {
  background-color: var(--white-smoke);
  text-align: center;
  flex: 1;
  box-shadow: inset 3px 3px 2rem 4px rgba(0, 0, 0, .05);
}

.tab-link.w--current {
  background-color: var(--midnight-blue);
  color: var(--white);
}

.rate-plan-form-block {
  flex-direction: column;
  justify-content: center;
  align-self: stretch;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 0;
  display: flex;
}

.rate-plan-form {
  width: 50%;
}

.slider-line {
  z-index: 2;
  background-color: var(--white-smoke);
  border-radius: 1rem;
  width: 100%;
  height: .625rem;
  display: flex;
  position: relative;
}

.slider-line.active {
  z-index: 10;
  background-color: var(--midnight-blue);
  width: 32%;
  position: absolute;
}

.slider-circle {
  z-index: 4;
  background-color: var(--midnight-blue);
  border-radius: 2rem;
  width: 1.875rem;
  height: 1.875rem;
  position: absolute;
}

.slider-circle._30 {
  left: 30%;
}

.rate-plan-select-wrapper {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.scale-wrapper {
  z-index: 3;
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  min-width: 5rem;
  margin-top: 55px;
  display: flex;
  position: absolute;
  left: 5%;
}

.scale-wrapper._2 {
  left: 30%;
}

.scale-wrapper._3 {
  left: auto;
  right: 30%;
}

.scale-wrapper._4 {
  left: auto;
  right: 5%;
}

.scale-wrapper._5 {
  left: 45%;
  right: 45%;
}

.scale-line {
  background-color: var(--white-smoke);
  border-radius: 10px;
  width: 5px;
  height: 26px;
}

.scale-number {
  margin-top: 1rem;
}

.tab-wrapper {
  align-items: center;
  display: flex;
  position: relative;
}

.tool-tips_wrapper {
  background-color: var(--white);
  border-radius: 8px;
  width: 20rem;
  padding: .5rem;
  position: absolute;
  top: -.5rem;
  bottom: auto;
  left: auto;
  right: -21rem;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, .05);
}

.text-block-4 {
  color: rgba(0, 0, 0, .7);
  font-size: .875rem;
  font-weight: 400;
}

.navbar_container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr max-content 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  justify-items: stretch;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.navbar_component {
  background-color: var(--white);
  align-items: center;
  width: 100%;
  min-height: 4rem;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  position: fixed;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, .13);
}

.navbar_logo {
  height: 60px;
}

.navbar_logo-link {
  padding-left: 0;
}

.navbar_menu-background {
  display: none;
  position: static;
}

.footer_credit-text {
  font-size: .875rem;
}

.footer_bottom-wrapper {
  flex-direction: row;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
}

.padding-bottom, .padding-bottom.padding-xlarge {
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

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

.padding-top.padding-medium {
  padding-top: 3rem;
}

.error-message {
  margin-top: 1.5rem;
  padding: .875rem 1rem;
}

.footer_legal-link {
  color: var(--midnight-blue);
  font-size: .875rem;
  text-decoration: underline;
}

.footer_component {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.form-input {
  background-color: var(--white);
  color: var(--midnight-blue);
  border: 1px solid #d9d9d9;
  border-radius: .3125rem;
  height: auto;
  min-height: 2.75rem;
  margin-bottom: 0;
  padding: .5rem .75rem;
  font-size: 1rem;
  line-height: 1.6;
}

.form-input:focus {
  border-color: #000;
}

.form-input::placeholder {
  color: #a5a5a5;
}

.line-divider {
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 1px;
}

.footer_legal-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  white-space: normal;
  grid-template-rows: auto;
  grid-template-columns: max-content;
  grid-auto-columns: max-content;
  grid-auto-flow: column;
  justify-content: center;
  display: grid;
}

.success-message-2 {
  background-color: var(--white);
  border: 1px solid #dedede;
  border-radius: 5px;
  padding: 1.5rem;
}

.success-message-2.bottom {
  border-color: var(--midnight-blue);
  background-color: rgba(0, 33, 71, .7);
}

.padding-vertical {
  padding-left: 0;
  padding-right: 0;
}

.max-width-xlarge {
  width: 100%;
  max-width: 64rem;
}

.hero-header_form-block {
  max-width: 37.5rem;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.hero-header_form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: 1rem;
  display: grid;
}

.section_hero-header {
  background-color: var(--white-smoke-2);
}

.highlight_item-icon-wrapper {
  flex: none;
  align-self: flex-start;
  margin-top: 1.25rem;
  margin-right: 1.5rem;
}

.highlight_item {
  display: flex;
}

.section_highlight {
  background-color: var(--midnight-blue);
}

.highlight_component {
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  align-items: center;
  justify-items: center;
  display: grid;
}

.highlight_item-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 2rem;
  color: var(--white);
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  max-width: 43.75rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
}

.padding-section-medium {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.clients_logo {
  max-height: 3rem;
}

.section_clients {
  justify-content: center;
  padding-left: 10px;
  padding-right: 10px;
  display: flex;
  overflow: hidden;
}

.clients_component {
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.clients_list {
  grid-column-gap: 2rem;
  white-space: nowrap;
  flex-wrap: wrap;
  grid-template-rows: auto;
  grid-template-columns: 12.5rem 12.5rem 12.5rem 12.5rem 12.5rem;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: grid;
}

.how-it-works_item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.how-it-works_component {
  color: var(--midnight-blue);
  flex-direction: column;
  align-items: center;
  display: flex;
}

.section_how-it-works {
  background-color: var(--white-smoke-2);
  color: var(--midnight-blue);
  position: relative;
}

.how-it-works_list {
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: center;
  display: grid;
}

.testimonials_logo-wrapper {
  align-self: center;
  margin-bottom: 3rem;
}

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

.section_testimonials {
  background-image: url('../images/testimonial-background.jpg');
  background-position: 50%;
  background-size: cover;
  background-attachment: fixed;
}

.testimonials_client {
  text-align: left;
  align-items: center;
  display: flex;
}

.testimonials_content {
  background-color: var(--white);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding: 2rem;
  display: flex;
  box-shadow: 1px 1px 2rem 4px rgba(0, 0, 0, .05);
}

.testimonials_client-info {
  margin-top: 2rem;
}

.testimonials_logo {
  max-height: 1.25rem;
}

.flatworld-benefits_list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: center;
  display: grid;
}

.flatworld-benefits_item {
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 100%;
  display: flex;
}

.flatworld-benefits_background-video {
  z-index: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.section_flatworld-benefits {
  background-color: var(--midnight-blue);
  position: relative;
}

.flatworld-benefits_component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.flatworld-benefits_background-video-wrapper {
  z-index: -1;
  background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.section_statistic {
  position: relative;
}

.statistic_component {
  z-index: 2;
  grid-column-gap: 5rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  display: grid;
  position: relative;
}

.faq_icon {
  align-self: flex-start;
  width: 2rem;
  margin-left: 1.5rem;
}

.faq_answer {
  overflow: hidden;
}

.faq_question {
  border-top: 1px solid var(--midnight-blue);
  cursor: pointer;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  display: flex;
}

.faq_accordion {
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.decoration-line {
  flex-direction: row;
  align-items: flex-start;
  width: 100%;
  height: 10px;
  display: flex;
}

.decoration-line.pink {
  background-color: var(--light-coral);
  width: 50%;
  height: 100%;
  display: block;
}

.decoration-line.blue {
  background-color: var(--midnight-blue);
  width: 50%;
  height: 100%;
  display: block;
}

.section_bottom-cta {
  background-image: url('../images/Female-developer-working.jpg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

.new-button {
  background-color: var(--light-coral);
  color: var(--white);
  margin-left: auto;
  padding: 10px 25px;
  font-size: 18px;
  text-decoration: none;
  transition: all .3s ease-in-out;
}

.new-button:hover {
  transform: translate(0);
  box-shadow: 1px 1px 10px rgba(0, 0, 0, .3);
}

.new-button.header.smaller {
  display: none;
}

.statistic-background {
  background-color: var(--white-smoke-2);
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: auto;
}

.statistic-background.right {
  background-color: var(--white);
  top: 0%;
  bottom: 0%;
  left: auto;
  right: 0%;
}

.text-size-gigantic {
  font-size: 5rem;
  font-weight: 700;
}

.text-size-gigantic.text-align-center.no-top-margin {
  margin-top: 0;
}

.logo-heading {
  font-size: 1.125rem;
}

.logo-heading-wrapper {
  flex-direction: column;
  align-items: center;
  max-width: 100vw;
  margin-bottom: 3.5rem;
  display: flex;
}

.icon-1x1-large {
  width: 4.0625rem;
  height: 4.0625rem;
}

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

.text-block-7 {
  margin-top: 10px;
}

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

.link-3 {
  color: #719ef8;
}

.global-styles {
  display: block;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.section_product-header {
  background-image: url('../images/Mask-group.webp');
  background-position: 50%;
  background-size: cover;
  max-height: 480px;
  overflow: hidden;
}

.section_product-header._2 {
  background-image: url('../images/Mask-group-1.webp');
}

.section_product-cta {
  position: relative;
}

.signup-form-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr max-content;
  grid-auto-columns: 1fr;
  margin-bottom: 1rem;
  display: grid;
}

.success-text {
  font-weight: 600;
}

.error-text {
  color: #e23939;
}

.product-feature_component {
  flex-direction: column;
  align-items: center;
  display: flex;
}

.product-feature_list {
  grid-column-gap: 3rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: stretch;
  justify-items: center;
  display: grid;
}

.product-feature_item {
  text-align: center;
  border-radius: 1rem;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 2rem 1rem;
  display: flex;
  box-shadow: 0 2px 2rem rgba(0, 0, 0, .05);
}

.product-feature_image-wrapper {
  width: 100%;
  position: relative;
}

.product-feature_image {
  width: 4rem;
  height: 4rem;
}

.product-how-it-works_component {
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.product-how-it-works_list {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  justify-items: start;
  display: grid;
}

.product-how-it-works_item {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.product-what-you-get_component {
  border: .5rem solid var(--white-smoke);
  background-color: rgba(245, 248, 249, .5);
  border-radius: 1rem;
  padding: 1.5rem;
}

.product-what-you-get_list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  grid-template-columns: 100%;
  grid-auto-columns: 100%;
  align-items: start;
  justify-items: stretch;
  display: grid;
}

.product-what-you-get_accordion {
  border: 1px solid var(--white-smoke);
  background-color: var(--white);
  border-radius: 1rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
}

.product-what-you-get_question {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  cursor: pointer;
  justify-content: flex-start;
  align-items: center;
  padding: 1.25rem 1.5rem;
  display: flex;
}

.product-what-you-get_icon-wrappper {
  align-self: flex-start;
  width: 2rem;
  margin-left: auto;
  display: flex;
}

.icon-embed-small {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 2rem;
  height: 2rem;
  display: flex;
}

.product-what-you-get_answer {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  overflow: hidden;
}

.product-testimonial_component {
  background-color: var(--light-blue);
  border-radius: 1rem;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 2.5rem 2.5rem 5rem;
}

.product-testimonial_slide {
  padding-left: 4rem;
  padding-right: 4rem;
}

.product-testimonial_content {
  text-align: center;
  flex-direction: column;
  align-items: center;
  max-width: 48rem;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.margin-vertical {
  margin-left: 0;
  margin-right: 0;
}

.product-testimonial_arrow {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 3.5rem;
  height: 3.5rem;
  display: none;
}

.product-testimonial_arrow-icon {
  color: var(--midnight-blue);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  display: flex;
}

.product-testimonial_slide-nav {
  height: 1.75rem;
  margin-bottom: 2rem;
  font-size: .5rem;
}

.logo1_component {
  grid-column-gap: 2.5rem;
  grid-row-gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
}

.logo1_logo {
  max-height: 3.5rem;
}

.section_cta30 {
  background-color: var(--midnight-blue);
  position: relative;
}

.section_legacy-products {
  font-family: Montserrat, sans-serif;
}

.container-medium {
  text-align: center;
  width: 100%;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
}

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

.legacy-products_plan {
  border-style: solid;
  border-width: .5rem 1px 1px;
  border-color: var(--light-coral) #d8e0ed #d8e0ed;
  text-align: center;
  border-radius: 1rem;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 1.5rem;
}

.legacy-products_plan.navy-line {
  border-top-color: var(--midnight-blue);
}

.legacy-products_content {
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  display: flex;
}

.legacy-products_content-top {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: center;
  display: flex;
}

.legacy-products_divider {
  background-color: #d8e0ed;
  width: 100%;
  height: 1px;
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.legacy-products_feature-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  margin-top: 1rem;
  margin-bottom: 2rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: grid;
}

.legacy-products_feature {
  display: flex;
}

.legacy-products_feature-icon-wrapper {
  flex: none;
  align-self: flex-start;
  margin-right: 1rem;
}

.icon-embed-xsmall {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 1.5rem;
  height: 1.5rem;
  display: flex;
}

.text-weight-medium {
  font-weight: 500;
}

.products-cta {
  font-family: Montserrat, sans-serif;
  position: relative;
}

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

.text-size-large {
  font-size: 1.5rem;
}

.padding-section-circle {
  aspect-ratio: auto;
  object-fit: contain;
  background-color: rgba(255, 255, 255, .95);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 40vw;
  max-width: 100%;
  height: 40vw;
  margin: -7rem auto;
  padding: 7rem 1rem;
  display: flex;
}

.card_line {
  background-color: var(--midnight-blue);
  border-radius: 100rem;
  width: 60%;
  height: 3px;
  margin-top: .5rem;
  margin-bottom: 1.5rem;
}

.padding-section-small {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.section_blue-heading {
  background-color: var(--light-blue);
}

.how-it-works_heading-wrapper {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  align-items: center;
  display: flex;
}

.how-it-works_heading-number-wrapper {
  background-color: #f9e5ea;
  border-radius: 100rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 5rem;
  height: 5rem;
  display: flex;
}

.how-it-works_heading-number {
  color: var(--light-coral);
  font-size: 5rem;
}

.max-width-tiny {
  width: 100%;
  max-width: 19rem;
}

.product-what-you-get_rating-text {
  z-index: 2;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.product-what-you-get_rating-wrapper {
  justify-content: center;
  align-items: center;
  width: 6rem;
  padding-top: .5rem;
  padding-bottom: .5rem;
  display: flex;
}

.product-what-you-get_rating-wrapper.high {
  background-color: #e0feda;
  border-radius: .5rem;
  height: 2rem;
  position: relative;
}

.product-what-you-get_rating-wrapper.medium {
  background-color: #fae8da;
  border-radius: .5rem;
  height: 2rem;
  position: relative;
}

.product-what-you-get_rating-number {
  z-index: 3;
  text-align: center;
  justify-content: center;
  align-items: center;
  display: none;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.tagline {
  color: var(--deep-sky-blue);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 600;
}

.plans_header-logo {
  object-fit: contain;
}

.max-width-small {
  width: 100%;
  max-width: 31rem;
}

.cta_text {
  font-size: 2rem;
}

.heading-style-h3 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.heading-style-h3.text-weight-medium {
  font-weight: 500;
}

.heading-style-h3.text-weight-semibold {
  font-weight: 600;
}

.max-width-full {
  width: 100%;
}

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

.max-width-50 {
  width: 50%;
}

.is-grey-text {
  color: #a5a5a5;
}

.new-products_plan {
  z-index: 1;
  border-style: solid;
  border-width: .5rem 1px 1px;
  border-color: var(--light-coral) #d8e0ed #d8e0ed;
  text-align: center;
  border-radius: 1rem;
  justify-content: center;
  align-items: flex-start;
  padding: 2rem 2rem 10rem;
  position: relative;
}

.new-products_plan.blue-line {
  border-top-color: var(--deep-sky-blue);
}

.plans_footer-card {
  z-index: 2;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--white);
  text-align: center;
  border: 1px solid #d8e0ed;
  border-radius: 0 0 1rem 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 16rem;
  padding: 1rem 2rem 1rem 1rem;
  display: flex;
  position: relative;
}

.plans_footer-card.hide-tablet {
  z-index: 2;
  position: relative;
}

.html-embed {
  width: 80%;
  height: 8rem;
}

.section_pricing55 {
  font-family: Montserrat, sans-serif;
}

.product-what-you-get_heading-wrapper {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 48rem;
  display: flex;
}

.legacy-products_feature-copy {
  display: flex;
}

.heading-2 {
  font-size: 2.1rem;
}

.heading-3 {
  z-index: auto;
  text-align: center;
  max-width: 80%;
  font-size: 2rem;
  font-weight: 400;
  position: static;
}

.heading-4 {
  font-size: 1.5rem;
  font-weight: 700;
}

.heading-5 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
}

.container-2 {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.text-block-8 {
  font-size: 1.125rem;
  line-height: 1.5;
}

.heading-7 {
  font-size: 3rem;
  font-weight: 700;
}

.heading-8 {
  font-size: 1.5rem;
  line-height: 1.5;
}

.heading-9 {
  font-size: 2rem;
}

.text-block-9 {
  color: var(--light-coral);
  max-width: 56rem;
  font-size: 1.25rem;
  font-weight: 500;
}

.heading-10 {
  font-size: 1.75rem;
  font-weight: 400;
}

@media screen and (min-width: 1920px) {
  .page-wrapper {
    padding-top: 0;
  }

  .section.marquee {
    height: 120px;
  }

  .typeform__arrow.wide {
    padding-left: 10px;
    padding-right: 10px;
  }

  .main-wrapper {
    padding-top: 4rem;
  }

  .container-large.hero {
    max-width: 80rem;
  }

  .padding-global {
    max-height: none;
  }

  .container-small {
    max-width: 58rem;
  }

  .navbar_container {
    justify-content: flex-start;
    min-width: auto;
    max-width: 80rem;
  }

  .navbar_component {
    background-color: var(--white);
    width: 100%;
    min-height: 4rem;
    position: fixed;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
    box-shadow: 1px 1px 10px rgba(0, 0, 0, .13);
  }

  .navbar_logo {
    height: 60px;
  }

  .success-message-2 {
    background-color: var(--white);
    border: 1px solid #dedede;
    border-radius: 5px;
  }

  .success-message-2.bottom {
    border-color: var(--midnight-blue);
    color: #fff;
    overflow: hidden;
  }

  .hero-header_form-block {
    background-color: rgba(0, 0, 0, 0);
  }

  .new-button {
    margin-left: auto;
  }

  .text-size-gigantic.text-align-center.no-top-margin {
    margin-top: 0;
  }

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

  .text-block-7 {
    margin-top: 10px;
  }

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

  .link-3 {
    color: #719ef8;
  }

  .link-4 {
    color: #1061be;
  }

  .section_product-header {
    position: static;
  }

  .legacy-products_plan {
    max-width: 720px;
  }

  .text-size-large {
    margin-top: 20px;
  }

  .padding-section-circle {
    border-radius: 50%;
    width: 40vw;
    height: 40vw;
    margin-top: -12rem;
    margin-bottom: -12rem;
  }

  .heading-3 {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.25;
  }

  .heading-4 {
    font-size: 1.5rem;
  }

  .heading-5 {
    margin-top: 10px;
    font-size: 1.5rem;
  }

  .heading-7 {
    font-size: 3rem;
    font-weight: 700;
  }

  .heading-8 {
    font-size: 2rem;
  }

  .text-block-9 {
    max-width: 58rem;
    font-size: 1.5rem;
  }

  .heading-10 {
    font-size: 2rem;
  }

  .heading-11 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 991px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .section.marquee {
    height: 120px;
  }

  .section.plan-hero {
    padding-top: 5.5rem;
    padding-bottom: 5.5rem;
  }

  .container {
    padding-left: 30px;
    padding-right: 30px;
  }

  .button.large.copy-button {
    margin-top: 0;
    margin-bottom: 30px;
  }

  .button.nav {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 15px;
    display: flex;
  }

  .button.nav.header-button {
    border-radius: 0;
  }

  .footer__heading {
    font-size: 32px;
  }

  .footer__grid {
    grid-column-gap: 2.5em;
    grid-template-columns: 1fr 1fr;
  }

  .footer__social-link {
    margin-right: .3em;
  }

  .hero__heading {
    font-size: 32px;
  }

  .hero__link-wrapper {
    flex-flow: column wrap;
    margin-top: 1em;
  }

  .hero__link-image {
    margin-top: 2em;
    margin-left: 0;
  }

  .testimonials1_arrow {
    width: 2rem;
    height: 2rem;
  }

  .testimonials1_arrow.left {
    right: 3rem;
  }

  .testimonials1_arrow-icon {
    width: 1rem;
  }

  .text__heading {
    font-size: 32px;
  }

  .text__sub-heading {
    font-size: 25.6px;
  }

  .text__sub-heading.short {
    margin-top: 0;
  }

  .howto__grid {
    grid-column-gap: 2em;
    grid-row-gap: 2.25em;
    text-align: left;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 1fr 2fr 3fr;
    grid-auto-flow: row;
    align-items: center;
    justify-items: end;
    margin-top: 50px;
  }

  .howto__arrow-wrapper {
    display: none;
  }

  .howto__sub-heading {
    font-size: 17.6px;
  }

  .heading2 {
    font-size: 25.6px;
  }

  .testimonial__grid {
    margin-top: 2em;
  }

  .testimonial__card {
    padding: 20px;
  }

  .testimonial__logo {
    height: 50px;
  }

  .testimonial__text {
    margin-top: 2em;
  }

  .provide__grid {
    text-align: left;
    grid-template-rows: auto auto auto auto auto auto auto;
    grid-template-columns: .5fr 1fr;
    grid-auto-flow: row;
    align-self: center;
    align-items: start;
    max-width: 70vw;
    margin-top: 50px;
    padding-right: 0;
  }

  .provide__image {
    max-width: 80%;
  }

  .provide__sub-heading {
    margin-top: 20px;
    font-size: 24px;
  }

  .image-3 {
    display: none;
  }

  .footer__footer {
    margin-top: 50px;
  }

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

  .footer__footer-right {
    margin-top: 1em;
  }

  .menu-button {
    margin-left: auto;
  }

  .text-block.text-block-extra {
    display: block;
  }

  .typeform__arrow.wide {
    width: 400px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .max-width-medium.center-on-mobile {
    text-align: center;
    flex-direction: column;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    display: flex;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .padding-section-large {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

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

  .pricing_heading-row {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 30vw 20vw 20vw 20vw 20vw;
    width: 120vw;
  }

  .pricing_row {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: 30vw 20vw 20vw 20vw 20vw;
  }

  .pricing_row.background-color-gray {
    width: 120vw;
  }

  .pricing_row.background-color-blue {
    width: 120vw;
    max-width: none;
  }

  .plan-hero-heading.text-color-white {
    font-size: 3rem;
    line-height: 1;
  }

  .sub-hero-text {
    font-size: 2rem;
    line-height: 1.2;
  }

  .pricing_heading-wrapper {
    font-size: 1rem;
  }

  .plan-table-wrapper {
    overflow: scroll;
  }

  .info-link-block {
    margin-left: 1rem;
  }

  .calculator-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    border-style: none;
    grid-template-rows: auto auto auto auto;
    grid-template-columns: 3fr 6fr;
    align-items: start;
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding: 0;
  }

  .calculator-number {
    display: none;
  }

  .result-card {
    font-size: 1rem;
  }

  .result-number {
    font-size: 2rem;
  }

  .slider-wrapper {
    margin-bottom: 5rem;
  }

  .slider-circle {
    width: 1.5rem;
    height: 1.5rem;
  }

  .navbar_container {
    grid-auto-columns: 1fr;
    display: flex;
  }

  .navbar_logo {
    height: 60px;
  }

  .navbar_logo-link {
    transition: opacity .2s;
    position: static;
    left: 0%;
  }

  .navbar_menu-background {
    z-index: 0;
    background-color: rgba(0, 0, 0, .5);
    width: 100vw;
    height: 100vh;
    padding-bottom: 0;
    padding-right: 0;
    display: none;
    position: absolute;
    top: 0%;
    bottom: 0%;
    left: 0%;
    right: 0%;
  }

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

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

  .success-message-2.bottom {
    color: #fff;
    background-color: rgba(0, 33, 71, .7);
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .highlight_component {
    grid-column-gap: 3rem;
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    min-height: auto;
  }

  .padding-section-medium {
    border: 1px #dedede;
    border-radius: 5px;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .clients_logo {
    max-height: 2rem;
  }

  .clients_list {
    width: 95vw;
    display: flex;
  }

  .how-it-works_list {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials_component {
    grid-column-gap: 1rem;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .flatworld-benefits_list {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .statistic_component {
    grid-column-gap: 3rem;
    grid-row-gap: 2rem;
  }

  .new-button {
    display: block;
  }

  .new-button.header.smaller {
    display: none;
  }

  .text-size-gigantic.text-align-center {
    font-size: 3.5rem;
  }

  .text-size-gigantic.text-align-center.no-top-margin {
    margin-top: 0;
  }

  .logo-heading-wrapper {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

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

  .product-feature_list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .product-feature_image {
    width: 3rem;
    height: 3rem;
  }

  .product-how-it-works_list {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .logo1_logo {
    max-height: 2rem;
  }

  .legacy-products_plans {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .legacy-products_plan {
    padding-bottom: 2rem;
  }

  .new-products_plans {
    grid-template-columns: 1fr 1fr;
  }

  .text-size-large {
    font-size: 1.25rem;
  }

  .padding-section-circle {
    width: 80vw;
    height: 80vw;
    margin-top: -10rem;
    margin-bottom: -10rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .padding-section-small {
    border: 1px #dedede;
    border-radius: 5px;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .how-it-works_heading-wrapper {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
  }

  .how-it-works_heading-number-wrapper {
    width: 3rem;
    height: 3rem;
  }

  .how-it-works_heading-number {
    font-size: 3rem;
  }

  .cta_text {
    font-size: 1.5rem;
  }

  .max-width-50 {
    width: 80%;
  }

  .new-products_plan {
    padding-bottom: 2rem;
  }

  .plans_footer-card {
    border-radius: 1rem;
  }

  .section_pricing55 {
    overflow: hidden;
  }

  .heading-3 {
    max-width: 100%;
    font-size: 1.5rem;
    font-weight: 400;
  }

  .heading-4 {
    font-size: 1.125rem;
    font-weight: 700;
  }

  .heading-5 {
    font-size: 1.125rem;
    font-weight: 400;
    line-height: 1.2;
  }

  .text-block-8 {
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .heading-7 {
    font-size: 2.5rem;
  }

  .heading-8 {
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .heading-9 {
    font-size: 1.75rem;
  }

  .text-block-9 {
    color: var(--light-coral);
    font-size: 1.125rem;
    font-weight: 500;
  }

  .heading-10 {
    font-size: 1.5rem;
    font-weight: 400;
  }
}

@media screen and (max-width: 767px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .section {
    padding-top: 35px;
    padding-bottom: 35px;
  }

  .section.marquee {
    height: auto;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .container {
    padding-left: 20px;
    padding-right: 20px;
  }

  .developer__card {
    min-height: 400px;
    padding: 25px;
  }

  .footer__heading {
    font-size: 25.6px;
  }

  .footer__grid {
    grid-column-gap: 2.5em;
    grid-row-gap: 2em;
    grid-template-columns: 1fr 1fr;
  }

  .footer__social-wrapper {
    margin-top: 1em;
  }

  .footer__social-link {
    margin-right: .3em;
  }

  .hero__grid {
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
  }

  .hero__heading {
    font-size: 25.6px;
  }

  .hero__link-wrapper {
    align-items: center;
  }

  .developer__slider-mask {
    width: 300px;
  }

  .developer__slide {
    width: auto;
    max-width: none;
    margin-right: 1.25rem;
  }

  .howto__grid {
    grid-row-gap: 1.5em;
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto;
    grid-template-columns: 1fr;
  }

  .howto__circle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .testimonial__grid {
    grid-row-gap: 2em;
    grid-template-columns: 1fr;
  }

  .provide__wrapper {
    text-align: center;
  }

  .footer__footer {
    margin-top: 30px;
  }

  .success-message {
    max-width: 100%;
    max-height: none;
    padding: 25px 50px;
  }

  .text-block.text-block-extra {
    display: block;
  }

  .typeform__arrow.left {
    width: 100%;
    bottom: -120px;
  }

  .typeform__arrow.wide, .typeform__submit-button {
    width: 100%;
  }

  .link-block {
    margin-bottom: 20px;
  }

  .typeform {
    padding-bottom: 80px;
  }

  .text-size-medium {
    font-size: 1rem;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .container-large.percentage-container {
    max-width: none;
  }

  .padding-global.percentage {
    padding-left: 0%;
    padding-right: 0%;
  }

  .padding-section-large {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }

  .padding-section-large.percentage {
    padding-top: 0;
    padding-bottom: 0;
  }

  .heading-style-h5 {
    font-size: 1.25rem;
  }

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

  .heading-style-h6 {
    font-size: 1.125rem;
  }

  .pricing_heading-row {
    grid-template-columns: 40vw 30vw 30vw 30vw 30vw;
    width: 170vw;
  }

  .pricing_row {
    grid-template-columns: 40vw 30vw 30vw 30vw 30vw;
  }

  .pricing_row.background-color-gray, .pricing_row.background-color-blue {
    width: 170vw;
  }

  .plan-hero-heading.text-color-white {
    font-size: 2rem;
  }

  .sub-hero-text {
    font-size: 1.5rem;
  }

  .calculator-wrapper {
    grid-row-gap: 2rem;
    grid-template-rows: auto auto auto auto auto auto auto auto;
    grid-template-columns: 3fr;
  }

  .calculator-number {
    display: none;
  }

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

  .price-plan-heading {
    font-size: 2rem;
  }

  .slider-line {
    height: .4rem;
  }

  .navbar_component {
    min-height: 4rem;
  }

  .navbar_logo {
    height: 3rem;
  }

  .footer_credit-text {
    margin-top: 2rem;
  }

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

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

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

  .footer_legal-list {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    grid-template-columns: max-content 1fr 1fr;
    grid-auto-flow: row;
    justify-items: start;
  }

  .success-message-2.bottom {
    border-color: var(--midnight-blue);
    background-color: rgba(0, 33, 71, .6);
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

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

  .padding-section-medium {
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .clients_logo {
    width: 90px;
    max-width: none;
    max-height: none;
  }

  .section_clients, .clients_component {
    width: 100%;
  }

  .clients_list {
    grid-column-gap: 0rem;
    grid-row-gap: 0rem;
    flex-wrap: nowrap;
    grid-template-columns: 10rem 10rem 10rem 10rem 10rem 10rem 10rem 10rem;
    justify-content: space-around;
    width: auto;
    padding-top: 1rem;
    position: relative;
    left: 50%;
    transform: translate(-50%);
  }

  .clients_wrapper {
    padding: 0 1rem;
  }

  .how-it-works_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

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

  .testimonials_client {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .testimonials_content {
    padding: 1.5rem;
  }

  .flatworld-benefits_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .statistic_content-left.percentage {
    background-color: var(--white-smoke-2);
    padding: 4rem 5%;
  }

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

  .statistic_component.percentage {
    display: block;
  }

  .statistic_content-right.percentage {
    padding: 4rem 5%;
  }

  .faq_icon {
    width: 1.75rem;
  }

  .faq_question {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .statistic-background.right {
    width: 100%;
    height: 50%;
    display: none;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .statistic-background.left {
    width: 100%;
    display: none;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .logo-heading {
    text-align: center;
    width: 100%;
  }

  .logo-heading-wrapper {
    margin: 0 0 1rem;
  }

  .heading {
    font-size: 1.5rem;
  }

  .bold-text {
    width: 100%;
  }

  .text-block-6.bottom, .text-block-7.bottom {
    color: #fff;
  }

  .link-3 {
    color: #719ef8;
  }

  .product-feature_list {
    grid-template-columns: 1fr;
  }

  .product-how-it-works_list {
    grid-row-gap: 3rem;
    grid-template-columns: 1fr;
  }

  .product-what-you-get_question {
    padding: 1rem 1.25rem;
  }

  .product-what-you-get_icon-wrappper {
    width: 1.75rem;
  }

  .product-what-you-get_answer {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .product-testimonial_component {
    padding-bottom: 3rem;
  }

  .product-testimonial_slide {
    padding-left: 0;
    padding-right: 0;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .logo1_component {
    grid-column-gap: 1.5rem;
    grid-row-gap: 1.5rem;
    padding-top: 1rem;
  }

  .logo1_logo {
    max-height: 1.5rem;
  }

  .legacy-products_plans {
    grid-template-columns: 1fr;
  }

  .legacy-products_plan {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  .legacy-products_divider {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .new-products_plans {
    grid-template-columns: 1fr;
  }

  .text-size-large {
    font-size: 1rem;
  }

  .padding-section-circle {
    margin-top: -7rem;
    margin-bottom: -7rem;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .card_line {
    height: 2px;
  }

  .padding-section-small {
    width: 100%;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .plans_header-logo {
    max-height: 3rem;
  }

  .cta_text {
    font-size: 1.25rem;
  }

  .heading-style-h3 {
    font-size: 1.125rem;
  }

  .new-products_plan {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-3 {
    max-width: 100%;
    font-size: 1.25rem;
    font-weight: 400;
  }

  .heading-5 {
    line-height: 1.2;
  }

  .text-block-8 {
    font-size: 1rem;
  }

  .heading-7 {
    font-size: 2rem;
  }

  .heading-8 {
    font-size: 1rem;
    line-height: 1.5;
  }

  .text-block-9 {
    color: var(--light-coral);
    font-size: 1.125rem;
    font-weight: 500;
  }

  .heading-10 {
    margin-top: 0;
    font-size: 1.25rem;
    font-weight: 400;
  }
}

@media screen and (max-width: 479px) {
  .is-pink-text {
    font-size: 2rem;
  }

  .developer__card {
    width: 280px;
    min-height: 450px;
  }

  .button.large {
    font-size: 16px;
  }

  .button.large.copy-button {
    margin-bottom: 30px;
  }

  .footer__heading {
    font-size: 20.48px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    align-self: stretch;
  }

  .developer__slider-mask {
    width: 280px;
  }

  .text__heading {
    font-size: 25.6px;
  }

  .text__sub-heading {
    margin-top: 30px;
    font-size: 20.48px;
  }

  .text__sub-heading.short {
    font-size: 20.48px;
  }

  .text__body {
    margin-top: 30px;
    margin-bottom: 30px;
  }

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

  .howto__circle {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }

  .heading2 {
    font-size: 20.48px;
  }

  .provide__image {
    max-width: 100%;
  }

  .provide__sub-heading {
    margin-top: 20px;
    font-size: 16px;
  }

  .footer__footer-left {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer__brand-link {
    margin-right: 0;
  }

  .footer__footer-right {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    flex-wrap: wrap;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    justify-content: center;
    display: flex;
  }

  .footer__footer-text {
    text-align: center;
    margin-top: .5em;
    margin-left: .2em;
    margin-right: .2em;
  }

  .footer__footer-link {
    margin-top: .5em;
    margin-right: 0;
  }

  .dummy-items-wrapper {
    display: flex;
  }

  .text-block-2 {
    line-height: 1.2;
  }

  .success-message {
    padding-left: 25px;
    padding-right: 25px;
  }

  .typeform__arrow.left {
    bottom: -130px;
  }

  .typeform__arrow.wide {
    height: 52px;
  }

  .link-block {
    margin-bottom: 20px;
  }

  .main-wrapper {
    display: block;
    position: static;
    top: auto;
    bottom: 0%;
    left: 0%;
    right: auto;
  }

  .margin-top {
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-top.margin-medium {
    margin-top: 1rem;
  }

  .margin-bottom {
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .margin-bottom.margin-xxlarge {
    margin-bottom: 2rem;
  }

  .padding-global {
    width: 100%;
    max-height: none;
    display: block;
  }

  .padding-section-large {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .container-small {
    max-width: 100%;
    overflow: visible;
  }

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

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

  .pricing_heading-row {
    grid-template-columns: 70vw 40vw 40vw 40vw 40vw;
    width: 250vw;
  }

  .pricing_row {
    grid-template-columns: 70vw 40vw 40vw 40vw 40vw;
  }

  .pricing_row.background-color-gray, .pricing_row.background-color-blue {
    width: 250vw;
  }

  .calculator-wrapper {
    border-style: none;
    grid-template-columns: auto;
    padding: 0;
  }

  .rate-plan-form {
    width: 100%;
  }

  .scale-wrapper._5 {
    left: 35%;
    right: 35%;
  }

  .footer_bottom-wrapper {
    align-items: flex-start;
  }

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

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

  .padding-top.padding-medium {
    margin-bottom: 0;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .footer_legal-list {
    grid-template-columns: max-content;
  }

  .success-message-2 {
    background-color: var(--white);
    border: 1px solid rgba(222, 222, 222, .93);
    border-radius: 5px;
  }

  .success-message-2.bottom {
    background-color: rgba(0, 33, 71, .6);
  }

  .padding-vertical {
    padding-left: 0;
    padding-right: 0;
  }

  .hero-header_form {
    grid-row-gap: .75rem;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .highlight_component, .highlight_item-list {
    grid-template-columns: 1fr;
  }

  .clients_list {
    justify-content: center;
  }

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

  .how-it-works_list, .flatworld-benefits_list, .statistic_component {
    grid-template-columns: 1fr;
  }

  .new-button.header {
    font-size: 12px;
    display: none;
  }

  .new-button.header.smaller {
    display: block;
  }

  .logo-heading {
    text-align: center;
    font-size: 1rem;
  }

  .logo-heading-wrapper {
    max-width: 90%;
    margin-top: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .text-block-6 {
    text-align: left;
    line-height: 1.4;
  }

  .text-block-7 {
    text-align: left;
    margin-top: 10px;
    line-height: 1.4;
  }

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

  .link-3 {
    color: #719ef8;
  }

  .link-4 {
    color: #1061be;
  }

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

  .section_product-header {
    max-height: 240px;
  }

  .signup-form-wrapper {
    grid-row-gap: .75rem;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .product-feature_list, .product-how-it-works_list {
    grid-template-columns: 1fr;
  }

  .product-what-you-get_question {
    padding-left: .75rem;
    padding-right: .75rem;
    position: relative;
  }

  .margin-vertical {
    margin-left: 0;
    margin-right: 0;
  }

  .logo1_component {
    justify-content: center;
  }

  .new-products_plans {
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr;
    margin-right: 0;
  }

  .padding-section-circle {
    flex-wrap: wrap;
    width: 80vw;
    height: 80vw;
    margin-top: -3rem;
    margin-bottom: -3rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .product-what-you-get_rating-wrapper {
    width: 5rem;
  }

  .heading-3 {
    max-width: 100%;
    margin-top: 10px;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25;
  }

  .heading-5 {
    font-size: 1rem;
    line-height: 1.2;
  }

  .container-2 {
    max-width: 100%;
  }

  .heading-6 {
    font-size: 1rem;
  }

  .text-block-8 {
    font-size: 1rem;
    line-height: 1.5;
  }

  .heading-7 {
    font-size: 1rem;
  }

  .heading-8 {
    font-size: 1rem;
    line-height: 1.5;
  }

  .text-block-9 {
    color: var(--light-coral);
    font-size: 1rem;
    font-weight: 500;
  }

  .heading-10 {
    margin-top: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.25rem;
  }
}

#w-node-_628cf814-e7d8-e12f-8527-6af4360d1218-2c5ca299 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c84be45c-91a1-2748-5ea7-753ecea280ab-2c5ca299 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_75db4a23-d27a-7c07-8744-7de835adc49e-2c5ca299, #w-node-_442928de-6df5-4b55-3a59-81649042f3ca-2c5ca299, #w-node-f0cf0a06-fef1-d466-d732-19f96e847d0a-2c5ca299, #w-node-_968a5c99-fe87-6943-59e1-c40f6e1efb1b-2c5ca299, #w-node-_32e0729b-6495-6653-f9ae-14fe6c25e94e-2c5ca299, #w-node-_274b4c6f-3437-8937-5acc-d4b0de096d3d-2c5ca299, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b240-2c5ca299, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b241-2c5ca299, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b242-2c5ca299, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b243-2c5ca299, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b244-2c5ca299, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b245-2c5ca299 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d68a877e-980f-650a-b698-2f5847341bf6-2c5ca299 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_70830969-f958-c641-35be-1b79804ed1ad-2c5ca299 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-2c5ca299 {
  grid-area: 2 / 1 / 3 / 4;
  justify-self: center;
}

#w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-2c5ca299 {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_6259538c-c231-8915-c6e1-c3736f4d6447-2c5ca299 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-2c5ca299 {
  grid-area: 1 / 5 / 2 / 6;
  justify-self: center;
}

#w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-2c5ca299 {
  grid-area: 2 / 4 / 3 / 7;
  justify-self: center;
}

#w-node-d95af764-78ca-b23f-38e2-914b386ba402-2c5ca299 {
  grid-area: 3 / 4 / 4 / 7;
}

#w-node-_72e1b337-0371-0b5b-f2bb-e9045c024a54-2c5ca299 {
  grid-area: 1 / 6 / 2 / 8;
}

#w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-2c5ca299 {
  grid-area: 1 / 8 / 2 / 9;
  justify-self: center;
}

#w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-2c5ca299 {
  grid-area: 2 / 7 / 3 / 10;
  justify-self: center;
}

#w-node-_5077d8ef-c552-d198-808c-109009ff1397-2c5ca299 {
  grid-area: 3 / 7 / 4 / 10;
}

#w-node-a0c6cac1-a1d8-a446-3c4c-5c0750dcdf76-2c5ca299 {
  grid-area: 1 / 9 / 2 / 11;
}

#w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-2c5ca299 {
  grid-area: 1 / 11 / 2 / 12;
  justify-self: center;
}

#w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-2c5ca299 {
  grid-area: 2 / 10 / 3 / 13;
  justify-self: center;
}

#w-node-eadc272c-5a33-3665-a1b0-c2358e657984-2c5ca299 {
  grid-area: 3 / 10 / 4 / 13;
}

#w-node-_3d0245b9-0980-e6aa-7a0f-9c9d27610e22-2c5ca299 {
  grid-area: 1 / 12 / 2 / 13;
}

#w-node-e150faca-23a4-67af-b332-365c48fb20c0-2c5ca299, #w-node-_8b6e7c07-19ae-9037-5587-47d6da786c44-2c5ca299, #w-node-_313ae88c-d132-9c92-3142-7c681d8fdadb-2c5ca299, #w-node-b0bbd6bb-b527-8b84-e649-fecf59145594-2c5ca299, #w-node-_2255bbe5-ca44-3732-4a7e-facc9167371d-2c5ca299, #w-node-_9a138f7f-32b8-c134-833c-6637cd367f30-2c5ca299, #w-node-_16b4f03b-a0b6-b8aa-d2e4-a21d5117f97b-2c5ca299, #w-node-f3ccae8c-96f6-f707-82de-2b4b7c2fbe8a-2c5ca299, #w-node-_07e2fe75-06d2-58b5-4f71-eaa17c59676b-2c5ca299, #w-node-_326855e4-487c-69c7-9341-c8c1c3b95740-2c5ca299, #w-node-_71fd956c-7342-4770-fa4a-456ea5aabdfb-2c5ca299, #w-node-d7a9b4f2-9dc2-9bbc-4d24-f37f25e62261-2c5ca299, #w-node-_29e1a292-402f-7288-9372-a304a31f3a5d-2c5ca299, #w-node-_6c542046-8ecd-9b97-3876-d01dc9b8bf7e-2c5ca299, #w-node-db6fe5cc-2f87-1773-28be-a0812dddfc41-2c5ca299, #w-node-_37e34be5-c734-896a-7f18-c8199026f101-9026f0f8, #w-node-_37e34be5-c734-896a-7f18-c8199026f10d-9026f0f8, #w-node-_37e34be5-c734-896a-7f18-c8199026f119-9026f0f8, #w-node-_37e34be5-c734-896a-7f18-c8199026f125-9026f0f8, #w-node-d8c8a858-3b8c-3717-152c-6a003dd08ce8-3dd08ce8, #w-node-_628cf814-e7d8-e12f-8527-6af4360d1218-a4541ebb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c84be45c-91a1-2748-5ea7-753ecea280ab-a4541ebb {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_75db4a23-d27a-7c07-8744-7de835adc49e-a4541ebb, #w-node-_442928de-6df5-4b55-3a59-81649042f3ca-a4541ebb, #w-node-f0cf0a06-fef1-d466-d732-19f96e847d0a-a4541ebb, #w-node-_968a5c99-fe87-6943-59e1-c40f6e1efb1b-a4541ebb, #w-node-_32e0729b-6495-6653-f9ae-14fe6c25e94e-a4541ebb, #w-node-_274b4c6f-3437-8937-5acc-d4b0de096d3d-a4541ebb, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b240-a4541ebb, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b241-a4541ebb, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b242-a4541ebb, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b243-a4541ebb, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b244-a4541ebb, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b245-a4541ebb {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d68a877e-980f-650a-b698-2f5847341bf6-a4541ebb {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_70830969-f958-c641-35be-1b79804ed1ad-a4541ebb {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-a4541ebb {
  grid-area: 2 / 1 / 3 / 4;
  justify-self: center;
}

#w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-a4541ebb {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_6259538c-c231-8915-c6e1-c3736f4d6447-a4541ebb {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-a4541ebb {
  grid-area: 1 / 5 / 2 / 6;
  justify-self: center;
}

#w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-a4541ebb {
  grid-area: 2 / 4 / 3 / 7;
  justify-self: center;
}

#w-node-d95af764-78ca-b23f-38e2-914b386ba402-a4541ebb {
  grid-area: 3 / 4 / 4 / 7;
}

#w-node-_72e1b337-0371-0b5b-f2bb-e9045c024a54-a4541ebb {
  grid-area: 1 / 6 / 2 / 8;
}

#w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-a4541ebb {
  grid-area: 1 / 8 / 2 / 9;
  justify-self: center;
}

#w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-a4541ebb {
  grid-area: 2 / 7 / 3 / 10;
  justify-self: center;
}

#w-node-_5077d8ef-c552-d198-808c-109009ff1397-a4541ebb {
  grid-area: 3 / 7 / 4 / 10;
}

#w-node-a0c6cac1-a1d8-a446-3c4c-5c0750dcdf76-a4541ebb {
  grid-area: 1 / 9 / 2 / 11;
}

#w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-a4541ebb {
  grid-area: 1 / 11 / 2 / 12;
  justify-self: center;
}

#w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-a4541ebb {
  grid-area: 2 / 10 / 3 / 13;
  justify-self: center;
}

#w-node-eadc272c-5a33-3665-a1b0-c2358e657984-a4541ebb {
  grid-area: 3 / 10 / 4 / 13;
}

#w-node-_3d0245b9-0980-e6aa-7a0f-9c9d27610e22-a4541ebb {
  grid-area: 1 / 12 / 2 / 13;
}

#w-node-e150faca-23a4-67af-b332-365c48fb20c0-a4541ebb, #w-node-_8b6e7c07-19ae-9037-5587-47d6da786c44-a4541ebb, #w-node-_313ae88c-d132-9c92-3142-7c681d8fdadb-a4541ebb, #w-node-b0bbd6bb-b527-8b84-e649-fecf59145594-a4541ebb, #w-node-_2255bbe5-ca44-3732-4a7e-facc9167371d-a4541ebb, #w-node-_9a138f7f-32b8-c134-833c-6637cd367f30-a4541ebb, #w-node-_16b4f03b-a0b6-b8aa-d2e4-a21d5117f97b-a4541ebb, #w-node-f3ccae8c-96f6-f707-82de-2b4b7c2fbe8a-a4541ebb, #w-node-_07e2fe75-06d2-58b5-4f71-eaa17c59676b-a4541ebb, #w-node-_326855e4-487c-69c7-9341-c8c1c3b95740-a4541ebb, #w-node-_71fd956c-7342-4770-fa4a-456ea5aabdfb-a4541ebb, #w-node-d7a9b4f2-9dc2-9bbc-4d24-f37f25e62261-a4541ebb, #w-node-_29e1a292-402f-7288-9372-a304a31f3a5d-a4541ebb, #w-node-_6c542046-8ecd-9b97-3876-d01dc9b8bf7e-a4541ebb, #w-node-db6fe5cc-2f87-1773-28be-a0812dddfc41-a4541ebb, #w-node-_628cf814-e7d8-e12f-8527-6af4360d1218-dca18fc1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c84be45c-91a1-2748-5ea7-753ecea280ab-dca18fc1 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_75db4a23-d27a-7c07-8744-7de835adc49e-dca18fc1, #w-node-_442928de-6df5-4b55-3a59-81649042f3ca-dca18fc1, #w-node-f0cf0a06-fef1-d466-d732-19f96e847d0a-dca18fc1, #w-node-_968a5c99-fe87-6943-59e1-c40f6e1efb1b-dca18fc1, #w-node-_32e0729b-6495-6653-f9ae-14fe6c25e94e-dca18fc1, #w-node-_274b4c6f-3437-8937-5acc-d4b0de096d3d-dca18fc1, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b240-dca18fc1, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b241-dca18fc1, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b242-dca18fc1, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b243-dca18fc1, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b244-dca18fc1, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b245-dca18fc1 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d68a877e-980f-650a-b698-2f5847341bf6-dca18fc1 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_70830969-f958-c641-35be-1b79804ed1ad-dca18fc1 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-dca18fc1 {
  grid-area: 2 / 1 / 3 / 4;
  justify-self: center;
}

#w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-dca18fc1 {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_6259538c-c231-8915-c6e1-c3736f4d6447-dca18fc1 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-dca18fc1 {
  grid-area: 1 / 5 / 2 / 6;
  justify-self: center;
}

#w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-dca18fc1 {
  grid-area: 2 / 4 / 3 / 7;
  justify-self: center;
}

#w-node-d95af764-78ca-b23f-38e2-914b386ba402-dca18fc1 {
  grid-area: 3 / 4 / 4 / 7;
}

#w-node-_72e1b337-0371-0b5b-f2bb-e9045c024a54-dca18fc1 {
  grid-area: 1 / 6 / 2 / 8;
}

#w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-dca18fc1 {
  grid-area: 1 / 8 / 2 / 9;
  justify-self: center;
}

#w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-dca18fc1 {
  grid-area: 2 / 7 / 3 / 10;
  justify-self: center;
}

#w-node-_5077d8ef-c552-d198-808c-109009ff1397-dca18fc1 {
  grid-area: 3 / 7 / 4 / 10;
}

#w-node-a0c6cac1-a1d8-a446-3c4c-5c0750dcdf76-dca18fc1 {
  grid-area: 1 / 9 / 2 / 11;
}

#w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-dca18fc1 {
  grid-area: 1 / 11 / 2 / 12;
  justify-self: center;
}

#w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-dca18fc1 {
  grid-area: 2 / 10 / 3 / 13;
  justify-self: center;
}

#w-node-eadc272c-5a33-3665-a1b0-c2358e657984-dca18fc1 {
  grid-area: 3 / 10 / 4 / 13;
}

#w-node-_3d0245b9-0980-e6aa-7a0f-9c9d27610e22-dca18fc1 {
  grid-area: 1 / 12 / 2 / 13;
}

#w-node-e150faca-23a4-67af-b332-365c48fb20c0-dca18fc1, #w-node-_8b6e7c07-19ae-9037-5587-47d6da786c44-dca18fc1, #w-node-_313ae88c-d132-9c92-3142-7c681d8fdadb-dca18fc1, #w-node-b0bbd6bb-b527-8b84-e649-fecf59145594-dca18fc1, #w-node-_2255bbe5-ca44-3732-4a7e-facc9167371d-dca18fc1, #w-node-_9a138f7f-32b8-c134-833c-6637cd367f30-dca18fc1, #w-node-_16b4f03b-a0b6-b8aa-d2e4-a21d5117f97b-dca18fc1, #w-node-f3ccae8c-96f6-f707-82de-2b4b7c2fbe8a-dca18fc1, #w-node-_07e2fe75-06d2-58b5-4f71-eaa17c59676b-dca18fc1, #w-node-_326855e4-487c-69c7-9341-c8c1c3b95740-dca18fc1, #w-node-_71fd956c-7342-4770-fa4a-456ea5aabdfb-dca18fc1, #w-node-d7a9b4f2-9dc2-9bbc-4d24-f37f25e62261-dca18fc1, #w-node-_29e1a292-402f-7288-9372-a304a31f3a5d-dca18fc1, #w-node-_6c542046-8ecd-9b97-3876-d01dc9b8bf7e-dca18fc1, #w-node-db6fe5cc-2f87-1773-28be-a0812dddfc41-dca18fc1, #w-node-_628cf814-e7d8-e12f-8527-6af4360d1218-def3e860 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c84be45c-91a1-2748-5ea7-753ecea280ab-def3e860 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_75db4a23-d27a-7c07-8744-7de835adc49e-def3e860, #w-node-_442928de-6df5-4b55-3a59-81649042f3ca-def3e860, #w-node-f0cf0a06-fef1-d466-d732-19f96e847d0a-def3e860, #w-node-_968a5c99-fe87-6943-59e1-c40f6e1efb1b-def3e860, #w-node-_32e0729b-6495-6653-f9ae-14fe6c25e94e-def3e860, #w-node-_274b4c6f-3437-8937-5acc-d4b0de096d3d-def3e860, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b240-def3e860, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b241-def3e860, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b242-def3e860, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b243-def3e860, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b244-def3e860, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b245-def3e860 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d68a877e-980f-650a-b698-2f5847341bf6-def3e860 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_70830969-f958-c641-35be-1b79804ed1ad-def3e860 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-def3e860 {
  grid-area: 2 / 1 / 3 / 4;
  justify-self: center;
}

#w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-def3e860 {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_6259538c-c231-8915-c6e1-c3736f4d6447-def3e860 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-def3e860 {
  grid-area: 1 / 5 / 2 / 6;
  justify-self: center;
}

#w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-def3e860 {
  grid-area: 2 / 4 / 3 / 7;
  justify-self: center;
}

#w-node-d95af764-78ca-b23f-38e2-914b386ba402-def3e860 {
  grid-area: 3 / 4 / 4 / 7;
}

#w-node-_72e1b337-0371-0b5b-f2bb-e9045c024a54-def3e860 {
  grid-area: 1 / 6 / 2 / 8;
}

#w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-def3e860 {
  grid-area: 1 / 8 / 2 / 9;
  justify-self: center;
}

#w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-def3e860 {
  grid-area: 2 / 7 / 3 / 10;
  justify-self: center;
}

#w-node-_5077d8ef-c552-d198-808c-109009ff1397-def3e860 {
  grid-area: 3 / 7 / 4 / 10;
}

#w-node-a0c6cac1-a1d8-a446-3c4c-5c0750dcdf76-def3e860 {
  grid-area: 1 / 9 / 2 / 11;
}

#w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-def3e860 {
  grid-area: 1 / 11 / 2 / 12;
  justify-self: center;
}

#w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-def3e860 {
  grid-area: 2 / 10 / 3 / 13;
  justify-self: center;
}

#w-node-eadc272c-5a33-3665-a1b0-c2358e657984-def3e860 {
  grid-area: 3 / 10 / 4 / 13;
}

#w-node-_3d0245b9-0980-e6aa-7a0f-9c9d27610e22-def3e860 {
  grid-area: 1 / 12 / 2 / 13;
}

#w-node-e150faca-23a4-67af-b332-365c48fb20c0-def3e860, #w-node-_8b6e7c07-19ae-9037-5587-47d6da786c44-def3e860, #w-node-_313ae88c-d132-9c92-3142-7c681d8fdadb-def3e860, #w-node-b0bbd6bb-b527-8b84-e649-fecf59145594-def3e860, #w-node-_2255bbe5-ca44-3732-4a7e-facc9167371d-def3e860, #w-node-_9a138f7f-32b8-c134-833c-6637cd367f30-def3e860, #w-node-_16b4f03b-a0b6-b8aa-d2e4-a21d5117f97b-def3e860, #w-node-f3ccae8c-96f6-f707-82de-2b4b7c2fbe8a-def3e860, #w-node-_07e2fe75-06d2-58b5-4f71-eaa17c59676b-def3e860, #w-node-_326855e4-487c-69c7-9341-c8c1c3b95740-def3e860, #w-node-_71fd956c-7342-4770-fa4a-456ea5aabdfb-def3e860, #w-node-d7a9b4f2-9dc2-9bbc-4d24-f37f25e62261-def3e860, #w-node-_29e1a292-402f-7288-9372-a304a31f3a5d-def3e860, #w-node-_6c542046-8ecd-9b97-3876-d01dc9b8bf7e-def3e860, #w-node-db6fe5cc-2f87-1773-28be-a0812dddfc41-def3e860, #w-node-_628cf814-e7d8-e12f-8527-6af4360d1218-2effe8ce {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c84be45c-91a1-2748-5ea7-753ecea280ab-2effe8ce {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_75db4a23-d27a-7c07-8744-7de835adc49e-2effe8ce, #w-node-_442928de-6df5-4b55-3a59-81649042f3ca-2effe8ce, #w-node-f0cf0a06-fef1-d466-d732-19f96e847d0a-2effe8ce, #w-node-_968a5c99-fe87-6943-59e1-c40f6e1efb1b-2effe8ce, #w-node-_32e0729b-6495-6653-f9ae-14fe6c25e94e-2effe8ce, #w-node-_274b4c6f-3437-8937-5acc-d4b0de096d3d-2effe8ce, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b240-2effe8ce, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b241-2effe8ce, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b242-2effe8ce, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b243-2effe8ce, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b244-2effe8ce, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b245-2effe8ce {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d68a877e-980f-650a-b698-2f5847341bf6-2effe8ce {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_70830969-f958-c641-35be-1b79804ed1ad-2effe8ce {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-2effe8ce {
  grid-area: 2 / 1 / 3 / 4;
  justify-self: center;
}

#w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-2effe8ce {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_6259538c-c231-8915-c6e1-c3736f4d6447-2effe8ce {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-2effe8ce {
  grid-area: 1 / 5 / 2 / 6;
  justify-self: center;
}

#w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-2effe8ce {
  grid-area: 2 / 4 / 3 / 7;
  justify-self: center;
}

#w-node-d95af764-78ca-b23f-38e2-914b386ba402-2effe8ce {
  grid-area: 3 / 4 / 4 / 7;
}

#w-node-_72e1b337-0371-0b5b-f2bb-e9045c024a54-2effe8ce {
  grid-area: 1 / 6 / 2 / 8;
}

#w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-2effe8ce {
  grid-area: 1 / 8 / 2 / 9;
  justify-self: center;
}

#w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-2effe8ce {
  grid-area: 2 / 7 / 3 / 10;
  justify-self: center;
}

#w-node-_5077d8ef-c552-d198-808c-109009ff1397-2effe8ce {
  grid-area: 3 / 7 / 4 / 10;
}

#w-node-a0c6cac1-a1d8-a446-3c4c-5c0750dcdf76-2effe8ce {
  grid-area: 1 / 9 / 2 / 11;
}

#w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-2effe8ce {
  grid-area: 1 / 11 / 2 / 12;
  justify-self: center;
}

#w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-2effe8ce {
  grid-area: 2 / 10 / 3 / 13;
  justify-self: center;
}

#w-node-eadc272c-5a33-3665-a1b0-c2358e657984-2effe8ce {
  grid-area: 3 / 10 / 4 / 13;
}

#w-node-_3d0245b9-0980-e6aa-7a0f-9c9d27610e22-2effe8ce {
  grid-area: 1 / 12 / 2 / 13;
}

#w-node-e150faca-23a4-67af-b332-365c48fb20c0-2effe8ce, #w-node-_8b6e7c07-19ae-9037-5587-47d6da786c44-2effe8ce, #w-node-_313ae88c-d132-9c92-3142-7c681d8fdadb-2effe8ce, #w-node-b0bbd6bb-b527-8b84-e649-fecf59145594-2effe8ce, #w-node-_2255bbe5-ca44-3732-4a7e-facc9167371d-2effe8ce, #w-node-_9a138f7f-32b8-c134-833c-6637cd367f30-2effe8ce, #w-node-_16b4f03b-a0b6-b8aa-d2e4-a21d5117f97b-2effe8ce, #w-node-f3ccae8c-96f6-f707-82de-2b4b7c2fbe8a-2effe8ce, #w-node-_07e2fe75-06d2-58b5-4f71-eaa17c59676b-2effe8ce, #w-node-_326855e4-487c-69c7-9341-c8c1c3b95740-2effe8ce, #w-node-_71fd956c-7342-4770-fa4a-456ea5aabdfb-2effe8ce, #w-node-d7a9b4f2-9dc2-9bbc-4d24-f37f25e62261-2effe8ce, #w-node-_29e1a292-402f-7288-9372-a304a31f3a5d-2effe8ce, #w-node-_6c542046-8ecd-9b97-3876-d01dc9b8bf7e-2effe8ce, #w-node-db6fe5cc-2f87-1773-28be-a0812dddfc41-2effe8ce, #w-node-_628cf814-e7d8-e12f-8527-6af4360d1218-413b115c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c84be45c-91a1-2748-5ea7-753ecea280ab-413b115c {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_75db4a23-d27a-7c07-8744-7de835adc49e-413b115c, #w-node-_442928de-6df5-4b55-3a59-81649042f3ca-413b115c, #w-node-f0cf0a06-fef1-d466-d732-19f96e847d0a-413b115c, #w-node-_968a5c99-fe87-6943-59e1-c40f6e1efb1b-413b115c, #w-node-_32e0729b-6495-6653-f9ae-14fe6c25e94e-413b115c, #w-node-_274b4c6f-3437-8937-5acc-d4b0de096d3d-413b115c, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b240-413b115c, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b241-413b115c, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b242-413b115c, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b243-413b115c, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b244-413b115c, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b245-413b115c {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d68a877e-980f-650a-b698-2f5847341bf6-413b115c {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_70830969-f958-c641-35be-1b79804ed1ad-413b115c {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-413b115c {
  grid-area: 2 / 1 / 3 / 4;
  justify-self: center;
}

#w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-413b115c {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_6259538c-c231-8915-c6e1-c3736f4d6447-413b115c {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-413b115c {
  grid-area: 1 / 5 / 2 / 6;
  justify-self: center;
}

#w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-413b115c {
  grid-area: 2 / 4 / 3 / 7;
  justify-self: center;
}

#w-node-d95af764-78ca-b23f-38e2-914b386ba402-413b115c {
  grid-area: 3 / 4 / 4 / 7;
}

#w-node-_72e1b337-0371-0b5b-f2bb-e9045c024a54-413b115c {
  grid-area: 1 / 6 / 2 / 8;
}

#w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-413b115c {
  grid-area: 1 / 8 / 2 / 9;
  justify-self: center;
}

#w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-413b115c {
  grid-area: 2 / 7 / 3 / 10;
  justify-self: center;
}

#w-node-_5077d8ef-c552-d198-808c-109009ff1397-413b115c {
  grid-area: 3 / 7 / 4 / 10;
}

#w-node-a0c6cac1-a1d8-a446-3c4c-5c0750dcdf76-413b115c {
  grid-area: 1 / 9 / 2 / 11;
}

#w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-413b115c {
  grid-area: 1 / 11 / 2 / 12;
  justify-self: center;
}

#w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-413b115c {
  grid-area: 2 / 10 / 3 / 13;
  justify-self: center;
}

#w-node-eadc272c-5a33-3665-a1b0-c2358e657984-413b115c {
  grid-area: 3 / 10 / 4 / 13;
}

#w-node-_3d0245b9-0980-e6aa-7a0f-9c9d27610e22-413b115c {
  grid-area: 1 / 12 / 2 / 13;
}

#w-node-e150faca-23a4-67af-b332-365c48fb20c0-413b115c, #w-node-_8b6e7c07-19ae-9037-5587-47d6da786c44-413b115c, #w-node-_313ae88c-d132-9c92-3142-7c681d8fdadb-413b115c, #w-node-b0bbd6bb-b527-8b84-e649-fecf59145594-413b115c, #w-node-_2255bbe5-ca44-3732-4a7e-facc9167371d-413b115c, #w-node-_9a138f7f-32b8-c134-833c-6637cd367f30-413b115c, #w-node-_16b4f03b-a0b6-b8aa-d2e4-a21d5117f97b-413b115c, #w-node-f3ccae8c-96f6-f707-82de-2b4b7c2fbe8a-413b115c, #w-node-_07e2fe75-06d2-58b5-4f71-eaa17c59676b-413b115c, #w-node-_326855e4-487c-69c7-9341-c8c1c3b95740-413b115c, #w-node-_71fd956c-7342-4770-fa4a-456ea5aabdfb-413b115c, #w-node-d7a9b4f2-9dc2-9bbc-4d24-f37f25e62261-413b115c, #w-node-_29e1a292-402f-7288-9372-a304a31f3a5d-413b115c, #w-node-_6c542046-8ecd-9b97-3876-d01dc9b8bf7e-413b115c, #w-node-db6fe5cc-2f87-1773-28be-a0812dddfc41-413b115c, #w-node-_628cf814-e7d8-e12f-8527-6af4360d1218-e0f439ed {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c84be45c-91a1-2748-5ea7-753ecea280ab-e0f439ed {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_75db4a23-d27a-7c07-8744-7de835adc49e-e0f439ed, #w-node-_442928de-6df5-4b55-3a59-81649042f3ca-e0f439ed, #w-node-f0cf0a06-fef1-d466-d732-19f96e847d0a-e0f439ed, #w-node-_968a5c99-fe87-6943-59e1-c40f6e1efb1b-e0f439ed, #w-node-_32e0729b-6495-6653-f9ae-14fe6c25e94e-e0f439ed, #w-node-_274b4c6f-3437-8937-5acc-d4b0de096d3d-e0f439ed, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b240-e0f439ed, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b241-e0f439ed, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b242-e0f439ed, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b243-e0f439ed, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b244-e0f439ed, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b245-e0f439ed {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d68a877e-980f-650a-b698-2f5847341bf6-e0f439ed {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_70830969-f958-c641-35be-1b79804ed1ad-e0f439ed {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-e0f439ed {
  grid-area: 2 / 1 / 3 / 4;
  justify-self: center;
}

#w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-e0f439ed {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_6259538c-c231-8915-c6e1-c3736f4d6447-e0f439ed {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-e0f439ed {
  grid-area: 1 / 5 / 2 / 6;
  justify-self: center;
}

#w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-e0f439ed {
  grid-area: 2 / 4 / 3 / 7;
  justify-self: center;
}

#w-node-d95af764-78ca-b23f-38e2-914b386ba402-e0f439ed {
  grid-area: 3 / 4 / 4 / 7;
}

#w-node-_72e1b337-0371-0b5b-f2bb-e9045c024a54-e0f439ed {
  grid-area: 1 / 6 / 2 / 8;
}

#w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-e0f439ed {
  grid-area: 1 / 8 / 2 / 9;
  justify-self: center;
}

#w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-e0f439ed {
  grid-area: 2 / 7 / 3 / 10;
  justify-self: center;
}

#w-node-_5077d8ef-c552-d198-808c-109009ff1397-e0f439ed {
  grid-area: 3 / 7 / 4 / 10;
}

#w-node-a0c6cac1-a1d8-a446-3c4c-5c0750dcdf76-e0f439ed {
  grid-area: 1 / 9 / 2 / 11;
}

#w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-e0f439ed {
  grid-area: 1 / 11 / 2 / 12;
  justify-self: center;
}

#w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-e0f439ed {
  grid-area: 2 / 10 / 3 / 13;
  justify-self: center;
}

#w-node-eadc272c-5a33-3665-a1b0-c2358e657984-e0f439ed {
  grid-area: 3 / 10 / 4 / 13;
}

#w-node-_3d0245b9-0980-e6aa-7a0f-9c9d27610e22-e0f439ed {
  grid-area: 1 / 12 / 2 / 13;
}

#w-node-e150faca-23a4-67af-b332-365c48fb20c0-e0f439ed, #w-node-_8b6e7c07-19ae-9037-5587-47d6da786c44-e0f439ed, #w-node-_313ae88c-d132-9c92-3142-7c681d8fdadb-e0f439ed, #w-node-b0bbd6bb-b527-8b84-e649-fecf59145594-e0f439ed, #w-node-_2255bbe5-ca44-3732-4a7e-facc9167371d-e0f439ed, #w-node-_9a138f7f-32b8-c134-833c-6637cd367f30-e0f439ed, #w-node-_16b4f03b-a0b6-b8aa-d2e4-a21d5117f97b-e0f439ed, #w-node-f3ccae8c-96f6-f707-82de-2b4b7c2fbe8a-e0f439ed, #w-node-_07e2fe75-06d2-58b5-4f71-eaa17c59676b-e0f439ed, #w-node-_326855e4-487c-69c7-9341-c8c1c3b95740-e0f439ed, #w-node-_71fd956c-7342-4770-fa4a-456ea5aabdfb-e0f439ed, #w-node-d7a9b4f2-9dc2-9bbc-4d24-f37f25e62261-e0f439ed, #w-node-_29e1a292-402f-7288-9372-a304a31f3a5d-e0f439ed, #w-node-_6c542046-8ecd-9b97-3876-d01dc9b8bf7e-e0f439ed, #w-node-db6fe5cc-2f87-1773-28be-a0812dddfc41-e0f439ed, #w-node-_628cf814-e7d8-e12f-8527-6af4360d1218-bfdd6f8d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c84be45c-91a1-2748-5ea7-753ecea280ab-bfdd6f8d {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_75db4a23-d27a-7c07-8744-7de835adc49e-bfdd6f8d, #w-node-_442928de-6df5-4b55-3a59-81649042f3ca-bfdd6f8d, #w-node-f0cf0a06-fef1-d466-d732-19f96e847d0a-bfdd6f8d, #w-node-_968a5c99-fe87-6943-59e1-c40f6e1efb1b-bfdd6f8d, #w-node-_32e0729b-6495-6653-f9ae-14fe6c25e94e-bfdd6f8d, #w-node-_274b4c6f-3437-8937-5acc-d4b0de096d3d-bfdd6f8d, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b240-bfdd6f8d, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b241-bfdd6f8d, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b242-bfdd6f8d, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b243-bfdd6f8d, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b244-bfdd6f8d, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b245-bfdd6f8d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d68a877e-980f-650a-b698-2f5847341bf6-bfdd6f8d {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_70830969-f958-c641-35be-1b79804ed1ad-bfdd6f8d {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-bfdd6f8d {
  grid-area: 2 / 1 / 3 / 4;
  justify-self: center;
}

#w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-bfdd6f8d {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_6259538c-c231-8915-c6e1-c3736f4d6447-bfdd6f8d {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-bfdd6f8d {
  grid-area: 1 / 5 / 2 / 6;
  justify-self: center;
}

#w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-bfdd6f8d {
  grid-area: 2 / 4 / 3 / 7;
  justify-self: center;
}

#w-node-d95af764-78ca-b23f-38e2-914b386ba402-bfdd6f8d {
  grid-area: 3 / 4 / 4 / 7;
}

#w-node-_72e1b337-0371-0b5b-f2bb-e9045c024a54-bfdd6f8d {
  grid-area: 1 / 6 / 2 / 8;
}

#w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-bfdd6f8d {
  grid-area: 1 / 8 / 2 / 9;
  justify-self: center;
}

#w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-bfdd6f8d {
  grid-area: 2 / 7 / 3 / 10;
  justify-self: center;
}

#w-node-_5077d8ef-c552-d198-808c-109009ff1397-bfdd6f8d {
  grid-area: 3 / 7 / 4 / 10;
}

#w-node-a0c6cac1-a1d8-a446-3c4c-5c0750dcdf76-bfdd6f8d {
  grid-area: 1 / 9 / 2 / 11;
}

#w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-bfdd6f8d {
  grid-area: 1 / 11 / 2 / 12;
  justify-self: center;
}

#w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-bfdd6f8d {
  grid-area: 2 / 10 / 3 / 13;
  justify-self: center;
}

#w-node-eadc272c-5a33-3665-a1b0-c2358e657984-bfdd6f8d {
  grid-area: 3 / 10 / 4 / 13;
}

#w-node-_3d0245b9-0980-e6aa-7a0f-9c9d27610e22-bfdd6f8d {
  grid-area: 1 / 12 / 2 / 13;
}

#w-node-e150faca-23a4-67af-b332-365c48fb20c0-bfdd6f8d, #w-node-_8b6e7c07-19ae-9037-5587-47d6da786c44-bfdd6f8d, #w-node-_313ae88c-d132-9c92-3142-7c681d8fdadb-bfdd6f8d, #w-node-b0bbd6bb-b527-8b84-e649-fecf59145594-bfdd6f8d, #w-node-_2255bbe5-ca44-3732-4a7e-facc9167371d-bfdd6f8d, #w-node-_9a138f7f-32b8-c134-833c-6637cd367f30-bfdd6f8d, #w-node-_16b4f03b-a0b6-b8aa-d2e4-a21d5117f97b-bfdd6f8d, #w-node-f3ccae8c-96f6-f707-82de-2b4b7c2fbe8a-bfdd6f8d, #w-node-_07e2fe75-06d2-58b5-4f71-eaa17c59676b-bfdd6f8d, #w-node-_326855e4-487c-69c7-9341-c8c1c3b95740-bfdd6f8d, #w-node-_71fd956c-7342-4770-fa4a-456ea5aabdfb-bfdd6f8d, #w-node-d7a9b4f2-9dc2-9bbc-4d24-f37f25e62261-bfdd6f8d, #w-node-_29e1a292-402f-7288-9372-a304a31f3a5d-bfdd6f8d, #w-node-_6c542046-8ecd-9b97-3876-d01dc9b8bf7e-bfdd6f8d, #w-node-db6fe5cc-2f87-1773-28be-a0812dddfc41-bfdd6f8d, #w-node-_628cf814-e7d8-e12f-8527-6af4360d1218-dd24b81d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c84be45c-91a1-2748-5ea7-753ecea280ab-dd24b81d {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_75db4a23-d27a-7c07-8744-7de835adc49e-dd24b81d, #w-node-_442928de-6df5-4b55-3a59-81649042f3ca-dd24b81d, #w-node-f0cf0a06-fef1-d466-d732-19f96e847d0a-dd24b81d, #w-node-_968a5c99-fe87-6943-59e1-c40f6e1efb1b-dd24b81d, #w-node-_32e0729b-6495-6653-f9ae-14fe6c25e94e-dd24b81d, #w-node-_274b4c6f-3437-8937-5acc-d4b0de096d3d-dd24b81d, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b240-dd24b81d, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b241-dd24b81d, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b242-dd24b81d, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b243-dd24b81d, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b244-dd24b81d, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b245-dd24b81d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d68a877e-980f-650a-b698-2f5847341bf6-dd24b81d {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_70830969-f958-c641-35be-1b79804ed1ad-dd24b81d {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-dd24b81d {
  grid-area: 2 / 1 / 3 / 4;
  justify-self: center;
}

#w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-dd24b81d {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_6259538c-c231-8915-c6e1-c3736f4d6447-dd24b81d {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-dd24b81d {
  grid-area: 1 / 5 / 2 / 6;
  justify-self: center;
}

#w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-dd24b81d {
  grid-area: 2 / 4 / 3 / 7;
  justify-self: center;
}

#w-node-d95af764-78ca-b23f-38e2-914b386ba402-dd24b81d {
  grid-area: 3 / 4 / 4 / 7;
}

#w-node-_72e1b337-0371-0b5b-f2bb-e9045c024a54-dd24b81d {
  grid-area: 1 / 6 / 2 / 8;
}

#w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-dd24b81d {
  grid-area: 1 / 8 / 2 / 9;
  justify-self: center;
}

#w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-dd24b81d {
  grid-area: 2 / 7 / 3 / 10;
  justify-self: center;
}

#w-node-_5077d8ef-c552-d198-808c-109009ff1397-dd24b81d {
  grid-area: 3 / 7 / 4 / 10;
}

#w-node-a0c6cac1-a1d8-a446-3c4c-5c0750dcdf76-dd24b81d {
  grid-area: 1 / 9 / 2 / 11;
}

#w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-dd24b81d {
  grid-area: 1 / 11 / 2 / 12;
  justify-self: center;
}

#w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-dd24b81d {
  grid-area: 2 / 10 / 3 / 13;
  justify-self: center;
}

#w-node-eadc272c-5a33-3665-a1b0-c2358e657984-dd24b81d {
  grid-area: 3 / 10 / 4 / 13;
}

#w-node-_3d0245b9-0980-e6aa-7a0f-9c9d27610e22-dd24b81d {
  grid-area: 1 / 12 / 2 / 13;
}

#w-node-e150faca-23a4-67af-b332-365c48fb20c0-dd24b81d, #w-node-_8b6e7c07-19ae-9037-5587-47d6da786c44-dd24b81d, #w-node-_313ae88c-d132-9c92-3142-7c681d8fdadb-dd24b81d, #w-node-b0bbd6bb-b527-8b84-e649-fecf59145594-dd24b81d, #w-node-_2255bbe5-ca44-3732-4a7e-facc9167371d-dd24b81d, #w-node-_9a138f7f-32b8-c134-833c-6637cd367f30-dd24b81d, #w-node-_16b4f03b-a0b6-b8aa-d2e4-a21d5117f97b-dd24b81d, #w-node-f3ccae8c-96f6-f707-82de-2b4b7c2fbe8a-dd24b81d, #w-node-_07e2fe75-06d2-58b5-4f71-eaa17c59676b-dd24b81d, #w-node-_326855e4-487c-69c7-9341-c8c1c3b95740-dd24b81d, #w-node-_71fd956c-7342-4770-fa4a-456ea5aabdfb-dd24b81d, #w-node-d7a9b4f2-9dc2-9bbc-4d24-f37f25e62261-dd24b81d, #w-node-_29e1a292-402f-7288-9372-a304a31f3a5d-dd24b81d, #w-node-_6c542046-8ecd-9b97-3876-d01dc9b8bf7e-dd24b81d, #w-node-db6fe5cc-2f87-1773-28be-a0812dddfc41-dd24b81d, #w-node-_628cf814-e7d8-e12f-8527-6af4360d1218-baced991 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-c84be45c-91a1-2748-5ea7-753ecea280ab-baced991 {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

#w-node-_75db4a23-d27a-7c07-8744-7de835adc49e-baced991, #w-node-_442928de-6df5-4b55-3a59-81649042f3ca-baced991, #w-node-f0cf0a06-fef1-d466-d732-19f96e847d0a-baced991, #w-node-_968a5c99-fe87-6943-59e1-c40f6e1efb1b-baced991, #w-node-_32e0729b-6495-6653-f9ae-14fe6c25e94e-baced991, #w-node-_274b4c6f-3437-8937-5acc-d4b0de096d3d-baced991, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b240-baced991, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b241-baced991, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b242-baced991, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b243-baced991, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b244-baced991, #w-node-_71bf7c22-6ca5-2265-8575-a03ea487b245-baced991 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d68a877e-980f-650a-b698-2f5847341bf6-baced991 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_70830969-f958-c641-35be-1b79804ed1ad-baced991 {
  grid-area: 1 / 2 / 2 / 3;
  justify-self: center;
}

#w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-baced991 {
  grid-area: 2 / 1 / 3 / 4;
  justify-self: center;
}

#w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-baced991 {
  grid-area: 3 / 1 / 4 / 4;
}

#w-node-_6259538c-c231-8915-c6e1-c3736f4d6447-baced991 {
  grid-area: 1 / 3 / 2 / 5;
}

#w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-baced991 {
  grid-area: 1 / 5 / 2 / 6;
  justify-self: center;
}

#w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-baced991 {
  grid-area: 2 / 4 / 3 / 7;
  justify-self: center;
}

#w-node-d95af764-78ca-b23f-38e2-914b386ba402-baced991 {
  grid-area: 3 / 4 / 4 / 7;
}

#w-node-_72e1b337-0371-0b5b-f2bb-e9045c024a54-baced991 {
  grid-area: 1 / 6 / 2 / 8;
}

#w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-baced991 {
  grid-area: 1 / 8 / 2 / 9;
  justify-self: center;
}

#w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-baced991 {
  grid-area: 2 / 7 / 3 / 10;
  justify-self: center;
}

#w-node-_5077d8ef-c552-d198-808c-109009ff1397-baced991 {
  grid-area: 3 / 7 / 4 / 10;
}

#w-node-a0c6cac1-a1d8-a446-3c4c-5c0750dcdf76-baced991 {
  grid-area: 1 / 9 / 2 / 11;
}

#w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-baced991 {
  grid-area: 1 / 11 / 2 / 12;
  justify-self: center;
}

#w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-baced991 {
  grid-area: 2 / 10 / 3 / 13;
  justify-self: center;
}

#w-node-eadc272c-5a33-3665-a1b0-c2358e657984-baced991 {
  grid-area: 3 / 10 / 4 / 13;
}

#w-node-_3d0245b9-0980-e6aa-7a0f-9c9d27610e22-baced991 {
  grid-area: 1 / 12 / 2 / 13;
}

#w-node-e150faca-23a4-67af-b332-365c48fb20c0-baced991, #w-node-_8b6e7c07-19ae-9037-5587-47d6da786c44-baced991, #w-node-_313ae88c-d132-9c92-3142-7c681d8fdadb-baced991, #w-node-b0bbd6bb-b527-8b84-e649-fecf59145594-baced991, #w-node-_2255bbe5-ca44-3732-4a7e-facc9167371d-baced991, #w-node-_9a138f7f-32b8-c134-833c-6637cd367f30-baced991, #w-node-_16b4f03b-a0b6-b8aa-d2e4-a21d5117f97b-baced991, #w-node-f3ccae8c-96f6-f707-82de-2b4b7c2fbe8a-baced991, #w-node-_07e2fe75-06d2-58b5-4f71-eaa17c59676b-baced991, #w-node-_326855e4-487c-69c7-9341-c8c1c3b95740-baced991, #w-node-_71fd956c-7342-4770-fa4a-456ea5aabdfb-baced991, #w-node-d7a9b4f2-9dc2-9bbc-4d24-f37f25e62261-baced991, #w-node-_29e1a292-402f-7288-9372-a304a31f3a5d-baced991, #w-node-_6c542046-8ecd-9b97-3876-d01dc9b8bf7e-baced991, #w-node-db6fe5cc-2f87-1773-28be-a0812dddfc41-baced991 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_3c909140-8bcb-9836-cc72-55f4e5faea8f-a1a5f93d, #w-node-_3c909140-8bcb-9836-cc72-55f4e5faea92-a1a5f93d, #w-node-_3c909140-8bcb-9836-cc72-55f4e5faea95-a1a5f93d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-_3c909140-8bcb-9836-cc72-55f4e5faea98-a1a5f93d, #w-node-_5beafbcb-b253-e1e9-edb3-70800f0fab75-a1a5f93d, #w-node-d9b1c162-2480-a61e-1a10-bb0fe62ec3d8-a1a5f93d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d9b1c162-2480-a61e-1a10-bb0fe62ec3dc-a1a5f93d, #w-node-d9b1c162-2480-a61e-1a10-bb0fe62ec3df-a1a5f93d, #w-node-d9b1c162-2480-a61e-1a10-bb0fe62ec3e2-a1a5f93d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-d9b1c162-2480-a61e-1a10-bb0fe62ec3e5-a1a5f93d, #w-node-be227d1a-7596-069e-cc46-b197e582d9aa-a1a5f93d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-be227d1a-7596-069e-cc46-b197e582d9ae-a1a5f93d, #w-node-be227d1a-7596-069e-cc46-b197e582d9b1-a1a5f93d, #w-node-be227d1a-7596-069e-cc46-b197e582d9b4-a1a5f93d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: center;
}

#w-node-be227d1a-7596-069e-cc46-b197e582d9b7-a1a5f93d, #w-node-_6cb78584-fbe1-44ab-8e4f-786fc5a5a888-a1a5f93d, #w-node-_792b1ec7-7096-8d27-6cd3-fb16535d4d01-a1a5f93d, #w-node-c4d6e86d-e64a-c3ea-a2ad-9fdc058cf328-a1a5f93d, #w-node-_9fdb7d71-097f-8873-d40c-52e34f9eb7bb-a1a5f93d, #w-node-_225c5cbe-ac89-7627-7a1b-d132e0eec380-a1a5f93d, #w-node-a3e24ff6-4f60-eadb-2767-46d28b27751d-a1a5f93d, #w-node-c4cf5cab-8238-8f6b-c6ae-2517aeac36a0-a1a5f93d, #w-node-c0920411-9627-5d7e-acc0-ee4713fa36be-a1a5f93d, #w-node-_4310e4e8-ec73-8725-f59a-b3920c0949ca-a1a5f93d, #w-node-ed9b114b-659e-a82b-faa5-1c703c624913-a1a5f93d, #w-node-_26887a87-bfe1-0acb-dc95-846fe93b0356-a1a5f93d, #w-node-d6f98dc7-8aa0-429f-ddd3-89e01c5f226c-a1a5f93d, #w-node-_2e8da67d-37a0-ce3a-1a51-82fbe9c4be5a-a1a5f93d {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-d6d2285b-c98a-2a33-9417-26668111cf3c-a1a5f93d {
  grid-area: span 1 / span 1 / span 1 / span 1;
  justify-self: stretch;
}

#w-node-_6b717216-818d-c07f-d397-7e0711fa4d75-6a55dbf9, #w-node-_6b717216-818d-c07f-d397-7e0711fa4d7e-6a55dbf9, #w-node-_6b717216-818d-c07f-d397-7e0711fa4d87-6a55dbf9 {
  align-self: start;
}

#w-node-_1772402d-6600-f134-0770-8f983ce149d4-6a55dbf9, #w-node-_1772402d-6600-f134-0770-8f983ce149d6-6a55dbf9, #w-node-_1772402d-6600-f134-0770-8f983ce149d8-6a55dbf9, #w-node-_1772402d-6600-f134-0770-8f983ce149da-6a55dbf9, #w-node-_1772402d-6600-f134-0770-8f983ce149dc-6a55dbf9 {
  justify-self: center;
}

#w-node-e5796fbc-4029-96bd-9ca8-e029af51a7d6-21c338be, #w-node-e5796fbc-4029-96bd-9ca8-e029af51a7db-21c338be, #w-node-e5796fbc-4029-96bd-9ca8-e029af51a7e0-21c338be, #w-node-_814676b6-af03-e939-37e4-66f35f0d6fe4-21c338be, #w-node-_200cea92-5594-7581-15a8-1f560f8659ec-21c338be, #w-node-_7b9332e9-2636-c61d-41b4-e83d28255dba-21c338be, #w-node-_8524e445-d78a-769f-ec63-01bb26047616-21c338be {
  align-self: start;
}

#w-node-_560c063b-1eab-3d62-f98a-6d20ac83a591-8c7a53ab {
  grid-area: 1 / 1 / 3 / 2;
}

#w-node-_560c063b-1eab-3d62-f98a-6d20ac83a5a9-8c7a53ab, #w-node-_34b41f34-071c-e5a9-38e2-9c20f5744e7a-8c7a53ab, #w-node-_5fab3ff3-531f-76ce-e932-974f67028ded-8c7a53ab, #w-node-_2257838a-91ad-9bb8-c458-465781b09783-8c7a53ab, #w-node-dbc30cf5-f677-6f5f-10b9-8078f2dafa9b-8c7a53ab, #w-node-_560c063b-1eab-3d62-f98a-6d20ac83a5b0-8c7a53ab, #w-node-_560c063b-1eab-3d62-f98a-6d20ac83a5b5-8c7a53ab, #w-node-_560c063b-1eab-3d62-f98a-6d20ac83a5bc-8c7a53ab, #w-node-_560c063b-1eab-3d62-f98a-6d20ac83a5c4-8c7a53ab, #w-node-_560c063b-1eab-3d62-f98a-6d20ac83a5c9-8c7a53ab, #w-node-_541862a3-2d35-b9f6-cbc6-91eac76eb3d7-8c7a53ab {
  align-self: start;
}

#w-node-e813e8b4-cc93-7667-86a6-c4660c30ceb4-8c7a53ab {
  grid-area: 2 / 2 / 4 / 5;
  align-self: end;
}

#w-node-e0d5b242-407e-6dab-872a-8624932ce8cc-8c7a53ab {
  grid-area: 1 / 4 / 3 / 5;
}

#w-node-e0d5b242-407e-6dab-872a-8624932ce8e0-8c7a53ab, #w-node-_74f1eb17-a309-2aaa-b63a-0c667ee9be6d-8c7a53ab, #w-node-_23430e1b-e108-bb3b-8f26-f1bfec505ed4-8c7a53ab, #w-node-_86318bc0-8d37-7d63-793d-9603f19bd7cb-8c7a53ab, #w-node-_83973218-de0f-e79b-2de4-8e6c204924f3-8c7a53ab, #w-node-e0d5b242-407e-6dab-872a-8624932ce8e5-8c7a53ab, #w-node-e0d5b242-407e-6dab-872a-8624932ce8ec-8c7a53ab, #w-node-e0d5b242-407e-6dab-872a-8624932ce8f3-8c7a53ab, #w-node-e0d5b242-407e-6dab-872a-8624932ce8fa-8c7a53ab, #w-node-e0d5b242-407e-6dab-872a-8624932ce901-8c7a53ab, #w-node-e0d5b242-407e-6dab-872a-8624932ce906-8c7a53ab, #w-node-e0d5b242-407e-6dab-872a-8624932ce90b-8c7a53ab, #w-node-e0d5b242-407e-6dab-872a-8624932ce910-8c7a53ab, #w-node-_3a6753df-c415-d2cb-0cd8-6e3d9b64acde-8c7a53ab {
  align-self: start;
}

#w-node-_878d7bad-a801-2b10-e919-8121f7d4f6a3-8c7a53ab {
  grid-area: 2 / 1 / 4 / 2;
  align-self: end;
}

#w-node-_541dce4c-4d7f-7f24-89bf-20615d18d725-8c7a53ab {
  grid-area: 1 / 2 / 3 / 3;
}

#w-node-_541dce4c-4d7f-7f24-89bf-20615d18d738-8c7a53ab, #w-node-_95149356-0077-8a02-d8c2-63cc355c3bc2-8c7a53ab, #w-node-fe9b97be-b102-38bd-1abd-2cbdf0ed2d72-8c7a53ab, #w-node-bafc4b80-43cd-63f1-f19c-1afa98d1f746-8c7a53ab, #w-node-af673dcb-4e5f-e692-1a96-8267c36f85db-8c7a53ab, #w-node-_541dce4c-4d7f-7f24-89bf-20615d18d73d-8c7a53ab, #w-node-_541dce4c-4d7f-7f24-89bf-20615d18d744-8c7a53ab, #w-node-_541dce4c-4d7f-7f24-89bf-20615d18d74b-8c7a53ab, #w-node-_541dce4c-4d7f-7f24-89bf-20615d18d752-8c7a53ab, #w-node-_541dce4c-4d7f-7f24-89bf-20615d18d759-8c7a53ab, #w-node-_541dce4c-4d7f-7f24-89bf-20615d18d75e-8c7a53ab, #w-node-_7737001e-194b-e85f-7d8d-a2ab74fdb4d4-8c7a53ab {
  align-self: start;
}

#w-node-_20c8c7ad-2a63-d135-2750-53e070e58967-8c7a53ab {
  grid-area: 1 / 3 / 3 / 4;
}

#w-node-_20c8c7ad-2a63-d135-2750-53e070e5897b-8c7a53ab, #w-node-a0f5a3ca-e18c-5caf-f3cd-aa74f318326b-8c7a53ab, #w-node-_97a5ce38-b46f-34b9-06d9-a341871f03a2-8c7a53ab, #w-node-b584cf79-fbc8-3525-4b41-9968e107ff94-8c7a53ab, #w-node-_72cca844-edab-9f1d-26c6-846a4c22d93f-8c7a53ab, #w-node-_20c8c7ad-2a63-d135-2750-53e070e58980-8c7a53ab, #w-node-_20c8c7ad-2a63-d135-2750-53e070e58987-8c7a53ab, #w-node-_20c8c7ad-2a63-d135-2750-53e070e5898e-8c7a53ab, #w-node-_20c8c7ad-2a63-d135-2750-53e070e58995-8c7a53ab, #w-node-_20c8c7ad-2a63-d135-2750-53e070e5899c-8c7a53ab, #w-node-_20c8c7ad-2a63-d135-2750-53e070e589a1-8c7a53ab, #w-node-_20c8c7ad-2a63-d135-2750-53e070e589a6-8c7a53ab, #w-node-a86ae7ef-14a0-77a8-eb5a-76fdef6e4754-8c7a53ab {
  align-self: start;
}

@media screen and (max-width: 991px) {
  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-2c5ca299 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-2c5ca299 {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: start;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-2c5ca299 {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-2c5ca299 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-2c5ca299 {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-2c5ca299 {
    grid-area: 2 / 3 / 3 / 4;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-2c5ca299 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-2c5ca299 {
    grid-area: 3 / 2 / 4 / 3;
    justify-self: start;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-2c5ca299 {
    grid-area: 3 / 3 / 4 / 4;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-2c5ca299 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-2c5ca299 {
    grid-area: 4 / 2 / 5 / 3;
    justify-self: start;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-2c5ca299 {
    grid-area: 4 / 3 / 5 / 4;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-a4541ebb {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-a4541ebb {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: start;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-a4541ebb {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-a4541ebb {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-a4541ebb {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-a4541ebb {
    grid-area: 2 / 3 / 3 / 4;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-a4541ebb {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-a4541ebb {
    grid-area: 3 / 2 / 4 / 3;
    justify-self: start;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-a4541ebb {
    grid-area: 3 / 3 / 4 / 4;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-a4541ebb {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-a4541ebb {
    grid-area: 4 / 2 / 5 / 3;
    justify-self: start;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-a4541ebb {
    grid-area: 4 / 3 / 5 / 4;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-dca18fc1 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-dca18fc1 {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: start;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-dca18fc1 {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-dca18fc1 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-dca18fc1 {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-dca18fc1 {
    grid-area: 2 / 3 / 3 / 4;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-dca18fc1 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-dca18fc1 {
    grid-area: 3 / 2 / 4 / 3;
    justify-self: start;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-dca18fc1 {
    grid-area: 3 / 3 / 4 / 4;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-dca18fc1 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-dca18fc1 {
    grid-area: 4 / 2 / 5 / 3;
    justify-self: start;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-dca18fc1 {
    grid-area: 4 / 3 / 5 / 4;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-def3e860 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-def3e860 {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: start;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-def3e860 {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-def3e860 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-def3e860 {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-def3e860 {
    grid-area: 2 / 3 / 3 / 4;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-def3e860 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-def3e860 {
    grid-area: 3 / 2 / 4 / 3;
    justify-self: start;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-def3e860 {
    grid-area: 3 / 3 / 4 / 4;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-def3e860 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-def3e860 {
    grid-area: 4 / 2 / 5 / 3;
    justify-self: start;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-def3e860 {
    grid-area: 4 / 3 / 5 / 4;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-2effe8ce {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-2effe8ce {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: start;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-2effe8ce {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-2effe8ce {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-2effe8ce {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-2effe8ce {
    grid-area: 2 / 3 / 3 / 4;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-2effe8ce {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-2effe8ce {
    grid-area: 3 / 2 / 4 / 3;
    justify-self: start;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-2effe8ce {
    grid-area: 3 / 3 / 4 / 4;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-2effe8ce {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-2effe8ce {
    grid-area: 4 / 2 / 5 / 3;
    justify-self: start;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-2effe8ce {
    grid-area: 4 / 3 / 5 / 4;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-413b115c {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-413b115c {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: start;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-413b115c {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-413b115c {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-413b115c {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-413b115c {
    grid-area: 2 / 3 / 3 / 4;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-413b115c {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-413b115c {
    grid-area: 3 / 2 / 4 / 3;
    justify-self: start;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-413b115c {
    grid-area: 3 / 3 / 4 / 4;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-413b115c {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-413b115c {
    grid-area: 4 / 2 / 5 / 3;
    justify-self: start;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-413b115c {
    grid-area: 4 / 3 / 5 / 4;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-e0f439ed {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-e0f439ed {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: start;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-e0f439ed {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-e0f439ed {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-e0f439ed {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-e0f439ed {
    grid-area: 2 / 3 / 3 / 4;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-e0f439ed {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-e0f439ed {
    grid-area: 3 / 2 / 4 / 3;
    justify-self: start;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-e0f439ed {
    grid-area: 3 / 3 / 4 / 4;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-e0f439ed {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-e0f439ed {
    grid-area: 4 / 2 / 5 / 3;
    justify-self: start;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-e0f439ed {
    grid-area: 4 / 3 / 5 / 4;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-bfdd6f8d {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-bfdd6f8d {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: start;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-bfdd6f8d {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-bfdd6f8d {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-bfdd6f8d {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-bfdd6f8d {
    grid-area: 2 / 3 / 3 / 4;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-bfdd6f8d {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-bfdd6f8d {
    grid-area: 3 / 2 / 4 / 3;
    justify-self: start;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-bfdd6f8d {
    grid-area: 3 / 3 / 4 / 4;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-bfdd6f8d {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-bfdd6f8d {
    grid-area: 4 / 2 / 5 / 3;
    justify-self: start;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-bfdd6f8d {
    grid-area: 4 / 3 / 5 / 4;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-dd24b81d {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-dd24b81d {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: start;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-dd24b81d {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-dd24b81d {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-dd24b81d {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-dd24b81d {
    grid-area: 2 / 3 / 3 / 4;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-dd24b81d {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-dd24b81d {
    grid-area: 3 / 2 / 4 / 3;
    justify-self: start;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-dd24b81d {
    grid-area: 3 / 3 / 4 / 4;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-dd24b81d {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-dd24b81d {
    grid-area: 4 / 2 / 5 / 3;
    justify-self: start;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-dd24b81d {
    grid-area: 4 / 3 / 5 / 4;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-baced991 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-baced991 {
    grid-area: 1 / 2 / 2 / 3;
    justify-self: start;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-baced991 {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-baced991 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-baced991 {
    grid-area: 2 / 2 / 3 / 3;
    justify-self: start;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-baced991 {
    grid-area: 2 / 3 / 3 / 4;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-baced991 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-baced991 {
    grid-area: 3 / 2 / 4 / 3;
    justify-self: start;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-baced991 {
    grid-area: 3 / 3 / 4 / 4;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-baced991 {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-baced991 {
    grid-area: 4 / 2 / 5 / 3;
    justify-self: start;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-baced991 {
    grid-area: 4 / 3 / 5 / 4;
  }

  #w-node-_560c063b-1eab-3d62-f98a-6d20ac83a591-8c7a53ab {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-e813e8b4-cc93-7667-86a6-c4660c30ceb4-8c7a53ab {
    grid-area: 3 / 1 / 5 / 3;
    align-self: end;
  }

  #w-node-e0d5b242-407e-6dab-872a-8624932ce8cc-8c7a53ab {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_878d7bad-a801-2b10-e919-8121f7d4f6a3-8c7a53ab {
    grid-area: span 2 / span 1 / span 2 / span 1;
  }

  #w-node-_541dce4c-4d7f-7f24-89bf-20615d18d725-8c7a53ab {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_20c8c7ad-2a63-d135-2750-53e070e58967-8c7a53ab {
    grid-area: 2 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-2c5ca299 {
    justify-self: start;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-2c5ca299 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-2c5ca299 {
    grid-area: 3 / 1 / 4 / 2;
    justify-self: start;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-2c5ca299 {
    grid-area: 4 / 1 / 5 / 2;
    justify-self: start;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-2c5ca299 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-2c5ca299 {
    grid-area: 6 / 1 / 7 / 2;
    justify-self: start;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-2c5ca299 {
    grid-area: 7 / 1 / 8 / 2;
    justify-self: start;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-2c5ca299 {
    grid-area: 8 / 1 / 9 / 2;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-2c5ca299 {
    grid-area: 9 / 1 / 10 / 2;
    justify-self: start;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-2c5ca299 {
    grid-area: 10 / 1 / 11 / 2;
    justify-self: start;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-2c5ca299 {
    grid-area: 11 / 1 / 12 / 2;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-2c5ca299 {
    grid-area: 12 / 1 / 13 / 2;
    justify-self: start;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-e0f439ed, #w-node-_70830969-f958-c641-35be-1b79804ed1ad-bfdd6f8d {
    justify-self: start;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-bfdd6f8d {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-bfdd6f8d {
    grid-area: 3 / 1 / 4 / 2;
    justify-self: start;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-bfdd6f8d {
    grid-area: 4 / 1 / 5 / 2;
    justify-self: start;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-bfdd6f8d {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-bfdd6f8d {
    grid-area: 6 / 1 / 7 / 2;
    justify-self: start;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-bfdd6f8d {
    grid-area: 7 / 1 / 8 / 2;
    justify-self: start;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-bfdd6f8d {
    grid-area: 8 / 1 / 9 / 2;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-bfdd6f8d {
    grid-area: 9 / 1 / 10 / 2;
    justify-self: start;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-bfdd6f8d {
    grid-area: 10 / 1 / 11 / 2;
    justify-self: start;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-bfdd6f8d {
    grid-area: 11 / 1 / 12 / 2;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-bfdd6f8d {
    grid-area: 12 / 1 / 13 / 2;
    justify-self: start;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-dd24b81d {
    justify-self: start;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-dd24b81d {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-dd24b81d {
    grid-area: 3 / 1 / 4 / 2;
    justify-self: start;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-dd24b81d {
    grid-area: 4 / 1 / 5 / 2;
    justify-self: start;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-dd24b81d {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-dd24b81d {
    grid-area: 6 / 1 / 7 / 2;
    justify-self: start;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-dd24b81d {
    grid-area: 7 / 1 / 8 / 2;
    justify-self: start;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-dd24b81d {
    grid-area: 8 / 1 / 9 / 2;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-dd24b81d {
    grid-area: 9 / 1 / 10 / 2;
    justify-self: start;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-dd24b81d {
    grid-area: 10 / 1 / 11 / 2;
    justify-self: start;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-dd24b81d {
    grid-area: 11 / 1 / 12 / 2;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-dd24b81d {
    grid-area: 12 / 1 / 13 / 2;
    justify-self: start;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-baced991 {
    justify-self: start;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-baced991 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-baced991 {
    grid-area: 3 / 1 / 4 / 2;
    justify-self: start;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-baced991 {
    grid-area: 4 / 1 / 5 / 2;
    justify-self: start;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-baced991 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-baced991 {
    grid-area: 6 / 1 / 7 / 2;
    justify-self: start;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-baced991 {
    grid-area: 7 / 1 / 8 / 2;
    justify-self: start;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-baced991 {
    grid-area: 8 / 1 / 9 / 2;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-baced991 {
    grid-area: 9 / 1 / 10 / 2;
    justify-self: start;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-baced991 {
    grid-area: 10 / 1 / 11 / 2;
    justify-self: start;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-baced991 {
    grid-area: 11 / 1 / 12 / 2;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-baced991 {
    grid-area: 12 / 1 / 13 / 2;
    justify-self: start;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-2c5ca299 {
    justify-self: start;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-2c5ca299 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-2c5ca299 {
    grid-area: 3 / 1 / 4 / 2;
    justify-self: start;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-2c5ca299 {
    grid-area: 4 / 1 / 5 / 2;
    justify-self: start;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-2c5ca299 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-2c5ca299 {
    grid-area: 6 / 1 / 7 / 2;
    justify-self: start;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-2c5ca299 {
    grid-area: 7 / 1 / 8 / 2;
    justify-self: start;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-2c5ca299 {
    grid-area: 8 / 1 / 9 / 2;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-2c5ca299 {
    grid-area: 9 / 1 / 10 / 2;
    justify-self: start;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-2c5ca299 {
    grid-area: 10 / 1 / 11 / 2;
    justify-self: start;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-2c5ca299 {
    grid-area: 11 / 1 / 12 / 2;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-2c5ca299 {
    grid-area: 12 / 1 / 13 / 2;
    justify-self: start;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-a4541ebb {
    justify-self: start;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-a4541ebb {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-a4541ebb {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-a4541ebb {
    grid-area: 4 / 1 / 5 / 2;
    justify-self: start;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-a4541ebb {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-a4541ebb {
    grid-area: 6 / 1 / 7 / 2;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-a4541ebb {
    grid-area: 7 / 1 / 8 / 2;
    justify-self: start;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-a4541ebb {
    grid-area: 8 / 1 / 9 / 2;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-a4541ebb {
    grid-area: 9 / 1 / 10 / 2;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-a4541ebb {
    grid-area: 10 / 1 / 11 / 2;
    justify-self: start;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-a4541ebb {
    grid-area: 11 / 1 / 12 / 2;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-a4541ebb {
    grid-area: 12 / 1 / 13 / 2;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-dca18fc1 {
    justify-self: start;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-dca18fc1 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-dca18fc1 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-dca18fc1 {
    grid-area: 4 / 1 / 5 / 2;
    justify-self: start;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-dca18fc1 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-dca18fc1 {
    grid-area: 6 / 1 / 7 / 2;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-dca18fc1 {
    grid-area: 7 / 1 / 8 / 2;
    justify-self: start;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-dca18fc1 {
    grid-area: 8 / 1 / 9 / 2;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-dca18fc1 {
    grid-area: 9 / 1 / 10 / 2;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-dca18fc1 {
    grid-area: 10 / 1 / 11 / 2;
    justify-self: start;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-dca18fc1 {
    grid-area: 11 / 1 / 12 / 2;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-dca18fc1 {
    grid-area: 12 / 1 / 13 / 2;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-def3e860 {
    justify-self: start;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-def3e860 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-def3e860 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-def3e860 {
    grid-area: 4 / 1 / 5 / 2;
    justify-self: start;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-def3e860 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-def3e860 {
    grid-area: 6 / 1 / 7 / 2;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-def3e860 {
    grid-area: 7 / 1 / 8 / 2;
    justify-self: start;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-def3e860 {
    grid-area: 8 / 1 / 9 / 2;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-def3e860 {
    grid-area: 9 / 1 / 10 / 2;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-def3e860 {
    grid-area: 10 / 1 / 11 / 2;
    justify-self: start;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-def3e860 {
    grid-area: 11 / 1 / 12 / 2;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-def3e860 {
    grid-area: 12 / 1 / 13 / 2;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-2effe8ce {
    justify-self: start;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-2effe8ce {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-2effe8ce {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-2effe8ce {
    grid-area: 4 / 1 / 5 / 2;
    justify-self: start;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-2effe8ce {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-2effe8ce {
    grid-area: 6 / 1 / 7 / 2;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-2effe8ce {
    grid-area: 7 / 1 / 8 / 2;
    justify-self: start;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-2effe8ce {
    grid-area: 8 / 1 / 9 / 2;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-2effe8ce {
    grid-area: 9 / 1 / 10 / 2;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-2effe8ce {
    grid-area: 10 / 1 / 11 / 2;
    justify-self: start;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-2effe8ce {
    grid-area: 11 / 1 / 12 / 2;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-2effe8ce {
    grid-area: 12 / 1 / 13 / 2;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-413b115c {
    justify-self: start;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-413b115c {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-413b115c {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-413b115c {
    grid-area: 4 / 1 / 5 / 2;
    justify-self: start;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-413b115c {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-413b115c {
    grid-area: 6 / 1 / 7 / 2;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-413b115c {
    grid-area: 7 / 1 / 8 / 2;
    justify-self: start;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-413b115c {
    grid-area: 8 / 1 / 9 / 2;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-413b115c {
    grid-area: 9 / 1 / 10 / 2;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-413b115c {
    grid-area: 10 / 1 / 11 / 2;
    justify-self: start;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-413b115c {
    grid-area: 11 / 1 / 12 / 2;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-413b115c {
    grid-area: 12 / 1 / 13 / 2;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-e0f439ed {
    justify-self: start;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-e0f439ed {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-e0f439ed {
    grid-area: 3 / 1 / 4 / 2;
    justify-self: auto;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-e0f439ed {
    grid-area: 4 / 1 / 5 / 2;
    justify-self: start;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-e0f439ed {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-e0f439ed {
    grid-area: 6 / 1 / 7 / 2;
    justify-self: auto;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-e0f439ed {
    grid-area: 7 / 1 / 8 / 2;
    justify-self: start;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-e0f439ed {
    grid-area: 8 / 1 / 9 / 2;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-e0f439ed {
    grid-area: 9 / 1 / 10 / 2;
    justify-self: auto;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-e0f439ed {
    grid-area: 10 / 1 / 11 / 2;
    justify-self: start;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-e0f439ed {
    grid-area: 11 / 1 / 12 / 2;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-e0f439ed {
    grid-area: 12 / 1 / 13 / 2;
    justify-self: auto;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-bfdd6f8d {
    justify-self: start;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-bfdd6f8d {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-bfdd6f8d {
    grid-area: 3 / 1 / 4 / 2;
    justify-self: start;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-bfdd6f8d {
    grid-area: 4 / 1 / 5 / 2;
    justify-self: start;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-bfdd6f8d {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-bfdd6f8d {
    grid-area: 6 / 1 / 7 / 2;
    justify-self: start;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-bfdd6f8d {
    grid-area: 7 / 1 / 8 / 2;
    justify-self: start;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-bfdd6f8d {
    grid-area: 8 / 1 / 9 / 2;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-bfdd6f8d {
    grid-area: 9 / 1 / 10 / 2;
    justify-self: start;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-bfdd6f8d {
    grid-area: 10 / 1 / 11 / 2;
    justify-self: start;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-bfdd6f8d {
    grid-area: 11 / 1 / 12 / 2;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-bfdd6f8d {
    grid-area: 12 / 1 / 13 / 2;
    justify-self: start;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-dd24b81d {
    justify-self: start;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-dd24b81d {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-dd24b81d {
    grid-area: 3 / 1 / 4 / 2;
    justify-self: start;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-dd24b81d {
    grid-area: 4 / 1 / 5 / 2;
    justify-self: start;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-dd24b81d {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-dd24b81d {
    grid-area: 6 / 1 / 7 / 2;
    justify-self: start;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-dd24b81d {
    grid-area: 7 / 1 / 8 / 2;
    justify-self: start;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-dd24b81d {
    grid-area: 8 / 1 / 9 / 2;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-dd24b81d {
    grid-area: 9 / 1 / 10 / 2;
    justify-self: start;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-dd24b81d {
    grid-area: 10 / 1 / 11 / 2;
    justify-self: start;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-dd24b81d {
    grid-area: 11 / 1 / 12 / 2;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-dd24b81d {
    grid-area: 12 / 1 / 13 / 2;
    justify-self: start;
  }

  #w-node-_70830969-f958-c641-35be-1b79804ed1ad-baced991 {
    justify-self: start;
  }

  #w-node-_670d4b81-2611-aa6e-e8cb-c04c05b56de5-baced991 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_107301c2-b67f-3c68-00ca-7a74ad5ce6e5-baced991 {
    grid-area: 3 / 1 / 4 / 2;
    justify-self: start;
  }

  #w-node-_52501b3a-8da6-e29f-ebfd-86c14e3f39a9-baced991 {
    grid-area: 4 / 1 / 5 / 2;
    justify-self: start;
  }

  #w-node-_0567a1e5-1d99-8ddd-2e45-652de4ff18ba-baced991 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-d95af764-78ca-b23f-38e2-914b386ba402-baced991 {
    grid-area: 6 / 1 / 7 / 2;
    justify-self: start;
  }

  #w-node-c975c10c-a959-2953-8b2f-6b42d2e95010-baced991 {
    grid-area: 7 / 1 / 8 / 2;
    justify-self: start;
  }

  #w-node-_44af9e91-9c61-5f31-6c9f-67467269583a-baced991 {
    grid-area: 8 / 1 / 9 / 2;
  }

  #w-node-_5077d8ef-c552-d198-808c-109009ff1397-baced991 {
    grid-area: 9 / 1 / 10 / 2;
    justify-self: start;
  }

  #w-node-_7af05037-414f-0afa-5cb7-0a02efb0c5ae-baced991 {
    grid-area: 10 / 1 / 11 / 2;
    justify-self: start;
  }

  #w-node-_531fb6fe-47a6-bef6-0bcd-f05b471251e8-baced991 {
    grid-area: 11 / 1 / 12 / 2;
  }

  #w-node-eadc272c-5a33-3665-a1b0-c2358e657984-baced991 {
    grid-area: 12 / 1 / 13 / 2;
    justify-self: start;
  }

  #w-node-dec94109-2c40-3013-7e2b-80c4cc26270a-a1a5f93d {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }

  #w-node-_1119ad67-c60a-f82a-d59b-f0e12a73ab91-aca2d599 {
    order: 9999;
    align-self: auto;
    justify-self: auto;
  }

  #w-node-_560c063b-1eab-3d62-f98a-6d20ac83a591-8c7a53ab {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-e813e8b4-cc93-7667-86a6-c4660c30ceb4-8c7a53ab {
    grid-area: 5 / 1 / 6 / 2;
    align-self: end;
  }

  #w-node-e0d5b242-407e-6dab-872a-8624932ce8cc-8c7a53ab {
    grid-area: 4 / 1 / 5 / 2;
  }

  #w-node-_541dce4c-4d7f-7f24-89bf-20615d18d725-8c7a53ab {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_20c8c7ad-2a63-d135-2750-53e070e58967-8c7a53ab {
    grid-area: 3 / 1 / 4 / 2;
  }
}


