:root {
  --black: black;
  --dim-grey: #6d6d6d;
  --grey: #868686;
  --blue: #1e35e5;
  --white: white;
  --medium-slate-blue: #5b6eff;
}

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

.w-layout-blockcontainer {
  max-width: 940px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

@media screen and (max-width: 991px) {
  .w-layout-blockcontainer {
    max-width: 728px;
  }
}

@media screen and (max-width: 767px) {
  .w-layout-blockcontainer {
    max-width: none;
  }
}

body {
  letter-spacing: -.03em;
  background-color: #f3f3f3;
  font-family: Pretendard, sans-serif;
  font-size: 16px;
  line-height: 1.4;
}

h1 {
  color: #000;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 6.5em;
  font-weight: 600;
  line-height: 1;
}

h2 {
  color: #000;
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 6.5em;
  font-weight: 600;
  line-height: 1.1;
}

h3 {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4em;
  font-weight: 600;
  line-height: 1.1;
}

h4 {
  color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 3vh;
  font-weight: 600;
  line-height: 1.1;
}

h5 {
  color: #000;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 2vh;
  font-weight: 600;
  line-height: 1.2;
}

h6 {
  color: var(--black);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

p {
  color: #000;
  letter-spacing: -.01em;
  margin-bottom: 5vh;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 1.5;
}

a {
  color: var(--dim-grey);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: #c5c5c5;
}

ul {
  margin-top: 0;
  margin-bottom: 10px;
  padding-top: 10px;
  padding-left: 25px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
}

li {
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 15px;
}

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

blockquote {
  color: var(--black);
  border-left: 2px solid rgba(112, 112, 112, .5);
  margin-top: 35px;
  margin-bottom: 45px;
  padding: 0 20px 0 35px;
  font-family: Rondal, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.4;
}

figure {
  color: var(--grey);
  margin-bottom: 50px;
  font-size: 13px;
  line-height: 2;
}

.nav-link {
  color: #000;
  letter-spacing: .3px;
  text-transform: capitalize;
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  align-self: center;
  margin-left: 12px;
  margin-right: 12px;
  padding-top: 0;
  padding-bottom: 2px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav-link:hover {
  color: #424242;
}

.nav-link.w--current {
  text-decoration: line-through;
}

.nav-link.content {
  align-items: flex-start;
  margin-left: 0;
  padding-bottom: 5px;
  font-size: 1.6em;
  font-weight: 600;
}

.hover-underline {
  background-color: rgba(0, 0, 0, .2);
  width: 100%;
  height: 2px;
  display: none;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.wrap-work-title {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.hero-grid {
  z-index: 200;
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  grid-template-rows: 15vh auto auto auto auto 15vh;
  grid-template-columns: 5vw 1fr 1fr 1fr 1fr 1fr 1fr 1fr 5vw;
  width: 100%;
  height: auto;
  min-height: 100vh;
  position: relative;
}

.inner-heading-wrapper {
  z-index: 60;
  background-color: rgba(0, 0, 0, 0);
  height: 100%;
  position: relative;
}

.work-image-mobile {
  display: none;
}

.container {
  max-width: 1600px;
  height: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 30px;
  padding-right: 30px;
  position: relative;
}

.container.header {
  padding-top: 15vh;
}

.container.styleguide {
  max-width: 1150px;
  min-height: 80vh;
  padding-top: 90px;
}

.text-small {
  color: #000;
  text-transform: none;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.35;
}

.inner-footer-nav {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
}

.heading-wrapper {
  z-index: 6;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.heading-wrapper.flex-vertical {
  flex-direction: column;
  padding-bottom: 10vh;
}

.heading-wrapper.flex-vertical.hero {
  padding-bottom: 0;
}

.text-copyright-icon {
  color: #000;
  margin-top: 0;
  margin-left: 0;
  font-family: Pretendard, sans-serif;
  font-size: 5em;
  font-weight: 300;
  line-height: 1.5;
}

.ui-bullet {
  background-color: #f7eeeb;
  border-radius: 200px;
  flex: none;
  width: 5px;
  height: 5px;
  margin-right: 2vw;
}

.work-title-details {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  width: 10vw;
  max-width: 120px;
  display: flex;
}

.work-title-details.mobile {
  display: none;
}

.work-title-details.flex {
  flex-direction: column;
  align-items: flex-end;
}

.rich-text {
  color: #fff;
  padding-top: 4vh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Noto Sans, Ubuntu, Cantarell, Helvetica Neue, Oxygen, Fira Sans, Droid Sans, sans-serif;
  font-size: 2.5em;
  line-height: 1.25;
}

.rich-text p {
  color: var(--dim-grey);
  margin-bottom: 5vh;
  padding-right: 0;
  font-family: Pretendard, sans-serif;
  font-size: 1.5rem;
  line-height: 1.45;
}

.rich-text h2 {
  margin-top: 0;
  font-family: Pretendard, sans-serif;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}

.rich-text h3 {
  margin-top: 0;
  font-family: Pretendard, sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.45;
}

.rich-text h4 {
  font-family: Pretendard, sans-serif;
  font-weight: 600;
}

.rich-text h1 {
  font-size: 2.7rem;
  font-weight: 300;
  line-height: 1.45;
}

.rich-text a {
  text-decoration: underline;
}

.inner-hero-image {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  position: relative;
}

.hero-image-wrapper {
  z-index: 1;
  position: relative;
  top: 0;
  overflow: hidden;
}

.flex-rail {
  white-space: nowrap;
  flex: none;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  padding-right: 0;
  display: flex;
  position: static;
  overflow: hidden;
}

.inner-text-scrolling {
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
  flex: none;
  align-items: center;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.35;
  display: flex;
}

.container-nav {
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 2500px;
  padding: 3vh 5vw;
  display: flex;
}

.nav-menu {
  text-align: left;
  flex: 1;
  order: -1;
  justify-content: flex-start;
  align-self: center;
  max-width: 20vw;
  display: flex;
}

.nav-menu.social-mobile {
  flex: 1;
  order: 1;
  justify-content: flex-end;
  max-width: 20vw;
  padding-top: 5vh;
  padding-bottom: 3vh;
  display: none;
}

.nav-menu.last {
  order: 1;
  justify-content: flex-end;
}

.brand {
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  display: flex;
  overflow: hidden;
}

.brand.w--current {
  flex-direction: column;
  display: flex;
}

.wrap-logo {
  position: relative;
}

.navbar {
  background-color: rgba(0, 0, 0, 0);
}

.nav-background {
  display: none;
}

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

.inline-link {
  color: #000;
  letter-spacing: -.02em;
  text-transform: none;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 0;
  margin-right: 12px;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.inline-link:hover {
  color: var(--dim-grey);
}

.inline-link.footer {
  text-transform: none;
  margin-top: 2vh;
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 12px;
  font-size: 2em;
  line-height: 1.3;
  box-shadow: inset 0 -1px #363636;
}

.navigation-wrapper {
  z-index: 900;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
}

.work-inner-content {
  max-width: 50%;
  margin-left: auto;
  margin-right: auto;
}

.text-navlink {
  letter-spacing: -.01em;
  text-transform: capitalize;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
}

.nav-shadow {
  display: none;
}

.work-inner-image {
  width: 100%;
  padding-bottom: 2vh;
  overflow: hidden;
}

.link-view-all-wrapper {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  justify-content: flex-start;
  align-items: center;
  padding-top: 17px;
  padding-bottom: 17px;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.link-view-all-wrapper:hover {
  color: #000;
}

.preloader {
  z-index: 999999;
  background-color: #f1f1f1;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.loader-bar {
  background-color: #d6d6d6;
  width: 20vw;
  height: 2px;
  overflow: hidden;
}

.small-text {
  z-index: 6;
  color: #000;
  letter-spacing: 0;
  text-transform: none;
  margin-top: 1px;
  margin-bottom: 1px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.25;
  position: relative;
}

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

.link-next {
  justify-content: flex-start;
  align-items: center;
  width: auto;
  min-height: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  text-decoration: none;
  display: flex;
  position: relative;
}

.thumb-hover-next {
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  width: 25vw;
  max-width: 450px;
  height: 25vh;
  position: absolute;
}

.link-view-all {
  justify-content: center;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.section {
  position: relative;
}

.section.intro {
  z-index: 20;
  max-width: 2500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
}

.section.footer {
  z-index: 10;
}

.section.overflow {
  z-index: 3;
  overflow: hidden;
}

.section.selected-works {
  padding-left: 3vw;
  padding-right: 3vw;
}

.section.hero {
  padding-top: 16vh;
}

.section.page-hero {
  padding-top: 12vh;
}

.section.black-bg {
  background-color: #d4d4d4;
}

.image-thumb-works {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.link-wrapper {
  z-index: 10;
  width: 100%;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.link-wrapper.top-row {
  height: 70vh;
  max-height: 780px;
}

.link-wrapper.bottom-row {
  height: 50vh;
}

.link-wrapper.middle-row {
  height: 80vh;
}

.wrap-image-blog {
  height: 80vh;
  margin-bottom: 5vh;
}

.next-wrapper {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 10vh;
  padding-bottom: 10vh;
  display: flex;
}

.loader-bar-fill {
  background-color: var(--blue);
  width: 100%;
  height: 2px;
}

.icon-arrow {
  height: 8vh;
  margin-top: 2vh;
  margin-left: 1.5vw;
}

.wrap-article {
  width: auto;
  margin-left: auto;
  margin-right: auto;
  padding-right: 5vw;
}

.work-image-tooltip {
  z-index: 4;
  opacity: 1;
  background-color: #000;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-size: cover;
  justify-content: flex-end;
  align-items: center;
  width: 35vw;
  height: 35vw;
  display: none;
  position: fixed;
  top: -35vh;
  bottom: auto;
  left: 8.4vw;
  right: auto;
  overflow: hidden;
}

.collection-list-wrapper {
  align-self: center;
  width: 100%;
}

.hero-template {
  flex-direction: column;
  align-items: flex-start;
  padding-top: 18vh;
  padding-bottom: 10vh;
  display: flex;
}

.link-list-feed {
  z-index: 3;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-decoration: none;
  display: flex;
  position: relative;
}

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

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

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

.link-footer {
  text-decoration: none;
}

.assets-grid {
  grid-column-gap: 32px;
  grid-row-gap: 32px;
  grid-template-rows: auto auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-top: 5vh;
  margin-bottom: 5vh;
}

.assets-image-link {
  margin-bottom: 0;
  text-decoration: none;
}

.assets-image-link:hover {
  opacity: .7;
}

.assets-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
  max-height: 200px;
}

.assets-heading {
  padding-top: 5vh;
}

.split {
  column-count: 2;
  column-gap: 5vw;
}

.full-page {
  z-index: 100;
  padding-top: 20vh;
  position: relative;
}

.dropdown-toggle {
  color: #000;
  text-transform: capitalize;
  padding: 10px 32px 10px 15px;
  font-size: 20px;
  font-weight: 500;
}

.icon-dropdown {
  color: #000;
  margin-right: 10px;
  font-size: 15px;
}

.dropdown-link {
  color: #e2e2e2;
  text-align: left;
  text-transform: capitalize;
  font-size: 18px;
  font-weight: 500;
  line-height: 30px;
}

.dropdown-link:hover {
  color: var(--grey);
}

.dropdown-link.w--current {
  color: #646464;
}

.dropdown-list {
  padding-top: 10px;
  padding-bottom: 10px;
}

.dropdown-list.w--open {
  background-color: #000;
  border-radius: 4px;
  padding-left: 10px;
  padding-right: 10px;
  overflow: hidden;
}

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

.typography-details {
  color: #8d8d8d;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
}

.typography-details.small {
  text-transform: none;
  margin-bottom: 35px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}

.style-guide-content {
  flex: 1;
}

.style-guide-container {
  border-bottom: 1px solid var(--dim-grey);
  flex-direction: column;
  align-items: flex-start;
  max-width: none;
  margin-top: 35px;
  padding-top: 25px;
  padding-bottom: 25px;
  display: flex;
  overflow: hidden;
}

.main-list {
  list-style-type: decimal;
}

.rich-text-divider {
  background-color: #000;
  width: 100%;
  height: 2px;
  margin-top: 2vh;
  margin-bottom: 5vh;
}

.grid-templates {
  grid-column-gap: 5vh;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  margin-bottom: 15vh;
}

.link-templates {
  background-color: #fff;
  padding: 4px 5px;
  transition-property: border-color;
  transition-duration: .35s;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, .08);
}

.link-templates:hover {
  color: #1b1b1b;
  border-color: #929292;
}

.changelog-grid {
  border: 1px solid #6e6e6e;
  border-radius: 5px;
  grid-template-rows: auto;
  padding: 21px 20px;
}

.image-tooltip {
  z-index: 3;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: relative;
}

.text-field-password {
  color: #000;
  text-align: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  height: 60px;
  margin-bottom: 0;
  font-size: 16px;
}

.submit-button-password {
  text-transform: uppercase;
  background-color: #373738;
  border-bottom-right-radius: 8px;
  border-bottom-left-radius: 8px;
  height: 60px;
  font-weight: 600;
}

.protected-wrapper {
  padding-top: 10px;
  padding-bottom: 30px;
}

.error-message-password {
  background-color: #b44444;
  border-radius: 5px;
}

.big-heading-wrapper {
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.heading-hero {
  color: #000;
  letter-spacing: -.06em;
  text-transform: uppercase;
  font-family: Pretendard, sans-serif;
  font-size: 40vh;
  font-weight: 900;
  line-height: .8;
}

.hero-wrapper {
  background-color: #82eeff;
  position: relative;
}

.hero-wrapper.nav {
  display: none;
}

.paragraph-wrapper {
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.logo {
  max-height: 32px;
}

.works-color-bg {
  z-index: 2;
  width: 100vw;
  height: 100vh;
  display: none;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.main-paragraph {
  color: var(--dim-grey);
  font-size: 1em;
}

.main-paragraph.text-large {
  color: #000;
  margin-bottom: 0;
  font-size: 4em;
  font-weight: 600;
  line-height: 1.1;
}

.main-paragraph.text-large.text-white {
  color: #fff;
}

.main-paragraph.text-gray {
  color: #727272;
}

.main-paragraph.text-gray.text-small {
  font-size: 15px;
}

.main-paragraph.all-caps {
  text-transform: uppercase;
  margin-bottom: 0;
  font-size: 1.2em;
  font-weight: 600;
}

.work-header {
  z-index: 3;
  padding-top: 20vh;
  padding-bottom: 30vh;
  position: relative;
}

.main-grid {
  grid-column-gap: 2vw;
  grid-row-gap: 2vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  align-items: start;
  width: 100%;
  display: grid;
  position: relative;
}

.main-grid.collage {
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
  grid-template-rows: 10vh 10vh 10vh 10vh 10vh 10vh;
  padding-top: 10vh;
  padding-bottom: 5vh;
}

.main-grid.no-gap-mobile {
  grid-column-gap: 0vw;
  grid-row-gap: 0vw;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  grid-auto-flow: column;
  align-items: start;
  justify-items: stretch;
  max-width: 100%;
  display: none;
}

.main-grid.hero {
  background-color: #cecece;
  height: 100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.main-grid.padding-bottom-large {
  padding-bottom: 8vh;
}

.main-grid.no-gap {
  grid-column-gap: 0vw;
  grid-row-gap: 0vw;
}

.main-grid.flipping {
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
  grid-template-rows: 10vh 10vh 10vh 10vh 10vh 10vh;
  padding-top: 10vh;
  padding-bottom: 5vh;
}

.main-grid.blog-list {
  margin-top: 6vh;
  margin-bottom: 6vh;
}

.grid-column {
  min-height: auto;
}

.grid-column.team {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  min-height: 400px;
  text-decoration: none;
  display: inline-block;
}

.grid-column.team:hover {
  color: var(--dim-grey);
}

.team-member-photo {
  height: 48vh;
  max-height: 450px;
  position: relative;
  overflow: hidden;
}

.team-member-photo.square {
  height: 70vh;
  max-height: none;
}

.collection-list {
  grid-column-gap: 1.5vw;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.collection-list._2-columns {
  grid-column-gap: 4vw;
  grid-row-gap: 8vh;
  grid-template-columns: 1fr 1fr;
}

.collection-list._3-columns {
  grid-column-gap: 4vw;
  grid-template-columns: 1fr 1fr 1fr;
}

.content-image {
  text-align: left;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: static;
}

.content-image.flip-left {
  transform: rotate(-9deg);
}

.content-image.flip-right {
  transform: rotate(4deg);
}

.tabs-menu {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

.heading-xlarge {
  color: #000;
  letter-spacing: -.04em;
  text-transform: uppercase;
  white-space: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Pretendard, sans-serif;
  font-size: 12vh;
  font-weight: 600;
  line-height: .9;
}

.heading-xlarge.hero-size {
  perspective-origin: 0 100%;
  transform-origin: 0 100%;
  letter-spacing: -.05em;
  justify-content: center;
  align-items: flex-end;
  padding-top: 23px;
  padding-bottom: 0;
  font-size: 10vh;
  font-weight: 700;
  line-height: .85;
  display: block;
  overflow: visible;
}

.heading-xlarge.no-wrap {
  letter-spacing: -.04em;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Pretendard, sans-serif;
  font-size: 20vh;
  font-weight: 500;
  line-height: .88;
}

.heading-xlarge.text-bold {
  font-size: 16vh;
  font-weight: 700;
}

.heading-xlarge.scroll {
  letter-spacing: -.02em;
  text-transform: capitalize;
  white-space: nowrap;
  font-size: 14vh;
  font-weight: 500;
  line-height: 1.1;
}

.tab {
  background-color: rgba(0, 0, 0, 0);
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 0;
  font-size: 4.3em;
  font-weight: 600;
  line-height: 100%;
  box-shadow: inset 0 -1px #000;
}

.tab:hover {
  color: var(--dim-grey);
}

.tab.w--current {
  background-color: rgba(0, 0, 0, 0);
  background-image: url('../images/Arrow-cta.svg');
  background-position: 100%;
  background-repeat: no-repeat;
  background-size: auto 22px;
}

.heading-medium {
  color: #000;
  letter-spacing: -.032em;
  margin-top: 0;
  font-size: 4em;
  font-weight: 600;
  line-height: 1.05;
  text-decoration: none;
}

.heading-medium.text-uppercase {
  letter-spacing: -.04em;
  line-height: 1;
}

.heading-large {
  color: #000;
  letter-spacing: -.035em;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 6.5em;
  font-weight: 600;
  line-height: 1;
}

.heading-large.margin-bottom-small {
  padding-bottom: 49px;
  font-size: 6em;
}

.heading-large.rondal {
  font-family: Rondal, sans-serif;
}

.span-space {
  padding-right: 16vw;
  display: inline-block;
}

.gallery-grid-wrapper {
  align-items: center;
  min-width: 100%;
  min-height: 50vh;
  display: flex;
  overflow: hidden;
}

.grid-gallery {
  grid-column-gap: 36px;
  grid-row-gap: 36px;
  flex: none;
  grid-template-rows: 6vh 6vh 6vh 6vh 6vh 6vh 6vh 6vh;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100%;
  min-width: 120vw;
  max-width: 1980px;
  min-height: 60vh;
  padding-right: 36px;
}

.grid-gallery.hero {
  grid-template-rows: auto auto auto auto auto auto auto auto;
  min-height: 100vh;
}

.frame-image-hero {
  background-color: #f44;
  min-height: auto;
  position: relative;
  overflow: hidden;
}

.heading-regular {
  color: #000;
  white-space: normal;
  margin-top: 5px;
  margin-bottom: 5px;
  font-size: 3vh;
  font-weight: 600;
  line-height: 1.2;
}

.heading-small {
  color: #000;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2vh;
  font-weight: 600;
  line-height: 1.5;
}

.heading-small.footer {
  margin-bottom: 8px;
  font-weight: 700;
}

.heading-small.text-gray {
  color: var(--dim-grey);
}

.frame-flip-wrapper {
  min-height: 70vh;
  overflow: hidden;
}

.inner-frame {
  perspective: 2000px;
  background-color: rgba(0, 0, 0, 0);
  min-height: auto;
}

.inner-frame-wrap {
  perspective: 2000px;
  justify-content: center;
  align-items: center;
  display: flex;
}

.flip-frame {
  perspective: 2000px;
  background-color: #b8b1b1;
  width: 50vw;
  height: 65vh;
  position: relative;
}

.flip-face-front {
  z-index: 4;
  transform-origin: 50%;
  transform-style: preserve-3d;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
  transform: translate3d(0, 0, -1px)rotateX(-180deg)rotateY(0)rotateZ(0);
}

.flip-face-front.horizontal {
  z-index: 2;
  transform-style: preserve-3d;
  background-color: rgba(0, 0, 0, 0);
  overflow: hidden;
  transform: translate3d(0, 0, -1px);
}

.flip-face-back {
  z-index: 3;
  background-color: rgba(0, 0, 0, 0);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
  overflow: hidden;
}

.flip-frame-reverse {
  perspective: 2000px;
  background-color: #b8b1b1;
  width: 50vw;
  height: 40vh;
  position: relative;
}

.inner-padding-small {
  padding-top: 2vh;
  padding-bottom: 2vh;
}

.inner-padding-medium {
  padding-top: 6vh;
  padding-bottom: 6vh;
}

.inner-padding-large {
  padding-top: 14vh;
  padding-bottom: 14vh;
}

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

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

.content-wrapper.overflow {
  overflow: hidden;
}

.content-wrapper.padding-bottom-medium {
  padding-bottom: 0;
}

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

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

.flip-frame-horizontal {
  perspective: 2000px;
  flex: none;
  width: 25vw;
  height: 40vh;
  position: relative;
}

.flip-frame-horizontal-left {
  perspective: 2000px;
  background-color: #b8b1b1;
  width: 100%;
  height: 40vh;
  position: relative;
}

.grid-work-list {
  z-index: 10;
  grid-column-gap: 3vw;
  grid-template-rows: auto;
  grid-template-columns: auto 1fr;
  position: relative;
}

.hover-image-wrapper {
  z-index: 2;
  align-items: center;
  width: 45vw;
  height: 100vh;
  padding-right: 5vw;
  display: none;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
  overflow: hidden;
}

.list-link {
  justify-content: space-between;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.inner-work-image {
  perspective-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
  max-height: 80vh;
  position: relative;
  overflow: hidden;
}

.image-hover-wrapper {
  position: relative;
  overflow: hidden;
}

.image-hover-wrapper.featured-one {
  height: 90vh;
  max-height: 780px;
}

.image-hover-wrapper.featured-two {
  width: 100%;
  height: 80vh;
  max-height: 700px;
}

.image-hover-wrapper.featured-three {
  width: 100%;
  height: 50vh;
}

.image-hover-wrapper.featured-four {
  height: 70vh;
}

.track {
  min-height: 320vh;
  position: relative;
  top: 0;
}

.sticky-wrapper {
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: auto;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.grid-about {
  grid-column-gap: 3.5vw;
  grid-row-gap: 3.5vw;
  flex: none;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  width: 100vw;
  height: 100%;
  min-height: 100vh;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

.frame-grid {
  width: 100%;
  min-height: 300px;
}

.frame-grid.med-size {
  padding-bottom: 10vh;
}

.sticky-wrapper-heading {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.list-works-wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  display: flex;
}

.arrow-cta {
  height: 35px;
  margin-top: 11px;
  margin-left: 16px;
  margin-right: 16px;
}

.arrow-cta.blog {
  opacity: .3;
  height: 15px;
  margin-top: 25px;
}

.second-scrolling {
  padding-top: 3.5vw;
  display: flex;
  overflow: hidden;
}

.grid-about-images {
  grid-column-gap: 3.5vw;
  flex: none;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100vw;
  margin-right: 3.5vw;
}

.about-frame-image {
  min-height: 400px;
}

.ascii-type {
  text-transform: none;
  margin-left: 18px;
  font-family: Pretendard, sans-serif;
  font-size: 1.6em;
  font-weight: 500;
}

.ascii-type.copyright {
  flex: none;
  margin-left: 1vw;
  margin-right: 1.3vw;
  padding-top: 3px;
  font-size: 2.1em;
  line-height: 1;
}

.margin-bottom-medium {
  margin-bottom: 6vh;
}

.bullet {
  background-color: #000;
  border-radius: 100px;
  width: 14px;
  height: 14px;
  margin-top: 5px;
  margin-right: 15px;
}

.text-span-light {
  font-weight: 200;
}

.arrow {
  height: 10px;
  margin-left: 11px;
}

.link-content {
  text-decoration: none;
}

.image-logo-footer {
  width: 45%;
  margin-bottom: 10px;
}

.ui-divider {
  background-color: #000;
  border-radius: 20px;
  width: 8px;
  height: 8px;
  margin-left: 12px;
  margin-right: 12px;
}

.flex-center {
  z-index: 6;
  perspective: 2000px;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.flex-center.home {
  padding-left: 20px;
  padding-right: 20px;
}

.flex-center.inner-padding-small {
  font-weight: 600;
}

.hero-flip-image-two, .hero-flip-image-one, .hero-flip-image-four, .hero-flip-image-three, .hero-flip-image-six, .hero-flip-image-five {
  object-fit: cover;
  flex: none;
  width: 100%;
  height: 100%;
}

.flip-frame-home {
  perspective: 2000px;
  flex: none;
  width: 50vw;
  max-width: 800px;
  height: 60vh;
  position: relative;
}

.collection-list-grid {
  grid-column-gap: 1.5vw;
  grid-row-gap: 16px;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  display: grid;
}

.content-image-wrapper {
  display: none;
}

.padding-bottom-medium {
  padding-bottom: 6vh;
}

.full-image-wrapper {
  height: 70vh;
  overflow: hidden;
}

.grid-wrapper {
  min-height: auto;
  position: relative;
}

.flex-horizontal {
  align-items: center;
  display: flex;
}

.flex-horizontal.top-align {
  align-items: flex-start;
}

.flex-horizontal.top-align-copy {
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.flex-horizontal.wrapped {
  flex-wrap: wrap;
}

.flex-horizontal.works {
  align-items: flex-start;
}

.ui-dot {
  background-color: #000;
  border-radius: 100px;
  width: 12px;
  height: 12px;
  margin-right: 10px;
}

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

.center-wrapper.padding-bottom-medium {
  z-index: 7;
  position: relative;
}

.padding-bottom-large {
  padding-bottom: 12vh;
}

.bottom-line-wrapper {
  border-bottom: 1px solid rgba(0, 0, 0, .15);
  align-items: center;
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  display: flex;
}

.number-serif {
  min-width: 50px;
  padding-top: 7px;
  padding-left: 6px;
  padding-right: 15px;
  font-family: Pretendard, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 32px;
}

.divider-wrapper {
  justify-content: center;
  align-items: center;
  width: auto;
  height: 80px;
  padding-left: 17px;
  padding-right: 17px;
  display: flex;
}

.work-image-wrapper {
  width: 100%;
  height: 80vh;
}

.bubble-wrapper {
  justify-content: center;
  align-items: flex-start;
  min-height: 25vh;
  display: flex;
}

.bubble-image {
  background-color: #bbb;
  border-radius: 100%;
  width: 14vw;
  height: 14vw;
  overflow: hidden;
}

.bubble-image.small {
  background-color: #f78c28;
  width: 6vw;
  height: 6vw;
}

.bubble-image.medium {
  background-color: #fcff62;
  width: 10vw;
  height: 10vw;
}

.work-wrapper {
  width: 100%;
  margin-bottom: 4vh;
}

.hovering {
  z-index: 25;
  color: #dadada;
  background-color: #000;
  border-radius: 100px;
  justify-content: center;
  align-items: center;
  width: 8vw;
  height: 8vw;
  font-weight: 500;
  display: flex;
  position: fixed;
  top: -4vh;
  bottom: auto;
  left: 4vw;
  right: auto;
}

.inner-work-wrapper {
  max-height: 45vh;
  overflow: hidden;
}

.overflow-wrapper {
  width: 100%;
  overflow: hidden;
}

.overflow-wrapper.flex-vertical {
  flex-direction: column;
  display: flex;
}

.overflow-wrapper.flex-vertical.edges {
  padding-left: 3vw;
}

.overflow-wrapper.image-blog {
  height: 35vh;
}

.margin-bottom-small {
  margin-bottom: 2vh;
}

.text-white {
  color: #fff;
}

.text-field {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  border-bottom-color: #000;
  height: 80px;
  margin-bottom: 25px;
  padding-left: 0;
  font-size: 22px;
}

.text-field::placeholder {
  color: #616161;
}

.form-button {
  background-color: #00af06;
  padding: 21px 49px;
  font-size: 16px;
  transition: background-color .2s;
}

.form-button:hover {
  background-color: #2e2e2e;
}

.flipping-image-wrapper {
  height: 100%;
  position: relative;
}

.flipping-image-wrapper.back {
  z-index: 5;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.flipping-image-wrapper.front {
  z-index: 10;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.hero-about-flip-one {
  z-index: 6;
  color: #ff0dc6;
  width: 100%;
  height: 100%;
  position: relative;
}

.hero-about-flip-three {
  z-index: 3;
  width: 100%;
  height: 100%;
  padding: 5vh 5vw 5vh 4vw;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.hero-about-flip-four {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.hero-about-flip-five {
  z-index: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.hero-about-flip-two {
  z-index: 5;
  color: #ff0dc6;
  width: 100%;
  height: 100%;
  padding: 6vh 4vw 4vh;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.hero-vertical-up {
  z-index: 4;
  flex-direction: column;
  flex: none;
  justify-content: space-around;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  display: flex;
  position: relative;
}

.hero-image-frame {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero-image-frame.medium {
  height: 35vh;
}

.hero-image-frame.small {
  height: 16vh;
  padding-left: 1vw;
  padding-right: 1vw;
}

.hero-vertical-reverse {
  z-index: 2;
  flex-direction: column;
  flex: none;
  justify-content: space-between;
  align-items: baseline;
  width: 100%;
  height: 100%;
  min-height: 180vh;
  padding-top: 9px;
  padding-bottom: 9px;
  display: flex;
  position: relative;
}

.large-section {
  z-index: 12;
  background-color: #ff606d;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.large-section.black-bg {
  background-color: #181818;
}

.outline-divider {
  background-color: #000;
  width: 100%;
  height: 2px;
}

.text-span-icon {
  padding-left: 1vw;
  padding-right: 1vw;
  display: inline-block;
  transform: rotate(0);
}

.work-list-wrapper {
  padding-bottom: 20vh;
}

.logos-wall {
  opacity: .25;
  max-width: 80%;
  height: 100%;
  max-height: 70px;
}

.inner-grid {
  grid-column-gap: 4vw;
  grid-row-gap: 16px;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: .5fr 2fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-items: flex-start;
  padding-right: 0;
  display: grid;
}

.blog-post-info-wrapper {
  padding-top: 10px;
}

.profile-image-wrapper {
  height: 70vh;
  overflow: hidden;
}

.background-shadow {
  z-index: 6;
  background-image: linear-gradient(rgba(255, 255, 255, .8) 13%, rgba(243, 243, 243, 0) 62%);
  height: 40vh;
  display: none;
  position: relative;
}

.city-image-wrapper {
  width: 16vw;
  height: 20vh;
  min-height: auto;
  overflow: hidden;
}

.button {
  color: #fff;
  text-transform: uppercase;
  background-color: #000;
  padding: 25px 52px;
  font-weight: 600;
  transition: background-color .2s, color .2s;
}

.button:hover {
  background-color: #383838;
}

.textarea {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0);
  border-bottom-color: #000;
  margin-bottom: 25px;
  padding-left: 0;
  font-size: 22px;
  display: flex;
}

.textarea::placeholder {
  color: #616161;
}

.sidebar-blog {
  display: block;
}

.collection-home-wrapper {
  width: 100%;
}

.thumb-mask {
  background-color: #f3f3f3;
  width: 50%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.thumb-mask.side {
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.success-message {
  background-color: #c6f096;
}

.error-message {
  background-color: #ffbdbd;
  padding-top: 19px;
  padding-bottom: 19px;
}

.main-nav-wrapper {
  position: relative;
}

.line-divider {
  background-color: #000;
  width: 2vw;
  height: 1px;
  margin-left: 15px;
  margin-right: 15px;
}

.home-assets-wrapper {
  height: auto;
}

.link-works {
  width: 100%;
}

.link {
  color: #1d1b1b;
  padding-top: 10px;
  padding-left: 15px;
  padding-right: 32px;
  font-size: 20px;
  font-weight: 500;
}

.link.w--current {
  color: #000;
  padding: 10px 32px 10px 15px;
  font-size: 20px;
  font-weight: 500;
}

.dropdown-toggle-2 {
  padding: 10px 32px 10px 15px;
  font-size: 20px;
}

.button-link {
  background-color: #00a241;
  padding: 20px 40px;
}

.button-2 {
  background-color: #00af40;
  padding: 20px 40px;
  font-size: 25px;
  font-weight: 500;
}

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

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

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

.div-block-2 {
  width: 100%;
  height: 70vh;
}

.image-wrapper {
  width: 50%;
  height: 70vh;
}

.container-2 {
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  flex-flow: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: center;
  min-width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  display: flex;
}

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

  h4 {
    font-size: 1em;
    line-height: 1.35;
  }

  p {
    margin-bottom: 2.5vh;
  }

  .nav-link {
    text-transform: capitalize;
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 36px;
    line-height: 1.8;
  }

  .nav-link.social {
    font-size: 22px;
  }

  .hover-underline {
    display: none;
  }

  .wrap-work-title {
    justify-content: space-between;
    height: auto;
    padding-top: 2vh;
    padding-bottom: 2vh;
  }

  .hero-grid {
    grid-template-rows: 20vh auto auto auto auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    height: auto;
    min-height: 100vh;
  }

  .inner-heading-wrapper {
    padding-top: 0;
    padding-bottom: 5vh;
  }

  .work-image-mobile {
    width: 100%;
    height: auto;
    display: block;
    overflow: hidden;
  }

  .container.no-padding-mobile {
    padding-left: 0;
    padding-right: 0;
  }

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

  .inner-footer-nav {
    flex-direction: column;
  }

  .heading-wrapper {
    justify-content: flex-start;
  }

  .text-copyright-icon {
    font-size: 2em;
  }

  .ui-bullet {
    order: 0;
    align-self: center;
    width: .5vw;
    height: .5vw;
    margin-right: 0;
    display: none;
  }

  .work-title-details {
    flex-flow: row;
    flex: none;
    align-items: center;
    width: auto;
  }

  .work-title-details.mobile {
    display: block;
  }

  .rich-text {
    margin-top: 0;
    padding-bottom: 2vh;
    font-size: 2em;
  }

  .rich-text p {
    margin-bottom: 5vh;
    font-size: 1.65rem;
  }

  .hero-image-wrapper {
    z-index: 1;
  }

  .container-nav {
    flex-direction: column;
    padding: 1vh 30px;
  }

  .nav-menu {
    background-color: #e7e7e7;
    flex: none;
    order: 0;
    width: 100%;
    max-width: none;
    position: relative;
  }

  .nav-menu.social-mobile {
    order: 1;
    max-width: none;
  }

  .nav-menu.last {
    order: 0;
    justify-content: flex-start;
  }

  .brand {
    background-color: rgba(0, 0, 0, 0);
    flex: 1;
    order: -1;
    align-items: flex-start;
    max-width: 200px;
    padding-left: 0;
    display: flex;
  }

  .menu-button {
    order: 1;
    padding-right: 0;
  }

  .menu-button.w--open {
    background-color: rgba(0, 0, 0, 0);
    order: 0;
  }

  .wrap-logo {
    order: -1;
    justify-content: space-between;
    align-items: center;
    display: flex;
  }

  .navbar {
    position: relative;
  }

  .nav-background {
    z-index: 2;
    background-color: #e7e7e7;
    width: 100%;
    height: 100%;
    padding-right: 0;
    display: none;
    position: fixed;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .nav-wrapper {
    z-index: 3;
  }

  .inline-link {
    align-items: flex-start;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.8;
  }

  .lottie-animation {
    width: 4vw;
    height: auto;
  }

  .navigation-wrapper {
    z-index: 9000;
    height: 90px;
    position: fixed;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .work-inner-content {
    max-width: none;
    padding-left: 30px;
    padding-right: 30px;
  }

  .text-navlink {
    text-transform: capitalize;
  }

  .nav-shadow {
    width: 100%;
    height: 100%;
    display: flex;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
  }

  .link-next {
    flex-flow: column wrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
  }

  .thumb-hover-next {
    order: -1;
    width: 100%;
    height: 50vh;
    position: relative;
    top: 0%;
    bottom: auto;
    left: auto;
    right: 0%;
  }

  .link-view-all {
    justify-content: center;
    width: 100%;
    padding-top: 2vh;
    display: flex;
  }

  .section.selected-works {
    padding-left: 0;
    padding-right: 0;
  }

  .image-thumb-works {
    height: 50vh;
  }

  .link-wrapper {
    width: 100%;
  }

  .link-wrapper.top-row, .link-wrapper.middle-row {
    height: 50vh;
  }

  .next-wrapper {
    max-width: 90vw;
    margin-left: auto;
    margin-right: auto;
  }

  .icon-arrow {
    height: 7vh;
  }

  .wrap-article {
    width: auto;
    padding-top: 5vh;
  }

  .link-list-feed {
    flex-direction: column;
    padding-bottom: 5vh;
    padding-right: 0;
  }

  .assets-grid {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
  }

  .assets-image-link {
    height: 100%;
    margin-bottom: 0;
  }

  .assets-image {
    max-height: 200px;
  }

  .full-page {
    z-index: 3;
    padding-top: 10vh;
  }

  .dropdown-toggle {
    text-transform: capitalize;
    padding-left: 0;
    padding-right: 0;
    font-size: 28px;
    line-height: 1.8;
  }

  .icon-dropdown {
    margin-right: 0;
    font-size: 16px;
    font-weight: 100;
  }

  .dropdown-link {
    color: #000;
    text-transform: capitalize;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 0;
    font-size: 18px;
  }

  .dropdown-list {
    padding-top: 0;
    padding-bottom: 0;
    padding-left: 10px;
  }

  .dropdown-list.w--open {
    background-color: rgba(0, 0, 0, 0);
    border-style: none none solid;
    border-bottom-width: 2px;
    border-radius: 0;
    margin-bottom: 15px;
    padding-top: 5px;
    padding-bottom: 15px;
    padding-left: 0;
  }

  .style-guide-container {
    width: 100%;
    max-width: none;
    margin-top: 20px;
    padding-top: 10px;
    padding-bottom: 50px;
  }

  .grid-templates {
    grid-column-gap: 16px;
    grid-template-rows: auto auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    margin-bottom: 5vh;
  }

  .link-templates {
    min-height: auto;
  }

  .link-templates:hover {
    border-color: #3a3939;
  }

  .heading-hero {
    font-size: 25vh;
  }

  .hero-wrapper.nav {
    z-index: 1;
    width: 100%;
    height: 90px;
    display: block;
    position: absolute;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .paragraph-wrapper {
    flex-direction: column;
  }

  .main-paragraph.text-large {
    font-size: 40px;
  }

  .main-paragraph.text-gray.text-small {
    text-align: left;
  }

  .work-header {
    padding-bottom: 10vh;
  }

  .main-grid {
    grid-row-gap: 3vh;
    grid-template-columns: 1fr 1fr;
  }

  .main-grid.collage {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding-top: 10vh;
  }

  .main-grid.no-gap-mobile {
    grid-row-gap: 0vh;
    align-content: space-between;
  }

  .main-grid.hero {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .main-grid.flipping {
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding-top: 10vh;
  }

  .collection-list {
    grid-template-columns: 1fr 1fr;
  }

  .collection-list._3-columns {
    grid-template-columns: 1fr;
  }

  .heading-xlarge.hero-size {
    flex-direction: column;
    align-items: flex-start;
    font-size: 80px;
  }

  .heading-xlarge.no-wrap, .heading-xlarge.text-bold {
    font-size: 10vh;
  }

  .heading-large {
    font-size: 65px;
  }

  .grid-gallery {
    min-width: 250vw;
    min-height: 30vh;
  }

  .frame-flip-wrapper {
    min-height: auto;
  }

  .flip-frame {
    height: 40vh;
  }

  .flip-frame-horizontal {
    width: 100%;
  }

  .grid-work-list {
    padding-bottom: 5vh;
  }

  .hover-image-wrapper {
    display: none;
  }

  .track {
    min-height: auto;
  }

  .sticky-wrapper {
    position: relative;
  }

  .grid-about {
    min-height: 50vh;
  }

  .frame-grid {
    min-height: auto;
  }

  .sticky-wrapper-heading {
    position: relative;
  }

  .list-works-wrapper {
    min-height: auto;
  }

  .arrow-cta.blog {
    margin-top: 0;
    display: none;
  }

  .about-frame-image {
    min-height: auto;
  }

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

  .image-logo-footer {
    width: 45%;
  }

  .flip-frame-home {
    width: 100%;
    height: 38vh;
    min-height: 650px;
  }

  .collection-list-grid {
    grid-row-gap: 0vh;
    grid-template-columns: 1fr;
  }

  .content-image-wrapper {
    border: 1px solid #000;
    height: 45vh;
    display: block;
    overflow: hidden;
  }

  .full-image-wrapper {
    height: 35vh;
  }

  .flex-horizontal.top-align-copy {
    padding-bottom: 4vh;
    padding-left: 30px;
    padding-right: 30px;
    position: relative;
  }

  .flex-horizontal.works.inner-padding-medium {
    padding-left: 30px;
    padding-right: 30px;
  }

  .bubble-wrapper {
    align-items: center;
    min-height: auto;
  }

  .bubble-image {
    width: 30vw;
    height: 30vw;
  }

  .bubble-image.small {
    width: 20vw;
    height: 20vw;
  }

  .bubble-image.medium {
    width: 15vw;
    height: 15vw;
  }

  .work-wrapper {
    margin-bottom: 4vh;
    padding-bottom: 4vh;
  }

  .hovering {
    display: none;
  }

  .work-detail-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-image-frame, .hero-image-frame.medium {
    height: auto;
  }

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

  .blog-post-info-wrapper {
    justify-content: space-between;
    padding-top: 0;
    display: flex;
  }

  .city-image-wrapper {
    width: 100%;
  }

  .sidebar-blog {
    display: none;
  }

  .collection-home-wrapper {
    width: 100%;
  }

  .main-nav-wrapper {
    z-index: 25;
    background-color: #f3f3f3;
    width: 100%;
    height: 90px;
    position: fixed;
  }

  .link.w--current {
    text-transform: capitalize;
    padding-left: 0;
    padding-right: 0;
    font-size: 28px;
    display: block;
    position: static;
  }
}

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

  blockquote {
    margin-top: 35px;
    margin-bottom: 35px;
    font-size: 24px;
  }

  .wrap-work-title {
    padding-bottom: 4vh;
  }

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

  .text-small {
    text-align: left;
    white-space: nowrap;
    font-size: 13px;
  }

  .rich-text p {
    font-size: 18px;
  }

  .inner-hero-image {
    background-size: cover;
    min-height: 50vh;
  }

  .inline-link.footer {
    font-size: 2em;
  }

  .work-inner-content {
    padding-left: 0;
    padding-right: 0;
  }

  .image-thumb-works {
    min-height: 500px;
  }

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

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

  .assets-image {
    height: 150px;
    max-height: none;
  }

  .split {
    column-count: 1;
  }

  .paragraph-wrapper {
    flex-direction: column;
  }

  .main-grid {
    grid-row-gap: 1.5vh;
  }

  .collection-list {
    flex-direction: column;
    display: flex;
  }

  .collection-list._2-columns {
    grid-column-gap: 4vw;
    grid-row-gap: 8vh;
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .heading-xlarge {
    font-size: 60px;
  }

  .work-wrapper {
    margin-bottom: 0;
    padding-bottom: 0;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 22px;
  }

  h3 {
    font-size: 20px;
  }

  h4 {
    font-size: 1rem;
  }

  p {
    font-size: 18px;
  }

  .hero-grid {
    object-fit: fill;
    grid-template-rows: auto auto auto auto auto auto;
    grid-template-columns: 5vw 1fr 1fr 5vw;
    min-height: auto;
    padding-top: 15vh;
    padding-bottom: 5vh;
    overflow: visible;
  }

  .inner-heading-wrapper {
    padding-bottom: 5vh;
  }

  .work-image-mobile {
    height: 25vh;
  }

  .container {
    max-width: none;
  }

  .text-small {
    text-align: right;
    font-size: .7em;
  }

  .inner-footer-nav {
    flex-direction: column;
  }

  .heading-wrapper {
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 0;
  }

  .heading-wrapper.margin-bottom-medium {
    margin-bottom: 35px;
  }

  .heading-wrapper.margin-bottom-small {
    margin-bottom: 25px;
  }

  .heading-wrapper.flex-vertical {
    align-items: flex-start;
    padding-top: 0;
    padding-bottom: 0;
  }

  .text-copyright-icon {
    font-size: 1.3em;
  }

  .ui-bullet {
    width: 1vw;
    height: 1vw;
  }

  .rich-text {
    margin-top: 0;
    padding-bottom: 0;
  }

  .rich-text h2 {
    font-size: 1.5rem;
  }

  .rich-text h3 {
    font-size: 1.25rem;
    line-height: 1.25;
  }

  .inner-hero-image {
    min-height: 35vh;
  }

  .flex-rail {
    padding-top: 8px;
    padding-bottom: 8px;
  }

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

  .nav-menu {
    align-self: flex-start;
  }

  .inline-link.footer {
    font-size: 1.6em;
  }

  .lottie-animation {
    width: 11vw;
    height: auto;
    position: relative;
    right: -10px;
  }

  .work-inner-content {
    padding-top: 3vh;
    padding-bottom: 4vh;
  }

  .text-navlink {
    font-family: Pretendard, sans-serif;
  }

  .small-text {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 12px;
    line-height: 1.2;
  }

  .thumb-hover-next {
    height: 25vh;
  }

  .link-view-all {
    justify-content: space-between;
  }

  .section.page-hero {
    padding-top: 8vh;
  }

  .image-thumb-works {
    height: 25vh;
    min-height: auto;
  }

  .wrap-image-blog {
    height: 35vh;
    min-height: auto;
    margin-bottom: 5vh;
  }

  .next-wrapper {
    width: 100%;
    padding-top: 5vh;
    padding-bottom: 5vh;
  }

  .icon-arrow {
    height: 3vh;
    margin-top: 5px;
    margin-left: 2vw;
  }

  .wrap-article {
    padding-top: 0;
  }

  .link-list-feed {
    padding-bottom: 0;
  }

  .social-nav {
    font-size: 18px;
  }

  .utility-page-content {
    width: 90%;
  }

  .assets-image {
    height: 150px;
    max-height: none;
  }

  .dropdown-toggle {
    line-height: 1;
  }

  .style-guide-container {
    padding-bottom: 30px;
  }

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

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

  .heading-hero {
    font-size: 10vh;
  }

  .paragraph-wrapper {
    flex-direction: column;
  }

  .main-paragraph {
    font-size: 18px;
  }

  .main-paragraph.text-large {
    font-size: 23px;
    font-weight: 600;
  }

  .work-header {
    padding-bottom: 5vh;
  }

  .main-grid {
    grid-row-gap: 3vh;
  }

  .main-grid.collage {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    padding-top: 15vh;
    padding-bottom: 15vh;
  }

  .main-grid.no-gap-mobile {
    grid-column-gap: 0vw;
    grid-row-gap: 0vh;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: block;
  }

  .main-grid.hero {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }

  .main-grid.flipping {
    grid-template-columns: 1fr 1fr;
    padding-top: 15vh;
  }

  .grid-column.team {
    min-height: auto;
    margin-bottom: 35px;
  }

  .team-member-photo {
    height: 32vh;
  }

  .team-member-photo.square {
    height: 40vh;
  }

  .collection-list._2-columns {
    grid-row-gap: 2vh;
  }

  .content-image {
    display: block;
  }

  .tabs-menu {
    flex-direction: row;
    width: 100%;
  }

  .heading-xlarge {
    font-size: 45px;
  }

  .heading-xlarge.hero-size {
    font-size: 40px;
    font-weight: 700;
  }

  .heading-xlarge.no-wrap {
    font-size: 55px;
    line-height: 1;
  }

  .heading-xlarge.text-bold {
    font-size: 60px;
  }

  .heading-xlarge.scroll {
    font-size: 8vh;
  }

  .tab {
    text-align: center;
    flex: 1;
    padding-left: 5px;
    padding-right: 5px;
    font-size: 16px;
  }

  .tab.w--current {
    background-image: none;
    background-repeat: repeat;
    background-size: auto;
    box-shadow: inset -1px 1px #000, inset 1px 1px #000;
  }

  .heading-medium {
    font-size: 30px;
  }

  .heading-large {
    font-size: 35px;
  }

  .gallery-grid-wrapper {
    min-height: auto;
  }

  .grid-gallery {
    grid-column-gap: 16px;
    grid-row-gap: 16px;
    grid-template-rows: 4vh 4vh 4vh 4vh 4vh 4vh 4vh 4vh;
    min-width: 300vw;
  }

  .grid-gallery.hero {
    min-height: auto;
  }

  .frame-image-hero {
    max-width: none;
  }

  .heading-regular {
    font-size: 20px;
  }

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

  .flip-frame {
    width: 100%;
    height: 30vh;
  }

  .flip-frame-reverse {
    height: 30vh;
  }

  .inner-padding-small {
    padding-top: 1vh;
    padding-bottom: 1vh;
  }

  .inner-padding-medium {
    padding-top: 3vh;
    padding-bottom: 3vh;
  }

  .inner-padding-large {
    padding-top: 8vh;
    padding-bottom: 8vh;
  }

  .content-wrapper {
    width: 100%;
  }

  .flip-frame-horizontal, .flip-frame-horizontal-left {
    height: 30vh;
  }

  .image-hover-wrapper.featured-one {
    height: 45vh;
    max-height: none;
  }

  .image-hover-wrapper.featured-two {
    height: 45vh;
  }

  .image-hover-wrapper.featured-three {
    height: 30vh;
  }

  .image-hover-wrapper.featured-four {
    height: 35vh;
  }

  .track {
    min-height: auto;
  }

  .sticky-wrapper {
    position: relative;
  }

  .grid-about {
    width: 125vw;
    height: auto;
    min-height: auto;
  }

  .frame-grid {
    min-height: auto;
  }

  .frame-grid.med-size {
    padding-bottom: 0;
  }

  .sticky-wrapper-heading {
    position: relative;
  }

  .arrow-cta {
    height: 20px;
    margin-top: 0;
  }

  .about-frame-image {
    min-height: auto;
  }

  .ascii-type {
    font-size: 1em;
  }

  .ascii-type.copyright {
    margin-left: 4vw;
    font-size: 1em;
  }

  .image-logo-footer {
    width: 33%;
    display: block;
  }

  .flex-center {
    align-items: flex-start;
  }

  .flip-frame-home {
    min-height: auto;
  }

  .content-image-wrapper {
    border-style: none;
  }

  .flex-horizontal.top-align {
    padding-left: 0;
    padding-right: 30px;
  }

  .flex-horizontal.top-align-copy {
    padding-bottom: 2vh;
  }

  .flex-horizontal.works {
    padding-left: 0;
    padding-right: 30px;
  }

  .flex-horizontal.works.inner-padding-medium {
    padding-top: 0;
    padding-bottom: 5vh;
  }

  .ui-dot {
    width: 8px;
    height: 8px;
  }

  .padding-bottom-large {
    padding-bottom: 8vh;
  }

  .number-serif {
    min-width: 30px;
  }

  .divider-wrapper {
    width: auto;
    height: auto;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .work-image-wrapper {
    height: 50vh;
  }

  .bubble-wrapper {
    align-items: center;
    min-height: auto;
    padding-left: 15px;
    padding-right: 15px;
  }

  .bubble-image {
    width: 30vw;
    height: 30vw;
  }

  .bubble-image.small {
    width: 20vw;
    height: 20vw;
  }

  .bubble-image.medium {
    width: 15vw;
    height: 15vw;
  }

  .work-wrapper {
    padding-bottom: 0;
  }

  .inner-work-wrapper {
    height: auto;
    padding-top: 5vh;
    padding-right: 30vw;
  }

  .work-detail-wrapper {
    padding-bottom: 2vh;
    padding-left: 30px;
    padding-right: 30px;
  }

  .hero-vertical-up {
    align-items: center;
    min-height: auto;
    padding-left: 0;
    padding-right: 0;
  }

  .hero-image-frame, .hero-image-frame.medium, .hero-image-frame.small {
    height: auto;
  }

  .hero-vertical-reverse {
    align-items: center;
    min-height: auto;
    padding-left: 16px;
    padding-right: 16px;
  }

  .blog-post-info-wrapper {
    padding-top: 0;
  }

  .link.w--current {
    text-align: left;
    position: static;
  }

  .image-wrapper {
    width: 100%;
    height: 30vh;
  }

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

#w-node-_48e2251a-36de-25bd-8ee3-e2170dd784a8-c44e5857 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-_55a9d3e6-6394-6e1f-ce30-e3a9877474c4-c44e5857 {
  grid-area: 1 / 10 / 2 / 13;
  align-self: center;
}

#w-node-_80bd20d9-36ac-81d3-b64a-5405f95ba5e5-c44e5857, #w-node-cf6f6990-91ff-14cd-2e59-b5a65f956080-c44e5857, #w-node-a6a0bd0d-262e-4be5-52e4-6ffe7036d0bf-c44e5857, #w-node-_849b7fec-5b6b-d42a-73ad-527049c6b0c6-c44e5857, #w-node-_9a380d8d-2943-d873-c81f-6ae9817c04ca-c44e5857, #w-node-_9a380d8d-2943-d873-c81f-6ae9817c04cc-c44e5857, #w-node-_9a380d8d-2943-d873-c81f-6ae9817c04d2-c44e5857, #w-node-_9a380d8d-2943-d873-c81f-6ae9817c04d8-c44e5857, #w-node-_194afb35-b01c-442a-dbad-a4b08acc113a-c44e5857, #w-node-_194afb35-b01c-442a-dbad-a4b08acc113c-c44e5857, #w-node-_194afb35-b01c-442a-dbad-a4b08acc1142-c44e5857, #w-node-_194afb35-b01c-442a-dbad-a4b08acc1148-c44e5857, #w-node-_55d99255-5c0e-5c68-3f67-a108cbf0d131-c44e5857, #w-node-_55d99255-5c0e-5c68-3f67-a108cbf0d133-c44e5857 {
  align-self: start;
}

#w-node-dcc1455a-6ff1-af51-326e-072817ef2980-c27ac3f8 {
  grid-area: 1 / 1 / 2 / 4;
  justify-self: center;
}

#w-node-e7d669f4-a2a3-7c4c-3d5f-d2c82fbec864-c27ac3f8 {
  grid-area: 1 / 11 / 2 / 13;
  justify-self: start;
}

#w-node-daceed6c-a540-1d6b-ca31-747e568b173f-c27ac3f8 {
  grid-area: 3 / 1 / 4 / 13;
  justify-self: center;
}

#w-node-dd165a5d-fc67-5bc8-9615-415b92996c0a-c44e58c4 {
  align-self: start;
}

#w-node-_4e25c14e-9549-53aa-9e22-3affb8d95f9b-c44e58c5 {
  grid-area: 1 / 1 / 2 / 10;
  align-self: start;
}

#w-node-_4c3ab78a-9a2c-caeb-ab1e-a93f0e31873d-c44e58c5 {
  grid-area: 1 / 10 / 2 / 13;
  align-self: end;
}

#w-node-bfe7c372-4ac6-b527-465d-4b96098600ef-c44e58c5 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: stretch;
}

#w-node-_842ef2dc-eb04-b7c8-56bd-a5a488f07c0d-c44e58c5 {
  grid-area: 1 / 4 / 3 / 10;
}

#w-node-_34d7e42f-25e1-6901-71b3-643dfe826db7-c44e58c5, #w-node-_8301bf4a-5129-79b4-85fa-01871ae662f7-c44e58c5, #w-node-_81874f51-d11e-f43d-7d8a-ec1eb5a20754-c44e58c5 {
  grid-area: span 1 / span 3 / span 1 / span 3;
  align-self: stretch;
}

#w-node-_2ef2c63f-0fba-07e7-b351-6cd1f0780c6a-c44e58c5, #w-node-b5ff8139-2990-f7df-302f-83647a2f28ce-c44e58c5, #w-node-_3d54eaec-4757-5b8c-fa1f-24df8b04fa59-c44e58c5, #w-node-_730cb785-cba4-c970-d413-8cfc557d5c94-c44e58c5 {
  align-self: start;
}

#w-node-_06a6b7b8-198d-9f33-e0f4-c84e4e230bd8-c44e58c5 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-db28f1d6-e738-5882-2d5c-190b107db07d-c44e58c5 {
  grid-area: 1 / 8 / 2 / 13;
}

#w-node-ec0ddd6e-c3e3-f62d-4cc3-192222d43c72-c44e58c6, #w-node-_0d3f27d6-d994-5724-6f6a-01a157e95c0b-c44e58c6 {
  grid-area: 2 / 5 / 6 / 9;
}

#w-node-fecc183f-d652-992c-3680-d0890a8c62b3-c44e58c6 {
  grid-area: 3 / 2 / 5 / 12;
  align-self: center;
}

#w-node-_954d2754-2155-df07-9d5a-c5a99bb4be25-c44e58c6 {
  grid-area: 2 / 1 / 6 / 2;
}

#w-node-_954d2754-2155-df07-9d5a-c5a99bb4be27-c44e58c6 {
  grid-area: span 6 / span 2 / span 6 / span 2;
  align-self: stretch;
}

#w-node-_954d2754-2155-df07-9d5a-c5a99bb4be29-c44e58c6 {
  grid-area: 3 / 4 / 6 / 5;
}

#w-node-_954d2754-2155-df07-9d5a-c5a99bb4be2b-c44e58c6 {
  grid-area: 1 / 5 / 4 / 6;
}

#w-node-_954d2754-2155-df07-9d5a-c5a99bb4be2d-c44e58c6 {
  grid-area: 4 / 5 / 9 / 7;
}

#w-node-_38a05dd3-cd66-bb5d-d359-c62bcb7f431f-c44e58c6 {
  grid-area: 2 / 1 / 6 / 2;
}

#w-node-_38a05dd3-cd66-bb5d-d359-c62bcb7f4321-c44e58c6 {
  grid-area: span 6 / span 2 / span 6 / span 2;
  align-self: stretch;
}

#w-node-_38a05dd3-cd66-bb5d-d359-c62bcb7f4323-c44e58c6 {
  grid-area: 3 / 4 / 6 / 5;
}

#w-node-_38a05dd3-cd66-bb5d-d359-c62bcb7f4325-c44e58c6 {
  grid-area: 1 / 5 / 4 / 6;
}

#w-node-_38a05dd3-cd66-bb5d-d359-c62bcb7f4327-c44e58c6 {
  grid-area: 4 / 5 / 9 / 7;
}

#w-node-b15a44aa-80db-beb7-8edf-ce19aff0c084-c44e58c6 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-ab18279a-3d9b-5240-e058-047487983b84-c44e58c6 {
  grid-area: 2 / 1 / 3 / 8;
}

#w-node-_6d67e060-c159-d81a-9334-a7839a0d7e3a-c44e58c6 {
  grid-area: 3 / 4 / 4 / 12;
}

#w-node-f3d48ce1-db18-7192-97aa-4b616d396ab2-c44e58c6 {
  grid-area: 4 / 4 / 5 / 12;
}

#w-node-_09857ae6-59d0-1b43-cdfe-850361d06bf7-c44e58c6 {
  grid-area: 1 / 4 / 2 / 8;
}

#w-node-_09857ae6-59d0-1b43-cdfe-850361d06c00-c44e58c6 {
  grid-area: 1 / 9 / 2 / 13;
}

#w-node-_09857ae6-59d0-1b43-cdfe-850361d06c0c-c44e58c6 {
  grid-area: 2 / 4 / 3 / 13;
}

#w-node-_09857ae6-59d0-1b43-cdfe-850361d06c07-c44e58c6 {
  grid-area: 3 / 1 / 4 / 13;
}

#w-node-_09857ae6-59d0-1b43-cdfe-850361d06c09-c44e58c6 {
  grid-area: 1 / 1 / 2 / 4;
  align-self: start;
}

