.image {
  display: block;
  width: 45%;
  max-width: 50%;
  -webkit-box-flex: 0;
  -webkit-flex: 0 auto;
  -ms-flex: 0 auto;
  flex: 0 auto;
  border-radius: 8px;
}

.main-button {
  padding: 16px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-style: solid;
  border-width: 1px;
  border-color: #5532fa;
  border-radius: 8px;
  background-color: #5532fa;
  -webkit-transition: border-color 150ms ease, background-color 150ms ease, opacity 150ms ease;
  transition: border-color 150ms ease, background-color 150ms ease, opacity 150ms ease;
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1em;
  font-weight: 500;
  text-decoration: none;
}

.main-button:hover {
  border-color: #1e116e;
  background-color: #1e116e;
  opacity: 1;
}

.main-button.secondary-button {
  border-style: none;
  background-color: #f0ecfd;
  box-shadow: inset 0 0 0 1.5px #5532fa;
  -webkit-transition: color 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background-color 150ms ease, opacity 150ms ease;
  transition: color 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background-color 150ms ease, opacity 150ms ease;
  color: #5532fa;
  text-decoration: none;
}

.main-button.secondary-button:hover {
  background-color: #a695fb;
  box-shadow: inset 0 0 0 1.5px #a695fb;
  color: #1e116e;
}

.flex-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-row.left-aligned {
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  grid-column-gap: 16px;
}

.flex-row._5-spacing {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 5%;
}

.section-left-side {
  width: 50%;
}

.container {
  position: relative;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

.container.overflow-none {
  overflow: hidden;
  padding-top: 0px;
  padding-bottom: 0px;
}

.line-3 {
  position: absolute;
  left: 0px;
  top: 30px;
  right: 0px;
  z-index: 2;
  display: block;
  width: 35px;
  height: 2px;
  margin-right: auto;
  margin-left: auto;
  background-color: #000;
}

.line-3.simple-line {
  top: 38px;
  width: 12.75px;
  height: 3.3px;
  margin-left: 18px;
  border-radius: 3px;
  background-color: #5532fa;
}

.line-2 {
  position: absolute;
  left: 0px;
  top: 20px;
  right: 0px;
  z-index: 1;
  display: block;
  width: 35px;
  height: 2px;
  margin-right: auto;
  margin-left: auto;
  background-color: #000;
}

.line-2.simple-line {
  top: 28px;
  width: 24px;
  height: 3.3px;
  border-radius: 3px;
  background-color: #5532fa;
}

.line-1 {
  position: absolute;
  left: 0px;
  top: 10px;
  right: 0px;
  z-index: 2;
  display: block;
  width: 35px;
  height: 2px;
  margin-right: auto;
  margin-left: auto;
  background-color: #000;
}

.line-1.simple-line {
  top: 18px;
  width: 24px;
  height: 3.3px;
  border-radius: 3px;
  background-color: #5532fa;
}

.simple-menu-button {
  overflow: hidden;
  width: 60px;
  height: 60px;
  padding: 0px 0px 0px 18px;
  background-color: #fff;
}

.simple-menu-button.w--open {
  border-radius: 8px;
  background-color: #f0ecfd;
}

.nav-link {
  margin-left: 8px;
  padding: 16px 24px;
  border-radius: 8px;
  -webkit-transition: background-color 150ms ease, color 150ms ease, opacity 150ms ease;
  transition: background-color 150ms ease, color 150ms ease, opacity 150ms ease;
  color: #000;
  font-size: 1rem;
  line-height: 1;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}

.nav-link:hover {
  background-color: #f0ecfd;
  opacity: 1;
  color: #5532fa;
}

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

.nav-link.active {
  color: #7e57fd;
}

.nav-menu {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.logo {
  z-index: 2;
  padding-left: 0px;
}

.navbar-inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 16px;
  padding-bottom: 16px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.navbar {
  position: -webkit-sticky;
  position: sticky;
  top: 32px;
  z-index: 99;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
  padding-right: 16px;
  padding-left: 16px;
  border-radius: 999px;
  background-color: #fff;
  box-shadow: 2px 0 8px 0 rgba(0, 0, 0, 0.1);
}

.navbar.absolute-positioned-navbar {
  position: absolute;
  left: 0%;
  top: 32px;
  right: 0%;
  bottom: auto;
  width: 95%;
  margin-right: auto;
  margin-left: auto;
}

.section {
  position: relative;
  width: 100%;
  padding: 176px 64px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
}

.section.light-background {
  height: auto;
  background-color: #f0ecfd;
}

.section.light-background.auto-height {
  height: auto;
  padding-bottom: 40px;
}

.section h5 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  line-height: 1.3;
  font-weight: 600;
}

.section h4 {
  margin-top: 0rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 500;
}

.section h1 {
  margin-bottom: 1rem;
  font-size: 4rem;
  line-height: 1.1;
  font-weight: 600;
}

.section h2 {
  margin-top: 1rem;
  margin-bottom: 0rem;
  font-size: 3.5rem;
  line-height: 1.2;
  font-weight: 600;
  text-align: center;
}

.section h3 {
  margin-top: 0rem;
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 600;
  text-align: center;
}

.section h6 {
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  font-weight: 700;
}

.section p {
  margin-top: 10px;
  margin-bottom: 25px;
  font-size: 15px;
  text-align: center;
}

.section ul {
  margin-top: 2rem;
  margin-bottom: 3rem;
  padding-left: 14px;
}

.section li {
  margin-bottom: 0.5rem;
}

.social-icon-svg {
  width: 20px;
  height: 20px;
}

.social-link {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 32px;
  height: 32px;
  padding: 5px 8px;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-radius: 8px;
  background-color: #fff;
  -webkit-transition: color 150ms ease, background-color 150ms ease;
  transition: color 150ms ease, background-color 150ms ease;
  color: #5532fa;
}

.social-link:hover {
  background-color: #5532fa;
  opacity: 1;
  color: #fff;
}

.social-link-row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
}

