@font-face {
  font-family: Note;
  src: url('../fonts/CheeeDemo-Small.otf') format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bkg: #f9f9f9;
  --blk: #131313;
  --sub: #a1a1a1;
  --line: #ebebeb;
  --wht: white;
  --corner: 8px;
  --var-1: #ff8550;
  --var-3: #b83274;
  --var-2: #f65108;
  --var-4: #3f269a;
  --var-6: #0f0932;
  --accent: #5e778d;
  --var-5: #17064f;
  --half-corner: 4px;
}

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

body {
  background-color: var(--bkg);
  color: var(--blk);
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 80px;
  font-family: Figtree, sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
  display: flex;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h2 {
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.2;
}

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.2;
}

h4 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.3;
}

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.875rem;
  font-weight: 300;
  line-height: 1.4;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

p {
  max-width: 920px;
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.5;
}

blockquote {
  border-left: 5px solid #e2e2e2;
  margin-bottom: 10px;
  padding: 10px 20px;
  font-size: 1rem;
  line-height: 1.5;
}

.container {
  z-index: 1;
  background-color: var(--bkg);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 5em;
  display: flex;
  position: relative;
}

.container.contact-container {
  width: 100%;
  padding: 0 0% 0;
}

.container.no-margin-bottom {
  padding-bottom: 0;
}

.light-text {
  color: var(--sub);
  font-weight: 200;
}

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

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

.divider.half-copy {
  width: 100%;
  height: 1px;
}

.divider.playbookcard-line {
  background-color: var(--line);
}

.divider.mobile-divider {
  display: none;
}

.card {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border-style: solid none;
  border-width: 1px;
  border-color: var(--line) #0000;
  color: var(--blk);
  flex-flow: column;
  max-height: 400px;
  padding: 15px 2px;
  text-decoration: none;
  transition: all .8s;
  display: flex;
}

.card-h {
  margin-top: 0;
  margin-bottom: 5px;
  font-family: Inter;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
}

.card-sub {
  color: var(--sub);
  letter-spacing: 1px;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
}