#w-node-_67464a00-8cbe-a2d3-6554-83c7f06e99ce-c44e58c6 {
  grid-area: 1 / 1 / 2 / 3;
}

#w-node-ffdc7cf9-c9e5-3f79-5f31-db79a5210eed-c44e58c6 {
  grid-area: 1 / 4 / 2 / 8;
}

#w-node-ffdc7cf9-c9e5-3f79-5f31-db79a5210ef5-c44e58c6 {
  grid-area: 1 / 9 / 2 / 13;
}

#w-node-ffdc7cf9-c9e5-3f79-5f31-db79a5210efd-c44e58c6 {
  grid-area: 2 / 4 / 3 / 8;
}

#w-node-dc0ee93b-fd97-8957-9655-e9824c73f5f5-4c73f5f4 {
  grid-area: 1 / 5 / 2 / 9;
}

#w-node-_9a1e27f2-3fa7-0fd1-9df4-ad32693e0314-4c73f5f4 {
  grid-area: 2 / 1 / 3 / 4;
}

#w-node-_58ebeecd-f440-698a-ce5c-ee637e230338-4c73f5f4 {
  grid-area: 2 / 4 / 3 / 7;
}

#w-node-_6314c9d6-5ce3-0bda-92b8-b4ca5935af29-4c73f5f4 {
  grid-area: 2 / 7 / 3 / 10;
  align-self: center;
}