.footer-text {
  margin-bottom: 0rem;
}

.footer-bottom {
  padding: 1rem 64px;
  background-color: #f0ecfd;
}

.footer-bottom.white-background {
  background-color: #fff;
  color: #5532fa;
}

.footer {
  position: relative;
  width: 100%;
}

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

.utility-page-content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 260px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: center;
}

.button {
  padding: 16px;
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  border-style: solid;
  border-width: 1px;
  border-color: #5532fa;
  border-radius: 8px;
  background-color: #5532fa;
  -webkit-transition: border-color 150ms ease, background-color 150ms ease, opacity 150ms ease;
  transition: border-color 150ms ease, background-color 150ms ease, opacity 150ms ease;
  color: #fff;
  font-size: 0.9375rem;
  line-height: 1em;
  font-weight: 500;
  text-decoration: none;
}

.button:hover {
  border-color: #1e116e;
  background-color: #1e116e;
  opacity: 1;
}

.button.secondary-button {
  border-style: none;
  background-color: #f0ecfd;
  box-shadow: inset 0 0 0 1.5px #5532fa;
  -webkit-transition: color 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background-color 150ms ease, opacity 150ms ease;
  transition: color 150ms ease, box-shadow 150ms ease, border-color 150ms ease, background-color 150ms ease, opacity 150ms ease;
  color: #5532fa;
  text-decoration: none;
}

.button.secondary-button:hover {
  background-color: #a695fb;
  box-shadow: inset 0 0 0 1.5px #a695fb;
  color: #1e116e;
}

.button.secondary-button.button-expand-full-width {
  margin-top: 12px;
  border-style: solid;
  border-width: 1.5px;
  background-color: #f0ecfd;
}

.button.secondary-button.button-expand-full-width:hover {
  background-color: #a695fb;
  color: #1e116e;
}

.button.full-width {
  width: 100%;
  background-color: #5532fa;
  text-align: center;
}

.button.full-width:hover {
  background-color: #1e116e;
}

.form-success {
  padding: 24px;
  border-radius: 8px;
  background-color: #f0ecfd;
  text-align: center;
}

.input {
  height: 48px;
  margin-bottom: 32px;
  padding: 8px 16px;
  border-style: solid;
  border-width: 1px;
  border-color: rgba(0, 0, 0, 0.16);
  border-radius: 8px;
  background-color: #fff;
  font-size: 1rem;
}

.input:focus {
  border-color: #5532fa;
}

.input::-webkit-input-placeholder {
  color: rgba(0, 0, 0, 0.56);
}

.input:-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.56);
}

.input::-ms-input-placeholder {
  color: rgba(0, 0, 0, 0.56);
}

.input::placeholder {
  color: rgba(0, 0, 0, 0.56);
}

.form-heading {
  margin-bottom: 5px;
  font-size: 1.5rem;
  line-height: 1.7em;
  font-weight: 600;
  text-align: center;
}

