:root {
  --font-dark: #222;
  --gray-1: #666;
  --gray-2: #b1b1b1;
  --gray-4: #f2f2f2;
  --brand-2: #ff5437;
  --gray-3: #e5e5e5;
  --brand-1: #0278ed;
  --brand-3: #ff9209;
  --brand-4: #e738ce;
  --font-light: #b1b1b1;
  --brand-5: #00c6df;
  --brand-6: #b25df8;
  --white: white;
}

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

body {
  color: var(--font-dark);
  margin-top: 90px;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  line-height: 24px;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 54px;
  font-weight: 700;
  line-height: 1.1;
}

h2 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 32px;
  font-weight: 600;
  line-height: 36px;
}

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

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 500;
  line-height: 24px;
}

h5 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
}

a {
  color: var(--gray-1);
  text-decoration: underline;
  transition: color .2s;
}

a:hover {
  color: var(--gray-2);
}

.phone-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  transform: rotate(0);
}

.phone-wrap.feature-grid {
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}

.phone-border {
  z-index: 1000;
  width: 100%;
  margin: auto;
  position: absolute;
  inset: 0%;
}

.phone-hardware {
  z-index: 100;
  width: 100%;
}

.phone-screenshot {
  z-index: 500;
  height: 93.4%;
  margin: auto;
  position: absolute;
  inset: 0%;
}

.text-small-caps {
  opacity: .8;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.container {
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
  position: relative;
}

.container.tight {
  max-width: 800px;
}

.section {
  text-align: left;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  overflow: hidden;
}

.section.bg-gray-4 {
  background-color: var(--gray-4);
}

.section.bg-text-dark {
  background-color: var(--font-dark);
}

.section.bg-brand-2 {
  background-color: var(--brand-2);
}

.section.bg-gray-3 {
  background-color: var(--gray-3);
}

.footer-logotype {
  width: 140px;
  min-width: auto;
}

.social-icon-link {
  opacity: .8;
  margin-right: 20px;
  transition: opacity .2s;
}

.social-icon-link:hover {
  opacity: 1;
}

.social-icon-link.last {
  margin-right: 0;
}

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

.grid-1-5.footer {
  text-align: center;
}

.social-icons-wrap {
  display: flex;
}

.social-icon {
  max-width: 24px;
  height: 24px;
}

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

.section-title {
  text-align: center;
  max-width: 600px;
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
}

.section-title.left {
  text-align: left;
  margin-left: 0;
}

.feature-card {
  background-color: #fff;
  border-radius: 20px;
  width: auto;
  padding-top: 40px;
  position: relative;
  overflow: hidden;
}

.feature-content-wrap {
  background-color: var(--gray-4);
  text-align: center;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 250px;
  padding: 0 30px 11px;
  display: flex;
  inset: auto 0% 0%;
  box-shadow: 0 3px 15px 3px #0003;
}

.feature-description {
  max-width: 100%;
  font-size: 1em;
  line-height: 1.4em;
  overflow: hidden;
}

.feature-image-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.styleguide-wrap {
  background-color: var(--gray-4);
  padding-top: 10px;
  padding-bottom: 10px;
}

.styleguide-label {
  color: var(--gray-1);
  letter-spacing: 1px;
  text-transform: uppercase;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 500;
  line-height: 11px;
}

.color-block {
  background-color: #ebebeb;
  border-radius: 4px;
  height: 70px;
}

.color-block.bg-brand-1 {
  background-color: var(--brand-1);
}

.color-block.bg-brand-2 {
  background-color: var(--brand-2);
}

.color-block.bg-brand-3 {
  background-color: var(--brand-3);
}

.color-block.bg-brand-4 {
  background-color: var(--brand-4);
}

.color-block.bg-text-dark {
  background-color: var(--font-dark);
}

.color-block.bg-text-light {
  background-color: var(--font-light);
}

.color-block.bg-gray-1 {
  background-color: var(--gray-1);
}

.color-block.bg-gray-2 {
  background-color: var(--gray-2);
}

.color-block.bg-gray-3 {
  background-color: var(--gray-3);
}

.color-block.bg-gray-4 {
  background-color: var(--gray-4);
}

.color-block.bg-brand-5 {
  background-color: var(--brand-5);
}

.color-block.bg-brand-6 {
  background-color: var(--brand-6);
}

.styleguide-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  margin-top: 10px;
  margin-bottom: 40px;
  display: grid;
}

.text-brand-2 {
  color: var(--brand-2);
  font-weight: 700;
}

.text-brand-3 {
  color: var(--brand-3);
}

.text-brand-4 {
  color: var(--brand-4);
  margin-top: 20px;
}