#w-node-_9aaccab0-d654-90af-56da-8c73c8d67757-4c73f5f4 {
  grid-area: 2 / 10 / 3 / 13;
  align-self: center;
}

#w-node-a1e5511b-3c96-f99b-23b8-e6e6c9a17d55-c44e58c7 {
  grid-area: 1 / 3 / 2 / 6;
  align-self: start;
  justify-self: start;
}

#w-node-_2a5992ca-8a5a-1336-c5e9-f632480798e4-c44e58c7 {
  grid-area: 3 / 9 / 4 / 12;
}

#w-node-df8d9c4a-14a4-83a0-bf4c-ea621239d321-c44e58c7 {
  grid-area: 1 / 11 / 2 / 13;
}

#w-node-_6e48b04a-6dff-8fa4-75ba-cad983d23ce3-c44e58c7 {
  grid-area: 2 / 10 / 3 / 12;
}

#w-node-_2bf8949d-875a-c83c-0219-0054309de361-c44e58c7 {
  grid-area: 3 / 1 / 4 / 5;
}

#w-node-_7ddd26d0-d8aa-5774-8b8e-0d385ed401b8-c44e58c7 {
  grid-area: 2 / 2 / 3 / 5;
}

#w-node-_9883346f-2137-2d3c-c3b1-1eb6713fd078-c44e58c7 {
  grid-area: 1 / 1 / 3 / 4;
  align-self: center;
}