.card-img-wrap {
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background-color: var(--bkg);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.sub-flex {
  justify-content: space-between;
  margin-bottom: 10px;
  display: flex;
}

.footer {
  color: var(--blk);
  text-align: center;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 15px;
  font-weight: 200;
  display: flex;
}

.clients {
  grid-column-gap: 8em;
  grid-row-gap: 8em;
  flex-flow: wrap;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-around;
  place-items: center;
  width: 100%;
  margin-bottom: 100px;
  display: grid;
  position: relative;
}

.client-logo {
  background-image: url('../images/Group-281.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: contain;
  width: 100%;
  height: 20px;
}

.client-logo.st-logo {
  background-image: url('../images/Studio-Tache.svg');
  height: 50px;
}

.client-logo.rebrandless {
  background-image: url('../images/Rebrandless.svg');
  height: 38px;
}

.client-logo.house {
  background-image: url('../images/House-Of-Lithe.svg');
  height: 32px;
}

.client-logo.okiyo {
  background-image: url('../images/okiyo.svg');
  height: 38px;
  margin-top: 5px;
}

.client-logo.keless {
  background-image: url('../images/Keless.svg');
  height: 24px;
}

.client-logo.joolca {
  background-image: url('../images/JOOLCA.svg');
  height: 24px;
}

.client-logo.internalities {
  background-image: url('../images/Internalities.svg');
  height: 28px;
}

.client-logo.roen {
  background-image: url('../images/Roen.svg');
  height: 28px;
}

.client-logo.asket {
  background-image: url('../images/asket.svg');
  height: 27px;
}

.cta {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  text-align: center;
  border-radius: 4px;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 400px;
  display: flex;
  position: relative;
}

.cta-block {
  z-index: 30;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  border: 1px solid var(--line);
  background-color: var(--bkg);
  box-shadow: none;
  -webkit-backdrop-filter: blur(10px) brightness(90%);
  backdrop-filter: blur(10px) brightness(90%);
  color: var(--blk);
  text-align: left;
  border-radius: 1px;
  flex-flow: row;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 100px 15%;
  font-size: 18px;
  display: grid;
  position: absolute;
}

.cta-img {
  z-index: 10;
  opacity: 1;
  filter: blur(2px);
  object-fit: contain;
  height: 400px;
  display: none;
  position: relative;
}

.table {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  display: flex;
}

.li {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  flex: 1;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
}

.li.reverse {
  border: 1px solid var(--line);
  background-color: var(--blk);
  color: var(--wht);
  border-radius: 4px;
  flex: 0 auto;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
}

.table-p {
  color: var(--sub);
  text-align: right;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 200;
  line-height: 1;
}

.light {
  color: var(--sub);
}

.nav-side-container {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
}

.nav-side-container.right {
  justify-content: flex-end;
  align-items: center;
}

.icoimg {
  background-color: #e0deda;
  width: 15%;
  height: 210px;
}

.icoimg.second {
  background-color: #c9c6bc;
}

.icoimg.third {
  background-color: #a6a49c;
}

.icoimg.forth {
  background-color: #d2c8b8;
}

.design-kit {
  z-index: 40;
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  background-color: var(--blk);
  color: var(--wht);
  text-align: left;
  border: 1px solid #454545;
  border-radius: 16px;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  padding: 100px 3%;
  display: none;
  position: relative;
  overflow: hidden;
}

.header-sect {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  text-align: center;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
  padding-top: 5rem;
  display: flex;
}

.border-b {
  border-bottom: 1px solid var(--line);
  padding-bottom: 25px;
}

.cc-txt {
  color: var(--sub);
  font-size: .8rem;
  font-weight: 200;
  line-height: 2;
}

.profile-card {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: column;
  justify-content: space-between;
  align-items: stretch;
  display: flex;
  position: relative;
}

.name-wrap {
  grid-row-gap: 15px;
  border: 1px solid var(--line);
  background-color: var(--bkg);
  text-align: center;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  padding: 5px;
  display: flex;
}

.name {
  z-index: 3;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  color: var(--blk);
  margin-top: 0;
  margin-bottom: -40px;
  margin-left: 0;
  padding: 3px 10px;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;
  position: relative;
}

.h-style {
  border: 1px solid var(--line);
  background-color: var(--line);
  background-image: url('../images/plus-blue.svg');
  background-position: 5px;
  background-repeat: no-repeat;
  background-size: 10px;
  flex: 1;
  margin-top: 0;
  margin-bottom: 0;
  padding: 5px 8px 5px 20px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1;
}

.h-style.name {
  background-color: var(--wht);
  color: var(--blk);
  letter-spacing: .5px;
  background-image: none;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 8px;
  font-size: 15px;
}

.style-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  display: flex;
}

.card-img-name {
  border: 1px solid var(--line);
  background-color: var(--bkg);
  background-image: url('../images/Zach.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: auto 90%;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 300px;
  margin-bottom: 25px;
  display: flex;
}

.card-img-name.ekaterina {
  background-image: url('../images/Ekaterina.svg');
}

.card-img-name.oliver {
  background-image: url('../images/Oli.svg');
}

.button {
  border: 1px solid var(--blk);
  background-color: var(--blk);
  color: var(--wht);
  text-align: center;
  letter-spacing: .5px;
  justify-content: center;
  align-items: center;
  min-height: 40px;
  max-height: 50px;
  padding: 5px 20px;
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  display: flex;
}

.button.p10 {
  width: 100%;
}

.button.light {
  z-index: 2;
  background-color: var(--bkg);
  color: var(--blk);
  flex: 1;
  position: relative;
}

.button.cta-btn {
  z-index: 2;
  width: 100%;
  position: relative;
}

.note {
  opacity: .5;
  color: var(--sub);
  text-transform: uppercase;
  margin-bottom: 0;
  font-family: Inconsolata, monospace;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.note.inconsolata {
  opacity: 1;
  letter-spacing: 1px;
  text-transform: none;
  font-family: Inconsolata, monospace;
  font-size: 16px;
  font-weight: 300;
}

.note.fn-date {
  font-size: .8rem;
}

.note.script {
  text-transform: none;
  font-family: Caveat, sans-serif;
  font-size: 1.25rem;
}

.ital {
  opacity: .6;
  font-style: normal;
}

.nav {
  z-index: 99;
  border-bottom: 1px solid var(--line);
  -webkit-backdrop-filter: blur(15px);
  backdrop-filter: blur(15px);
  background-color: #f9f9f94d;
  position: fixed;
  inset: 0% 0% auto;
}

.button-text {
  margin-bottom: 0;
  font-size: 14px;
  line-height: 1;
}

.grey {
  color: #a1a1a1;
  font-weight: 200;
}

.grey.small {
  font-size: 12px;
}

.grey.play {
  font-family: body;
  font-size: 18px;
  font-weight: 200;
  line-height: 2;
}

.placeholder {
  background-color: var(--bkg);
  background-image: url('../images/Mark-Grey.svg');
  background-position: 80%;
  background-repeat: no-repeat;
  background-size: auto 170px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: fixed;
  inset: 0%;
}

.whiteblock {
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  background-color: #f9f9f999;
  flex-flow: column;
  justify-content: space-around;
  width: 90%;
  height: auto;
  padding: 25px;
  display: flex;
}

.middle {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  text-align: center;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 150px;
  padding-bottom: 200px;
  display: flex;
  position: relative;
}

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

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

.haeeum {
  filter: invert();
  width: 350px;
  max-width: 700px;
  position: absolute;
}

.soon {
  color: var(--sub);
  letter-spacing: 25px;
  text-transform: uppercase;
  margin-top: 134px;
  font-size: 14px;
  font-weight: 200;
  line-height: 1;
}

.end {
  letter-spacing: 0;
}

.contact-wrap {
  flex-flow: column;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 70vh;
  display: flex;
}

.contact-child {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  display: flex;
}

.contact-child.contact-child-text {
  z-index: 1;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  -webkit-backdrop-filter: brightness(1000%);
  backdrop-filter: brightness(1000%);
  text-align: center;
  background-color: #f9f9f999;
  flex-flow: column;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  margin: 20px;
  font-weight: 300;
  display: flex;
  position: relative;
}

.contacth3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 29px;
  font-weight: 300;
  line-height: 1;
}

.contacth4 {
  color: var(--sub);
  margin-top: 0;
  margin-bottom: 0;
  font-size: 26px;
  font-weight: 200;
  line-height: 1;
}

.contact-sub-img {
  object-fit: contain;
  border-radius: 8px;
  width: auto;
  height: 250px;
}

.embed {
  width: 30%;
  margin-left: auto;
  margin-right: auto;
}

.discover-link {
  color: var(--blk);
  white-space: nowrap;
  font-weight: 300;
}

.disocver-link {
  grid-column-gap: 5%;
  grid-row-gap: 5%;
  filter: invert();
  color: var(--blk);
  border-bottom: 1px solid #1f1d1c00;
  justify-content: center;
  align-self: center;
  align-items: center;
  width: 320px;
  padding-top: 2px;
  padding-bottom: 2px;
  text-decoration: none;
  transition: border-color .4s;
  display: flex;
}

.disocver-link:hover {
  border-bottom: 1px solid var(--blk);
  opacity: 1;
}

.discover-arrow {
  width: 15px;
}

.footer-tc-container {
  background-color: var(--line);
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 40px;
  margin-top: 5px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.white-orb {
  z-index: 1;
  background-color: var(--bkg);
  opacity: .15;
  filter: blur(8px);
  position: absolute;
  inset: -2% 0% 0% -1%;
}

.cta-img-wrap {
  width: 100%;
  position: relative;
}

.navigation {
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background-color: #f9f9f900;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 8px 10px 1px #1f1d1c0a;
}

.brand {
  background-image: url('../images/Mark-Blk.svg'), url('../images/grey-noise.avif');
  background-position: 2%, 0%;
  background-repeat: no-repeat, no-repeat;
  background-size: 25px, 25px;
  width: 140px;
  height: 50px;
  padding-bottom: 0;
}

.nav-container {
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
  height: 80px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 3%;
  display: flex;
  overflow: hidden;
}

.nav-li {
  background-image: url('../images/Instagram-blk.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40px;
  padding: 18px;
  transition: background-color .4s;
}

.nav-li.youtube {
  background-image: url('../images/YouTube-blk.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40px;
}

.nav-li.contact {
  background-image: url('../images/Contact-blk.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40px;
}

.notification-bar {
  grid-column-gap: 5%;
  grid-row-gap: 5%;
  border-bottom: 1px solid var(--blk);
  background-color: var(--blk);
  flex-flow: column;
  justify-content: center;
  align-items: center;
  height: 40px;
  padding-top: 8px;
  padding-bottom: 5px;
  display: none;
  position: relative;
}

.gradient-line {
  background-image: linear-gradient(90deg, #0f0932, #17064f 21%, #3f269a 45%, #b83274 69%, #f65108 87%, #ff8550);
  height: 2px;
  display: block;
  position: absolute;
  inset: auto 0% 0%;
}

.sub-txt {
  font-size: 32px;
  font-weight: 300;
  line-height: 1.3;
}

.difference {
  z-index: 1;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  text-align: left;
  border-radius: 8px;
  flex-flow: column;
  justify-content: space-around;
  align-items: flex-start;
  width: 60%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 75px;
  padding-bottom: 100px;
  display: flex;
  position: relative;
}

.hf-h2 {
  font-family: Inter;
  font-size: 28px;
}

.hf-intro-p {
  flex: 0 auto;
  margin-bottom: 0;
  font-family: Inter;
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
}

.hflogo {
  width: 550px;
  margin-right: auto;
}

.location {
  width: 100%;
  font-size: 12px;
  font-weight: 300;
  line-height: 1;
}

.hf-h3 {
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Inter;
  font-size: 28px;
  font-weight: 300;
  line-height: 1.2;
}

.hf-h3.max-width {
  color: var(--blk);
  max-width: 700px;
}

.hf-h3.plays-h3 {
  max-width: 700px;
}

.haeeum-logo {
  width: 100px;
  height: 10px;
  margin-left: auto;
  margin-right: auto;
}

._100-w {
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80vh;
  margin-top: 15px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1%;
  display: flex;
  position: relative;
}

.footer-symbol {
  z-index: -1;
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  align-items: center;
  width: 95%;
  max-width: 1920px;
  display: flex;
  position: relative;
}

.contact-video-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.contact-vid {
  filter: blur(30px);
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.bio-img {
  object-fit: contain;
  border-radius: 4px;
  align-self: center;
  width: 100px;
  height: 80px;
  margin-top: 15px;
  padding-top: 10px;
}

.profile {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border: 1px solid var(--line);
  background-color: var(--bkg);
  border-radius: 6px;
  flex: 1;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  max-width: 1920px;
  margin-bottom: 1%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
  box-shadow: 0 6px 8px 2px #0000000d;
}

.float-left {
  z-index: 103;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  flex-flow: column;
  align-items: flex-start;
  width: 95%;
  max-width: 19200px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: sticky;
  top: 100px;
}

.layout {
  grid-column-gap: 2.5rem;
  grid-row-gap: 5rem;
  border: 1px solid var(--line);
  border-radius: var(--corner);
  text-align: center;
  background-color: #fff;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr);
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 95%;
  max-width: 1920px;
  margin: 25px auto 100px;
  padding-left: 1%;
  padding-right: 1%;
  display: flex;
}

.layout.innerpages {
  width: 95%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 7rem;
}

.layout.process-inner {
  grid-row-gap: 2.5rem;
  background-color: var(--bkg);
  background-image: linear-gradient(0deg, #ece9e6, #f9f9f9);
  width: 100%;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  box-shadow: inset 0 0 12px 4px #ebebeb80, 0 0 14px -1px #0000000a;
}

.layout.arti {
  text-align: left;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 95%;
  margin-bottom: 0;
  padding-top: 2em;
  padding-bottom: 2em;
}

.layout.halved {
  grid-row-gap: 2.5rem;
  padding-top: 2.5rem;
}

.layout.partner-grid {
  grid-row-gap: 2.5rem;
  width: 95%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2rem;
}

.layout.pitch-sticky {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  text-align: left;
  border-style: none;
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 0;
  padding-left: 0%;
  padding-right: 0%;
}

.layout.is-pitch {
  justify-content: flex-start;
  align-items: flex-start;
  width: 95%;
}

.layout.pitch-pricing {
  grid-row-gap: 2.5rem;
  width: 95%;
  max-width: 1920px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 2rem;
}

.layout.faq {
  text-align: left;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0;
  padding-top: 2em;
  padding-bottom: 2em;
}

.inner-grid {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
}

.inner-grid._2-5innergrid {
  grid-column-gap: 5rem;
  grid-row-gap: 5rem;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.cover-img-cont {
  z-index: 2;
  border: 1px solid var(--line);
  opacity: .9;
  background-image: linear-gradient(138deg, #ece9e6, #f9f9f9);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.header-wrap {
  z-index: 3;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  text-align: left;
  flex-flow: row;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  place-items: center;
  width: 100%;
  padding: 50px 25px;
  display: flex;
  position: sticky;
}

.img-tst {
  border: 1px solid var(--line);
  object-fit: cover;
  border-radius: 10px;
  width: 100%;
  height: 450px;
  margin-left: auto;
  margin-right: auto;
}

.text-logo-container {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  text-align: center;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  height: 100%;
  padding-top: 0;
  display: flex;
}

.inner-grid-blanks-text {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: left;
  grid-template-rows: auto;
  grid-template-columns: minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr);
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.subpage-h2 {
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-family: Inter;
  font-size: 28px;
  line-height: 2;
}

.playcard {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  border: 1px solid var(--line);
  background-color: var(--bkg);
  text-align: left;
  border-radius: 4px;
  flex-flow: column;
  justify-content: space-around;
  align-items: flex-start;
  height: auto;
  padding: 25px;
  display: flex;
  box-shadow: 0 2px 5px #1f1d1c0f, 0 6px 8px 3px #00000008;
}

.playcard.wide {
  padding-left: 100px;
}

.playcard.coming-soon {
  background-color: var(--blk);
  color: var(--wht);
  text-align: center;
  justify-content: space-around;
  align-items: center;
}

.profile-main {
  margin-top: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
}

.profile-main.style {
  background-color: var(--line);
  color: var(--blk);
  border-radius: 3px;
  padding: 2px 5px;
}

.bold {
  color: var(--blk);
  font-weight: 400;
}

.text-link {
  grid-column-gap: 14px;
  grid-row-gap: 14px;
  color: var(--blk);
  align-items: center;
  padding-bottom: 5px;
  line-height: 1.5;
  text-decoration: none;
  display: flex;
}

.text-link-icon {
  width: 12px;
  height: 12px;
}

.grey-thin {
  color: #a1a1a1;
  font-weight: 100;
}

.scroll {
  height: 50px;
}

.social-ico {
  opacity: .72;
  background-image: url('../images/Instagram---wht.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 40px;
  border-radius: 4px;
  padding: 18px;
  transition: opacity .4s;
}

.social-ico:hover {
  opacity: 1;
}

.social-ico.social-you {
  background-image: url('../images/YouTube---wht.svg');
}

.social-icon-container {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  display: flex;
}

.processcard {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  border: 1px solid var(--line);
  background-color: var(--bkg);
  text-align: left;
  border-radius: 4px;
  flex-flow: column;
  justify-content: space-around;
  align-items: flex-start;
  height: 100%;
  padding: 25px;
  display: flex;
}

.cc-li {
  color: var(--blk);
  font-size: 14px;
  text-decoration: none;
}

.cc-admin-wrap {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex: 1;
  display: flex;
}

.cc-admin-wrap.right {
  justify-content: flex-end;
  align-items: center;
}

.quote-text {
  z-index: 1;
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  flex-flow: column;
  max-width: 850px;
  display: flex;
}

.quote-h2 {
  z-index: 1;
  color: var(--sub);
  text-transform: uppercase;
  margin-top: 0;
  font-size: 40px;
  font-weight: 300;
  line-height: 1.2;
}

.quote-card {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  border: 1px solid var(--line);
  text-align: left;
  background-color: #fff;
  border-radius: 4px;
  flex-flow: column;
  justify-content: flex-end;
  align-items: flex-end;
  height: 30rem;
  padding: 25px;
  display: flex;
  box-shadow: 0 2px 5px #1f1d1c0f, 0 6px 8px 3px #00000008;
}

.quotie {
  z-index: 1;
  color: var(--sub);
  text-align: right;
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 200;
  line-height: 2;
  position: relative;
}

.quotationmark {
  width: 180px;
  padding: 17px;
  position: absolute;
  top: 40px;
  left: -70px;
}

.process-title {
  width: 100%;
}

.process-h4 {
  color: var(--sub);
  text-align: right;
  font-size: 18px;
  font-weight: 200;
  line-height: 2;
}

.process-h3 {
  text-align: left;
  margin-top: 0;
  margin-bottom: 15px;
  font-family: Figtree, sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.2;
}

.colour-dot {
  background-color: var(--var-1);
  border-radius: 50%;
  width: 8px;
  height: 8px;
}

.colour-dot.dot-3 {
  background-color: var(--var-3);
}

.colour-dot.dot-2 {
  background-color: var(--var-2);
}

.colour-dot.dot-4 {
  background-color: var(--var-4);
}

.process-sub-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.footer-logo {
  z-index: 6;
  opacity: 1;
  width: 100%;
  height: auto;
  margin: 10px auto;
  position: relative;
}

.process-title-wrap {
  grid-column-gap: .2rem;
  grid-row-gap: .2rem;
  flex-flow: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
}

.process-h2 {
  color: var(--blk);
  font-family: Inter;
  font-size: 28px;
  font-weight: 100;
  line-height: 1;
}

.article-navigation {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  box-shadow: inset 0 0 12px 0 var(--line), 0 5px 5px 2px #13131308;
  border: 1px solid #eae9e9;
  flex-flow: column;
  height: auto;
  padding: 25px;
  display: flex;
  position: sticky;
  top: 100px;
}

.main-article {
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  flex-flow: column;
  display: flex;
}

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

.text-letterspacing-wide {
  letter-spacing: .025em;
}

.text-style-allcaps {
  text-transform: uppercase;
}

.heading-xlarge {
  font-size: 3.75rem;
  font-weight: 400;
  line-height: 1.2;
}

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

.text-letterspacing-xtight {
  letter-spacing: -.03em;
}

.text-letterspacing-normal {
  letter-spacing: 0;
}

.text-style-quote {
  color: #101828;
  border-left: .125rem solid #7f56d9;
  margin-bottom: 0;
  padding: .75rem 1.25rem;
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 500;
  line-height: 1.5;
}

.text-lineheight-normal {
  line-height: 1.5;
}

.uui-styleguide_list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  padding-bottom: 4rem;
  display: grid;
}

.text-style-link {
  text-decoration: underline;
}

.text-style-muted {
  opacity: .6;
}

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

.text-size-tiny {
  letter-spacing: normal;
  font-size: .75rem;
}

.heading-large {
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

.text-align-right {
  text-align: right;
}

.text-size-small {
  letter-spacing: normal;
  font-size: .875rem;
}

.text-letterspacing-tight {
  letter-spacing: -.015em;
}

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

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

.text-lineheight-tall {
  line-height: 1.7;
}

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

.text-style-nowrap {
  white-space: nowrap;
}

.heading-small {
  letter-spacing: 0;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.4;
}

.heading-small.pitch-h {
  z-index: 3;
  filter: contrast(200%) drop-shadow(0px 2px 5px var(--sub));
  color: var(--var-6);
  text-align: center;
  mix-blend-mode: overlay;
  max-width: 90%;
  font-size: 3.5rem;
  position: absolute;
}

.heading-xsmall {
  letter-spacing: 0;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.4;
}

.heading-xsmall.text-light {
  font-weight: 200;
}

.heading-xsmall.text-light.is-strike-thru {
  text-decoration: line-through;
}

.text-letterspacing-xwide {
  letter-spacing: .05em;
}

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

.text-size-regular {
  letter-spacing: normal;
  font-size: 1rem;
}

.text-lineheight-xtall {
  line-height: 2;
}

.text-align-left {
  text-align: left;
}

.uui-styleguide_heading {
  z-index: 100;
  color: #fff;
  background-color: #101828;
  padding: .75rem 1rem;
  font-weight: 600;
  position: sticky;
  top: 0;
}

.text-style-strikethrough {
  text-decoration: line-through;
}

.heading-xxlarge {
  font-size: 4.5rem;
  font-weight: 400;
  line-height: 1.2;
}

.uui-styleguide_class-label {
  color: #fff;
  white-space: nowrap;
  cursor: context-menu;
  background-color: #0073e6;
  border-radius: 2px;
  padding: .25rem .5rem;
  font-size: .75rem;
  display: inline-block;
}

.uui-styleguide_class-label.html-tags {
  background-color: #be4aa5;
}

.uui-styleguide_class-wrapper {
  grid-column-gap: 1.5rem;
  grid-row-gap: 0rem;
  grid-template-rows: auto;
  grid-template-columns: 15rem 1fr;
  align-items: start;
}

.text-style-italic {
  font-style: italic;
}

.text-lineheight-none {
  line-height: 1;
}

.heading-medium {
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1.3;
}

.uui-styleguide_subheading {
  z-index: 99;
  -webkit-backdrop-filter: saturate(150%) blur(8px);
  backdrop-filter: saturate(150%) blur(8px);
  background-color: #ffffffe6;
  border-bottom: 1px solid #fff;
  padding: .75rem 1rem;
  position: sticky;
  top: 3rem;
}

.text-lineheight-xshort {
  line-height: 1.2;
}

.text-lineheight-short {
  line-height: 1.3;
}

.video-block {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border: 1px solid var(--line);
  background-image: linear-gradient(150deg, #ece9e6, #f9f9f9);
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  display: flex;
}

.video-block.pitch-dl {
  background-color: var(--wht);
  color: var(--blk);
  background-image: none;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color .4s, border .4s;
}

.video-block.pitch-dl:hover {
  border-color: var(--sub);
  background-color: var(--line);
}

.video {
  border-radius: 4px;
  padding-bottom: 0;
}

.video-container {
  border-radius: 4px;
  width: 250px;
  height: auto;
  overflow: hidden;
}

.arti-title {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  display: flex;
}

.number {
  color: var(--sub);
  margin-right: 15px;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1;
  display: inline-block;
}

.point-wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  border: 1px solid var(--line);
  background-color: var(--bkg);
  text-align: left;
  flex-flow: column;
  width: 100%;
  min-width: 100%;
  margin-bottom: 50px;
  padding: 20px;
  display: flex;
  position: relative;
}

.point-wrapper.lighter {
  background-color: var(--wht);
}

.point-wrapper.praise {
  flex-flow: row;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
}

.point-wrapper.last {
  margin-bottom: 0;
}

.arti-title-wrap {
  align-items: flex-end;
  display: flex;
}

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

.solid-point {
  font-weight: 400;
}

.index-point {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  color: var(--blk);
  flex-flow: column;
  text-decoration: none;
  display: flex;
}

.download-box {
  border: 1px solid var(--sub);
  background-image: url('../images/download.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 25px;
  border-radius: 4px;
  width: 130px;
  height: 50px;
  transition: background-color .5s;
  overflow: hidden;
}

.download-box:hover {
  background-color: var(--wht);
}

.download-box.db-dl {
  border-color: var(--blk);
  background-image: url('../images/download.svg'), linear-gradient(0deg, var(--line), white);
  background-position: 50%, 0 0;
  background-repeat: no-repeat, repeat;
  background-size: 20px, auto;
  width: 15%;
  height: 40px;
}

.top-50 {
  margin-top: 1em;
}

.brand-card {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  border: 1px solid var(--line);
  background-color: var(--bkg);
  text-align: left;
  border-radius: 4px;
  flex-flow: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding: 25px;
  display: flex;
  overflow: hidden;
}

.brand-logo {
  max-width: 20%;
}

.brand-h4 {
  color: var(--sub);
  text-align: right;
  font-family: Inconsolata, monospace;
  font-size: 18px;
  font-weight: 200;
  line-height: 1;
}

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

.built {
  font-size: 1rem;
}

.images_list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  column-count: 4;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: flex-start;
  column-gap: 2rem;
  width: 98%;
  margin-bottom: 100px;
}

.image-recent-wrap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border-top-style: solid;
  border-top-width: 1px;
  border-top-color: var(--line);
  border-right-style: solid;
  border-right-width: 1px;
  border-right-color: var(--line);
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--line);
  border-left-style: solid;
  border-left-width: 1px;
  border-left-color: var(--line);
  background-color: var(--bkg);
  cursor: pointer;
  break-inside: avoid;
  border-radius: 4px;
  flex-flow: column;
  margin-bottom: 2.5rem;
  padding: 10px;
  display: flex;
  position: relative;
  box-shadow: 0 3px 8px 2px #13131314;
}

.overlay {
  z-index: 100;
  background-color: #131313b3;
  position: absolute;
  inset: 0%;
}

.approach {
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  background-color: #fff;
  grid-template-rows: auto;
  grid-template-columns: minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr);
  grid-auto-columns: 1fr;
  align-items: start;
  max-width: 1920px;
  margin-top: 25px;
  margin-bottom: 100px;
  padding-left: 1%;
  padding-right: 1%;
  display: grid;
}

.close {
  margin-top: -7px;
}

.close-parent {
  z-index: 102;
  border: 1px solid var(--accent);
  background-color: var(--blk);
  color: var(--wht);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  width: 80vw;
  height: 100px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.25rem;
  display: flex;
  position: fixed;
  inset: auto 0% 6%;
}

.modal-recent {
  z-index: 101;
  justify-content: center;
  align-items: flex-start;
  display: none;
  position: fixed;
  inset: 0%;
}

.image-container-recent {
  z-index: 101;
  flex: 1;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  padding-top: 150px;
  padding-bottom: 200px;
  display: flex;
  position: relative;
  inset: 0%;
  overflow: scroll;
}

.image-modal {
  margin-top: 100px;
}

.no-scroll {
  overflow: hidden;
}

.image-recent {
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 15px;
}

.designer {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  border: 1px solid var(--line);
  color: var(--blk);
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding: 4px;
  text-decoration: none;
  display: flex;
}

.pp {
  border: 1px solid var(--blk);
  background-color: var(--line);
  background-image: url('../images/Zach.svg');
  background-position: 50% 100%;
  background-repeat: no-repeat;
  background-size: 26px;
  border-radius: 150%;
  width: 30px;
  height: 40px;
  margin-top: -20px;
}

.pp.katie {
  background-image: url('../images/Ekaterina.svg');
}

.pp.oli {
  background-image: url('../images/Oli.svg');
}

.partners {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.partner-logo {
  width: 100%;
  max-height: 30px;
}

.minor {
  font-size: 1.25rem;
}

.pricing-table {
  border: 1px solid var(--line);
  background-color: var(--bkg);
  text-align: left;
  border-radius: 4px;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  padding: 15px 25px;
  display: flex;
  overflow: hidden;
}

.pricing-light-h5 {
  font-size: .9rem;
}

.pricing-light-h5.light-pricing-h5 {
  color: #131313b8;
  font-weight: 300;
}

.pricing-li {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-bottom: 1px solid var(--line);
  grid-template-rows: auto;
  grid-template-columns: .75fr .5fr 1.25fr;
  grid-auto-columns: 1fr;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  padding-left: 15px;
  display: grid;
}

.pricing-li.flow {
  border-bottom-style: none;
  grid-template-rows: auto auto auto;
  grid-template-columns: .75fr .5fr 2.5fr;
}

.pricing-li.last {
  border-bottom-style: none;
  padding-bottom: 0;
}

.pricing-li.light {
  background-color: var(--wht);
}

.pricing-p {
  color: #131313b8;
  font-size: .9rem;
}

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

.grey-text.smaller {
  font-size: .9rem;
}

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

.pricing-title {
  grid-column-gap: 5%;
  grid-row-gap: 5%;
  text-align: left;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  padding-top: 5em;
  padding-left: 25px;
  padding-right: 25px;
  display: flex;
}

.we-see {
  z-index: 3;
  font-weight: 300;
  position: relative;
}

.title-tag {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  border: 1px solid var(--line);
  color: var(--blk);
  background-color: #fff;
  justify-content: center;
  align-items: center;
  padding: 15px 4px;
  text-decoration: none;
  display: flex;
}

.brand-recent {
  height: 30px;
}

.logo-home {
  width: 30vw;
  max-width: 200px;
}

.platforms {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-flow: column;
  align-items: center;
  max-width: 1000px;
  margin-top: 8em;
  margin-bottom: 8em;
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
}

.signature {
  font-size: 1rem;
}

.cursive {
  font-family: Caveat, sans-serif;
  font-size: 1.4rem;
}

.intro-paragraph {
  border-style: solid none;
  border-width: 1px;
  border-color: var(--line);
  text-align: center;
  max-width: 800px;
  margin: 25px auto 125px;
  padding-top: 100px;
  padding-bottom: 100px;
}

.colour-container {
  grid-column-gap: 2px;
  grid-row-gap: 2px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.colour-sq {
  background-color: var(--var-6);
  width: 20px;
  height: 20px;
  position: relative;
}

.colour-sq.var-5 {
  background-color: var(--var-5);
}

.colour-sq.var-4 {
  background-color: var(--var-4);
}

.colour-sq.var-3 {
  background-color: var(--var-3);
}

.colour-sq.var-2 {
  background-color: var(--var-2);
}

.colour-sq.var-1 {
  background-color: var(--var-1);
}

.platforms-pricing {
  z-index: 3;
  grid-column-gap: 2.5rem;
  grid-row-gap: 2.5rem;
  text-align: center;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.team {
  grid-column-gap: 2.5rem;
  grid-row-gap: 5rem;
  border: 1px solid var(--line);
  border-radius: var(--corner);
  text-align: center;
  background-color: #fff;
  flex-flow: column;
  grid-template-rows: auto;
  grid-template-columns: minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr);
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  width: 95%;
  max-width: 1920px;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 1%;
  padding-left: 1%;
  padding-right: 1%;
  display: flex;
}

.team-grid {
  grid-column-gap: 1%;
  grid-row-gap: 1%;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.cta-btn-wrap {
  justify-content: center;
  align-items: center;
  width: 70%;
  display: flex;
  position: relative;
}

.glow {
  z-index: 1;
  opacity: .45;
  filter: blur(20px);
  object-fit: contain;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
}

.glow.footer-glow {
  border-radius: 16px;
}

.glow.floating-glow {
  filter: blur(20px);
  border-radius: 8px;
}

.article-cover {
  object-fit: contain;
  height: 300px;
}

.highlight {
  background-color: var(--line);
  color: var(--blk);
  font-weight: 500;
}

.article-h {
  color: var(--blk);
  font-weight: 500;
}

.underline {
  text-decoration: underline;
}

.profile-image-list {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
  column-count: 4;
  flex-flow: wrap;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-content: flex-start;
  column-gap: 2rem;
  width: 98%;
  margin-bottom: 100px;
  padding-top: 50px;
}

.bolded {
  font-weight: 500;
}

.black {
  color: var(--blk);
}

.flow-note {
  background-color: var(--line);
  text-align: center;
  width: 100%;
  max-width: none;
  margin-top: 25px;
  margin-left: auto;
  margin-right: auto;
  padding: 5px 15px;
  font-size: .9rem;
}

.pitch {
  z-index: 4;
  color: var(--var-6);
  font-size: 1rem;
  text-decoration: none;
  position: relative;
}

.pricing-h {
  font-size: 1.1rem;
  font-weight: 600;
}

.portfilio-img {
  border: 1px solid var(--line);
  border-radius: 4px;
  margin-bottom: 15px;
}

.emoji-eye {
  z-index: 2;
  width: 100%;
  max-width: 5vw;
  position: absolute;
  inset: 25% auto auto 22%;
}

.emoji-eye.is-right-eye {
  left: auto;
  right: 22%;
}

.error-description {
  color: #9f9f9f;
  text-align: center;
  letter-spacing: 0;
  text-transform: none;
  font-family: Open Sans, sans-serif;
  font-weight: 600;
  line-height: 1.5;
}

.error-content-emoji-wrap {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.emoji-mouth {
  z-index: 2;
  backface-visibility: visible;
  perspective-origin: 50% 100%;
  transform-origin: 50% 100%;
  background-color: #000;
  border-radius: 100vw;
  flex-flow: column;
  width: 45px;
  height: 45px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  inset: 60% 0% auto;
}

.error-content-wrapper {
  z-index: 2;
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  cursor: default;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 88%;
  height: 80%;
  display: flex;
  position: relative;
}

.emoji-wrapper {
  perspective: 1500px;
  flex: none;
  width: 28vw;
  height: 28vw;
}

.emoji-face {
  background-color: #baf049;
  border-radius: 100vw;
  width: 100%;
  height: 100%;
  position: absolute;
  box-shadow: inset 2px 1px 5px 5px #ffffff73;
}

.section-404 {
  background-color: #f9f9f9;
  background-image: url('../images/4077186_17580.jpg');
  background-position: 50%;
  background-size: cover;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: relative;
}

.emoji-circle-wrap {
  border-radius: 50vw;
  width: 100%;
  height: 100%;
  position: relative;
}

.error-page_title {
  color: #000;
  font-size: 24rem;
  font-weight: 900;
  line-height: 1;
}

.error-desp-wrapper {
  width: 100%;
  max-width: 35rem;
}

._404 {
  padding-top: 0;
}

.main-pitch {
  grid-column-gap: 75px;
  grid-row-gap: 75px;
  flex-flow: column;
  flex: 1;
  display: flex;
}

.cover-img-cont-pitch {
  border: 1px solid var(--line);
  background-image: linear-gradient(138deg, #ece9e6, #f9f9f9);
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 380px;
  padding: 6px;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.checkbox {
  border: 1px solid var(--line);
  background-color: var(--line);
  cursor: pointer;
  background-image: none;
  background-repeat: repeat;
  background-size: auto;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.checkbox.is-checked {
  background-image: url('../images/Check.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: 20px;
}

.priority {
  color: #1e7f43;
  background-color: #e6f4ea;
  border-radius: 50px;
  padding: 6px 10px;
}

.priority.medium {
  color: #9a5b13;
  background-color: #fff4e5;
}

.priority.hard {
  color: #a12a2a;
  background-color: #fdecec;
}

.priority-text {
  font-family: Inconsolata, monospace;
  line-height: 1;
}

.blg-pitch {
  z-index: 2;
  border: 1px solid var(--line);
  mix-blend-mode: overlay;
  background-color: #131313e6;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.to-do-list {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  flex: 1;
  display: flex;
}

.cta-block-pitch {
  z-index: 30;
  grid-column-gap: 4rem;
  grid-row-gap: 4rem;
  border: 1px solid var(--line);
  background-color: var(--var-5);
  box-shadow: none;
  -webkit-backdrop-filter: blur(10px) brightness(90%);
  backdrop-filter: blur(10px) brightness(90%);
  color: var(--wht);
  text-align: left;
  border-radius: 1px;
  flex-flow: column;
  grid-template-rows: auto auto;
  grid-template-columns: auto auto;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  margin-bottom: 15px;
  margin-left: auto;
  margin-right: auto;
  padding: 50px 15%;
  font-size: 18px;
  display: flex;
  position: relative;
}

.review-title {
  font-size: 1.3rem;
}

.calendar {
  width: 100%;
}

.pitch-video {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  box-shadow: inset 0 0 12px 0 var(--line), 0 5px 5px 2px #13131308;
  border: 1px solid #eae9e9;
  flex-flow: column;
  justify-content: space-between;
  width: 100%;
  max-width: 400px;
  max-height: 400px;
  padding: 5px;
  display: flex;
  position: sticky;
  top: 150px;
}

.love {
  width: 190px;
}

.check-title-wrap {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  align-items: center;
  display: flex;
}

.fieldnotes-title-wrap {
  flex-flow: column;
  padding-top: 4em;
  display: flex;
}

.fn-h1 {
  font-family: Caveat, sans-serif;
  font-size: 5rem;
  line-height: 1;
}

.recent-fn {
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  border: 1px solid var(--line);
  background-color: var(--bkg);
  padding: 5px;
  display: flex;
}

.recent-text {
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  border: 1px solid var(--line);
  background-color: var(--wht);
  text-align: left;
  flex-flow: column;
  flex: 1;
  justify-content: space-between;
  align-items: stretch;
  padding: 10px;
  display: flex;
}

.recent-text.previous-artical {
  background-color: var(--bkg);
  text-align: center;
  min-height: 200px;
  padding-left: 50px;
  padding-right: 50px;
}

.recent-img {
  object-fit: cover;
  width: 65%;
}

.fn-h2 {
  font-size: 1.25rem;
}

.snippet {
  font-size: .8rem;
}

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

.colour-btn {
  color: var(--var-1);
  margin-right: 5px;
}

.dot {
  background-color: var(--var-1);
  border-radius: 50px;
  width: 5px;
  height: 5px;
}

.dot.dot-2 {
  background-color: var(--var-2);
}

.dot.dot-3 {
  background-color: var(--var-3);
}

.dot.fot-4 {
  background-color: var(--var-4);
}

.nav-li-wrap {
  grid-column-gap: 10px;
  grid-row-gap: 10px;
  color: var(--blk);
  border-radius: 4px;
  flex-flow: row;
  justify-content: center;
  align-items: center;
  height: 50px;
  text-decoration: none;
  transition: padding .4s, background-color .4s;
  display: flex;
}

.nav-li-wrap:hover {
  background-color: var(--line);
  padding: 5px;
}

.nav-img {
  height: 40px;
  display: none;
}

.script {
  font-family: Caveat, sans-serif;
}

.script.text {
  font-family: Inconsolata, monospace;
  font-size: 1rem;
}

.caveat {
  text-align: left;
  flex-flow: column;
  align-items: flex-start;
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.pitch-p {
  font-family: Inconsolata, monospace;
  font-size: 1rem;
  line-height: 2;
}

.highlight-purple {
  padding: 2px 25px;
  font-size: .9rem;
  font-weight: 400;
}

.div-block {
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.price-tc {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  flex-flow: column;
  display: flex;
}

.bkg {
  background-color: var(--wht);
  position: absolute;
  inset: 0%;
}

.pitch-container {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.faq-close {
  opacity: 0;
  position: absolute;
}

.faq-icon {
  flex: 1;
  justify-content: flex-end;
  align-items: center;
  display: flex;
  position: relative;
}

.faq-wrapper {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  border: 1px solid var(--line);
  background-color: var(--bkg);
  text-align: left;
  cursor: pointer;
  flex-flow: column;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  display: flex;
  position: relative;
  overflow: hidden;
}

.faq-body {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  display: flex;
}

.faq-main {
  grid-column-gap: 100px;
  grid-row-gap: 100px;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.faq-nav {
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  color: var(--sub);
  white-space: nowrap;
  border: 1px solid #0000;
  border-radius: 4px;
  flex-flow: column;
  padding-left: 3px;
  padding-right: 3px;
  text-decoration: none;
  transition: border-color .4s, background-color .4s;
  display: flex;
}

.faq-nav:hover {
  border: 1px solid var(--line);
  background-color: var(--bkg);
}

.faq-nav.w--current {
  color: var(--blk);
  transition-property: none;
}

.faq-nav.w--current:hover {
  background-color: var(--wht);
  border-color: #ebebeb00;
}

.faq-navigation-wrap {
  z-index: 6;
  grid-column-gap: 15px;
  grid-row-gap: 15px;
  background-color: var(--wht);
  box-shadow: inset 0 0 12px 0 var(--line), 0 5px 5px 2px #13131308;
  border: 1px solid #eae9e9;
  flex-flow: row;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 15px;
  display: flex;
  position: sticky;
  top: 125px;
}

.faq-block {
  grid-column-gap: 25px;
  grid-row-gap: 25px;
  flex-flow: column;
  width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.faq-title-wrap {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.faq-title {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  display: flex;
}

.faq-p {
  letter-spacing: 0;
  margin-left: 1em;
  margin-right: 2em;
  font-family: Inconsolata, monospace;
  font-size: .9rem;
}

.nav-p {
  max-width: none;
  line-height: 1;
}

.about-h1 {
  font-size: 2rem;
  font-weight: 400;
}

.about-wrapper {
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  flex-flow: column;
  margin-top: 100px;
  margin-bottom: 100px;
  padding-left: 3%;
  padding-right: 3%;
  display: flex;
}

.about-cover {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  display: flex;
}

.main-about {
  object-fit: cover;
  max-width: 62%;
}

.small-about {
  grid-column-gap: 1em;
  grid-row-gap: 1em;
  flex-flow: column;
  width: 100%;
  display: flex;
}

.small-about-img {
  object-fit: cover;
  flex: 1;
}

.founder {
  grid-column-gap: 2em;
  grid-row-gap: 2em;
  text-align: left;
  align-items: center;
  display: flex;
}

.about-pp {
  max-width: 30%;
}

.demo-image {
  width: 90%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1280px) {
  .emoji-eye {
    max-width: 4vw;
  }

  .emoji-eye.is-right-eye {
    bottom: 13px;
    right: 18%;
  }

  .error-content-wrapper {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
  }

  .emoji-wrapper {
    width: 22vw;
    height: 22vw;
  }

  .emoji-circle-wrap {
    overflow: visible;
  }

  .error-page_title {
    line-height: 1;
  }
}

@media screen and (min-width: 1440px) {
  .emoji-eye {
    max-width: 4vw;
  }

  .error-content-wrapper {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    height: 80%;
  }

  .emoji-wrapper {
    width: 22vw;
    height: 22vw;
  }

  .emoji-circle-wrap {
    overflow: visible;
  }

  .error-page_title {
    color: #000;
    font-size: 27rem;
    line-height: 1;
  }
}

@media screen and (min-width: 1920px) {
  .emoji-eye {
    max-width: 4vw;
  }

  .error-description {
    font-size: 1.24rem;
  }

  .emoji-wrapper {
    width: 20vw;
    height: 20vw;
  }

  .error-desp-wrapper {
    max-width: 42rem;
  }
}

@media screen and (max-width: 991px) {
  .container {
    margin-left: 5px;
    margin-right: 5px;
    padding-left: 3%;
    padding-right: 3%;
  }

  .grid {
    grid-column-gap: 2.5rem;
    grid-row-gap: 2.5rem;
    border-bottom-style: none;
    padding-bottom: 0;
  }

  .card {
    max-height: none;
  }

  .card-sub {
    font-size: 15px;
  }

  .card-img-wrap {
    height: 360px;
  }

  .footer {
    padding-left: 2%;
    padding-right: 2%;
  }

  .client-logo.st-logo {
    height: 35px;
  }

  .client-logo.rebrandless {
    height: 27px;
  }

  .client-logo.house {
    height: 23px;
  }

  .client-logo.okiyo {
    height: 30px;
  }

  .client-logo.keless {
    height: 20px;
  }

  .client-logo.joolca {
    height: 19px;
  }

  .client-logo.internalities, .client-logo.roen {
    height: 20px;
  }

  .client-logo.asket {
    height: 21px;
  }

  .cta {
    padding-top: 0;
    padding-bottom: 0;
  }

  .cta-block {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    place-items: center stretch;
    height: 90%;
    padding-top: 25px;
    padding-bottom: 25px;
    display: flex;
  }

  .cta-img {
    height: 440px;
  }

  .table {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: wrap;
    margin-top: 5px;
  }

  .nav-side-container {
    padding-top: 0;
    padding-bottom: 0;
  }

  .design-kit {
    text-align: center;
    width: 96%;
  }

  .header-sect {
    margin-left: auto;
    margin-right: auto;
  }

  .card-img-name {
    height: 180px;
  }

  .nav {
    position: fixed;
    inset: 0% 0% auto;
  }

  .middle {
    padding-top: 100px;
    padding-bottom: 150px;
  }

  .contact-wrap {
    padding-left: 3%;
    padding-right: 3%;
  }

  .footer-tc-container {
    padding-left: 2%;
    padding-right: 2%;
  }

  .cta-img-wrap {
    width: 100%;
  }

  .nav-container {
    padding-left: 3%;
    padding-right: 3%;
  }

  .notification-bar {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .sub-txt {
    font-size: 30px;
  }

  .difference {
    width: 80%;
  }

  .hflogo {
    width: 65%;
    margin-left: auto;
    margin-right: auto;
  }

  ._100-w {
    height: 80vh;
    margin-top: 25px;
  }

  .footer-symbol {
    width: 100%;
  }

  .float-left {
    width: 95%;
  }

  .layout {
    grid-row-gap: 2.5rem;
    width: 96%;
  }

  .layout.innerpages {
    background-color: var(--bkg);
    border-style: none;
    width: 95%;
    padding-left: 0%;
    padding-right: 0%;
  }

  .layout.process-inner {
    grid-row-gap: 5rem;
    background-color: var(--bkg);
    border-style: none;
    grid-template-rows: auto auto auto auto auto;
    width: 98%;
  }

  .layout.partner-grid {
    border-style: none;
    grid-template-columns: minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr);
    width: 100%;
  }

  .layout.pitch-sticky {
    justify-content: center;
    align-items: center;
    margin-top: 10px;
  }

  .layout.is-pitch {
    width: 100%;
  }

  .layout.pitch-pricing {
    border-style: none;
    grid-template-columns: minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr);
    width: 100%;
  }

  .inner-grid._2-5innergrid {
    grid-column-gap: 1rem;
    grid-row-gap: 2.5rem;
    grid-template-rows: auto auto auto auto auto auto auto;
  }

  .cover-img-cont {
    padding: 10px;
  }

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

  .img-tst {
    height: 350px;
  }

  .text-logo-container {
    margin-top: 0;
  }

  .subpage-h2 {
    text-align: center;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .playcard {
    grid-row-gap: 2.5rem;
    box-shadow: none;
    background-color: #fff;
    border-style: solid none;
  }

  .playcard.wide {
    padding-left: 25px;
  }

  .processcard {
    background-color: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
    position: sticky;
    top: 150px;
  }

  .processcard._2 {
    z-index: 2;
    background-color: var(--blk);
    color: var(--wht);
    top: 170px;
  }

  .processcard._3 {
    z-index: 3;
    top: 200px;
  }

  .quote-h2 {
    font-size: 30px;
  }

  .quote-card {
    z-index: 5;
    background-color: #fff;
    position: sticky;
    top: 150px;
  }

  .quotationmark {
    left: 0;
  }

  .footer-logo {
    width: 95%;
  }

  .process-h2 {
    text-align: center;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  .heading-xlarge {
    font-size: 3.25rem;
  }

  .heading-large {
    font-size: 2.75rem;
  }

  .heading-small.pitch-h {
    font-size: 2.2rem;
  }

  .heading-xxlarge {
    font-size: 3.5rem;
  }

  .arti-title {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .point-wrapper {
    width: 100%;
  }

  .brand-card {
    background-color: #fff;
    padding-top: 100px;
    padding-bottom: 100px;
    position: sticky;
    top: 150px;
  }

  .images_list {
    column-count: 3;
    column-gap: 2rem;
  }

  .image-recent-wrap {
    margin-bottom: 3rem;
  }

  .approach {
    grid-row-gap: 2.5rem;
    width: 96%;
  }

  .close-parent {
    height: 70px;
  }

  .image-modal {
    width: 60%;
  }

  .pricing-li.flow {
    grid-template-columns: 1fr .5fr 2.5fr;
  }

  .pricing-title {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
  }

  .title-tag {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand-recent {
    height: 17px;
  }

  .platforms {
    max-width: 600px;
    margin-top: 6em;
    margin-bottom: 6em;
  }

  .intro-paragraph {
    margin-left: 2%;
    margin-right: 2%;
    padding: 5%;
  }

  .platforms-pricing {
    text-align: center;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 2%;
    padding-right: 2%;
  }

  .heading {
    font-size: 1.75rem;
  }

  .team {
    grid-row-gap: 2.5rem;
    width: 96%;
    margin-bottom: 0;
  }

  .team-grid {
    border-bottom-style: none;
    padding-bottom: 0;
  }

  .profile-image-list {
    column-count: 3;
    column-gap: 2rem;
  }

  .emoji-mouth {
    width: 24px;
    height: 24px;
  }

  .error-page_title {
    font-size: 18rem;
  }

  .main-pitch {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .cover-img-cont-pitch {
    border-radius: 4px;
    padding: 5px;
  }

  .cta-block-pitch {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    text-align: center;
    flex-flow: column;
    justify-content: center;
    place-items: center stretch;
    height: 90%;
    padding: 25px 5%;
    display: flex;
  }

  .pitch-video {
    width: 70%;
    max-width: none;
    height: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .recent-fn {
    flex-flow: column;
  }

  .recent-text.previous-artical {
    padding-left: 25px;
    padding-right: 25px;
  }

  .recent-img {
    width: 100%;
  }

  .caveat {
    width: 90%;
  }

  .pitch-container {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    flex-flow: column;
    align-items: flex-start;
  }

  .faq-wrapper {
    width: 100%;
  }

  .faq-block {
    width: 98%;
  }

  .faq-title {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}

@media screen and (max-width: 767px) {
  body {
    padding-top: 80px;
  }

  h2, h4 {
    font-size: 2rem;
  }

  .container.no-margin-bottom.pitch-container {
    padding-left: 0%;
    padding-right: 0%;
  }

  .grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .divider.mobile-divider {
    display: block;
  }

  .footer {
    flex-flow: column;
  }

  .clients {
    grid-column-gap: 1em;
    grid-row-gap: 6em;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr 1fr;
  }

  .client-logo.rebrandless {
    height: 30px;
  }

  .client-logo.house {
    height: 28px;
  }

  .client-logo.joolca {
    width: 100%;
    height: 24px;
  }

  .client-logo.asket {
    height: 28px;
  }

  .cta {
    margin-bottom: 50px;
  }

  .cta-block {
    flex-flow: column;
    grid-template-columns: auto;
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
  }

  .cta-img {
    height: 480px;
  }

  .table {
    grid-row-gap: 0px;
  }

  .home {
    padding: 80px 2% 0;
  }

  .header-sect {
    width: 95%;
  }

  .cc-txt {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .profile-card {
    justify-content: space-between;
    width: 48%;
  }

  .placeholder {
    background-position: 90% 40%;
    justify-content: center;
    align-items: center;
    padding-top: 0;
  }

  .whiteblock {
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    flex-flow: row-reverse wrap-reverse;
    justify-content: flex-end;
    align-items: center;
    width: 90%;
    height: 40%;
  }

  .middle {
    justify-content: center;
    align-items: flex-start;
    padding-top: 0%;
    padding-bottom: 5%;
    display: flex;
  }

  .top {
    flex-flow: column;
    display: flex;
  }

  .haeeum {
    filter: invert();
    width: 300px;
  }

  .soon {
    color: var(--blk);
    letter-spacing: 20px;
    font-size: 17px;
  }

  .footer-tc-container {
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    flex-flow: column;
    min-height: 40px;
  }

  .sub-txt {
    font-size: 24px;
  }

  .difference {
    justify-content: space-around;
    align-items: center;
    margin-bottom: 0;
  }

  .hf-intro-p {
    width: 100%;
  }

  .hflogo {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .hf-h3 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    font-size: 24px;
  }

  ._100-w {
    height: 800px;
  }

  .footer-symbol {
    width: 100%;
  }

  .float-left {
    width: 96%;
  }

  .layout {
    grid-template-columns: minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr);
    width: 100%;
  }

  .layout.innerpages {
    width: 97%;
  }

  .layout.process-inner {
    grid-row-gap: 10rem;
    background-color: #0000;
    width: 100%;
  }

  .layout.halved {
    margin-bottom: 0;
  }

  .layout.partner-grid {
    width: 97%;
  }

  .layout.pitch-sticky {
    flex-flow: column;
  }

  .layout.is-pitch {
    margin-top: 50px;
  }

  .layout.pitch-pricing {
    margin-bottom: 0;
  }

  .cover-img-cont {
    padding: 1px;
  }

  .header-wrap {
    grid-template-columns: 1fr 1fr 1fr;
    align-content: end;
  }

  .img-tst {
    height: 300px;
  }

  .inner-grid-blanks-text {
    grid-row-gap: 2rem;
    grid-template-columns: minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr);
  }

  .processcard {
    top: 120px;
  }

  .processcard._2 {
    top: 140px;
  }

  .processcard._3 {
    top: 160px;
  }

  .cc-admin-wrap {
    display: none;
  }

  .quote-h2, .process-h3 {
    flex-flow: column;
    justify-content: center;
    align-items: center;
    font-size: 24px;
  }

  .heading-xlarge {
    font-size: 2.25rem;
  }

  .text-style-quote {
    font-size: 1.125rem;
  }

  .heading-large {
    font-size: 2.25rem;
  }

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

  .text-style-nowrap {
    white-space: normal;
  }

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

  .heading-small.pitch-h {
    font-size: 3rem;
  }

  .heading-xsmall {
    font-size: 1.25rem;
  }

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

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

  .heading-medium {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .point-wrapper.praise {
    flex-flow: column;
  }

  .max-wdith-70.full-mobile {
    max-width: 100%;
  }

  .brand-card {
    top: 120px;
  }

  .images_list {
    column-count: 2;
  }

  .approach {
    background-color: #0000;
    border-style: none;
    grid-template-columns: minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr);
    width: 100%;
    padding-bottom: 5rem;
    padding-left: 2%;
    padding-right: 2%;
  }

  .close-parent {
    height: 60px;
  }

  .image-modal {
    width: 90%;
  }

  .minor {
    font-size: 1.5rem;
  }

  .pricing-table {
    padding: 5px 0;
    top: 120px;
  }

  .pricing-table.extras {
    display: flex;
  }

  .pricing-light-h5 {
    margin-left: 5px;
    font-size: 1rem;
  }

  .pricing-light-h5.light-pricing-h5 {
    font-size: .9rem;
  }

  .pricing-light-h5.light-pricing-h5.mobile-hidden {
    display: none;
  }

  .pricing-li {
    grid-template-columns: .75fr 1fr 1fr;
    padding-left: 5px;
  }

  .pricing-li.flow {
    grid-column-gap: 15px;
    grid-row-gap: 10px;
    grid-template-rows: auto auto auto auto auto;
    grid-template-columns: 1fr 2fr;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 0;
  }

  .pricing-p {
    font-size: 1rem;
  }

  .pricing-title {
    padding-top: 2em;
    padding-left: 5px;
  }

  .we-see {
    font-size: 1.2rem;
  }

  .brand-recent {
    height: 20px;
  }

  .intro-paragraph {
    padding-top: 15%;
    padding-bottom: 15%;
  }

  .platforms-pricing {
    background-color: #0000;
  }

  .team {
    grid-template-columns: minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr) minmax(.5rem, 1fr);
    width: 100%;
    margin-bottom: 0;
    padding-left: 2%;
    padding-right: 2%;
  }

  .team-grid {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
    flex-flow: wrap;
    grid-template-columns: 1fr;
    width: 100%;
    display: flex;
  }

  .profile-image-list {
    column-count: 2;
  }

  .flow-note {
    font-size: .9rem;
  }

  .pitch {
    font-size: 1rem;
  }

  .pricing-h {
    margin-left: 5px;
    font-size: 1rem;
  }

  .error-page_title {
    font-size: 12rem;
  }

  .main-pitch {
    width: 100%;
  }

  .cover-img-cont-pitch {
    border-style: none;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    height: 400px;
    padding: 0;
  }

  .checkbox {
    min-width: 40px;
    min-height: 40px;
  }

  .cta-block-pitch {
    flex-flow: column;
    grid-template-columns: auto;
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
    display: flex;
  }

  .review-title {
    font-size: 1rem;
  }

  .pitch-video {
    width: 100%;
  }

  .love {
    object-fit: cover;
  }

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

  .caveat {
    width: 90%;
  }

  .pitch-p {
    font-size: 1rem;
  }

  .about-cover {
    flex-flow: column;
  }

  .main-about {
    max-width: 100%;
  }
}

@media screen and (max-width: 479px) {
  .container {
    margin-left: 0;
    margin-right: 0;
  }

  .container.no-margin-bottom.pitch-container {
    padding-left: 1%;
    padding-right: 1%;
  }

  .divider.half-copy {
    display: none;
  }

  .client-logo {
    height: 100%;
  }

  .client-logo.rebrandless {
    width: 130px;
  }

  .client-logo.asket {
    width: 140px;
  }

  .cta {
    width: 100%;
    margin-bottom: 0;
  }

  .cta-block {
    padding: 2% 5%;
  }

  .cta-img {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .li.reverse {
    flex-flow: row;
  }

  .li.reverse.mobile-hidden {
    display: none;
  }

  .nav-side-container {
    grid-column-gap: 1rem;
    grid-row-gap: 1rem;
  }

  .design-kit {
    text-align: center;
    width: 96%;
    padding-top: 50px;
  }

  .profile-card {
    border: 1px solid var(--line);
    background-color: var(--bkg);
    width: 100%;
  }

  .card-img-name {
    background-color: var(--wht);
    height: 210px;
    margin-top: 5px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .note {
    margin-left: auto;
    margin-right: auto;
  }

  .note.script {
    margin-left: 0;
  }

  .nav {
    height: auto;
    margin-left: 0;
    margin-right: 0;
  }

  .placeholder {
    padding-top: 100px;
    position: static;
    inset: 0%;
  }

  .middle {
    padding-bottom: 20%;
  }

  .haeeum {
    width: 200px;
  }

  .soon {
    letter-spacing: 10px;
    margin-top: 100px;
    font-size: 13px;
  }

  .discover-link {
    font-size: 13px;
  }

  .footer-tc-container {
    grid-row-gap: 15px;
  }

  .cta-img-wrap {
    width: 100%;
  }

  .nav-container {
    height: 80px;
    padding: 5px 4%;
  }

  .difference {
    text-align: center;
    width: 100%;
    padding: 50px 2%;
  }

  .hf-intro-p {
    line-height: 1.5;
  }

  .hflogo {
    margin-top: 50px;
    margin-bottom: 50px;
  }

  .location {
    margin-top: 0;
    margin-bottom: 0;
  }

  .haeeum-logo {
    width: 30px;
    height: 17px;
    transform: rotate(-90deg);
  }

  ._100-w {
    height: 600px;
    margin-top: 0;
  }

  .footer-symbol {
    grid-column-gap: 40px;
    grid-row-gap: 40px;
    width: 100%;
    margin-top: 25px;
  }

  .bio-img {
    height: 100px;
  }

  .layout.halved {
    padding-left: 2%;
    padding-right: 2%;
  }

  .layout.pitch-sticky {
    margin-top: 5px;
  }

  .header-wrap {
    font-size: 16px;
  }

  .text-logo-container {
    width: 100%;
    margin-top: 0;
  }

  .inner-grid-blanks-text {
    grid-row-gap: 2rem;
  }

  .quote-card {
    height: auto;
  }

  .process-title-wrap {
    padding-left: 5px;
    padding-right: 5px;
  }

  .heading-small.pitch-h {
    font-size: 2rem;
  }

  .heading-xsmall.text-light {
    font-size: 1.1rem;
  }

  .arti-title {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
  }

  .point-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding: 10px;
  }

  .point-wrapper.lighter {
    margin-bottom: 40px;
  }

  .max-wdith-70.full-mobile {
    max-width: 100%;
  }

  .images_list {
    column-gap: 1rem;
  }

  .approach {
    grid-row-gap: 2rem;
    width: 96%;
    max-width: 100vw;
    padding-top: 1%;
  }

  .close-parent {
    width: 95vw;
    bottom: 2%;
  }

  .modal-recent {
    display: none;
  }

  .partners {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    width: 90%;
  }

  .pricing-table {
    grid-column-gap: 5px;
    grid-row-gap: 5px;
    padding-top: 5px;
    padding-bottom: 10px;
  }

  .pricing-table.extras {
    padding-top: 10px;
  }

  .pricing-light-h5 {
    font-size: 1rem;
  }

  .pricing-title {
    padding-right: 5px;
  }

  .we-see {
    font-size: 1.25rem;
  }

  .platforms-pricing {
    margin-top: 100px;
    padding-left: 0%;
    padding-right: 0%;
  }

  .team {
    grid-row-gap: 2rem;
    padding-top: 1%;
  }

  .cta-btn-wrap {
    width: 100%;
  }

  .glow {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .profile-image-list {
    column-gap: 1rem;
  }

  .pricing-h {
    font-size: 1rem;
  }

  .portfilio-img {
    margin-bottom: 0;
  }

  .emoji-eye {
    max-width: 22px;
  }

  .error-description {
    font-size: .85rem;
  }

  .error-content-emoji-wrap {
    grid-column-gap: .8rem;
    grid-row-gap: .8rem;
  }

  .emoji-mouth {
    width: 20px;
    height: 20px;
  }

  .error-content-wrapper {
    grid-column-gap: 1.2rem;
    grid-row-gap: 1.2rem;
  }

  .emoji-wrapper {
    width: 120px;
    height: 120px;
  }

  .section-404 {
    height: 100dvh;
  }

  .error-page_title {
    font-size: 8.4rem;
  }

  .cover-img-cont-pitch {
    background-image: linear-gradient(138deg, #ece9e6, #f9f9f9);
    border-style: none;
    padding: 0;
  }

  .pitch-title-wrap {
    flex-flow: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .cta-block-pitch {
    padding: 2% 5%;
  }

  .pitch-video {
    min-width: 0;
  }

  .recent-text.previous-artical {
    min-height: 150px;
    padding-left: 5%;
    padding-right: 5%;
  }

  .fn-h2 {
    font-size: 1.1rem;
  }

  .nav-li-wrap {
    flex-flow: column-reverse wrap;
  }

  .price-tc {
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    flex-flow: column;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
  }

  .faq-wrapper {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    padding: 10px;
  }

  .faq-navigation-wrap {
    display: none;
  }

  .faq-title {
    grid-column-gap: 50px;
    grid-row-gap: 50px;
    text-align: center;
    padding-top: 50px;
  }

  .faq-p {
    margin-left: .2em;
    margin-right: .5em;
  }

  .about-wrapper {
    text-align: left;
    margin-top: 2em;
    margin-bottom: 2em;
    padding-left: 1em;
    padding-right: 1em;
  }

  .founder {
    flex-flow: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
  }
}

#w-node-_18ad6338-8529-6a60-b7b7-6a4e60f027f2-ea65e3ca {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-f6f81d6d-1eb2-a16a-e48d-9681ea56a394-ea65e3ca {
  grid-area: 1 / 2 / 2 / 6;
}

#w-node-_9e3da50a-d8a2-4298-6c2f-25882067c128-ea65e3ca {
  grid-area: 1 / 2 / 2 / 4;
}

#w-node-cff913d6-c800-d9fc-1c6a-7bb64e673288-ea65e3ca {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_574a6aae-4da5-9de6-1959-2b2aedb114d8-ea65e3ca {
  grid-area: 1 / 2 / 2 / 8;
}

#w-node-_89b450f5-f368-c60f-ed8d-d39411edeaae-ea65e3ca, #w-node-_89b450f5-f368-c60f-ed8d-d39411edeaaf-ea65e3ca, #w-node-_89b450f5-f368-c60f-ed8d-d39411edeab0-ea65e3ca, #w-node-_89b450f5-f368-c60f-ed8d-d39411edeab1-ea65e3ca, #w-node-_8769dc30-b92b-324c-bf40-b7cdd0a9506a-ea65e3ca {
  place-self: center;
}

#w-node-_10235b01-513d-e45f-82f4-cc373cad8e0e-ea65e3ca {
  grid-area: 2 / 1 / 3 / 9;
}

#w-node-_81a0bfc2-b55f-4c3e-90f8-a7244676a770-ea65e3ca {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_6bd8873a-efd7-1c58-b1b2-f0377788a0f5-ea65e3ca {
  grid-area: 4 / 3 / 5 / 11;
}

#w-node-_25bd2a92-ba68-076e-f922-b0cc4293a2d8-ea65e3ca {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_25bd2a92-ba68-076e-f922-b0cc4293a2e1-ea65e3ca, #w-node-_25bd2a92-ba68-076e-f922-b0cc4293a2e2-ea65e3ca, #w-node-_25bd2a92-ba68-076e-f922-b0cc4293a2e3-ea65e3ca, #w-node-_25bd2a92-ba68-076e-f922-b0cc4293a2e4-ea65e3ca, #w-node-_25bd2a92-ba68-076e-f922-b0cc4293a2e5-ea65e3ca, #w-node-_25bd2a92-ba68-076e-f922-b0cc4293a2e6-ea65e3ca, #w-node-_25bd2a92-ba68-076e-f922-b0cc4293a2e7-ea65e3ca, #w-node-_25bd2a92-ba68-076e-f922-b0cc4293a2e8-ea65e3ca, #w-node-_25bd2a92-ba68-076e-f922-b0cc4293a2e9-ea65e3ca {
  place-self: center;
}

#w-node-b98eca55-f22b-6823-310a-a53ed40782a8-ea65e3ca {
  grid-area: 1 / 2 / 2 / 8;
}

#w-node-da3cf5bc-14be-f60a-fd5e-1d41cd2ceb2c-ea65e3ca {
  grid-area: 1 / 2 / 2 / 6;
}

#w-node-e056b337-26ad-aa4b-91dc-8120305e02be-ea65e3ca {
  grid-area: 2 / 2 / 3 / 8;
}

#w-node-_97f74214-0a4f-9c6d-3a95-d92badb7a0e8-ea65e3ca {
  grid-area: 3 / 2 / 4 / 7;
}

#w-node-_85b70346-7cf1-fba4-3312-a64277c15fa7-ea65e3ca {
  grid-area: 3 / 6 / 4 / 12;
}

#w-node-_973a4d49-6e8d-8419-c642-692a1401c710-ea65e3ca {
  grid-area: 4 / 1 / 5 / 13;
}

#w-node-cfb1170d-020c-bbc6-b875-8d461401f19f-ea65e3ca {
  grid-area: 5 / 2 / 6 / 6;
}

#w-node-_16e183c3-13ae-bf2f-b2ef-e9d89676ab09-ea65e3ca {
  grid-area: 5 / 6 / 7 / 13;
  align-self: end;
}

#w-node-c74935e3-92d2-a0dd-3376-4a82c2d1213f-ea65e3ca {
  grid-area: 6 / 2 / 7 / 6;
  align-self: end;
}

#w-node-_26c7089c-0425-ee5f-1971-12f360a2220d-ea65e3ca {
  grid-area: 1 / 3 / 2 / 11;
}

#w-node-_54043d9a-0cc5-ca73-5ba1-c9c7abb2a2b9-ea65e3ca {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-_54043d9a-0cc5-ca73-5ba1-c9c7abb2a2c9-ea65e3ca {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_54043d9a-0cc5-ca73-5ba1-c9c7abb2a2ba-ea65e3ca {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_54043d9a-0cc5-ca73-5ba1-c9c7abb2a2d8-ea65e3ca {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_42ac9bfa-b124-80cc-792c-6faabdaadef0-ea65e3ca {
  grid-area: 4 / 1 / 5 / 13;
}

#w-node-_42ac9bfa-b124-80cc-792c-6faabdaadef3-ea65e3ca {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_42ac9bfa-b124-80cc-792c-6faabdaadef7-ea65e3ca {
  grid-area: 1 / 2 / 3 / 3;
}

#w-node-_95f200e6-aca4-4fd2-8711-6afc4faa155a-ea65e3ca {
  grid-area: 2 / 2 / 3 / 3;
}

#w-node-_1ee5226f-12ff-6ae3-6f7f-4aa0e26cfe9b-e26cfe9a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1ee5226f-12ff-6ae3-6f7f-4aa0e26cfe9c-e26cfe9a {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_1ee5226f-12ff-6ae3-6f7f-4aa0e26cfea0-e26cfe9a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_1ee5226f-12ff-6ae3-6f7f-4aa0e26cfea2-e26cfe9a, #w-node-_1ee5226f-12ff-6ae3-6f7f-4aa0e26cfea3-e26cfe9a {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_1ee5226f-12ff-6ae3-6f7f-4aa0e26cfea8-e26cfe9a {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_649af3e2-5494-1e74-8d8a-188ebdc79e38-bdc79e38 {
  grid-area: 3 / 1 / 4 / 13;
}

#w-node-_649af3e2-5494-1e74-8d8a-188ebdc79e39-bdc79e38 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_649af3e2-5494-1e74-8d8a-188ebdc79e3a-bdc79e38 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_649af3e2-5494-1e74-8d8a-188ebdc79e3e-bdc79e38 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_649af3e2-5494-1e74-8d8a-188ebdc79e40-bdc79e38, #w-node-_649af3e2-5494-1e74-8d8a-188ebdc79e41-bdc79e38 {
  grid-area: span 1 / span 3 / span 1 / span 3;
}

#w-node-_649af3e2-5494-1e74-8d8a-188ebdc79e46-bdc79e38 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db273e55-8db7-e493-fb00-4ef0d12232dc-d12232dc {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-db273e55-8db7-e493-fb00-4ef0d12232dd-d12232dc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-db273e55-8db7-e493-fb00-4ef0d12232de-d12232dc {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-db273e55-8db7-e493-fb00-4ef0d12232e4-d12232dc, #w-node-db273e55-8db7-e493-fb00-4ef0d12232eb-d12232dc, #w-node-db273e55-8db7-e493-fb00-4ef0d12232f2-d12232dc, #w-node-db273e55-8db7-e493-fb00-4ef0d12232f9-d12232dc {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_774a0c79-fb08-a498-d741-1d77a37d9253-cf9857c5 {
  grid-area: 1 / 3 / 2 / 4;
}

#w-node-_774a0c79-fb08-a498-d741-1d77a37d925e-cf9857c5 {
  grid-area: 1 / 2 / 2 / 3;
}

#w-node-_774a0c79-fb08-a498-d741-1d77a37d9269-cf9857c5 {
  grid-area: 1 / 4 / 2 / 5;
}

#w-node-_774a0c79-fb08-a498-d741-1d77a37d9274-cf9857c5 {
  grid-area: 1 / 1 / 2 / 2;
}

#w-node-_9788e100-8709-278b-aa68-77d51f45f654-cf9857c5 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_9788e100-8709-278b-aa68-77d51f45f659-cf9857c5 {
  grid-area: 2 / 1 / 3 / 6;
}

#w-node-_9788e100-8709-278b-aa68-77d51f45f669-cf9857c5 {
  grid-area: 4 / 1 / 5 / 13;
}

#w-node-_9788e100-8709-278b-aa68-77d51f45f671-cf9857c5 {
  grid-area: 2 / 6 / 3 / 13;
}

#w-node-_9788e100-8709-278b-aa68-77d51f45f680-cf9857c5 {
  grid-area: 3 / 8 / 4 / 13;
}

#w-node-_9788e100-8709-278b-aa68-77d51f45f68f-cf9857c5 {
  grid-area: 3 / 1 / 4 / 8;
}