.space-top {
  text-align: center;
  margin-top: 10px;
}

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

.price-card {
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  padding: 40px;
  overflow: hidden;
}

.price-card.bg-gray-4 {
  background-color: var(--gray-4);
}

.price-number {
  letter-spacing: -8px;
  font-size: 124px;
  font-weight: 600;
  line-height: 124px;
}

.price-number-wrap {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  display: flex;
}

.text-brand-1 {
  color: var(--brand-1);
  font-weight: 700;
}

.text-brand-5 {
  color: var(--brand-5);
  font-weight: 700;
}

.text-brand-6 {
  color: var(--brand-6);
  font-weight: 700;
}

.feature-icon {
  background-color: var(--font-dark);
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin-top: -64px;
  padding: 20px;
  display: flex;
}

.feature-icon.bg-brand-1 {
  background-color: var(--brand-1);
}

.feature-icon.bg-brand-2 {
  background-color: var(--brand-2);
}

.feature-icon.bg-brand-3 {
  background-color: var(--brand-3);
}

.feature-icon.bg-brand-4 {
  background-color: var(--brand-4);
}

.feature-icon.bg-brand-5 {
  background-color: var(--brand-5);
}

.feature-icon.bg-brand-6 {
  background-color: var(--brand-6);
}

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

.content-grid.reverse {
  direction: rtl;
}

.content-phone-wrap {
  margin-bottom: -300px;
  padding-left: 100px;
  padding-right: 100px;
}

.small-width-content {
  direction: ltr;
  max-width: 420px;
}

.small-width-content.center-mobile {
  max-width: 550px;
}

.button {
  float: none;
  background-color: var(--font-dark);
  color: #fff;
  text-align: center;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 4px;
  margin: 10px 5px;
  padding: 11px 25px;
  font-size: 14px;
  line-height: 18px;
  transition: color .2s, box-shadow .2s, background-color .2s, transform .4s;
  display: inline-block;
}

.button:hover {
  background-color: var(--gray-1);
  color: #fff;
  transform: translate(0, -2px);
  box-shadow: 0 1px 3px #0000001a;
}

.button:active {
  transform: translate(0, -1px);
  box-shadow: 0 1px 1px #0000001a;
}

.button.bg-brand-1 {
  background-color: var(--brand-1);
}

.button.bg-brand-2 {
  background-color: var(--brand-2);
}

.button.bg-brand-3 {
  background-color: var(--brand-3);
}