#w-node-_4740a7f6-0e24-01a1-97d1-6e8bb0c5d39d-c44e58c7 {
  grid-area: 1 / 3 / 4 / 11;
  align-self: center;
  justify-self: center;
}

#w-node-_4aeb293b-6258-e169-9caa-51399f522852-c44e58c7 {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-_4aeb293b-6258-e169-9caa-51399f522856-c44e58c7 {
  grid-area: 2 / 1 / 3 / 10;
}

#w-node-_4aeb293b-6258-e169-9caa-51399f52285c-c44e58c7 {
  grid-area: 3 / 3 / 4 / 13;
}

#w-node-_645cdcd1-eafc-bde1-4580-447be6835628-c44e58c7 {
  grid-area: 1 / 2 / 2 / 12;
}

#w-node-_484f9495-57f8-0e44-86bf-a2944f8b6108-c44e58c7 {
  grid-area: 2 / 3 / 3 / 11;
}

#w-node-_5f5649cb-e521-f1cd-516d-f15eb6745618-c44e58c7 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-_5f5649cb-e521-f1cd-516d-f15eb6745622-c44e58c7 {
  grid-area: 1 / 7 / 2 / 12;
}

#w-node-_37066ce4-3987-2468-bf06-f2934503f352-c44e58c7 {
  grid-area: 1 / 7 / 2 / 10;
}