#w-node-_26b6db57-3cbf-a804-120f-ab78998cbb44-cf9857c5 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_26b6db57-3cbf-a804-120f-ab78998cbb45-cf9857c5 {
  grid-area: 1 / 2 / 2 / 12;
}

#w-node-_26b6db57-3cbf-a804-120f-ab78998cbb54-cf9857c5 {
  grid-area: 2 / 1 / 3 / 6;
}

#w-node-_26b6db57-3cbf-a804-120f-ab78998cbb62-cf9857c5 {
  grid-area: 4 / 1 / 5 / 13;
}

#w-node-_26b6db57-3cbf-a804-120f-ab78998cbb6a-cf9857c5 {
  grid-area: 2 / 6 / 3 / 13;
}

#w-node-_26b6db57-3cbf-a804-120f-ab78998cbb70-cf9857c5 {
  grid-area: 3 / 8 / 4 / 13;
}

#w-node-_26b6db57-3cbf-a804-120f-ab78998cbb81-cf9857c5 {
  grid-area: 3 / 1 / 4 / 8;
}

#w-node-_26b6db57-3cbf-a804-120f-ab78998cbb82-cf9857c5 {
  grid-area: 3 / 1 / 4 / 13;
}

#w-node-_26b6db57-3cbf-a804-120f-ab78998cbb89-cf9857c5 {
  grid-area: 2 / 2 / 3 / 12;
}

