:root {
  --primary-purple: #6000fa;
  --text-primary: #2b2b2b;
  --menu-gray: #5a5a5a;
  --button-gray: #ebebeb;
  --grayed-out: #a5a5a5;
  --gray-for-bg: #f8f8f8;
  --lighter-gray: var(--text-primary);
  --white: white;
  --black: black;
}

.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: #333;
  font-family: Open Sans, sans-serif;
  font-size: 16px;
  line-height: 20px;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 44px;
}

h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-family: Montserrat, sans-serif;
  font-size: 2.25em;
  font-weight: 700;
  line-height: 1.5;
}

h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-family: Montserrat, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
}

p {
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 1.5;
}

a {
  color: var(--primary-purple);
  text-decoration: none;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-left: 40px;
}

li {
  margin-bottom: .5rem;
  line-height: 1.5;
}

img {
  object-fit: cover;
  width: 100%;
  max-width: 100%;
  display: inline-block;
}

.page-wrapper {
  font-size: 1em;
  position: relative;
}

.section.navigation {
  z-index: 99;
  background-color: #fff;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  position: sticky;
  inset: 0% 0% auto;
}

.section.hero {
  background-image: linear-gradient(#0000, #fff), linear-gradient(#fff 23%, #fff0), url('../images/Background.webp');
  background-position: 0 0, 0 0, 0 0;
  background-repeat: repeat, repeat, no-repeat;
  background-size: auto, auto, 3000px;
  background-attachment: scroll, scroll, fixed;
  padding-bottom: 33px;
}

.section.footer {
  background-color: #ededed;
}

.section.page-contents {
  margin-top: 50px;
  margin-bottom: 50px;
}

.section.make-center {
  text-align: center;
}

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

.section.header-section {
  margin-top: 80px;
  margin-bottom: 50px;
}

.container {
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

.container.navigation {
  align-items: center;
  display: flex;
}

.container.homepage-hero {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 50vh;
  display: flex;
}

.container.projects {
  padding-bottom: 50px;
}

.container.about {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 50px;
}

.container.footer {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: space-around;
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
}

.container.page-header {
  min-height: 15vw;
}

.container.page-header.flex-center {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}

.container.page-header.flex-center.about {
  padding-top: 100px;
  padding-bottom: 25px;
}

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

.container.flex__vertical-center.add-btm-margin {
  margin-bottom: 50px;
}

.link_wrapper {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
}

.logo-container {
  background-color: #b6b6b6;
  border-radius: 100%;
  width: 100px;
  height: 100px;
  margin: 10px 10px 10px 0;
  overflow: hidden;
}

.nav-links {
  color: var(--text-primary);
  border-bottom: 5px solid #fff0;
  padding: 16px 32px 11px;
  font-family: Open Sans, sans-serif;
  font-weight: 400;
  text-decoration: none;
  transition: border-color .2s cubic-bezier(.55, .085, .68, .53);
}

.nav-links:hover, .nav-links:focus {
  border-bottom-color: var(--primary-purple);
}

.button-container {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  justify-content: center;
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  display: flex;
}

.button-container.justify-start {
  justify-content: flex-start;
}

.button-primary {
  grid-column-gap: 10px;
  border: 1px solid var(--primary-purple);
  color: #fff;
  background-color: #6200ff;
  border-radius: 10px;
  flex-direction: row;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  padding: 1em 2em;
  transition: background-color .2s;
  display: flex;
}

.button-primary:hover {
  background-color: #4600b6;
}

.button-primary.ghost {
  border: 1px solid var(--primary-purple);
  color: var(--primary-purple);
  background-color: #fff;
  transition: border-color .2s, color .2s, background-color .2s;
}

.button-primary.ghost:hover {
  color: #4600b6;
  background-color: #fafafa;
  border-color: #4600b6;
}

.button-primary.disable {
  border-color: var(--menu-gray);
  background-color: var(--button-gray);
  color: #999;
}

.button__text {
  flex: 0 auto;
}

.hero-h1 {
  margin-bottom: 30px;
  font-size: 48px;
}

.projects__title {
  color: var(--primary-purple);
  margin-bottom: .75rem;
  font-size: 1.75rem;
}

.projects__title.others {
  color: var(--text-primary);
  font-size: 1.5rem;
}

.projects__tag-wrapper {
  grid-column-gap: .5rem;
  grid-row-gap: .5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
  display: flex;
}

.projects__tags {
  background-color: var(--text-primary);
  color: #fff;
  border-radius: 1rem;
  padding: .5rem 1rem;
  font-size: 1rem;
}

.projects__description {
  flex: 1;
}

.projects__image-wrapper {
  border: 1px solid #d3d3d3e6;
  border-radius: 20px;
  overflow: hidden;
}

.projects__feature-image {
  object-fit: fill;
  width: 100%;
  height: 100%;
}

.projects__feature-container {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.projects__others-container {
  grid-column-gap: 3rem;
  grid-row-gap: 3rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 5rem;
  display: grid;
}

.project__others {
  flex-direction: column;
  display: flex;
}

.projects__others-image {
  object-position: 50% 0%;
  width: 100%;
}

.projects_others-image-wrapper {
  object-fit: fill;
  border: 1px solid #ebebeb;
  width: 100%;
  height: 420px;
  position: relative;
  overflow: hidden;
}

.content-wrapper {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.image-wrapper.home-page__about-image {
  width: 100%;
  height: auto;
}

.image-wrapper._10px-padding {
  padding: 10px;
}

.text-block__subhead {
  color: var(--grayed-out);
  text-transform: uppercase;
  font-size: 1.25em;
  font-weight: 700;
  line-height: 1.5;
}

.about-page__wrapper {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 50px;
  display: grid;
}

.h2 {
  margin-top: 1em;
  margin-bottom: .5em;
}

.h2.no-top-margin {
  margin-top: 0;
}

.footer__mid-container {
  grid-column-gap: 1.25rem;
  grid-row-gap: 1.25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5em;
  display: flex;
}

.footer__brandingsub {
  text-align: center;
  font-size: 1.25em;
  font-weight: 700;
}

.footer__brandingtitle {
  font-family: Montserrat, sans-serif;
  font-size: 4em;
  font-weight: 800;
  line-height: 1.25;
}

.text-span {
  color: #747474;
}

.footer__social-wrapper {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.text-block {
  background-color: var(--text-primary);
  color: #fff;
  text-align: center;
  padding-top: 1em;
  padding-bottom: 1em;
}

.bring-to-top {
  z-index: 80;
  background-color: var(--primary-purple);
  background-image: url('../images/bxs_to-top2x.png');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 24px;
  border-radius: 75px;
  width: 55px;
  height: 55px;
  margin: 25px;
  position: fixed;
  inset: auto 0% 0% auto;
}

.mobile-nav-wrapper, .mobile-menu-box {
  display: none;
}

.footer__contact-info-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  justify-content: space-around;
  align-items: center;
  font-size: 1rem;
  display: flex;
}

.footer__contact-info-block {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--text-primary);
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.portfolio-p__header-img-box {
  width: 100%;
}

.page-subheading {
  color: var(--grayed-out);
  text-transform: uppercase;
  padding-bottom: .75rem;
  font-size: 1.25em;
  font-weight: 700;
}

.page__title-box {
  padding-top: 5rem;
  padding-bottom: 2rem;
}

.casestudy__section {
  margin-bottom: 5vw;
}

.page__grids {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10px;
  margin-bottom: 30px;
  display: grid;
}

.page__grids.paintponints {
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 2rem;
}

.page-h2 {
  margin-bottom: 2rem;
}

.intro-cards {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  background-color: var(--gray-for-bg);
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 2rem;
  display: flex;
}

.intro-card__title-box {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  align-items: center;
  display: flex;
}

.intro-card__paragraph {
  flex: 1;
}

.intro-card__title {
  margin-bottom: 0;
}

.page__flex-container.case-study__pain-point-boxes {
  background-color: var(--gray-for-bg);
  padding: 2rem;
}

.mask {
  background-color: #fff;
}

.slider__container {
  height: 100%;
  margin-bottom: 25px;
}

.slider__arrow_icon {
  margin-top: auto;
  margin-bottom: auto;
}

.slider__arrow_icon.right {
  color: #6e6e6e;
}

.slide-nav {
  background-color: #fff;
  position: relative;
}

.casestudy__content {
  margin-bottom: 2.5rem;
}

.casestudy__content.margin-top {
  margin-top: 5em;
}

._2-column-grid {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  place-items: start;
  margin-bottom: 3vw;
  display: grid;
}

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

.white-button {
  grid-column-gap: 12px;
  border: 1px solid var(--primary-purple);
  color: var(--primary-purple);
  justify-content: flex-start;
  align-items: center;
  width: auto;
  height: 44px;
  margin-top: 10px;
  padding: 15px 33px;
  font-weight: 700;
  display: flex;
}

._2-column-grid-wrapper {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-bottom: 5vw;
  display: grid;
}

.findings-box {
  background-color: var(--gray-for-bg);
  padding: 1.25em;
}

.accessbility-box {
  background-color: var(--gray-for-bg);
  flex-direction: column;
  align-items: center;
  padding: 1.25rem;
  display: flex;
}

.labeled-img-1__container {
  position: relative;
}

.labeled-image__text {
  background-color: var(--text-primary);
  color: var(--gray-for-bg);
  border: 1px solid #535353;
  border-top-left-radius: 5px;
  padding: .8rem 3rem;
  font-family: Montserrat, sans-serif;
  font-size: 1em;
  font-weight: 500;
  position: absolute;
  inset: auto 0% 0% auto;
}

.embeeds__for-icon {
  color: var(--primary-purple);
  justify-content: center;
  align-items: center;
  display: flex;
}

.embeeds__for-icon.white {
  color: #fff;
}

.embeeds__for-icon.disable {
  color: var(--grayed-out);
}

.page-header-image {
  padding-bottom: 2em;
}

.userjourney__img {
  margin-top: 30px;
}

.about-image {
  object-fit: scale-down;
  object-position: 50% 50%;
  height: 700px;
  margin-top: 25px;
  margin-bottom: 0;
}

.about-page__gridbox {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  text-align: left;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-items: start;
  margin-top: 2rem;
  display: grid;
}

.header-icon-box {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1em;
  display: flex;
}

.aboutme-gridbox-box {
  padding: 1.4em;
}

.zero-margin {
  margin-bottom: 0;
}

.about-page__tools {
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 50px;
  display: flex;
}

.about-page__tool-icon {
  width: 100px;
}

.mobilemenu2__link-wrapper {
  display: none;
}

.link-block-button {
  grid-column-gap: 5px;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.is--purple {
  color: var(--primary-purple);
}

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

  .section.about-me__section {
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .container.footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .projects__others-container {
    grid-template-columns: 1fr 1fr;
  }

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

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

  ._2-column-grid {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }

  ._2-column-grid-wrapper {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }

  .page-header-image {
    height: 30vh;
  }

  .about-image {
    height: 50vw;
  }
}

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

  p {
    font-size: 14px;
  }

  a {
    text-decoration: none;
  }

  .section.navigation {
    display: none;
  }

  .section.hero {
    background-image: linear-gradient(#0000 52%, #fff), linear-gradient(#fff 50%, #fff0), url('../images/Background.webp');
    background-position: 0 0, 0 0, 50%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, contain;
    background-attachment: scroll, scroll, fixed;
    height: 70vh;
    padding-bottom: 0;
  }

  .section.casestudy__section {
    margin-top: 20px;
  }

  .section.header-section {
    margin-top: 50px;
    margin-bottom: 25px;
  }

  .container.homepage-hero {
    align-items: stretch;
    height: 100%;
  }

  .container.footer {
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .container.page-header.flex-center.about {
    align-items: stretch;
    padding-top: 50px;
  }

  .link_wrapper {
    display: none;
  }

  .logo-container {
    width: 75px;
    height: 75px;
  }

  .button-container {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-h1 {
    font-size: 3em;
    line-height: 1.1;
  }

  .projects__title {
    font-size: 1.5rem;
  }

  .projects__title.others {
    font-size: 1.35rem;
  }

  .projects__tag-wrapper {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
  }

  .projects__tags {
    padding: 7px 14px;
    font-size: .75rem;
  }

  .projects__feature-container {
    grid-template-columns: 1fr;
  }

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

  .projects_others-image-wrapper {
    border-radius: 0;
    position: relative;
  }

  .image-wrapper._10px-padding {
    padding: 0;
  }

  .text-block__subhead {
    font-size: 1.25em;
  }

  .footer__mid-container {
    grid-column-gap: 25px;
    grid-row-gap: 25px;
    margin-bottom: 1em;
  }

  .footer__brandingtitle {
    font-size: 3.5em;
  }

  .bring-to-top {
    display: none;
  }

  .mobile-nav-wrapper {
    flex: 1;
    display: block;
  }

  .mobile-nav-trigger {
    float: right;
    background-image: url('../images/entypo_menu2x_icon.png');
    background-position: 50%;
    background-repeat: no-repeat;
    background-size: 35px;
    width: 35px;
    height: 35px;
  }

  .mobile-nav-trigger.to-close {
    background-image: url('../images/jam_close2.png');
    display: none;
  }

  .mobile-menu-box {
    z-index: 99;
    background-color: #fff;
    background-image: linear-gradient(#fff0, #fff), linear-gradient(#fff, #ffffff4d), url('../images/Background.webp');
    background-position: 0 0, 0 0, 0 100%;
    background-repeat: repeat, repeat, no-repeat;
    background-size: auto, auto, cover;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    height: 100vh;
    padding-left: 10vw;
    padding-right: 10vw;
    display: flex;
    position: fixed;
    inset: 0%;
    transform: translate(101%);
  }

  .mobile-link {
    color: var(--primary-purple);
    border-bottom: 1px dotted #000;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    font-family: Montserrat, sans-serif;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.5;
  }

  .mobile-link-box {
    align-self: stretch;
  }

  .footer__contact-info-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
  }

  .portfolio-p__header-img-box {
    margin-bottom: 2em;
  }

  .page__title-box {
    padding-top: 50px;
    padding-bottom: 20px;
  }

  .page__grids.paintponints {
    grid-template-columns: 1fr;
  }

  .white-button {
    justify-content: center;
    align-self: stretch;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .about-image {
    height: 50vw;
    margin-top: 0;
    margin-bottom: 0;
  }

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

  .about-page__tools {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-wrap: wrap;
    align-content: center;
  }

  .about-page__tool-icon {
    width: 50px;
  }

  .mobilemenu2__wrapper {
    background-color: #fff;
    border-top: 1px solid #f8f8f8;
    position: fixed;
    inset: auto 0% 0%;
    box-shadow: 0 10px 22px 2px #00000026;
  }

  .mobilemenu2__container {
    border: 1px solid #e4e4e4;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 15px 10px;
    display: flex;
  }

  .mobilemenu2__link-wrapper {
    color: var(--menu-gray);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 75px;
    height: 50px;
    transition: color .2s;
    display: flex;
  }

  .mobilemenu2__link-wrapper:active, .mobilemenu2__link-wrapper.w--current {
    color: var(--primary-purple);
  }

  .mobilemenu2__icon-box {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .mobilemenu2__icon-text {
    font-size: 12px;
    line-height: 1.5;
  }
}

@media screen and (max-width: 479px) {
  .container.homepage-hero {
    align-items: stretch;
  }

  .container.page-header.flex-center.about {
    padding-bottom: 25px;
  }

  .hero-h1 {
    font-size: 2rem;
  }

  .projects__others-container {
    grid-template-columns: 1fr;
  }

  .projects_others-image-wrapper {
    height: 350px;
  }

  .about-page__wrapper {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
  }

  .footer__brandingsub {
    font-size: 1em;
  }

  .footer__brandingtitle {
    font-size: 2.5em;
  }

  .footer__contact-info-wrapper {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    flex-direction: column;
  }

  .page__title-box {
    padding-top: 2rem;
  }

  .page-h2 {
    font-size: 2em;
  }

  .page-header-image {
    height: 20vh;
  }

  .about-image {
    margin-top: 0;
    margin-bottom: 0;
  }

  .about-page__gridbox {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }

  .aboutme-gridbox-box {
    padding: 0 0;
  }

  .about-page__tools {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }

  .mobilemenu2__wrapper {
    font-size: 14px;
    position: fixed;
    inset: auto 0% 0%;
  }

  .mobilemenu2__container {
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    display: flex;
  }

  .mobilemenu2__link-wrapper {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }
}

#w-node-b258800e-df5d-955a-66fb-a4f4f89214c3-2388c99b, #w-node-f5f1e275-002a-6837-c3b2-247e8524359d-2388c99b, #w-node-_884b89b6-a514-310f-699a-911a71fe86b2-2388c99b, #w-node-_515093df-831d-ce30-6dac-621e9aa25d93-2388c99b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_08c21503-18ac-37cd-7f53-3253a50d9956-2388c99b {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_42f9b1d2-33bd-bc49-5660-4836ede05b43-2388c99b, #w-node-_7ac7bb71-b99a-de45-c859-6b2b6c428e58-2388c99b {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_33ba0a35-2703-d1fc-17bf-35ea1aa640ed-2388c99b {
  align-self: center;
}

#w-node-a3f329e6-e965-82aa-9bd0-ccae0037cdf6-6245790d, #w-node-e89a968f-edb7-9bbc-4bb5-c2372ce86e8a-6245790d, #w-node-e53d37fd-d351-479e-7c41-8c3d1e6379c9-6245790d, #w-node-b5576ffb-9e7e-f612-9850-b462329ad7c4-6245790d, #w-node-f2564dbc-bff7-988e-4825-b319bcb46b2e-6245790d, #w-node-_7e5c2609-54c3-be39-bb4d-d6b36c0d4972-6245790d, #w-node-c663359c-c560-f839-6216-08efc83c734d-6245790d, #w-node-cb27dc15-0da8-f931-36b1-39ad9c0b1f81-6245790d, #w-node-_9102cf58-9816-cf73-438e-745af3251e43-6245790d, #w-node-cf5e4580-5814-caa6-112f-c6277957239b-6245790d, #w-node-_28a4af14-359f-c801-f91b-2cb40e1e5b95-6245790d, #w-node-f3dc3585-8bc8-44ac-a55e-22e69e7a03a6-6245790d, #w-node-febe3e05-52d5-1bfe-3b3f-3e251f7e5dda-6245790d, #w-node-_7552a9f9-558f-2d27-9dce-ca9117f9a41c-6245790d, #w-node-a3f329e6-e965-82aa-9bd0-ccae0037cdf6-1cc44042, #w-node-e89a968f-edb7-9bbc-4bb5-c2372ce86e8a-1cc44042, #w-node-e53d37fd-d351-479e-7c41-8c3d1e6379c9-1cc44042, #w-node-b5576ffb-9e7e-f612-9850-b462329ad7c4-1cc44042, #w-node-f2564dbc-bff7-988e-4825-b319bcb46b2e-1cc44042, #w-node-_7e5c2609-54c3-be39-bb4d-d6b36c0d4972-1cc44042, #w-node-c663359c-c560-f839-6216-08efc83c734d-1cc44042, #w-node-cb27dc15-0da8-f931-36b1-39ad9c0b1f81-1cc44042, #w-node-_9102cf58-9816-cf73-438e-745af3251e43-1cc44042, #w-node-_28a4af14-359f-c801-f91b-2cb40e1e5b95-1cc44042, #w-node-f3dc3585-8bc8-44ac-a55e-22e69e7a03a6-1cc44042, #w-node-febe3e05-52d5-1bfe-3b3f-3e251f7e5dda-1cc44042, #w-node-_7552a9f9-558f-2d27-9dce-ca9117f9a41c-1cc44042, #w-node-_5bf1ac06-4437-0b2b-9d7a-c2ea2a80e111-542dfc6c, #w-node-_1fa878d6-f786-d6d8-2865-46aaf4e414c5-542dfc6c, #w-node-_92640bd8-0570-a924-f6f7-04068fe5440b-a465f638, #w-node-_92640bd8-0570-a924-f6f7-04068fe5441b-a465f638, #w-node-_92640bd8-0570-a924-f6f7-04068fe5442b-a465f638, #w-node-_92640bd8-0570-a924-f6f7-04068fe5443b-a465f638 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_92640bd8-0570-a924-f6f7-04068fe5444b-a465f638 {
  grid-area: span 1 / span 1 / span 1 / span 1;
  align-self: stretch;
}

#w-node-_92640bd8-0570-a924-f6f7-04068fe5445b-a465f638 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 991px) {
  #w-node-_01dc50bd-9886-24c7-3a00-1faef6afa51f-2388c99b, #w-node-_64cd98d5-95f4-3a8f-e8b8-54c7a551aaba-6245790d, #w-node-_64cd98d5-95f4-3a8f-e8b8-54c7a551aaba-1cc44042 {
    order: -9999;
  }
}