#w-node-_154aced5-5049-a114-c4e4-f358581a635f-c44e58c7 {
  grid-area: 1 / 10 / 2 / 13;
}

#w-node-_0e09f5bf-d9c9-a745-8309-fd05354665d7-c44e58c7 {
  grid-area: 2 / 7 / 3 / 10;
}

#w-node-_76fc9ba7-95cb-e017-2c1a-5a17a7ae4430-c44e58c7 {
  grid-area: 2 / 10 / 3 / 13;
}

#w-node-_7bbd4066-64d9-e0a1-906c-7d80e97c7b3d-c44e58c7 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-a4b5e4fa-1b63-a62d-7cae-0802399f571f-c44e58ef {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-aebc56f5-201f-ab33-d34f-45adc7255290-c44e58ef {
  grid-area: 1 / 9 / 2 / 13;
}

#w-node-ceabe2a6-49d8-7f34-c503-e7e07d600cbb-c44e58ef, #w-node-_07f4429a-0d8b-b868-527c-e08744749d07-c44e58ef, #w-node-a3b7e6eb-32bd-296f-9a43-f5f90e1a7f24-c44e58ef {
  align-self: stretch;
}

#w-node-fdc5020a-0393-e439-733d-ab603d66c18d-c44e58f0 {
  grid-area: 1 / 1 / 2 / 10;
}

#w-node-ad03274e-bcc5-d891-93ce-d06114d16e0f-c44e58f2 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-ad03274e-bcc5-d891-93ce-d06114d16e14-c44e58f2 {
  grid-area: 1 / 5 / 2 / 10;
}

#w-node-ad03274e-bcc5-d891-93ce-d06114d16e22-c44e58f2 {
  grid-area: 1 / 11 / 2 / 13;
}

#w-node-_5496890e-075f-b288-d120-3b43878425d0-c44e58f3 {
  grid-area: 1 / 1 / 2 / 9;
}

#w-node-_42ac6bff-acf9-dbff-3331-315d31a954fe-c44e58f3 {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_42ac6bff-acf9-dbff-3331-315d31a95500-c44e58f3 {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-f7eb3ef5-3e22-9843-d4d2-62cfd535b099-c44e58f3 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-f7eb3ef5-3e22-9843-d4d2-62cfd535b09b-c44e58f3 {
  grid-area: 1 / 5 / 2 / 12;
  align-self: center;
}

#w-node-f7eb3ef5-3e22-9843-d4d2-62cfd535b0a2-c44e58f3 {
  grid-area: 1 / 12 / 2 / 13;
}

#w-node-_72cb3f74-4751-1369-73bc-bf5bc7020c09-c44e58f4 {
  grid-area: 1 / 1 / 2 / 6;
}

#w-node-bcce7bd2-224e-64a6-6eb9-d5129c246513-c44e58f4 {
  grid-area: 1 / 7 / 2 / 11;
}

#w-node-_81240dd7-b58b-cc47-5ac7-2cd462d1c5fb-c44e58f4 {
  grid-area: 1 / 1 / 2 / 9;
}

#w-node-_3b5f4cc4-f170-2af0-1ffd-6267d655c293-c44e58f5 {
  grid-area: 1 / 1 / 2 / 10;
}

#w-node-_8692030f-7daf-8abf-28af-47a4a65fa3ad-c44e58f5 {
  grid-area: 2 / 1 / 3 / 7;
}

#w-node-d7f3afcb-7644-734b-7c33-46c98a7a1e39-c44e590b {
  grid-area: 2 / 3 / 6 / 8;
}