#w-node-_26b6db57-3cbf-a804-120f-ab78998cbb8a-cf9857c5 {
  grid-area: 4 / 1 / 5 / 13;
}

#w-node-_26b6db57-3cbf-a804-120f-ab78998cbb8b-cf9857c5, #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb8c-cf9857c5, #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb8d-cf9857c5, #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb8e-cf9857c5, #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb8f-cf9857c5, #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb90-cf9857c5, #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb91-cf9857c5, #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb92-cf9857c5, #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb93-cf9857c5 {
  place-self: center;
}

#w-node-_32abb08a-ecea-3ae7-8571-9f7a5622a52d-5805f645 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_32abb08a-ecea-3ae7-8571-9f7a5622a523-5805f645 {
  grid-area: span 1 / span 12 / span 1 / span 12;
}

#w-node-_32abb08a-ecea-3ae7-8571-9f7a5622a524-5805f645 {
  grid-area: 1 / 2 / 2 / 6;
}

#w-node-_7e77379c-dc71-5a15-7df7-3dae9803d493-5805f645 {
  grid-area: 2 / 3 / 3 / 4;
  justify-self: start;
}

#w-node-_58af16e0-d34d-0f1e-7664-1a97323598e9-5805f645 {
  grid-area: 4 / 2 / 5 / 7;
}