.centered-form {
  width: 388px;
  max-width: 100%;
  margin-right: auto;
  margin-bottom: 0px;
  margin-left: auto;
  padding: 24px;
  border-radius: 12px;
  background-color: #fff;
}

.centered-form.spark-simple-shadow-small {
  color: #000;
}

.spark-simple-shadow-small {
  box-shadow: -6px 6px 20px 0 rgba(0, 0, 0, 0.12);
}

.contact-container {
  position: relative;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

.text-block {
  margin-bottom: 25px;
  text-align: center;
}

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

.overflow-none {
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 100px;
  background-color: #f0ecfd;
}

.slider-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.slider-container {
  max-width: 1400px;
}

.slider-image {
  height: 24vw;
}

.slider-image.image-cover {
  height: 100%;
  border-radius: 12px;
}

.div-block {
  width: 35vw;
}

.slider-item {
  margin-right: 35px;
}

.small-sub-paragraph {
  margin-bottom: 0rem;
  color: rgba(0, 0, 0, 0.76);
  font-size: 0.8rem;
  line-height: 1.3;
}

.bold-heading {
  display: inline-block;
  margin-bottom: 0.5rem;
  line-height: 1;
  font-weight: 600;
}

.project {
  max-width: 590px;
}

.project-image {
  border-radius: 0px;
  background-image: url('../images/prenotoIcon.png');
  background-position: 0px 0px;
  background-size: auto;
}

.project-card {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  grid-column-gap: 24px;
}

.project-card.stacked {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-column-gap: 24px;
  grid-row-gap: 24px;
  text-align: center;
}

.project-grid {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  grid-auto-columns: 1fr;
  grid-column-gap: 64px;
  grid-row-gap: 64px;
  -ms-grid-columns: 1fr 1fr 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  -ms-grid-rows: auto;
  grid-template-rows: auto;
}

.secondary-paragraph {
  margin-bottom: 64px;
  color: rgba(0, 0, 0, 0.76);
}

.centered-900 {
  width: 900px;
  max-width: 100%;
  margin-right: auto;
  margin-bottom: 100px;
  margin-left: auto;
  text-align: center;
}

.main-container {
  position: relative;
  max-width: 1440px;
  margin-right: auto;
  margin-left: auto;
}

.project-link {
  background-color: transparent;
  color: #5982e2;
  text-decoration: none;
}

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

.image-3 {
  width: 33px;
  height: 33px;
}

.image-4 {
  width: 33px;
  height: 33px;
}

.image-5 {
  width: 33px;
  height: 33px;
}

.text-block-2 {
  margin-bottom: 1rem;
}

@media screen and (min-width: 1440px) {
  .image {
    width: 40%;
  }

  .container.overflow-none {
    margin-bottom: 0px;
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .section.light-background {
    height: auto;
    max-width: 1900px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 40px;
  }

  .section.light-background.auto-height {
    height: auto;
  }

  .section h2 {
    margin-top: 0rem;
  }

  .section p {
    text-align: center;
  }

  .body {
    height: auto;
    background-color: #f0ecfd;
  }

  .overflow-none {
    padding-top: 50px;
  }

  .div-block {
    width: 500px;
  }

  .project-image {
    border-radius: 0px;
  }

  .project-grid {
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
  }

  .text-block-2 {
    margin-top: 10px;
    margin-bottom: 25px;
    font-size: 15px;
  }
}

@media screen and (max-width: 991px) {
  .image {
    width: 100%;
    max-width: 100%;
  }

  .flex-row._5-spacing {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
    grid-row-gap: 2rem;
  }

  .section-left-side {
    width: 100%;
  }

  .line-3.simple-line {
    left: 18px;
    width: 12.75px;
    height: 3.33px;
    margin-left: 0px;
    border-radius: 3px;
    background-color: #5532fa;
  }

  .line-2.simple-line {
    width: 24px;
    height: 3.33px;
    border-radius: 3px;
    background-color: #5532fa;
  }

  .line-1.simple-line {
    width: 24px;
    height: 3.33px;
    border-radius: 2px;
    background-color: #5532fa;
  }

  .simple-menu-button {
    padding-left: 18px;
    background-color: transparent;
  }

  .simple-menu-button.w--open {
    background-color: transparent;
  }

  .nav-link {
    margin-bottom: 1rem;
    margin-left: 0px;
    text-align: left;
  }

  .nav-menu {
    z-index: 99;
    margin-top: 0rem;
    padding: 2rem 1rem 1rem;
    border-bottom-left-radius: 42px;
    border-bottom-right-radius: 42px;
    background-color: #fff;
  }

  .nav-menu.rounded-corners {
    margin-top: 1rem;
    border-radius: 40px;
    box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.17);
  }

  .navbar-inner {
    padding: 0px;
  }

  .navbar {
    padding-right: 32px;
    padding-left: 32px;
  }

  .section {
    padding-top: 104px;
    padding-right: 32px;
    padding-left: 32px;
  }

  .footer-bottom {
    padding-right: 32px;
    padding-left: 32px;
  }

  .project-card {
    width: 45%;
  }

  .project-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .main-container {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .image {
    width: 100%;
    max-width: 100%;
  }

  .flex-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .flex-row.left-aligned {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .flex-row._5-spacing {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    grid-row-gap: 24px;
  }

  .flex-row._24px-row-spacing {
    grid-row-gap: 24px;
  }

  .section-left-side {
    width: 100%;
  }

  .container {
    width: 100%;
  }

  .nav-link {
    padding-right: 20px;
    padding-left: 20px;
  }

  .nav-menu {
    overflow: scroll;
    max-height: 90vh;
  }

  .navbar-inner {
    padding-right: 0px;
    padding-left: 0px;
  }

  .navbar {
    width: 98%;
    padding-right: 20px;
    padding-left: 20px;
  }

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

  .section.light-background {
    padding-top: 128px;
  }

  .contact-container {
    width: 100%;
  }

  .small-sub-paragraph {
    line-height: 1.3;
  }

  .project-card {
    width: 100%;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    -webkit-box-flex: 0;
    -webkit-flex: 0 auto;
    -ms-flex: 0 auto;
    flex: 0 auto;
  }

  .project-grid {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    justify-items: center;
    -webkit-align-content: start;
    -ms-flex-line-pack: start;
    align-content: start;
    grid-auto-columns: 1fr;
    grid-column-gap: 64px;
    grid-row-gap: 32px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
  }

  .secondary-paragraph {
    margin-bottom: 32px;
  }

  .main-container {
    width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .flex-row {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }

  .flex-row.left-aligned {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    grid-row-gap: 16px;
  }

  .flex-row._24px-row-spacing {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    grid-row-gap: 24px;
  }

  .simple-menu-button {
    padding-left: 0px;
  }

  .nav-link {
    margin-bottom: 0.5rem;
  }

  .nav-menu {
    max-height: 90vh;
    padding: 1rem 0.5rem;
    border-bottom-left-radius: 12px;
    border-bottom-right-radius: 12px;
  }

  .navbar-inner {
    padding: 0px 12px;
  }

  .navbar {
    padding-right: 0px;
    padding-left: 0px;
  }

  .section {
    padding: 64px 20px;
  }

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

  .section h2 {
    font-size: 2.5rem;
  }

  .footer-bottom {
    padding-right: 20px;
    padding-left: 20px;
  }

  .bold-heading {
    line-height: 1.3;
  }

  .project-grid {
    grid-column-gap: 5%;
  }

  .centered-900 {
    margin-bottom: 64px;
  }
}

#w-node-_7228ba7c-4afe-718c-4029-51ad465f4896-808248b0 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_7228ba7c-4afe-718c-4029-51ad465f489e-808248b0 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_7228ba7c-4afe-718c-4029-51ad465f48a6-808248b0 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_912503b1-ec2f-7716-6d82-835d96ceae68-808248b0 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

#w-node-_4fb3d34c-771b-d6db-4db2-c5fe4a7b8bb3-808248b0 {
  -ms-grid-column: span 1;
  grid-column-start: span 1;
  -ms-grid-column-span: 1;
  grid-column-end: span 1;
  -ms-grid-row: span 1;
  grid-row-start: span 1;
  -ms-grid-row-span: 1;
  grid-row-end: span 1;
}

@media screen and (min-width: 1440px) {
  #w-node-_912503b1-ec2f-7716-6d82-835d96ceae68-808248b0 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }

  #w-node-_4fb3d34c-771b-d6db-4db2-c5fe4a7b8bb3-808248b0 {
    -ms-grid-column: span 1;
    grid-column-start: span 1;
    -ms-grid-column-span: 1;
    grid-column-end: span 1;
    -ms-grid-row: span 1;
    grid-row-start: span 1;
    -ms-grid-row-span: 1;
    grid-row-end: span 1;
  }
}