.button.navigation-button {
  background-image: linear-gradient(#5856d6, #5856d6);
  margin-left: 10px;
}

.nav-link {
  opacity: .8;
  color: var(--gray-1);
  margin-right: 30px;
  padding: 10px 10px 6px;
  font-size: 16px;
  line-height: 16px;
  text-decoration: none;
}

.nav-link.w--current {
  opacity: 1;
  font-weight: 500;
}

.app-store-link {
  margin-top: 15px;
  transition: opacity .2s;
}

.app-store-link:hover {
  opacity: .8;
}

.app-store-badge {
  width: 180px;
  height: 58px;
  line-height: 26px;
  position: static;
}

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

.number {
  font-size: 96px;
  font-weight: 600;
  line-height: 96px;
}

.numbers-wrap {
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

.text-gray-2 {
  color: var(--font-dark);
  text-align: center;
  margin-left: 0;
  font-size: 14px;
  font-weight: 400;
}

.dark-mode-visualiser-wrap {
  margin-top: 20px;
  padding-left: 100px;
  padding-right: 100px;
  overflow: hidden;
}

.dark-mode-phone-wrap {
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: -300px;
  display: flex;
  position: relative;
  transform: rotate(0);
}

.tabs {
  flex-direction: column-reverse;
  display: flex;
}

.dark-mode-tab {
  opacity: .4;
  text-align: center;
  background-color: #0000;
  border-radius: 12px;
  margin: 10px;
  padding: 10px;
  transition: background-color .2s, opacity .2s;
}

.dark-mode-tab:hover {
  opacity: .7;
  background-color: #fff3;
}

.dark-mode-tab.w--current {
  opacity: 1;
  background-color: #0000;
}

.tabs-menu {
  border-top: 2px solid var(--gray-3);
  padding-top: 20px;
}

.tab-icon {
  height: 24px;
  margin-bottom: 5px;
}

.text-gray-1 {
  color: var(--gray-1);
}

.testimonial-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.testimonial-card {
  background-color: #fff;
  border-radius: 20px;
  padding: 30px;
}

.testimonial-card.bg-white {
  background-color: var(--white);
  flex-direction: column;
  justify-content: space-between;
  display: flex;
}

.testimonial-author-name {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
}

.testimonial-author-title {
  font-size: 14px;
  line-height: 20px;
}

.avatar-circle {
  border: 1px solid var(--gray-3);
  object-fit: cover;
  border-radius: 64px;
  min-width: 48px;
  max-width: 48px;
  min-height: 48px;
  max-height: 48px;
  overflow: hidden;
}

.team-text {
  padding-left: 10px;
}

.team-row {
  color: #1b1a1a;
  align-items: center;
  margin-top: 10px;
  text-decoration: none;
  display: flex;
}

.pricing-grid {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  display: grid;
}

.code {
  background-color: var(--gray-4);
  border-radius: 10px;
  padding: 20px;
  font-family: Inconsolata, monospace;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 70vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.navigation-container-full {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  height: 100%;
  min-height: auto;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  display: flex;
}

.brand {
  margin-right: 20px;
  padding: 12px;
}

.logo {
  width: 120px;
  font-size: 70px;
}

.nav-menu-mobile {
  color: #3f0a3d;
  align-items: center;
  width: auto;
  height: 100%;
  display: flex;
}

.nav-link-plain {
  color: var(--gray-1);
  margin-left: 0;
  margin-right: 0;
  padding-left: 16px;
  padding-right: 16px;
  font-size: 15px;
  transition: all .35s;
}

.nav-link-plain:hover, .nav-link-plain.w--current {
  color: var(--font-dark);
}

.navigation {
  background-color: var(--white);
  height: 90px;
  position: fixed;
  inset: 0% 0% auto;
  box-shadow: 0 3px 15px 3px #00000026;
}

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

._404-icon {
  width: 124px;
  margin-left: auto;
  margin-right: auto;
}

.medium-width-content {
  direction: ltr;
  flex-direction: column;
  justify-content: center;
  max-width: 600px;
  position: relative;
}

.page-title {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.1;
}

.margin-header-grid {
  grid-template-columns: .5fr 1fr;
}

.margin-header {
  margin-right: 30px;
}

.no-space-bottom {
  margin-bottom: 0;
}

.grid-1-2-text {
  grid-row-gap: 32px;
  grid-template-rows: auto;
  grid-template-columns: .5fr 1fr;
  justify-content: space-between;
}

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

.text-large {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
}

.div-block {
  min-height: 50px;
}

.div-block-2 {
  margin-top: 60px;
}

.div-block-3 {
  margin-top: 10px;
}

.heading {
  font-size: 20px;
  font-weight: 600;
}

.paragraph, .list-item {
  margin-top: 20px;
}

.image {
  font-size: 30px;
}

@media screen and (max-width: 991px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .feature-image-grid {
    grid-template-columns: 1fr 1fr;
  }

  .color-block {
    margin-top: 10px;
  }

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

  .price-number {
    font-size: 92px;
    line-height: 92px;
  }

  .content-phone-wrap {
    margin-bottom: -301px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .button.navigation-button {
    margin-left: 0;
  }

  .nav-link {
    margin-left: 10px;
    margin-right: 10px;
  }

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

  .numbers-wrap.hidden-tablet-down {
    display: none;
  }

  .dark-mode-visualiser-wrap {
    margin-bottom: -301px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .dark-mode-phone-wrap {
    margin-bottom: -110px;
  }

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

  .testimonial-card.bg-white {
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .team-row {
    margin-left: 10px;
  }

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

  .navigation-container-full {
    min-height: auto;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
  }

  .brand {
    margin-right: 10px;
    padding: 0;
  }

  .nav-menu-mobile {
    background-color: var(--font-dark);
    color: #fff;
    height: auto;
    padding-bottom: 20px;
  }

  .nav-link-plain {
    color: var(--gray-4);
    text-align: center;
    width: 100%;
  }

  .nav-link-plain.w--current {
    color: #f7f7f7;
  }

  .menu-button-mobile {
    color: var(--font-dark);
    align-items: center;
    padding: 5px;
    transition: color .2s, background-color .2s;
  }

  .menu-button-mobile.w--open {
    background-color: var(--font-dark);
    color: var(--gray-4);
    border-color: #02676b;
  }

  .medium-width-content {
    max-width: none;
  }

  .page-title {
    font-size: 54px;
  }
}

@media screen and (max-width: 767px) {
  .grid-1-5.footer {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .section-title {
    max-width: none;
  }

  .feature-description {
    height: auto;
  }

  .feature-image-grid {
    grid-template-columns: 1fr;
  }

  .price-card {
    width: 100%;
  }

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

  .content-phone-wrap {
    margin-bottom: -200px;
    padding-left: 120px;
    padding-right: 120px;
  }

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

  .numbers-wrap {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .dark-mode-visualiser-wrap {
    margin-bottom: -200px;
    padding-left: 120px;
    padding-right: 120px;
  }

  .dark-mode-phone-wrap {
    margin-bottom: -30px;
  }

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

  .testimonial-card {
    width: 100%;
  }

  .team-row {
    margin-left: 0;
  }

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

  .medium-width-content {
    max-width: none;
  }

  .page-title {
    font-size: 42px;
  }

  .margin-header-grid {
    grid-template-columns: 1fr;
  }

  .margin-header {
    margin-right: 0;
    position: static;
  }

  .grid-1-2-text, .grid-1-2 {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 479px) {
  .phone-wrap.feature-grid {
    width: 60%;
  }

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

  .grid-1-5.footer {
    grid-template-columns: 1fr 1fr;
  }

  .social-icon {
    margin-right: 10px;
  }

  .feature-card {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .feature-content-wrap {
    padding: 15px;
  }

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

  .price-card {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .feature-icon {
    width: 48px;
    height: 48px;
    margin-top: -42px;
    padding: 16px;
  }

  .content-phone-wrap {
    padding-left: 30px;
    padding-right: 30px;
  }

  .button {
    text-align: center;
  }

  .dark-mode-visualiser-wrap {
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
  }

  .tabs-menu {
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .testimonial-card {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

#w-node-fc8fb1bd-1b94-f840-e1d3-06dd5b95d1a4-06d3c5d4, #w-node-_6b2028a3-3185-8aee-27ad-dfbe81bedf45-06d3c5d4, #w-node-c813a0f9-7506-f53f-6c49-4c2b9cb4ba73-06d3c5d4 {
  grid-area: span 2 / span 1 / span 2 / span 1;
  place-self: center;
}

#w-node-c813a0f9-7506-f53f-6c49-4c2b9cb4ba7a-06d3c5d4 {
  grid-area: span 2 / span 1 / span 2 / span 1;
  place-self: start center;
}

#w-node-_58f20cdf-c530-b380-d090-28c14643a6cc-06d3c5d4 {
  grid-area: span 2 / span 1 / span 2 / span 1;
  place-self: center;
}

#w-node-_58f20cdf-c530-b380-d090-28c14643a6d3-06d3c5d4 {
  grid-area: span 2 / span 1 / span 2 / span 1;
  place-self: start center;
}

#w-node-_392380b7-9678-7751-0fa3-126dc6551df9-06d3c5d4 {
  grid-area: span 2 / span 1 / span 2 / span 1;
  place-self: center;
}

#w-node-_392380b7-9678-7751-0fa3-126dc6551e00-06d3c5d4 {
  grid-area: span 2 / span 1 / span 2 / span 1;
  place-self: start center;
}

#w-node-_7809b272-17f9-ee5a-72b7-2b1db68dfc06-b68dfc03, #w-node-_7809b272-17f9-ee5a-72b7-2b1db68dfc08-b68dfc03, #w-node-_7809b272-17f9-ee5a-72b7-2b1db68dfc0f-b68dfc03 {
  grid-area: span 1 / span 5 / span 1 / span 5;
  justify-self: center;
}

#w-node-_714e24dd-103b-69b7-f319-808c8df6cc17-06d3c5d7 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_9e555eef-ed94-fdc5-a1b7-a810f884df80-06d3c5d9, #w-node-_9e555eef-ed94-fdc5-a1b7-a810f884df80-265e0c7e {
  grid-area: span 2 / span 1 / span 2 / span 1;
}

@media screen and (max-width: 767px) {
  #w-node-_7809b272-17f9-ee5a-72b7-2b1db68dfc06-b68dfc03 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_7809b272-17f9-ee5a-72b7-2b1db68dfc08-b68dfc03 {
    grid-area: span 1 / span 4 / span 1 / span 4;
    justify-self: center;
  }

  #w-node-_7809b272-17f9-ee5a-72b7-2b1db68dfc0f-b68dfc03 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_9e555eef-ed94-fdc5-a1b7-a810f884df80-06d3c5d9, #w-node-_9e555eef-ed94-fdc5-a1b7-a810f884df80-265e0c7e {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_7809b272-17f9-ee5a-72b7-2b1db68dfc06-b68dfc03 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_7809b272-17f9-ee5a-72b7-2b1db68dfc08-b68dfc03 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    justify-self: center;
  }

  #w-node-_7809b272-17f9-ee5a-72b7-2b1db68dfc0f-b68dfc03 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }
}