#w-node-_6ce16244-8e69-154a-abe9-88e99b5e648b-5805f645 {
  grid-area: 4 / 7 / 5 / 12;
}

#w-node-e26cfe82-6a64-3386-9373-e11824d97277-5805f645 {
  grid-area: 5 / 2 / 8 / 7;
}

#w-node-_59478de3-773a-1971-2b30-946e27033250-5805f645 {
  grid-area: 5 / 7 / 7 / 12;
}

#w-node-_9ff01bb9-3798-ad64-ae50-0c94978e5cea-5805f645 {
  grid-area: 7 / 7 / 8 / 12;
}

#w-node-_430624ff-733a-f344-487d-1ea80fe8369d-5805f645 {
  grid-area: 9 / 1 / 10 / 13;
}

#w-node-_03128a77-7425-7f58-28ed-34c8602eecf6-5805f645 {
  grid-area: 3 / 3 / 4 / 12;
}

#w-node-_618399ac-ea61-d5ff-1cf7-586b8d20d752-e44d4281 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_96af0876-9787-7226-b679-fa5ea0d88e94-e44d4281 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7343-443eba52, #w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7346-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7347-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e734b-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e734c-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7350-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7351-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7355-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7356-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e735a-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e735b-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e735f-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7360-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7365-443eba52, #w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7368-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7369-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e736d-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e736e-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7372-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7373-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7377-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7378-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e737c-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e737d-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7381-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7382-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7387-443eba52, #w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e738a-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e738b-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e738f-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7390-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7394-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7395-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7399-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e739a-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73a3-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73a4-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73ad-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73ae-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73bb-443eba52, #w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73be-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73bf-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73c3-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73c4-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73c8-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73c9-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73cd-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73ce-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73d2-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73d3-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73d8-443eba52, #w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73db-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73dc-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73e0-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73e1-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73e5-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73e6-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73ea-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73eb-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73f0-443eba52, #w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73f3-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73f4-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73f8-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73f9-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73fd-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e73fe-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7402-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7403-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7407-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7408-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e740d-443eba52, #w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7410-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7411-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7415-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7416-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e741a-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e741b-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e741f-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7420-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7424-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7425-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7429-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e742a-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e742f-443eba52, #w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7432-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7433-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7437-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7438-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e743c-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e743d-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7441-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7442-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7446-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7447-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e744b-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e744c-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7450-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7451-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7455-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7456-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e745a-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e745b-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7460-443eba52, #w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7463-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7464-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7468-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7469-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e746d-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e746e-443eba52 {
  justify-self: start;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7473-443eba52, #w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7476-443eba52 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-ff5d5f44-cd89-38ff-c2a7-7633f98e7477-443eba52 {
  justify-self: start;
}