#w-node-a0ad6158-db26-35a9-2bfd-829821c44d8f-c44e590b {
  grid-area: 3 / 2 / 5 / 9;
  align-self: center;
}

#w-node-_2c281081-0cdb-c15f-00bb-28ced689bf64-c44e590b {
  grid-area: 1 / 3 / 2 / 11;
}

#w-node-_880cde4c-d0f5-a71b-77ff-8e1472a2591f-c44e590b {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_40cacb3a-0db7-6136-6c6a-dbcac5f53024-c44e590b {
  grid-area: 1 / 4 / 2 / 13;
}

#w-node-ecc14959-dd0c-e0c9-3af9-566195de0076-c44e590b {
  grid-area: 1 / 1 / 2 / 9;
}

#w-node-f62be996-d9f9-0c96-e899-d2def8c45ab2-c44e590b {
  grid-area: 5 / 2 / 7 / 6;
  align-self: start;
}

#w-node-f62be996-d9f9-0c96-e899-d2def8c45ab9-c44e590b {
  grid-area: 2 / 7 / 5 / 13;
}

#w-node-f62be996-d9f9-0c96-e899-d2def8c45ac0-c44e590b {
  grid-area: 1 / 1 / 4 / 6;
}

#w-node-f62be996-d9f9-0c96-e899-d2def8c45ac7-c44e590b {
  grid-area: 6 / 7 / 8 / 12;
}

#w-node-c0e9b37f-a19d-a352-d803-6525452ede66-c44e590c {
  grid-area: 1 / 1 / 4 / 13;
}

#w-node-_0b2e7b8b-4f26-8b3e-a14a-d633eccd6362-c44e590c {
  grid-area: 1 / 2 / 4 / 4;
  align-self: stretch;
}

#w-node-_0b2e7b8b-4f26-8b3e-a14a-d633eccd636d-c44e590c {
  grid-area: 1 / 1 / 4 / 3;
  align-self: stretch;
}

#w-node-_0b2e7b8b-4f26-8b3e-a14a-d633eccd6378-c44e590c {
  grid-area: 1 / 10 / 4 / 13;
  align-self: stretch;
  justify-self: end;
}

#w-node-_0b2e7b8b-4f26-8b3e-a14a-d633eccd6383-c44e590c {
  grid-area: 1 / 10 / 4 / 12;
  align-self: stretch;
  justify-self: end;
}

#w-node-_0b2e7b8b-4f26-8b3e-a14a-d633eccd638e-c44e590c {
  grid-area: 1 / 3 / 4 / 11;
  align-self: center;
  justify-self: center;
}

#w-node-a28c920b-0246-ab67-5108-7af844374a1d-c44e590c {
  grid-area: 1 / 2 / 2 / 12;
}

#w-node-a28c920b-0246-ab67-5108-7af844374a21-c44e590c {
  grid-area: 2 / 9 / 3 / 13;
}

#w-node-_55abd1c1-180e-8557-2efa-e2598a1b979b-c44e590c {
  grid-area: 1 / 2 / 2 / 12;
}

#w-node-_55abd1c1-180e-8557-2efa-e2598a1b979f-c44e590c {
  grid-area: 2 / 9 / 3 / 13;
}

#w-node-_3fd25297-8a65-5868-9c7d-878362287569-c44e590c {
  grid-area: 2 / 1 / 6 / 2;
  align-self: start;
}

#w-node-_3fd25297-8a65-5868-9c7d-87836228756b-c44e590c {
  grid-area: span 6 / span 2 / span 6 / span 2;
  align-self: stretch;
}

#w-node-_3fd25297-8a65-5868-9c7d-87836228756d-c44e590c {
  grid-area: 3 / 4 / 6 / 5;
}

#w-node-_3fd25297-8a65-5868-9c7d-87836228756f-c44e590c {
  grid-area: 1 / 5 / 4 / 6;
}

#w-node-_3fd25297-8a65-5868-9c7d-878362287571-c44e590c {
  grid-area: 4 / 5 / 9 / 7;
}

#w-node-_147bb159-1114-ff79-c812-e5f4653833e2-c44e590c {
  grid-area: 2 / 1 / 6 / 2;
}

#w-node-_147bb159-1114-ff79-c812-e5f4653833e4-c44e590c {
  grid-area: span 6 / span 2 / span 6 / span 2;
  align-self: stretch;
}

#w-node-_147bb159-1114-ff79-c812-e5f4653833e6-c44e590c {
  grid-area: 3 / 4 / 6 / 5;
}

#w-node-_147bb159-1114-ff79-c812-e5f4653833e8-c44e590c {
  grid-area: 1 / 5 / 4 / 6;
}

#w-node-_147bb159-1114-ff79-c812-e5f4653833ea-c44e590c {
  grid-area: 4 / 5 / 9 / 7;
}

#w-node-bf82db24-677e-f2c6-8699-66426781871f-c44e590c, #w-node-_2c750f5f-7616-13cc-dd63-7ac8ace562ab-c44e590c, #w-node-e6cf115f-1bbe-5a61-a9cf-fc2da37f095e-c44e590c {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-f6248f37-8bc9-4d49-02c7-f9a4750f4855-c44e590c {
  align-self: start;
}

#w-node-_6fb996e1-3099-ebf4-2b24-2901f47675e0-c44e590d {
  grid-area: 2 / 3 / 3 / 13;
}

#w-node-_7f1bf49d-381f-5aab-0050-ceb3f157e30d-c44e590d {
  grid-area: 1 / 1 / 2 / 8;
}

#w-node-_2c89d5c4-15fc-2328-1e65-5ec8727660bc-c44e590d {
  grid-area: 3 / 2 / 4 / 10;
}

#w-node-c244a292-4426-87db-0f43-fa72775379b7-c44e590d {
  grid-area: 2 / 1 / 5 / 4;
  align-self: end;
}

#w-node-_66294dc9-46b7-0563-4c07-c95aff844833-c44e590d {
  grid-area: 1 / 10 / 4 / 13;
  align-self: end;
}

#w-node-_377e04bc-5ff1-b8f2-7880-e3666d8f47f4-c44e590d {
  grid-area: 4 / 9 / 7 / 12;
}

#w-node-_854810fc-9f45-d7e3-6109-952410daed69-c44e590d {
  grid-area: 1 / 4 / 6 / 10;
}

#w-node-b186f713-c6a7-3452-f9a9-6d704298ebc7-c44e590d {
  grid-area: 1 / 1 / 2 / 8;
  justify-self: start;
}

#w-node-ffc344dd-ba4c-e29a-814c-b0fe4b57b9b5-c44e590d {
  grid-area: 2 / 1 / 3 / 4;
}

#w-node-_1ba95822-be96-3475-e83b-30f433e2cb77-c44e590d {
  grid-area: 2 / 4 / 3 / 13;
}

#w-node-_304a875f-3dcd-94da-5f2c-d5207a9cc222-c44e590d {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-dc80f69f-f1af-8483-5873-b227ee375e6e-c44e590d {
  grid-area: 1 / 6 / 2 / 13;
}

#w-node-_34323410-9ebe-2e28-fc3b-e1ba2254329f-c44e590d {
  grid-area: span 1 / span 7 / span 1 / span 7;
  justify-self: start;
}

#w-node-_17f1c71c-2f42-b911-7590-893392cf7a3c-c44e590d {
  grid-area: 1 / 6 / 2 / 11;
  justify-self: start;
}

#w-node-fc868856-5ad8-2133-6410-1e88964c314a-c44e590d {
  grid-area: span 1 / span 7 / span 1 / span 7;
  justify-self: start;
}

#w-node-_3e9e9dcb-4131-6319-4b67-1eff14bc1ba2-c44e590d, #w-node-cde0cb4f-dc0f-8ac6-35ff-ae878616ed23-c44e590d, #w-node-_76812b4c-2a3e-81f8-c0d6-70cd157307fc-c44e590d, #w-node-_8dd65631-3137-fe44-c965-1f3f325fd413-c44e590d, #w-node-_0fc043e9-f118-8fd7-a384-d38012343b96-c44e590d, #w-node-_9059cd8a-75a5-6daf-d390-b51dfdf11c1a-c44e590d, #w-node-b2923489-afb3-ddee-47e7-0eac5535e8ef-c44e590d {
  grid-area: span 1 / span 6 / span 1 / span 6;
}

#w-node-a52369db-0c45-8280-b235-1fbae1716221-c44e590d {
  grid-area: 1 / 1 / 2 / 7;
}

#w-node-_6dea3528-4127-5a71-1cd5-bde8ee6702f0-c44e590d {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-e41e6d5a-03a8-2727-df5f-17562fb0a785-c44e590d {
  grid-area: 2 / 1 / 3 / 13;
}

#w-node-_7af163c4-6695-4728-5131-bb2560c6081c-c44e590d {
  grid-area: 3 / 1 / 4 / 13;
}

#w-node-_3393b2c8-f7bf-b4fb-8ba3-fd14b08d2d85-c44e5911 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-_978355d2-8681-f18b-6728-da7d2044f824-c44e5911 {
  grid-area: 1 / 5 / 2 / 12;
  align-self: center;
}

#w-node-_801b8556-8690-23aa-ea8c-dc6091b7cdfd-c44e5911 {
  grid-area: 1 / 12 / 2 / 13;
}

#w-node-ed40c893-b286-fe1c-4f3a-c5df0d59674c-c44e5912 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_0f5f2b51-891d-daee-802c-ac85234b823c-c44e5912 {
  align-self: start;
}

#w-node-fd848023-c5eb-3d0a-83c8-5eebe11f0ec4-c44e5912 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-fd848023-c5eb-3d0a-83c8-5eebe11f0ec9-c44e5912 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-_4d8cb2b6-23dc-12f4-fa7f-53507a853d11-c44e5912 {
  grid-area: span 1 / span 4 / span 1 / span 4;
}

#w-node-_4d8cb2b6-23dc-12f4-fa7f-53507a853d16-c44e5912 {
  grid-area: span 1 / span 2 / span 1 / span 2;
}

#w-node-ab10669b-ba8c-f11e-3c07-07446396ea8f-c44e591f {
  grid-area: 1 / 1 / 2 / 4;
}

#w-node-_80d938b0-66c3-6f5c-a13f-8a22a214528b-c44e591f {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-_6e951f22-fdf1-92c6-c1d9-80fe425dc489-c44e5920 {
  grid-area: 1 / 1 / 2 / 5;
}

#w-node-a4f6f458-85e4-f7f3-2290-f1e0b4bce8ed-c44e5920 {
  grid-area: 1 / 7 / 2 / 13;
}

#w-node-df8974a0-1e4f-cb90-8f17-d7fc894369f9-c44e5920 {
  grid-area: 1 / 6 / 2 / 10;
  align-self: end;
}