#w-node-_618399ac-ea61-d5ff-1cf7-586b8d20d752-79ee1e70 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_96af0876-9787-7226-b679-fa5ea0d88e94-79ee1e70 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_618399ac-ea61-d5ff-1cf7-586b8d20d752-854e04e5 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_96af0876-9787-7226-b679-fa5ea0d88e94-854e04e5, #w-node-_96af0876-9787-7226-b679-fa5ea0d88e94-97afd931 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_440824ed-744a-b429-6849-190609a43c9f-97afd931 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-ac8c6ebd-638f-95a4-120e-f95a9e6ad918-97afd931 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_757fad5b-b228-dde2-3997-432ee4ec3354-97afd931 {
  grid-area: 4 / 3 / 5 / 11;
}

#w-node-_96af0876-9787-7226-b679-fa5ea0d88e94-364e57f1 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_440824ed-744a-b429-6849-190609a43c9f-364e57f1 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-e86391d4-9787-dc4e-6e0c-a4331e64450d-364e57f1 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-a33b3dda-e858-6ed0-0c4c-4095e9c2b600-364e57f1 {
  grid-area: 4 / 3 / 5 / 11;
}

#w-node-_96af0876-9787-7226-b679-fa5ea0d88e94-b719a02e {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_440824ed-744a-b429-6849-190609a43c9f-b719a02e {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-b719a02e {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_7f615ec2-6d12-3052-76b5-739ac9296d26-b719a02e {
  grid-area: 4 / 3 / 5 / 11;
}

#w-node-_96af0876-9787-7226-b679-fa5ea0d88e94-4033c5be {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_440824ed-744a-b429-6849-190609a43c9f-4033c5be {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-a330b4d0-74a2-34ed-82d7-0e7c5cb46b7a-4033c5be {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-a330b4d0-74a2-34ed-82d7-0e7c5cb46b8b-4033c5be {
  grid-area: 4 / 3 / 5 / 11;
}

#w-node-_96af0876-9787-7226-b679-fa5ea0d88e94-2999a624 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_440824ed-744a-b429-6849-190609a43c9f-2999a624 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-c19a770a-e142-4c51-5d01-ae2401fde1f6-2999a624 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-b74df0d7-3e2a-e1ce-a473-8f9fb62f4c8f-2999a624 {
  grid-area: 4 / 3 / 5 / 11;
}

#w-node-_96af0876-9787-7226-b679-fa5ea0d88e94-6f835615 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_440824ed-744a-b429-6849-190609a43c9f-6f835615 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-6f835615 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_7939bf3c-ec0f-6832-6004-700e58e87a8e-6f835615 {
  grid-area: 4 / 3 / 5 / 11;
}

#w-node-_96af0876-9787-7226-b679-fa5ea0d88e94-cebdce06 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_440824ed-744a-b429-6849-190609a43c9f-cebdce06 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-cebdce06 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_97720086-ae83-4251-5f51-c5039d3195c3-cebdce06 {
  grid-area: 4 / 3 / 5 / 11;
}

#w-node-_96af0876-9787-7226-b679-fa5ea0d88e94-2c42acdd {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_440824ed-744a-b429-6849-190609a43c9f-2c42acdd {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-2c42acdd {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-fecdf0fd-6cd3-449c-93f8-48553af05d42-2c42acdd {
  grid-area: 4 / 3 / 5 / 11;
}

#w-node-_96af0876-9787-7226-b679-fa5ea0d88e94-a99e7699 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_440824ed-744a-b429-6849-190609a43c9f-a99e7699 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-a99e7699 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_6bed9161-2283-3198-cbae-42d952625d8f-a99e7699 {
  grid-area: 4 / 3 / 5 / 11;
}

#w-node-_96af0876-9787-7226-b679-fa5ea0d88e94-5be81f80 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_440824ed-744a-b429-6849-190609a43c9f-5be81f80 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-5be81f80 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-c972e673-847a-8851-ffe5-ffda342fd5dc-5be81f80 {
  grid-area: 4 / 3 / 5 / 11;
}

#w-node-_96af0876-9787-7226-b679-fa5ea0d88e94-12fe34f1 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_440824ed-744a-b429-6849-190609a43c9f-12fe34f1 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-12fe34f1 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_4d61e6e4-3f45-1414-1207-e5be29eb5733-12fe34f1 {
  grid-area: 4 / 3 / 5 / 11;
}

#w-node-_6b7ae819-b62e-d2fb-cf87-54dde103c5f4-2171359a {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_96af0876-9787-7226-b679-fa5ea0d88e94-7f4bf3e4 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_440824ed-744a-b429-6849-190609a43c9f-7f4bf3e4 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-7f4bf3e4 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_7f615ec2-6d12-3052-76b5-739ac9296d26-7f4bf3e4 {
  grid-area: 4 / 3 / 5 / 11;
}

#w-node-_96af0876-9787-7226-b679-fa5ea0d88e94-efd5cafd {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_440824ed-744a-b429-6849-190609a43c9f-efd5cafd {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-efd5cafd {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_7f615ec2-6d12-3052-76b5-739ac9296d26-efd5cafd {
  grid-area: 4 / 3 / 5 / 11;
}

#w-node-_96af0876-9787-7226-b679-fa5ea0d88e94-776235b0 {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-_440824ed-744a-b429-6849-190609a43c9f-776235b0 {
  grid-area: 1 / 1 / 3 / 3;
}

#w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-776235b0 {
  grid-area: 1 / 1 / 2 / 13;
}

#w-node-_7f615ec2-6d12-3052-76b5-739ac9296d26-776235b0 {
  grid-area: 4 / 3 / 5 / 11;
}

@media screen and (max-width: 991px) {
  #w-node-_18ad6338-8529-6a60-b7b7-6a4e60f027f2-ea65e3ca {
    grid-area: 1 / 1 / 2 / 13;
  }

  #w-node-f6f81d6d-1eb2-a16a-e48d-9681ea56a394-ea65e3ca {
    grid-area: 1 / 1 / 2 / 6;
  }

  #w-node-_9e3da50a-d8a2-4298-6c2f-25882067c128-ea65e3ca {
    grid-area: 1 / 3 / 2 / 5;
    place-self: center;
  }

  #w-node-_574a6aae-4da5-9de6-1959-2b2aedb114d8-ea65e3ca {
    grid-area: 1 / 1 / 2 / 8;
  }

  #w-node-_10235b01-513d-e45f-82f4-cc373cad8e0e-ea65e3ca {
    grid-area: 2 / 1 / 3 / 8;
  }

  #w-node-_81a0bfc2-b55f-4c3e-90f8-a7244676a770-ea65e3ca {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-_6bd8873a-efd7-1c58-b1b2-f0377788a0f5-ea65e3ca {
    grid-area: 4 / 2 / 5 / 8;
  }

  #w-node-_25bd2a92-ba68-076e-f922-b0cc4293a2d8-ea65e3ca, #w-node-da3cf5bc-14be-f60a-fd5e-1d41cd2ceb2c-ea65e3ca {
    grid-area: 1 / 2 / 2 / 12;
  }

  #w-node-e056b337-26ad-aa4b-91dc-8120305e02be-ea65e3ca {
    grid-area: 2 / 2 / 3 / 12;
    justify-self: center;
  }

  #w-node-_97f74214-0a4f-9c6d-3a95-d92badb7a0e8-ea65e3ca {
    grid-area: 3 / 2 / 4 / 12;
  }

  #w-node-_85b70346-7cf1-fba4-3312-a64277c15fa7-ea65e3ca {
    grid-area: 4 / 2 / 5 / 12;
  }

  #w-node-_973a4d49-6e8d-8419-c642-692a1401c710-ea65e3ca {
    grid-area: 5 / 1 / 6 / 13;
  }

  #w-node-cfb1170d-020c-bbc6-b875-8d461401f19f-ea65e3ca {
    grid-area: 6 / 1 / 7 / 12;
  }

  #w-node-_16e183c3-13ae-bf2f-b2ef-e9d89676ab09-ea65e3ca {
    grid-area: 7 / 2 / 8 / 12;
    align-self: end;
  }

  #w-node-c74935e3-92d2-a0dd-3376-4a82c2d1213f-ea65e3ca {
    grid-area: 8 / 3 / 9 / 11;
    align-self: end;
  }

  #w-node-_26c7089c-0425-ee5f-1971-12f360a2220d-ea65e3ca {
    grid-area: 1 / 2 / 2 / 12;
  }

  #w-node-_54043d9a-0cc5-ca73-5ba1-c9c7abb2a2b9-ea65e3ca {
    grid-area: 2 / 1 / 3 / 13;
  }

  #w-node-_54043d9a-0cc5-ca73-5ba1-c9c7abb2a2c9-ea65e3ca {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_54043d9a-0cc5-ca73-5ba1-c9c7abb2a2ba-ea65e3ca {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_54043d9a-0cc5-ca73-5ba1-c9c7abb2a2d8-ea65e3ca {
    grid-area: 1 / 3 / 2 / 4;
  }

  #w-node-_42ac9bfa-b124-80cc-792c-6faabdaadef0-ea65e3ca {
    grid-area: 3 / 1 / 4 / 13;
  }

  #w-node-_42ac9bfa-b124-80cc-792c-6faabdaadef3-ea65e3ca {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_42ac9bfa-b124-80cc-792c-6faabdaadef7-ea65e3ca {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_95f200e6-aca4-4fd2-8711-6afc4faa155a-ea65e3ca {
    grid-area: 3 / 1 / 4 / 3;
    justify-self: center;
  }

  #w-node-_649af3e2-5494-1e74-8d8a-188ebdc79e38-bdc79e38 {
    grid-area: 3 / 1 / 4 / 9;
  }

  #w-node-db273e55-8db7-e493-fb00-4ef0d12232dc-d12232dc {
    grid-area: 2 / 1 / 3 / 9;
  }

  #w-node-_774a0c79-fb08-a498-d741-1d77a37d9253-cf9857c5 {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_774a0c79-fb08-a498-d741-1d77a37d925e-cf9857c5 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_774a0c79-fb08-a498-d741-1d77a37d9269-cf9857c5 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_774a0c79-fb08-a498-d741-1d77a37d9274-cf9857c5 {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_9788e100-8709-278b-aa68-77d51f45f659-cf9857c5 {
    grid-area: 2 / 1 / 3 / 11;
  }

  #w-node-_9788e100-8709-278b-aa68-77d51f45f669-cf9857c5 {
    grid-area: 5 / 1 / 6 / 13;
  }

  #w-node-_9788e100-8709-278b-aa68-77d51f45f671-cf9857c5 {
    grid-area: 3 / 2 / 4 / 12;
  }

  #w-node-_9788e100-8709-278b-aa68-77d51f45f680-cf9857c5 {
    grid-area: 4 / 3 / 5 / 13;
  }

  #w-node-_9788e100-8709-278b-aa68-77d51f45f68f-cf9857c5 {
    grid-area: 1 / 1 / 2 / 11;
  }

  #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb54-cf9857c5 {
    grid-area: 2 / 1 / 3 / 11;
  }

  #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb62-cf9857c5 {
    grid-area: 5 / 1 / 6 / 13;
  }

  #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb6a-cf9857c5 {
    grid-area: 3 / 2 / 4 / 12;
  }

  #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb70-cf9857c5 {
    grid-area: 4 / 3 / 5 / 13;
  }

  #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb81-cf9857c5 {
    grid-area: 1 / 1 / 2 / 11;
  }

  #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb82-cf9857c5 {
    grid-area: 6 / 2 / 7 / 12;
  }

  #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb8a-cf9857c5 {
    grid-area: 7 / 1 / 8 / 13;
  }

  #w-node-_32abb08a-ecea-3ae7-8571-9f7a5622a524-5805f645 {
    grid-area: 1 / 2 / 2 / 12;
  }

  #w-node-_58af16e0-d34d-0f1e-7664-1a97323598e9-5805f645 {
    grid-area: 4 / 1 / 5 / 13;
  }

  #w-node-_6ce16244-8e69-154a-abe9-88e99b5e648b-5805f645 {
    grid-area: 5 / 1 / 6 / 13;
  }

  #w-node-e26cfe82-6a64-3386-9373-e11824d97277-5805f645 {
    grid-area: 6 / 1 / 7 / 13;
  }

  #w-node-_59478de3-773a-1971-2b30-946e27033250-5805f645 {
    grid-area: 8 / 1 / 9 / 13;
  }

  #w-node-_9ff01bb9-3798-ad64-ae50-0c94978e5cea-5805f645 {
    grid-area: 7 / 1 / 8 / 13;
  }

  #w-node-_03128a77-7425-7f58-28ed-34c8602eecf6-5805f645 {
    grid-area: 3 / 1 / 4 / 13;
  }

  #w-node-_440824ed-744a-b429-6849-190609a43c9f-97afd931 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-ac8c6ebd-638f-95a4-120e-f95a9e6ad918-97afd931 {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-_757fad5b-b228-dde2-3997-432ee4ec3354-97afd931 {
    grid-area: 4 / 2 / 5 / 8;
  }

  #w-node-_440824ed-744a-b429-6849-190609a43c9f-364e57f1 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-e86391d4-9787-dc4e-6e0c-a4331e64450d-364e57f1 {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-a33b3dda-e858-6ed0-0c4c-4095e9c2b600-364e57f1 {
    grid-area: 4 / 2 / 5 / 8;
  }

  #w-node-_440824ed-744a-b429-6849-190609a43c9f-b719a02e {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-b719a02e {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-_7f615ec2-6d12-3052-76b5-739ac9296d26-b719a02e {
    grid-area: 4 / 2 / 5 / 8;
  }

  #w-node-_440824ed-744a-b429-6849-190609a43c9f-4033c5be {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-a330b4d0-74a2-34ed-82d7-0e7c5cb46b7a-4033c5be {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-a330b4d0-74a2-34ed-82d7-0e7c5cb46b8b-4033c5be {
    grid-area: 4 / 2 / 5 / 8;
  }

  #w-node-_440824ed-744a-b429-6849-190609a43c9f-2999a624 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-c19a770a-e142-4c51-5d01-ae2401fde1f6-2999a624 {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-b74df0d7-3e2a-e1ce-a473-8f9fb62f4c8f-2999a624 {
    grid-area: 4 / 2 / 5 / 8;
  }

  #w-node-_440824ed-744a-b429-6849-190609a43c9f-6f835615 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-6f835615 {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-_7939bf3c-ec0f-6832-6004-700e58e87a8e-6f835615 {
    grid-area: 4 / 2 / 5 / 8;
  }

  #w-node-_440824ed-744a-b429-6849-190609a43c9f-cebdce06 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-cebdce06 {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-_97720086-ae83-4251-5f51-c5039d3195c3-cebdce06 {
    grid-area: 4 / 2 / 5 / 8;
  }

  #w-node-_440824ed-744a-b429-6849-190609a43c9f-2c42acdd {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-2c42acdd {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-fecdf0fd-6cd3-449c-93f8-48553af05d42-2c42acdd {
    grid-area: 4 / 2 / 5 / 8;
  }

  #w-node-_440824ed-744a-b429-6849-190609a43c9f-a99e7699 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-a99e7699 {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-_6bed9161-2283-3198-cbae-42d952625d8f-a99e7699 {
    grid-area: 4 / 2 / 5 / 8;
  }

  #w-node-_440824ed-744a-b429-6849-190609a43c9f-5be81f80 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-5be81f80 {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-c972e673-847a-8851-ffe5-ffda342fd5dc-5be81f80 {
    grid-area: 4 / 2 / 5 / 8;
  }

  #w-node-_440824ed-744a-b429-6849-190609a43c9f-12fe34f1 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-12fe34f1 {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-_4d61e6e4-3f45-1414-1207-e5be29eb5733-12fe34f1 {
    grid-area: 4 / 2 / 5 / 8;
  }

  #w-node-_440824ed-744a-b429-6849-190609a43c9f-7f4bf3e4 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-7f4bf3e4 {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-_7f615ec2-6d12-3052-76b5-739ac9296d26-7f4bf3e4 {
    grid-area: 4 / 2 / 5 / 8;
  }

  #w-node-_440824ed-744a-b429-6849-190609a43c9f-efd5cafd {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-efd5cafd {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-_7f615ec2-6d12-3052-76b5-739ac9296d26-efd5cafd {
    grid-area: 4 / 2 / 5 / 8;
  }

  #w-node-_440824ed-744a-b429-6849-190609a43c9f-776235b0 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-aa5367de-ebb4-7805-dc2a-bc617edcf3b1-776235b0 {
    grid-area: 1 / 1 / 2 / 9;
  }

  #w-node-_7f615ec2-6d12-3052-76b5-739ac9296d26-776235b0 {
    grid-area: 4 / 2 / 5 / 8;
  }
}