@media screen and (max-width: 991px) {
  #w-node-_48e2251a-36de-25bd-8ee3-e2170dd784a8-c44e5857 {
    grid-column-end: 3;
  }

  #w-node-_55a9d3e6-6394-6e1f-ce30-e3a9877474c4-c44e5857 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_80bd20d9-36ac-81d3-b64a-5405f95ba5e5-c44e5857 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-cf6f6990-91ff-14cd-2e59-b5a65f956080-c44e5857 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-a6a0bd0d-262e-4be5-52e4-6ffe7036d0bf-c44e5857 {
    grid-area: 2 / 3 / 3 / 5;
  }

  #w-node-_849b7fec-5b6b-d42a-73ad-527049c6b0c6-c44e5857 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_9a380d8d-2943-d873-c81f-6ae9817c04ca-c44e5857 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_9a380d8d-2943-d873-c81f-6ae9817c04cc-c44e5857 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_9a380d8d-2943-d873-c81f-6ae9817c04d2-c44e5857 {
    grid-area: 2 / 3 / 3 / 5;
  }

  #w-node-_9a380d8d-2943-d873-c81f-6ae9817c04d8-c44e5857 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_194afb35-b01c-442a-dbad-a4b08acc113a-c44e5857 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_194afb35-b01c-442a-dbad-a4b08acc113c-c44e5857 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_194afb35-b01c-442a-dbad-a4b08acc1142-c44e5857 {
    grid-area: 2 / 3 / 3 / 5;
  }

  #w-node-_194afb35-b01c-442a-dbad-a4b08acc1148-c44e5857 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_55d99255-5c0e-5c68-3f67-a108cbf0d131-c44e5857 {
    grid-area: span 1 / span 4 / span 1 / span 4;
  }

  #w-node-_55d99255-5c0e-5c68-3f67-a108cbf0d133-c44e5857 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-dcc1455a-6ff1-af51-326e-072817ef2980-c27ac3f8 {
    grid-area: 1 / 1 / 2 / 3;
    justify-self: start;
  }

  #w-node-e7d669f4-a2a3-7c4c-3d5f-d2c82fbec864-c27ac3f8 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-daceed6c-a540-1d6b-ca31-747e568b173f-c27ac3f8 {
    grid-column-end: 3;
    justify-self: start;
  }

  #w-node-_4e25c14e-9549-53aa-9e22-3affb8d95f9b-c44e58c5 {
    grid-column-end: 3;
  }

  #w-node-_4c3ab78a-9a2c-caeb-ab1e-a93f0e31873d-c44e58c5 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_842ef2dc-eb04-b7c8-56bd-a5a488f07c0d-c44e58c5 {
    align-self: stretch;
  }

  #w-node-_06a6b7b8-198d-9f33-e0f4-c84e4e230bd8-c44e58c5 {
    grid-column-end: 3;
  }

  #w-node-db28f1d6-e738-5882-2d5c-190b107db07d-c44e58c5 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-ec0ddd6e-c3e3-f62d-4cc3-192222d43c72-c44e58c6, #w-node-_0d3f27d6-d994-5724-6f6a-01a157e95c0b-c44e58c6 {
    grid-column: 2 / 5;
    grid-row-end: 5;
  }

  #w-node-fecc183f-d652-992c-3680-d0890a8c62b3-c44e58c6 {
    grid-column: 1 / 6;
    grid-row-start: 1;
  }

  #w-node-b15a44aa-80db-beb7-8edf-ce19aff0c084-c44e58c6, #w-node-ab18279a-3d9b-5240-e058-047487983b84-c44e58c6 {
    grid-column-end: 3;
  }

  #w-node-_6d67e060-c159-d81a-9334-a7839a0d7e3a-c44e58c6, #w-node-f3d48ce1-db18-7192-97aa-4b616d396ab2-c44e58c6 {
    grid-column: 1 / 3;
  }

  #w-node-_09857ae6-59d0-1b43-cdfe-850361d06bf7-c44e58c6 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_09857ae6-59d0-1b43-cdfe-850361d06c00-c44e58c6 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_09857ae6-59d0-1b43-cdfe-850361d06c0c-c44e58c6 {
    grid-area: 5 / 1 / 6 / 3;
  }

  #w-node-_09857ae6-59d0-1b43-cdfe-850361d06c07-c44e58c6 {
    grid-row: 4 / 5;
    grid-column-end: 3;
  }

  #w-node-_09857ae6-59d0-1b43-cdfe-850361d06c09-c44e58c6 {
    grid-column-end: 3;
  }

  #w-node-_67464a00-8cbe-a2d3-6554-83c7f06e99ce-c44e58c6 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-ffdc7cf9-c9e5-3f79-5f31-db79a5210eed-c44e58c6 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-ffdc7cf9-c9e5-3f79-5f31-db79a5210ef5-c44e58c6 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-ffdc7cf9-c9e5-3f79-5f31-db79a5210efd-c44e58c6 {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-a1e5511b-3c96-f99b-23b8-e6e6c9a17d55-c44e58c7 {
    grid-column: 1 / 3;
    justify-self: end;
  }

  #w-node-_2a5992ca-8a5a-1336-c5e9-f632480798e4-c44e58c7 {
    grid-area: 4 / 1 / 5 / 3;
    justify-self: start;
  }

  #w-node-df8d9c4a-14a4-83a0-bf4c-ea621239d321-c44e58c7 {
    grid-column: 1 / 3;
    justify-self: start;
  }

  #w-node-_6e48b04a-6dff-8fa4-75ba-cad983d23ce3-c44e58c7 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
    justify-self: end;
  }

  #w-node-_2bf8949d-875a-c83c-0219-0054309de361-c44e58c7 {
    grid-row: 5 / 6;
    grid-column-end: 2;
    align-self: start;
    justify-self: end;
  }

  #w-node-_7ddd26d0-d8aa-5774-8b8e-0d385ed401b8-c44e58c7 {
    grid-column: 1 / 3;
    justify-self: start;
  }

  #w-node-_9883346f-2137-2d3c-c3b1-1eb6713fd078-c44e58c7 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_4740a7f6-0e24-01a1-97d1-6e8bb0c5d39d-c44e58c7 {
    grid-column: 1 / 3;
    grid-row-start: 3;
  }

  #w-node-_4aeb293b-6258-e169-9caa-51399f522852-c44e58c7, #w-node-_4aeb293b-6258-e169-9caa-51399f522856-c44e58c7 {
    grid-column-end: 3;
  }

  #w-node-_4aeb293b-6258-e169-9caa-51399f52285c-c44e58c7 {
    grid-column: 1 / 3;
  }

  #w-node-_645cdcd1-eafc-bde1-4580-447be6835628-c44e58c7 {
    grid-area: 1 / 1 / 4 / 3;
  }

  #w-node-_484f9495-57f8-0e44-86bf-a2944f8b6108-c44e58c7 {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-_5f5649cb-e521-f1cd-516d-f15eb6745618-c44e58c7 {
    grid-column-end: 3;
  }

  #w-node-_5f5649cb-e521-f1cd-516d-f15eb6745622-c44e58c7, #w-node-_37066ce4-3987-2468-bf06-f2934503f352-c44e58c7 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_154aced5-5049-a114-c4e4-f358581a635f-c44e58c7 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_0e09f5bf-d9c9-a745-8309-fd05354665d7-c44e58c7 {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-_76fc9ba7-95cb-e017-2c1a-5a17a7ae4430-c44e58c7 {
    grid-area: 5 / 1 / 6 / 3;
  }

  #w-node-_7bbd4066-64d9-e0a1-906c-7d80e97c7b3d-c44e58c7 {
    grid-column-end: 3;
  }

  #w-node-a4b5e4fa-1b63-a62d-7cae-0802399f571f-c44e58ef {
    grid-column: 1 / 3;
  }

  #w-node-aebc56f5-201f-ab33-d34f-45adc7255290-c44e58ef {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-fdc5020a-0393-e439-733d-ab603d66c18d-c44e58f0 {
    grid-column: 1 / 3;
  }

  #w-node-ad03274e-bcc5-d891-93ce-d06114d16e0f-c44e58f2 {
    grid-column-end: 3;
  }

  #w-node-ad03274e-bcc5-d891-93ce-d06114d16e14-c44e58f2 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-ad03274e-bcc5-d891-93ce-d06114d16e22-c44e58f2 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_42ac6bff-acf9-dbff-3331-315d31a95500-c44e58f3 {
    grid-column: 1 / 3;
  }

  #w-node-f7eb3ef5-3e22-9843-d4d2-62cfd535b099-c44e58f3 {
    grid-column-end: 3;
  }

  #w-node-f7eb3ef5-3e22-9843-d4d2-62cfd535b09b-c44e58f3 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-f7eb3ef5-3e22-9843-d4d2-62cfd535b09c-c44e58f3 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-f7eb3ef5-3e22-9843-d4d2-62cfd535b0a1-c44e58f3 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-f7eb3ef5-3e22-9843-d4d2-62cfd535b0a2-c44e58f3 {
    grid-area: 2 / 2 / 3 / 3;
    align-self: start;
    justify-self: end;
  }

  #w-node-_72cb3f74-4751-1369-73bc-bf5bc7020c09-c44e58f4 {
    grid-column-end: 3;
  }

  #w-node-bcce7bd2-224e-64a6-6eb9-d5129c246513-c44e58f4 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_81240dd7-b58b-cc47-5ac7-2cd462d1c5fb-c44e58f4, #w-node-_3b5f4cc4-f170-2af0-1ffd-6267d655c293-c44e58f5, #w-node-_8692030f-7daf-8abf-28af-47a4a65fa3ad-c44e58f5 {
    grid-column-end: 3;
  }

  #w-node-d7f3afcb-7644-734b-7c33-46c98a7a1e39-c44e590b, #w-node-a0ad6158-db26-35a9-2bfd-829821c44d8f-c44e590b {
    grid-column: 1 / 5;
  }

  #w-node-_2c281081-0cdb-c15f-00bb-28ced689bf64-c44e590b, #w-node-_40cacb3a-0db7-6136-6c6a-dbcac5f53024-c44e590b {
    grid-column: 1 / 3;
  }

  #w-node-ecc14959-dd0c-e0c9-3af9-566195de0076-c44e590b {
    grid-column-end: 3;
  }

  #w-node-f62be996-d9f9-0c96-e899-d2def8c45ab2-c44e590b {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-f62be996-d9f9-0c96-e899-d2def8c45ab9-c44e590b {
    grid-column: 1 / 3;
    grid-row-end: 3;
  }

  #w-node-f62be996-d9f9-0c96-e899-d2def8c45ac0-c44e590b {
    grid-row-end: 2;
    grid-column-end: 3;
  }

  #w-node-f62be996-d9f9-0c96-e899-d2def8c45ac7-c44e590b {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-c0e9b37f-a19d-a352-d803-6525452ede66-c44e590c {
    grid-column-end: 5;
  }

  #w-node-_0b2e7b8b-4f26-8b3e-a14a-d633eccd6362-c44e590c {
    grid-column: 1 / 3;
  }

  #w-node-_0b2e7b8b-4f26-8b3e-a14a-d633eccd636d-c44e590c {
    grid-column: 2 / 4;
  }

  #w-node-_0b2e7b8b-4f26-8b3e-a14a-d633eccd6378-c44e590c {
    grid-column: 4 / 6;
  }

  #w-node-_0b2e7b8b-4f26-8b3e-a14a-d633eccd6383-c44e590c {
    grid-column: 5 / 7;
  }

  #w-node-_0b2e7b8b-4f26-8b3e-a14a-d633eccd638e-c44e590c {
    grid-area: 2 / 1 / 3 / 7;
  }

  #w-node-a28c920b-0246-ab67-5108-7af844374a1d-c44e590c, #w-node-a28c920b-0246-ab67-5108-7af844374a21-c44e590c, #w-node-_55abd1c1-180e-8557-2efa-e2598a1b979b-c44e590c, #w-node-_55abd1c1-180e-8557-2efa-e2598a1b979f-c44e590c {
    grid-column: 1 / 3;
  }

  #w-node-_9df0c4ab-f0bc-8d36-7dea-4f3018e004c4-c44e590c {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-f6248f37-8bc9-4d49-02c7-f9a4750f4855-c44e590c {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_6fb996e1-3099-ebf4-2b24-2901f47675e0-c44e590d, #w-node-_7f1bf49d-381f-5aab-0050-ceb3f157e30d-c44e590d, #w-node-_2c89d5c4-15fc-2328-1e65-5ec8727660bc-c44e590d {
    grid-column: 1 / 3;
  }

  #w-node-c244a292-4426-87db-0f43-fa72775379b7-c44e590d {
    grid-row: 1 / 2;
    grid-column-end: 2;
  }

  #w-node-_66294dc9-46b7-0563-4c07-c95aff844833-c44e590d {
    grid-area: 1 / 2 / 2 / 3;
  }

  #w-node-_377e04bc-5ff1-b8f2-7880-e3666d8f47f4-c44e590d {
    grid-area: 2 / 1 / 3 / 2;
  }

  #w-node-_854810fc-9f45-d7e3-6109-952410daed69-c44e590d {
    grid-area: 2 / 2 / 3 / 3;
    align-self: start;
  }

  #w-node-b186f713-c6a7-3452-f9a9-6d704298ebc7-c44e590d, #w-node-ffc344dd-ba4c-e29a-814c-b0fe4b57b9b5-c44e590d {
    grid-column-end: 3;
  }

  #w-node-_1ba95822-be96-3475-e83b-30f433e2cb77-c44e590d {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_304a875f-3dcd-94da-5f2c-d5207a9cc222-c44e590d {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-dc80f69f-f1af-8483-5873-b227ee375e6e-c44e590d {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_17f1c71c-2f42-b911-7590-893392cf7a3c-c44e590d {
    grid-column: 1 / 3;
  }

  #w-node-a52369db-0c45-8280-b235-1fbae1716221-c44e590d {
    grid-column-end: 3;
    align-self: stretch;
  }

  #w-node-_6dea3528-4127-5a71-1cd5-bde8ee6702f0-c44e590d {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-e41e6d5a-03a8-2727-df5f-17562fb0a785-c44e590d {
    grid-row: 3 / 4;
    grid-column-end: 3;
  }

  #w-node-_7af163c4-6695-4728-5131-bb2560c6081c-c44e590d {
    grid-row: 4 / 5;
    grid-column-end: 3;
  }

  #w-node-_3393b2c8-f7bf-b4fb-8ba3-fd14b08d2d85-c44e5911 {
    grid-column-end: 3;
  }

  #w-node-_978355d2-8681-f18b-6728-da7d2044f824-c44e5911, #w-node-_6070703b-78ab-b10c-116f-3a06dc3a290f-c44e5911 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_801b8556-8690-23aa-ea8c-dc6091b7cdfd-c44e5911 {
    grid-area: 2 / 2 / 3 / 3;
    align-self: start;
    justify-self: end;
  }

  #w-node-ab10669b-ba8c-f11e-3c07-07446396ea8f-c44e591f {
    grid-area: 1 / 1 / 2 / 3;
    align-self: start;
  }

  #w-node-_80d938b0-66c3-6f5c-a13f-8a22a214528b-c44e591f {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_6e951f22-fdf1-92c6-c1d9-80fe425dc489-c44e5920 {
    grid-column-end: 3;
  }

  #w-node-a4f6f458-85e4-f7f3-2290-f1e0b4bce8ed-c44e5920 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-df8974a0-1e4f-cb90-8f17-d7fc894369f9-c44e5920 {
    grid-area: 2 / 1 / 3 / 2;
  }
}