@media screen and (max-width: 767px) {
  #w-node-_18ad6338-8529-6a60-b7b7-6a4e60f027f2-ea65e3ca {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-f6f81d6d-1eb2-a16a-e48d-9681ea56a394-ea65e3ca {
    grid-area: 1 / 1 / 2 / 4;
    place-self: end center;
  }

  #w-node-_25bd2a92-ba68-076e-f922-b0cc4293a2d8-ea65e3ca {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_25bd2a92-ba68-076e-f922-b0cc4293a2e9-ea65e3ca {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-da3cf5bc-14be-f60a-fd5e-1d41cd2ceb2c-ea65e3ca {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-e056b337-26ad-aa4b-91dc-8120305e02be-ea65e3ca {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_97f74214-0a4f-9c6d-3a95-d92badb7a0e8-ea65e3ca {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_85b70346-7cf1-fba4-3312-a64277c15fa7-ea65e3ca {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-_973a4d49-6e8d-8419-c642-692a1401c710-ea65e3ca {
    grid-area: 5 / 1 / 6 / 5;
  }

  #w-node-cfb1170d-020c-bbc6-b875-8d461401f19f-ea65e3ca {
    grid-area: 6 / 1 / 7 / 5;
  }

  #w-node-_16e183c3-13ae-bf2f-b2ef-e9d89676ab09-ea65e3ca {
    grid-area: 7 / 1 / 8 / 5;
    align-self: end;
  }

  #w-node-c74935e3-92d2-a0dd-3376-4a82c2d1213f-ea65e3ca {
    grid-area: 8 / 1 / 9 / 5;
    align-self: end;
  }

  #w-node-_26c7089c-0425-ee5f-1971-12f360a2220d-ea65e3ca {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_54043d9a-0cc5-ca73-5ba1-c9c7abb2a2b9-ea65e3ca {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_42ac9bfa-b124-80cc-792c-6faabdaadef0-ea65e3ca {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_42ac9bfa-b124-80cc-792c-6faabdaadef3-ea65e3ca {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_42ac9bfa-b124-80cc-792c-6faabdaadef7-ea65e3ca {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_95f200e6-aca4-4fd2-8711-6afc4faa155a-ea65e3ca {
    grid-area: 3 / 1 / 4 / 2;
    justify-self: center;
  }

  #w-node-_1ee5226f-12ff-6ae3-6f7f-4aa0e26cfe9c-e26cfe9a {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_1ee5226f-12ff-6ae3-6f7f-4aa0e26cfe9e-e26cfe9a {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_1ee5226f-12ff-6ae3-6f7f-4aa0e26cfea0-e26cfe9a {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-_1ee5226f-12ff-6ae3-6f7f-4aa0e26cfea2-e26cfe9a {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_1ee5226f-12ff-6ae3-6f7f-4aa0e26cfea3-e26cfe9a {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-_1ee5226f-12ff-6ae3-6f7f-4aa0e26cfea4-e26cfe9a {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_1ee5226f-12ff-6ae3-6f7f-4aa0e26cfea6-e26cfe9a {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_1ee5226f-12ff-6ae3-6f7f-4aa0e26cfea8-e26cfe9a {
    grid-area: 5 / 2 / 6 / 3;
  }

  #w-node-_649af3e2-5494-1e74-8d8a-188ebdc79e3a-bdc79e38 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_649af3e2-5494-1e74-8d8a-188ebdc79e3c-bdc79e38 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_649af3e2-5494-1e74-8d8a-188ebdc79e3e-bdc79e38 {
    grid-area: 5 / 1 / 6 / 2;
  }

  #w-node-_649af3e2-5494-1e74-8d8a-188ebdc79e40-bdc79e38 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_649af3e2-5494-1e74-8d8a-188ebdc79e41-bdc79e38 {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-_649af3e2-5494-1e74-8d8a-188ebdc79e42-bdc79e38 {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_649af3e2-5494-1e74-8d8a-188ebdc79e44-bdc79e38 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_649af3e2-5494-1e74-8d8a-188ebdc79e46-bdc79e38 {
    grid-area: 5 / 2 / 6 / 3;
  }

  #w-node-_9788e100-8709-278b-aa68-77d51f45f654-cf9857c5 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_9788e100-8709-278b-aa68-77d51f45f659-cf9857c5 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_9788e100-8709-278b-aa68-77d51f45f669-cf9857c5 {
    grid-area: 5 / 1 / 6 / 5;
  }

  #w-node-_9788e100-8709-278b-aa68-77d51f45f671-cf9857c5 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_9788e100-8709-278b-aa68-77d51f45f680-cf9857c5 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-_9788e100-8709-278b-aa68-77d51f45f68f-cf9857c5, #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb45-cf9857c5 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb54-cf9857c5 {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb62-cf9857c5 {
    grid-area: 5 / 1 / 6 / 5;
  }

  #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb6a-cf9857c5 {
    grid-area: 3 / 1 / 4 / 5;
  }

  #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb70-cf9857c5 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb81-cf9857c5 {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb82-cf9857c5 {
    grid-area: 6 / 1 / 7 / 5;
  }

  #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb89-cf9857c5 {
    grid-area: 4 / 1 / 5 / 5;
  }

  #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb8a-cf9857c5 {
    grid-area: 7 / 1 / 8 / 5;
  }

  #w-node-_32abb08a-ecea-3ae7-8571-9f7a5622a52d-5805f645 {
    grid-area: 6 / 1 / 7 / 13;
  }

  #w-node-_32abb08a-ecea-3ae7-8571-9f7a5622a524-5805f645 {
    grid-area: 1 / 2 / 2 / 4;
  }

  #w-node-_440824ed-744a-b429-6849-190609a43c9f-97afd931, #w-node-_440824ed-744a-b429-6849-190609a43c9f-364e57f1, #w-node-_440824ed-744a-b429-6849-190609a43c9f-b719a02e, #w-node-_440824ed-744a-b429-6849-190609a43c9f-4033c5be, #w-node-_440824ed-744a-b429-6849-190609a43c9f-2999a624, #w-node-_440824ed-744a-b429-6849-190609a43c9f-6f835615, #w-node-_440824ed-744a-b429-6849-190609a43c9f-cebdce06, #w-node-_440824ed-744a-b429-6849-190609a43c9f-2c42acdd, #w-node-_440824ed-744a-b429-6849-190609a43c9f-a99e7699, #w-node-_440824ed-744a-b429-6849-190609a43c9f-5be81f80, #w-node-_440824ed-744a-b429-6849-190609a43c9f-12fe34f1, #w-node-_440824ed-744a-b429-6849-190609a43c9f-7f4bf3e4, #w-node-_440824ed-744a-b429-6849-190609a43c9f-efd5cafd, #w-node-_440824ed-744a-b429-6849-190609a43c9f-776235b0 {
    grid-area: 2 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_18ad6338-8529-6a60-b7b7-6a4e60f027f2-ea65e3ca {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-f6f81d6d-1eb2-a16a-e48d-9681ea56a394-ea65e3ca {
    grid-area: 1 / 1 / 2 / 2;
    place-self: end center;
  }

  #w-node-_8769dc30-b92b-324c-bf40-b7cdd0a9506a-ea65e3ca {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: center;
  }

  #w-node-_25bd2a92-ba68-076e-f922-b0cc4293a2d8-ea65e3ca {
    grid-area: 6 / 1 / 7 / 5;
  }

  #w-node-_25bd2a92-ba68-076e-f922-b0cc4293a2e9-ea65e3ca {
    grid-area: span 1 / span 1 / span 1 / span 1;
    place-self: center;
  }

  #w-node-da3cf5bc-14be-f60a-fd5e-1d41cd2ceb2c-ea65e3ca {
    grid-area: 1 / 1 / 2 / 5;
  }

  #w-node-_54043d9a-0cc5-ca73-5ba1-c9c7abb2a2ba-ea65e3ca {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_54043d9a-0cc5-ca73-5ba1-c9c7abb2a2d8-ea65e3ca {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_42ac9bfa-b124-80cc-792c-6faabdaadef3-ea65e3ca {
    grid-area: 1 / 1 / 2 / 2;
  }

  #w-node-_42ac9bfa-b124-80cc-792c-6faabdaadef7-ea65e3ca {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_1ee5226f-12ff-6ae3-6f7f-4aa0e26cfe9c-e26cfe9a {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb82-cf9857c5 {
    grid-area: 6 / 1 / 7 / 5;
  }

  #w-node-_26b6db57-3cbf-a804-120f-ab78998cbb93-cf9857c5 {
    grid-area: span 1 / span 2 / span 1 / span 2;
    place-self: center;
  }

  #w-node-_440824ed-744a-b429-6849-190609a43c9f-97afd931, #w-node-_440824ed-744a-b429-6849-190609a43c9f-364e57f1, #w-node-_440824ed-744a-b429-6849-190609a43c9f-b719a02e, #w-node-_440824ed-744a-b429-6849-190609a43c9f-4033c5be, #w-node-_440824ed-744a-b429-6849-190609a43c9f-2999a624, #w-node-_440824ed-744a-b429-6849-190609a43c9f-6f835615, #w-node-_440824ed-744a-b429-6849-190609a43c9f-cebdce06, #w-node-_440824ed-744a-b429-6849-190609a43c9f-2c42acdd, #w-node-_440824ed-744a-b429-6849-190609a43c9f-a99e7699, #w-node-_440824ed-744a-b429-6849-190609a43c9f-5be81f80, #w-node-_440824ed-744a-b429-6849-190609a43c9f-12fe34f1, #w-node-_440824ed-744a-b429-6849-190609a43c9f-7f4bf3e4, #w-node-_440824ed-744a-b429-6849-190609a43c9f-efd5cafd, #w-node-_440824ed-744a-b429-6849-190609a43c9f-776235b0 {
    grid-area: 2 / 1 / 3 / 2;
  }
}


@font-face {
  font-family: 'Note';
  src: url('../fonts/CheeeDemo-Small.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}