@media screen and (max-width: 767px) {
  #w-node-e7d669f4-a2a3-7c4c-3d5f-d2c82fbec864-c27ac3f8 {
    grid-column: 2 / 3;
  }

  #w-node-_842ef2dc-eb04-b7c8-56bd-a5a488f07c0d-c44e58c5 {
    align-self: stretch;
  }

  #w-node-dc0ee93b-fd97-8957-9655-e9824c73f5f5-4c73f5f4 {
    grid-column: 1 / 3;
  }

  #w-node-_9a1e27f2-3fa7-0fd1-9df4-ad32693e0314-4c73f5f4 {
    grid-column-end: 2;
  }

  #w-node-_58ebeecd-f440-698a-ce5c-ee637e230338-4c73f5f4 {
    grid-area: 2 / 2 / 3 / 3;
  }

  #w-node-_6314c9d6-5ce3-0bda-92b8-b4ca5935af29-4c73f5f4 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_9aaccab0-d654-90af-56da-8c73c8d67757-4c73f5f4 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-_645cdcd1-eafc-bde1-4580-447be6835628-c44e58c7 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_484f9495-57f8-0e44-86bf-a2944f8b6108-c44e58c7 {
    grid-row: 2 / 3;
  }

  #w-node-f7eb3ef5-3e22-9843-d4d2-62cfd535b099-c44e58f3 {
    grid-column-end: 3;
  }

  #w-node-f7eb3ef5-3e22-9843-d4d2-62cfd535b09b-c44e58f3 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-b186f713-c6a7-3452-f9a9-6d704298ebc7-c44e590d {
    grid-column-end: 3;
  }

  #w-node-ffc344dd-ba4c-e29a-814c-b0fe4b57b9b5-c44e590d {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_1ba95822-be96-3475-e83b-30f433e2cb77-c44e590d {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_3393b2c8-f7bf-b4fb-8ba3-fd14b08d2d85-c44e5911 {
    grid-column-end: 3;
  }

  #w-node-_978355d2-8681-f18b-6728-da7d2044f824-c44e5911 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-ed40c893-b286-fe1c-4f3a-c5df0d59674c-c44e5912, #w-node-fd848023-c5eb-3d0a-83c8-5eebe11f0ec4-c44e5912, #w-node-_4d8cb2b6-23dc-12f4-fa7f-53507a853d11-c44e5912 {
    grid-area: 1 / 1 / 2 / 3;
  }
}

@media screen and (max-width: 479px) {
  #w-node-_80bd20d9-36ac-81d3-b64a-5405f95ba5e5-c44e5857 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-cf6f6990-91ff-14cd-2e59-b5a65f956080-c44e5857 {
    grid-column-end: 3;
  }

  #w-node-a6a0bd0d-262e-4be5-52e4-6ffe7036d0bf-c44e5857 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_849b7fec-5b6b-d42a-73ad-527049c6b0c6-c44e5857 {
    grid-row: 4 / 5;
    grid-column-end: 3;
  }

  #w-node-_9a380d8d-2943-d873-c81f-6ae9817c04ca-c44e5857 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_9a380d8d-2943-d873-c81f-6ae9817c04cc-c44e5857 {
    grid-column-end: 3;
  }

  #w-node-_9a380d8d-2943-d873-c81f-6ae9817c04d2-c44e5857 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_9a380d8d-2943-d873-c81f-6ae9817c04d8-c44e5857 {
    grid-row: 4 / 5;
    grid-column-end: 3;
  }

  #w-node-_194afb35-b01c-442a-dbad-a4b08acc113a-c44e5857 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_194afb35-b01c-442a-dbad-a4b08acc113c-c44e5857 {
    grid-column-end: 3;
  }

  #w-node-_194afb35-b01c-442a-dbad-a4b08acc1142-c44e5857 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_194afb35-b01c-442a-dbad-a4b08acc1148-c44e5857 {
    grid-row: 4 / 5;
    grid-column-end: 3;
  }

  #w-node-_55d99255-5c0e-5c68-3f67-a108cbf0d131-c44e5857 {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_55d99255-5c0e-5c68-3f67-a108cbf0d133-c44e5857 {
    grid-column-end: 3;
  }

  #w-node-bfe7c372-4ac6-b527-465d-4b96098600ef-c44e58c5 {
    align-self: start;
  }

  #w-node-_842ef2dc-eb04-b7c8-56bd-a5a488f07c0d-c44e58c5 {
    align-self: stretch;
  }

  #w-node-_8301bf4a-5129-79b4-85fa-01871ae662f7-c44e58c5, #w-node-_81874f51-d11e-f43d-7d8a-ec1eb5a20754-c44e58c5 {
    align-self: start;
  }

  #w-node-ec0ddd6e-c3e3-f62d-4cc3-192222d43c72-c44e58c6, #w-node-_0d3f27d6-d994-5724-6f6a-01a157e95c0b-c44e58c6 {
    grid-column: 2 / 5;
    grid-row-end: 5;
  }

  #w-node-fecc183f-d652-992c-3680-d0890a8c62b3-c44e58c6 {
    grid-row: 1 / 5;
    grid-column-end: 6;
    align-self: center;
  }

  #w-node-_954d2754-2155-df07-9d5a-c5a99bb4be27-c44e58c6 {
    grid-area: 1 / 2 / 6 / 3;
  }

  #w-node-_954d2754-2155-df07-9d5a-c5a99bb4be29-c44e58c6 {
    grid-area: 4 / 3 / 8 / 4;
  }

  #w-node-_954d2754-2155-df07-9d5a-c5a99bb4be2b-c44e58c6 {
    grid-column: 4 / 5;
  }

  #w-node-_38a05dd3-cd66-bb5d-d359-c62bcb7f4321-c44e58c6 {
    grid-area: 1 / 2 / 6 / 3;
  }

  #w-node-_38a05dd3-cd66-bb5d-d359-c62bcb7f4323-c44e58c6 {
    grid-area: 4 / 3 / 8 / 4;
  }

  #w-node-_38a05dd3-cd66-bb5d-d359-c62bcb7f4325-c44e58c6 {
    grid-column: 4 / 5;
  }

  #w-node-_09857ae6-59d0-1b43-cdfe-850361d06bf7-c44e58c6 {
    grid-row: 2 / 3;
  }

  #w-node-_09857ae6-59d0-1b43-cdfe-850361d06c00-c44e58c6 {
    grid-row: 3 / 4;
  }

  #w-node-_09857ae6-59d0-1b43-cdfe-850361d06c0c-c44e58c6 {
    grid-row: 5 / 6;
  }

  #w-node-_09857ae6-59d0-1b43-cdfe-850361d06c07-c44e58c6 {
    grid-row: 4 / 5;
  }

  #w-node-ffdc7cf9-c9e5-3f79-5f31-db79a5210eed-c44e58c6 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-ffdc7cf9-c9e5-3f79-5f31-db79a5210ef5-c44e58c6 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-ffdc7cf9-c9e5-3f79-5f31-db79a5210efd-c44e58c6 {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-dc0ee93b-fd97-8957-9655-e9824c73f5f5-4c73f5f4 {
    grid-column: 1 / 3;
  }

  #w-node-_9a1e27f2-3fa7-0fd1-9df4-ad32693e0314-4c73f5f4 {
    grid-column-end: 2;
  }

  #w-node-_58ebeecd-f440-698a-ce5c-ee637e230338-4c73f5f4 {
    grid-column: 2 / 3;
  }

  #w-node-_6314c9d6-5ce3-0bda-92b8-b4ca5935af29-4c73f5f4 {
    grid-area: 3 / 1 / 4 / 2;
  }

  #w-node-_9aaccab0-d654-90af-56da-8c73c8d67757-4c73f5f4 {
    grid-area: 3 / 2 / 4 / 3;
  }

  #w-node-a1e5511b-3c96-f99b-23b8-e6e6c9a17d55-c44e58c7 {
    grid-column: 1 / 3;
    justify-self: end;
  }

  #w-node-_2a5992ca-8a5a-1336-c5e9-f632480798e4-c44e58c7 {
    grid-area: 4 / 1 / 5 / 3;
    justify-self: start;
  }

  #w-node-df8d9c4a-14a4-83a0-bf4c-ea621239d321-c44e58c7 {
    grid-column: 1 / 3;
    justify-self: start;
  }

  #w-node-_6e48b04a-6dff-8fa4-75ba-cad983d23ce3-c44e58c7 {
    grid-area: 4 / 1 / 5 / 3;
    align-self: end;
    justify-self: end;
  }

  #w-node-_2bf8949d-875a-c83c-0219-0054309de361-c44e58c7 {
    grid-row: 5 / 6;
    grid-column-end: 2;
    align-self: start;
    justify-self: end;
  }

  #w-node-_7ddd26d0-d8aa-5774-8b8e-0d385ed401b8-c44e58c7 {
    grid-column: 1 / 3;
    justify-self: start;
  }

  #w-node-_9883346f-2137-2d3c-c3b1-1eb6713fd078-c44e58c7 {
    grid-column-end: 3;
    justify-self: center;
  }

  #w-node-_4740a7f6-0e24-01a1-97d1-6e8bb0c5d39d-c44e58c7 {
    grid-column: 1 / 3;
    grid-row-start: 3;
  }

  #w-node-_645cdcd1-eafc-bde1-4580-447be6835628-c44e58c7 {
    grid-row-start: 1;
  }

  #w-node-_5f5649cb-e521-f1cd-516d-f15eb6745622-c44e58c7 {
    grid-area: 2 / 1 / 3 / -1;
  }

  #w-node-_37066ce4-3987-2468-bf06-f2934503f352-c44e58c7 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_154aced5-5049-a114-c4e4-f358581a635f-c44e58c7 {
    grid-area: 3 / 1 / 4 / 3;
  }

  #w-node-_0e09f5bf-d9c9-a745-8309-fd05354665d7-c44e58c7 {
    grid-area: 4 / 1 / 5 / 3;
  }

  #w-node-_76fc9ba7-95cb-e017-2c1a-5a17a7ae4430-c44e58c7 {
    grid-area: 5 / 1 / 6 / 3;
  }

  #w-node-c1550d5c-0264-3fa1-e69e-491245f99c0f-c44e58ef {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-ceabe2a6-49d8-7f34-c503-e7e07d600cbb-c44e58ef {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-_07f4429a-0d8b-b868-527c-e08744749d05-c44e58ef {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_07f4429a-0d8b-b868-527c-e08744749d07-c44e58ef {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-a3b7e6eb-32bd-296f-9a43-f5f90e1a7f22-c44e58ef {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-a3b7e6eb-32bd-296f-9a43-f5f90e1a7f24-c44e58ef {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-f7eb3ef5-3e22-9843-d4d2-62cfd535b099-c44e58f3 {
    grid-column-end: 3;
  }

  #w-node-f7eb3ef5-3e22-9843-d4d2-62cfd535b09b-c44e58f3 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-f7eb3ef5-3e22-9843-d4d2-62cfd535b09c-c44e58f3 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-_72cb3f74-4751-1369-73bc-bf5bc7020c09-c44e58f4 {
    align-self: stretch;
  }

  #w-node-_3b5f4cc4-f170-2af0-1ffd-6267d655c293-c44e58f5 {
    grid-column-end: 3;
  }

  #w-node-d7f3afcb-7644-734b-7c33-46c98a7a1e39-c44e590b, #w-node-a0ad6158-db26-35a9-2bfd-829821c44d8f-c44e590b {
    grid-row: 1 / 7;
    align-self: center;
  }

  #w-node-_880cde4c-d0f5-a71b-77ff-8e1472a2591f-c44e590b {
    grid-area: 1 / 1 / 2 / 3;
  }

  #w-node-_40cacb3a-0db7-6136-6c6a-dbcac5f53024-c44e590b {
    grid-row: 2 / 3;
  }

  #w-node-c0e9b37f-a19d-a352-d803-6525452ede66-c44e590c {
    grid-column-end: 5;
  }

  #w-node-_0b2e7b8b-4f26-8b3e-a14a-d633eccd6362-c44e590c {
    grid-column: 1 / 2;
    justify-self: start;
  }

  #w-node-_0b2e7b8b-4f26-8b3e-a14a-d633eccd636d-c44e590c {
    grid-column: 2 / 3;
  }

  #w-node-_0b2e7b8b-4f26-8b3e-a14a-d633eccd6378-c44e590c {
    grid-column: 3 / 4;
  }

  #w-node-_0b2e7b8b-4f26-8b3e-a14a-d633eccd6383-c44e590c {
    grid-column: 4 / 5;
  }

  #w-node-_0b2e7b8b-4f26-8b3e-a14a-d633eccd638e-c44e590c {
    grid-area: 2 / 1 / 3 / 5;
  }

  #w-node-_3fd25297-8a65-5868-9c7d-87836228756b-c44e590c {
    grid-area: 1 / 2 / 6 / 5;
  }

  #w-node-_3fd25297-8a65-5868-9c7d-87836228756d-c44e590c {
    grid-area: 4 / 3 / 8 / 5;
  }

  #w-node-_3fd25297-8a65-5868-9c7d-87836228756f-c44e590c {
    grid-column: 4 / 5;
  }

  #w-node-_147bb159-1114-ff79-c812-e5f4653833e4-c44e590c {
    grid-area: 1 / 2 / 6 / 5;
  }

  #w-node-_147bb159-1114-ff79-c812-e5f4653833e6-c44e590c {
    grid-area: 4 / 3 / 8 / 5;
  }

  #w-node-_147bb159-1114-ff79-c812-e5f4653833e8-c44e590c {
    grid-column: 4 / 5;
  }

  #w-node-b186f713-c6a7-3452-f9a9-6d704298ebc7-c44e590d, #w-node-_34323410-9ebe-2e28-fc3b-e1ba2254329f-c44e590d, #w-node-_17f1c71c-2f42-b911-7590-893392cf7a3c-c44e590d, #w-node-fc868856-5ad8-2133-6410-1e88964c314a-c44e590d {
    grid-column: span 2 / span 2;
  }

  #w-node-_3393b2c8-f7bf-b4fb-8ba3-fd14b08d2d85-c44e5911 {
    grid-column-end: 3;
  }

  #w-node-_978355d2-8681-f18b-6728-da7d2044f824-c44e5911 {
    grid-area: 2 / 1 / 3 / 3;
  }

  #w-node-e46f6012-b468-db88-005a-126146e9024d-c44e5911 {
    grid-area: span 1 / span 2 / span 1 / span 2;
  }

  #w-node-df8974a0-1e4f-cb90-8f17-d7fc894369f9-c44e5920 {
    grid-row-end: 4;
    grid-column-end: 3;
    align-self: end;
  }
}


@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-ExtraLight.otf') format('opentype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-SemiBold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Pretendard';
  src: url('../fonts/Pretendard-Thin.otf') format('opentype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Rondal';
  src: url('../fonts/Rondal-Semibold.otf') format('opentype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}