@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Black.otf') format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BlackItalic.otf') format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-BoldItalic.otf') format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Bold.otf') format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Light.otf') format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Italic.otf') format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-Medium.otf') format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-MediumItalic.otf') format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: Satoshi;
  src: url('../fonts/Satoshi-LightItalic.otf') format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

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

:root {
  --black: #1e1d1e;
  --blue: #1a3374;
  --font-family: Satoshi, sans-serif;
  --white: white;
  --white-2: white;
  --black-2: black;
}

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

.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;
}

@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 {
  background-color: var(--black);
  font-family: var(--font-family);
  color: var(--white);
  font-size: 1rem;
  line-height: 1.5;
}

h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 38px;
  font-weight: 700;
  line-height: 44px;
}

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

h3 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 30px;
}

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

h5 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

p {
  margin-bottom: 0;
}

label {
  margin-bottom: 5px;
  font-weight: 400;
  display: block;
}

.heading-2 {
  font-size: 10vw;
  line-height: 1;
}

.heading-2.all-caps.text-weight-medium {
  flex: none;
}

.heading-2.style-guide {
  font-size: 10rem;
}

.container {
  width: 100%;
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}

.padding-global {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.padding-global.small {
  padding-left: 1rem;
  padding-right: 1rem;
}

.text-box {
  max-width: 27rem;
}

.text-box.large {
  max-width: 60rem;
}

.hero-style-guide-content {
  grid-row-gap: 1.5rem;
  color: #f3f3f3;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

.text-size-regular {
  font-size: 1.5rem;
}

.hero-template {
  margin-top: 10vh;
}

.hero-style-guide-wrapper {
  background-color: #000;
  border-radius: 1rem;
  width: 100%;
  margin-top: 1rem;
  padding: 13rem 2rem 2rem;
  overflow: hidden;
}

.hero-style-guide-wrapper.margin-bottom {
  padding-top: 10rem;
  padding-bottom: 5rem;
}

.text-size-tiny {
  font-size: .875rem;
}

.section-style-guide {
  margin-top: 5.75rem;
}

.style-guide-header {
  grid-row-gap: 2.5rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  margin-bottom: 4.5rem;
  display: flex;
}

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

.heading-4 {
  font-size: 4.75rem;
  line-height: 1.25;
}

.class-name-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 6rem;
  display: flex;
}

.class-name-wrapper.margin-bottom-0 {
  margin-bottom: 0;
}

.color-palette-text {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}

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

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

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

.style-gudie-content.grid {
  grid-column-gap: 3rem;
  grid-row-gap: 5rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  font-size: 2rem;
  display: grid;
}

.color-palette {
  border-radius: 1rem;
  width: 100%;
  height: 10rem;
}

.color-palette.black {
  background-color: var(--black);
}

.color-palette.white {
  background-color: var(--white);
  border: 1px solid #bbb;
}

.color-palette-card {
  grid-row-gap: 2rem;
  border: 1px solid #dfddda24;
  border-radius: 1rem;
  flex-direction: column;
  padding: .5rem .5rem 2rem;
  display: flex;
}

.text-size-huge {
  font-size: 3.25rem;
  line-height: 1.2;
}

.heading-1 {
  font-size: 20vw;
  line-height: 1;
}

.heading-1.text-weight-regular {
  font-size: 16vw;
}

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

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

.typography-wrapper {
  grid-row-gap: 1.5rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 30rem;
  display: flex;
}

.style-guide-menu {
  grid-row-gap: 1.5rem;
  color: #121212;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  display: flex;
}

.heading-5 {
  font-size: 3.75rem;
  line-height: 1.25;
}

.text-size-xlarge {
  font-size: 2.5rem;
}

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

.text-weight-medium.text-size-medium.blog {
  font-size: 1.8rem;
}

.style-guide-content {
  margin-bottom: 10rem;
}

.style-guide-menu-links {
  grid-row-gap: 1.5rem;
  opacity: .5;
  color: var(--white);
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: opacity .3s;
  display: flex;
}

.style-guide-menu-links:hover, .style-guide-menu-links.w--current {
  opacity: 1;
}

.sticky-menu {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
  position: sticky;
  top: 4rem;
}

.heading-6 {
  font-size: 3.125rem;
  font-weight: 300;
  line-height: 1.15;
}

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

.style-guide-menu-wrapper {
  grid-row-gap: 2rem;
  flex-direction: column;
  align-items: flex-start;
}

.heading-3 {
  font-size: 2.5rem;
  line-height: 1.2;
}

.heading-3.large {
  font-size: 6rem;
}

.heading-3.text-weight-regular.large {
  font-size: 6.6rem;
}

.heading-3.xlarge {
  font-size: 10rem;
}

.heading-3.loader {
  font-size: 7vw;
  line-height: 1;
}

.style-tag {
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 1px solid #ffffff17;
  border-radius: 10rem;
  padding: .625rem 1.5rem;
  font-weight: 500;
}

.typography-content {
  grid-row-gap: .5rem;
  flex-direction: column;
  display: flex;
}

.style-guide-component {
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  margin-bottom: 10rem;
}

.divider-line {
  background-color: #dfddda;
  height: 1px;
}

.about-hero-section {
  color: #fff;
  font-size: 24px;
}

.hero-component {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 15dvh;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.spline-wrapper {
  width: 100%;
  max-width: 100%;
  min-height: 400dvh;
  margin-top: 10vh;
  position: relative;
}

.spline-wrapper.light {
  z-index: 1;
  min-height: 400dvh;
  margin-top: -200vh;
}

.spline-scene {
  z-index: 1;
  height: 140vh;
  position: sticky;
  top: 0;
}

.about-component {
  grid-row-gap: 10rem;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  padding-top: 20vh;
  padding-bottom: 20vh;
  display: flex;
}

.about-component.center {
  text-align: center;
  align-items: center;
  padding-bottom: 10rem;
}

.scoll-blocker {
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0%;
}

.rich-text h1, .rich-text h2, .rich-text h3, .rich-text h4, .rich-text h6 {
  margin-bottom: 24px;
}

.rich-text p {
  margin-bottom: 2rem;
}

.button-icon.inverted {
  filter: invert();
}

.button-hover-color {
  z-index: 2;
  background-color: #5a5a5a;
  justify-content: center;
  align-items: center;
  width: 107%;
  display: flex;
  position: absolute;
  inset: 0%;
  transform: translate(-3%, 100%);
}

.button-hover-color.white {
  background-color: #fff;
  height: 102%;
}

.button-hover-color.black {
  background-color: #242424;
  height: 102%;
}

.button-arrow {
  width: 1.3rem;
  height: 1.3rem;
  transform: rotate(180deg);
}

.button-arrow.down {
  filter: invert();
  transform: rotate(0);
}

.button {
  grid-column-gap: 1rem;
  color: #f4f4f4;
  background-color: #242424;
  border-radius: .5rem;
  flex-direction: row;
  align-self: center;
  align-items: center;
  padding: 1rem 4.5rem 1rem 5rem;
  text-decoration: none;
  display: flex;
  position: relative;
  overflow: hidden;
}

.button.white {
  background-color: var(--white);
  color: var(--black);
}

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

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

.r-symbol {
  width: 10vw;
}

.subtitle {
  opacity: .8;
  text-align: center;
  justify-content: center;
  align-items: center;
  max-width: 80vw;
}

.subtitle.max-width-small {
  max-width: 56ch;
  margin-top: 2rem;
}

.subtitle-text {
  font-size: 2vw;
  font-weight: 300;
  line-height: 1.4;
}

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

.nav-menu {
  white-space: nowrap;
}

.navbar {
  background-color: #0000;
  margin-top: 1rem;
  position: absolute;
  inset: 0% 0% auto;
}

.nav-brand {
  color: #fff;
  letter-spacing: 1px;
  justify-content: center;
  align-items: center;
  transition: color .4s, transform .4s;
  display: flex;
}

.nav-brand:hover {
  color: #a8a8a8;
  transform: translate(0, -.2rem);
}

.nav-link {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: .875rem;
  font-weight: 300;
  transition: color .4s, transform .4s;
}

.nav-link:hover {
  color: #a8a8a8;
  transform: translate(0, -.3rem);
}

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

.nav-link.w--current:hover {
  transform: none;
}

.nav-link.mobile {
  display: none;
}

.navbar-menu-lottie {
  width: 2rem;
  height: 2rem;
}

.hero-buttons {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 4rem;
  display: flex;
}

.hero-buttons.margin-top-small {
  margin-top: 2rem;
}

.white-section {
  background-color: var(--white);
  color: var(--blue);
  width: 100%;
}

.white-section.overflow-hidden {
  overflow: hidden;
}

.white-section.overflow-hidden.home-about {
  z-index: 3;
  margin-top: -180dvh;
  position: relative;
}

.white-section.z-index-3 {
  z-index: 3;
  position: relative;
}

.marquee-wrapper {
  grid-column-gap: 3vw;
  grid-row-gap: 3vw;
  align-items: center;
  padding-top: 10vh;
  display: flex;
}

.elipse {
  background-color: var(--blue);
  border-radius: 50%;
  min-width: 4vw;
  min-height: 4vw;
}

.elipse.white {
  background-color: var(--white);
}

.footer-component {
  margin-left: auto;
  margin-right: auto;
  padding-top: 7.5rem;
  padding-bottom: 4rem;
  position: relative;
}

.credits-wrapper {
  color: #f3f3f3;
  text-decoration: none;
}

.footer-link {
  color: #f4f4f4;
  text-decoration: none;
  transition: transform .3s, opacity .2s;
}

/* .footer-link:hover {
  opacity: .5;
  transform: translate(0, -3px);
} */

.footer-button {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  margin-top: 3.25rem;
  display: flex;
}

/* .footer-heading {
  grid-row-gap: 1.25rem;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
} */

.footer-heading {
    grid-row-gap: 1.25rem;
    flex-direction: row;
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
}

.footer-links-wrapper {
  grid-column-gap: 1rem;
  display: flex;
}

.footer-line {
  background-color: #373e46;
  width: 100%;
  height: 1px;
}

.footer-bottom {
  margin-top: 7rem;
}

.footer {
  background-color: #000;
  border-top-left-radius: 1.5rem;
  border-top-right-radius: 1.5rem;
  overflow: hidden;
}

.footer-bottom-wrapper {
  justify-content: space-between;
  margin-top: 4rem;
  display: flex;
}

.copy-icon {
  width: 1rem;
}

.opacity-50 {
  opacity: .5;
}

.credits {
  grid-column-gap: 1rem;
  justify-content: center;
  align-items: center;
  padding-bottom: 2rem;
  display: flex;
}

.powered {
  z-index: 99;
}

.footer-email {
  grid-column-gap: 1.5rem;
  opacity: .5;
  color: #f4f4f4;
  align-items: center;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.footer-email:hover {
  grid-column-gap: 1.6rem;
  opacity: .6;
  transform: translate(0, -2px);
}

.footer-content-wrapper {
  z-index: 3;
  position: relative;
}

.about-title {
  margin-right: 18%;
}

.about-paragraph {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  flex-direction: column;
  margin-left: 49%;
  display: flex;
}

.logos-grid {
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  /* margin-top: 5rem; */
}

.logos-grid._2-rows {
  grid-column-gap: 1.5rem;
  grid-row-gap: 6rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  padding-left: 10vw;
  padding-right: 10vw;
}

.logos-image {
  justify-content: center;
  align-items: center;
  display: flex;
}

.stack-component {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 10rem;
  display: flex;
}

.stack-title {
  text-align: center;
  max-width: 110ch;
  margin-bottom: 6rem;
}

.stack-wrapper {
  border-radius: 1.5rem;
  width: 100%;
  height: 70vh;
  position: sticky;
  top: 10dvh;
  overflow: hidden;
}

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

.stack-block {
  grid-row-gap: 15dvh;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: relative;
}

.spline-animation-light {
  color: #fff;
  min-height: 100dvh;
  font-size: 24px;
}

.works-section, .works-section.overflow-hidden {
  overflow: hidden;
}

.works-component {
  margin-top: 10rem;
  margin-bottom: 10rem;
}

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

.mask-frame {
  z-index: 4;
  opacity: 0;
  background-color: #121212;
  border-radius: 0;
  height: 100%;
  position: absolute;
  inset: auto 0% 0%;
}

.opacity-80 {
  opacity: .8;
}

.project-info {
  z-index: 2;
  grid-row-gap: 1rem;
  color: #121212;
  background-color: #fff;
  border-radius: .5rem;
  flex-direction: column;
  align-items: flex-start;
  max-width: 22rem;
  padding: 1.5rem;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 5px #0003;
}

.project-year {
  z-index: 9;
  box-shadow: none;
  color: var(--black);
  background-color: #fff;
  border-radius: 5.6rem;
  padding: .5rem 1.5rem;
  position: absolute;
  inset: 1rem 1rem auto auto;
}

.home-projects-image-wrapper {
  z-index: 1;
  border-radius: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  height: 100%;
  display: flex;
  position: absolute;
  inset: 0%;
  overflow: hidden;
}

.home-project {
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  min-height: 70vh;
  max-height: 90vh;
  padding: 1rem;
  text-decoration: none;
  display: flex;
  position: relative;
}

.projects-image {
  z-index: 3;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/img/background-image.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 101%;
  position: relative;
}

.project-bullet {
  background-color: #121212;
  border-radius: 50%;
  width: .6rem;
  height: .6rem;
  position: absolute;
  inset: .5rem .5rem auto auto;
}

.projects-home-list-item {
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  border-radius: 1rem;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  height: 70vh;
  display: flex;
  overflow: hidden;
}

.contact-footer {
  margin-top: 2rem;
}

.text-size-medium-2 {
  font-size: 1.125rem;
  font-weight: 300;
}

.button-2 {
  grid-row-gap: .25rem;
  color: #000;
  background-color: #fff;
  border-radius: 10rem;
  flex-direction: column;
  padding: 1rem 2rem;
  font-size: 1rem;
  text-decoration: none;
  transition: padding .6s;
  display: flex;
  overflow: hidden;
}

.button-2:hover {
  padding-left: 3rem;
  padding-right: 3rem;
}

.text-field {
  background-color: #000;
  border: 1px solid #fff3;
  border-radius: .3rem;
  margin-top: .5rem;
  margin-bottom: 1.5rem;
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
  padding-left: 1rem;
  font-size: 1rem;
  transition: border-color .3s;
}

.text-field:hover, .text-field:focus {
  border-color: #fff;
}

.contact-social-links {
  filter: invert();
  transition: transform .2s, opacity .2s;
}

.contact-social-links:hover {
  opacity: .6;
  transform: translate(0, -3px);
}

.error-message {
  background-color: #ec3c3c;
  border-radius: .7rem;
  margin-top: 2rem;
  padding: 1.5rem 1.1rem;
}

.contact-social-wrapper {
  grid-column-gap: 2rem;
  align-items: center;
  margin-top: 2rem;
  display: flex;
}

.text-color-grey {
  color: #cdcdcd;
}

.contact-social-icon {
  width: 1.3rem;
  height: 1.3rem;
}

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

.success-message {
  text-align: center;
  background-color: #f4f4f4;
  border-radius: .6rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.contact-form {
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: stretch;
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
}

.contact-form.left-align {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 0;
  margin-bottom: 0;
}

.message-field {
  background-color: #000;
  border: 1px solid #fff3;
  border-radius: .3rem;
  min-height: 8rem;
  margin-top: .5rem;
  margin-bottom: 1.5rem;
  padding-top: 1rem;
  padding-left: 1rem;
  font-size: 1rem;
}

.message-field:hover, .message-field:focus {
  border-color: #fff;
}

.contact-grid-component {
  grid-column-gap: 5rem;
  grid-row-gap: 1rem;
  grid-template-rows: auto;
  max-width: 110rem;
  margin-bottom: 10rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 20dvh;
}

.contact-content-wrapepr {
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 0;
  display: flex;
}

.blog-component {
  grid-row-gap: 7.5rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 12rem;
  padding-bottom: 12rem;
  display: flex;
}

.blog-top {
  text-align: center;
  max-width: 80ch;
}

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

.blog-collection-list {
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-auto-columns: 1fr;
  width: 100%;
  display: grid;
}

.blog-card {
  grid-row-gap: 1rem;
  color: #fff;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  transition: transform .4s, opacity .4s;
  display: flex;
}

.blog-card:hover {
  opacity: .8;
  transform: translate(0, -1rem);
}

.blog-card-content {
  grid-row-gap: .5rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.blog-card-image {
  border-radius: 1rem;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.studio-component {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20dvh;
  margin-bottom: 15dvh;
  display: flex;
}

.section-light-animation {
  z-index: 1;
  justify-content: center;
  align-items: flex-start;
  height: 200vh;
  display: flex;
  position: relative;
}

.white-elipse {
  background-color: var(--white);
  filter: blur(40px);
  border-radius: 50%;
  width: 50vw;
  height: 50vw;
}

.track {
  background-color: var(--white);
  width: 100%;
  height: 400vw;
}

.camera {
  width: 100%;
  height: 100vh;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.frame {
  display: flex;
}

.item {
  flex: none;
  width: 100vw;
  height: 100vh;
}

.about-us-component {
  grid-row-gap: 6rem;
  text-align: center;
  flex-direction: column;
  align-items: stretch;
  padding-top: 10rem;
  padding-bottom: 31vh;
  display: flex;
}

.section-dark-animation {
  z-index: 0;
  background-color: var(--white);
  height: 200vh;
}

.black-elipse {
  background-color: var(--black);
  filter: blur(40px);
  border-radius: 50%;
  width: 50vw;
  height: 50vw;
}

.section.z-index-3 {
  z-index: 3;
  margin-top: -100vh;
  position: relative;
}

.experience-paragraph {
  opacity: .5;
  width: 70%;
}

.experience-card {
  grid-row-gap: .25rem;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.experience-card.center-align {
  align-items: center;
}

.experience-component {
  grid-row-gap: 9.25rem;
  flex-direction: column;
  justify-content: center;
  max-width: 110rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 25vh;
  padding-bottom: 25vh;
  display: flex;
}

.experience-component.center-align {
  grid-row-gap: 5rem;
  text-align: center;
  align-items: center;
  padding-bottom: 10rem;
}

.experience-bottom {
  grid-column-gap: 8rem;
  align-items: flex-start;
  display: flex;
}

.experience-top {
  max-width: 110ch;
}

.testimonial-name {
  grid-row-gap: .25rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
  display: flex;
}

.testimonial-image-wrapper {
  justify-content: center;
  align-items: center;
  margin-bottom: .5rem;
  display: flex;
}

.opacity-81 {
  opacity: .8;
}

.testimonial-slider {
  background-color: #0000;
  width: 100%;
  max-width: 83rem;
  height: auto;
  margin-top: 2rem;
}

.star-icon {
  width: 1.5rem;
  height: 1.5rem;
  transition: transform .4s cubic-bezier(.165, .84, .44, 1);
}

.star-icon:hover {
  transform: translate(0, -3px);
}

.testimonial-stars {
  grid-column-gap: .25rem;
  justify-content: center;
  align-items: center;
  display: flex;
}

.testimonial-message {
  text-align: center;
  margin-bottom: 2rem;
}

.testimonial-component {
  grid-row-gap: 3rem;
  flex-direction: column;
  align-items: center;
  padding-top: 8rem;
  display: flex;
}

.testimonial-image {
  object-fit: cover;
  border-radius: 1rem;
  width: 5rem;
  height: 5rem;
}

.hidden {
  display: none;
}

.slider-text {
  font-size: 2.8rem;
  line-height: 1.2;
}

.slider-text.line-height-150 {
  line-height: 1.5;
}

.blog-hero-section {
  overflow: hidden;
}

.blog-post-heading-wrap {
  max-width: 100rem;
  margin-left: auto;
  margin-right: auto;
}

.blog-post-title {
  max-width: 130ch;
}

.blog-post-heading {
  grid-row-gap: 1rem;
  text-align: center;
  flex-direction: column;
  align-items: center;
  padding-top: 25vh;
  padding-bottom: 7.2rem;
  display: flex;
}

.blog-post-image {
  border-radius: 3rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.blog-post {
  max-width: 79rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 5rem;
  padding-bottom: 10rem;
}

.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: 500px;
  display: flex;
}

.utility-page-form {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  align-items: stretch;
  width: 500px;
  display: flex;
}

.submit-button {
  background-color: var(--white);
  color: var(--black);
  border-radius: 20px;
  padding-top: 16px;
  padding-bottom: 16px;
}

.password {
  opacity: .37;
  filter: invert();
  width: 10rem;
  margin-left: auto;
  margin-right: auto;
}

.error-404 {
  margin-bottom: 2.2rem;
}

.symbol {
  filter: invert();
  width: 10rem;
}

.projects-main-image {
  border-radius: 3rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 90vh;
  margin-top: 7.2rem;
  display: flex;
  position: relative;
  overflow: hidden;
}

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

.max-width-130ch {
  max-width: 90ch;
}

.project-content-wrapper {
  grid-row-gap: 1rem;
  flex-direction: column;
  width: 80%;
  margin-left: auto;
  margin-right: auto;
  padding-top: 3rem;
  padding-bottom: 17.9rem;
  display: flex;
}

.project-collection-list {
  grid-column-gap: 1rem;
  grid-row-gap: 1rem;
  flex-direction: column;
  grid-template-rows: auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  display: flex;
}

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

.project-collection-list._2-columns {
  flex-direction: row;
  justify-content: space-between;
}

.size-full {
  flex: 1;
}

.container-2 {
  width: 100%;
  max-width: 90vw;
  margin-left: auto;
  margin-right: auto;
}

.project-image {
  object-fit: cover;
  border-radius: .5rem;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.text-size-regular-2 {
  font-size: 1rem;
  line-height: 1.5;
}

.about-the-project {
  grid-row-gap: .5rem;
  flex-direction: column;
  margin-top: 7rem;
  margin-bottom: 7rem;
  display: flex;
}

.projects-cms-heading {
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 110rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 18vh;
  display: flex;
}

.project-image-wrapper {
  border-radius: .6rem;
  height: 70vh;
  overflow: hidden;
}

.sticky-top {
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: flex;
  position: sticky;
  top: 0;
  overflow: hidden;
}

.divider-line-2 {
  background-color: #ffffff4d;
  height: 1px;
}

.style-guide-component-2 {
  grid-template-rows: auto;
  grid-template-columns: .25fr 1fr;
  margin-bottom: 10rem;
}

.style-guide-component-2.margim-top {
  margin-top: 5.3rem;
}

.style-guide-text {
  font-size: 2.75rem;
  line-height: 1.55;
}

.license-image-link {
  width: 100%;
  height: 10rem;
}

.license-images-grid {
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
}

.license-component {
  grid-template-rows: auto;
  grid-template-columns: 1fr;
  margin-top: 6.2rem;
  margin-bottom: 7.7rem;
}

.text-size-huge-2 {
  font-size: 2.25rem;
  font-weight: 300;
  line-height: 1.2;
}

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

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

.license-content {
  grid-column-gap: 5rem;
  grid-row-gap: 2rem;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
}

.text-size-large-3 {
  font-size: 2.6rem;
  line-height: 1.5;
}

.preloader {
  z-index: 99999;
  background-color: #000;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  display: none;
  position: fixed;
  inset: 0% auto auto 0%;
}

.preloader-wrapper {
  text-align: center;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  height: 7vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.preloader-animation {
  position: relative;
}

.loading-bar-wrap {
  background-color: var(--black);
  border-radius: 20px;
  width: 350px;
  height: 6px;
  margin-top: 2rem;
  overflow: hidden;
}

.progress-bar {
  background-color: var(--white);
  width: 100%;
  height: 6px;
}

@media screen and (min-width: 1440px) {
  .heading-1.text-weight-regular {
    font-size: 17rem;
  }

  .spline-scene {
    height: 100vh;
  }

  .r-symbol {
    width: 11rem;
  }

  .subtitle-text {
    font-size: 1.7rem;
  }

  .contact-social-links:hover {
    opacity: .6;
    transform: translate(0, -3px);
  }
}

@media screen and (max-width: 991px) {
  .heading-2 {
    font-size: 7rem;
  }

  .section-style-guide {
    margin-top: 4rem;
  }

  .heading-4 {
    font-size: 3rem;
  }

  .style-gudie-content.grid {
    grid-column-gap: 1rem;
  }

  .text-size-huge {
    font-size: 2.3rem;
  }

  .heading-1 {
    font-size: 6rem;
    line-height: 1.15;
  }

  .heading-1.text-weight-regular {
    font-size: 10rem;
  }

  .heading-5, .heading-6, .heading-3 {
    font-size: 3rem;
  }

  .heading-3.text-weight-regular.large, .heading-3.xlarge {
    font-size: 4rem;
  }

  .style-guide-component {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
  }

  .hero-component {
    z-index: 3;
    position: relative;
  }

  .spline-wrapper {
    min-height: 300dvh;
    /* margin-top: -10vh; */
  }

  .spline-scene {
    height: 100vh;
  }

  .about-component {
    grid-row-gap: 4rem;
    padding-top: 9rem;
    padding-bottom: 9rem;
  }

  .r-symbol {
    font-size: 10rem;
  }

  .subtitle-text {
    font-size: 1.5rem;
  }

  .navbar-component {
    flex-direction: row;
    flex: 1;
    grid-template-columns: 1fr;
    justify-content: space-between;
    justify-items: start;
    display: flex;
    position: relative;
  }

  .nav-menu {
    background-color: #1b1b1b;
    border-radius: 1.7rem;
    margin-top: 1rem;
    position: absolute;
  }

  .nav-menu.mobile-top {
    display: none;
  }

  .navbar {
    z-index: 999999;
    background-color: #0000;
    position: relative;
  }

  .menu-button.w--open {
    background-color: #0000;
  }

  .nav-brand {
    flex: 1;
    justify-content: flex-start;
  }

  .nav-link {
    text-align: left;
    text-transform: none;
    border-bottom: 1px solid #303030;
    padding: 1.3rem 1.9rem;
    font-size: 1.5rem;
    font-weight: 400;
  }

  .nav-link.mobile {
    display: block;
  }

  .nav-link.last {
    border-bottom: 0 #42424200;
  }

  .navbar-menu-lottie {
    filter: invert();
  }

  .white-section.overflow-hidden.home-about {
    margin-top: -100dvh;
  }

  .about-title {
    margin-right: 0%;
  }

  .about-paragraph {
    margin-left: 0%;
  }

  .logos-grid {
    grid-column-gap: 3rem;
    grid-row-gap: 3rem;
    grid-template-columns: 1fr 1fr;
  }

  .logos-grid._2-rows {
    grid-template-columns: 1fr 1fr;
    padding-left: 0;
    padding-right: 0;
  }

  .works-component {
    margin-top: 5rem;
    margin-bottom: 5rem;
  }

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

  .home-project {
    min-height: auto;
    max-height: none;
  }

  .projects-home-list-item {
    height: 60vh;
    min-height: auto;
    max-height: none;
  }

  .contact-footer {
    margin-top: 3rem;
  }

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

  .contact-grid-component {
    grid-row-gap: 5rem;
    grid-template-columns: 1fr;
    padding-top: 8dvh;
  }

  .contact-content-wrapepr {
    margin-bottom: 0;
  }

  .blog-component {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

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

  .studio-component {
    margin-top: 15dvh;
    margin-bottom: 5rem;
  }

  .white-elipse, .black-elipse {
    filter: blur(6px);
  }

  .section.z-index-3.mobile {
    margin-top: -23vh;
  }

  .experience-paragraph {
    width: 100%;
  }

  .experience-component.center-align {
    padding-top: 8.3rem;
    padding-bottom: 8.3rem;
  }

  .experience-top {
    max-width: 100%;
  }

  .testimonial-component {
    grid-row-gap: 2rem;
    padding-bottom: 5rem;
  }

  .slider-text {
    font-size: 2.5rem;
  }

  .blog-post-heading {
    padding-top: 9vh;
  }

  .projects-main-image {
    margin-top: 3.8rem;
  }

  .project-content-wrapper {
    width: 100%;
  }

  .projects-cms-heading {
    padding-top: 8vh;
  }

  .style-guide-component-2 {
    grid-column-gap: 2rem;
    grid-row-gap: 2rem;
    grid-template-columns: 1fr;
  }

  .style-guide-text {
    font-size: 2rem;
  }

  .license-images-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }

  .license-component {
    grid-column-gap: 2rem;
    grid-row-gap: 1rem;
    grid-template-columns: 1fr;
    margin-top: 5.3rem;
    margin-bottom: 6rem;
  }

  .text-size-huge-2 {
    font-size: 2.3rem;
  }

  .text-size-large-3 {
    font-size: 2.3rem;
    line-height: 1.4;
  }

  .preloader {
    display: flex;
  }
}

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

  .padding-global {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero-style-guide-wrapper {
    padding-top: 8rem;
  }

  .style-guide-header {
    font-size: .875rem;
  }

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

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

  .style-gudie-content.grid {
    grid-column-gap: 1rem;
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .text-size-huge {
    font-size: 2rem;
    line-height: 1.3;
  }

  .heading-1 {
    font-size: 5rem;
  }

  .style-guide-menu {
    grid-column-gap: 2rem;
    grid-row-gap: 1.5rem;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
  }

  .heading-5 {
    font-size: 2.5rem;
    line-height: 1.15;
  }

  .heading-6 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .heading-3 {
    font-size: 3rem;
  }

  .style-guide-component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .hero-component {
    align-items: stretch;
    margin-top: 10dvh;
  }

  .about-component {
    padding-top: 4rem;
    padding-bottom: 8rem;
  }

  .button {
    justify-content: center;
    align-self: stretch;
  }

  .subtitle {
    max-width: none;
  }

  .hero-buttons, .footer-button {
    flex-direction: column;
    align-items: stretch;
  }

  .credits {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-left: 2rem;
  }

  .logos-grid {
    margin-top: 3rem;
  }

  .works-section.overflow-hidden {
    overflow: hidden;
  }

  .mask-frame {
    inset: 0%;
  }

  .project-info {
    grid-row-gap: 1.25rem;
    text-align: left;
    padding-bottom: 1.5rem;
  }

  .project-year {
    display: none;
  }

  .projects-home-list-item {
    min-height: 20rem;
  }

  .contact-footer {
    margin-top: 2rem;
  }

  .text-size-medium-2 {
    font-size: 1.2rem;
  }

  .form {
    align-items: stretch;
  }

  .contact-grid-component {
    grid-row-gap: 6rem;
    grid-template-columns: 1fr;
    margin-bottom: 5.8rem;
  }

  .contact-content-wrapepr {
    margin-bottom: .9rem;
  }

  .blog-component {
    grid-row-gap: 3rem;
    padding-top: 4.3rem;
    padding-bottom: 5.3rem;
  }

  .studio-component {
    align-items: stretch;
    margin-top: 10dvh;
  }

  .experience-component.center-align {
    grid-row-gap: 3rem;
  }

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

  .testimonial-component {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .slider-text {
    font-size: 2rem;
  }

  .blog-post-heading {
    padding-bottom: 2.4rem;
  }

  .utility-page-form {
    width: 100%;
    padding-left: 25px;
    padding-right: 25px;
  }

  .about-the-project {
    margin-top: 3.2rem;
    margin-bottom: 3.2rem;
  }

  .projects-cms-heading {
    grid-row-gap: 1rem;
  }

  .project-image-wrapper {
    height: 28rem;
  }

  .style-guide-component-2 {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
  }

  .style-guide-text {
    font-size: 2rem;
    line-height: 1.15;
  }

  .license-images-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .license-component {
    grid-row-gap: 4rem;
    grid-template-columns: 1fr;
    margin-top: 4.2rem;
    margin-bottom: 5.7rem;
  }

  .text-size-huge-2 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .license-content {
    grid-row-gap: 4rem;
    flex-direction: column;
  }

  .text-size-large-3 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 479px) {
  .heading-2 {
    font-size: 5rem;
    line-height: 1.1;
  }

  .padding-global {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-style-guide-wrapper {
    padding-top: 6rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .heading-4 {
    font-size: 2.3rem;
    line-height: 1.5;
  }

  .text-size-huge {
    font-size: 2rem;
  }

  .heading-1, .heading-1.text-weight-regular {
    font-size: 4rem;
  }

  .style-guide-menu {
    grid-column-gap: 1rem;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .heading-5 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .text-size-xlarge {
    font-size: 2rem;
  }

  .style-guide-content {
    margin-bottom: 6rem;
  }

  .sticky-menu {
    width: 100%;
  }

  .heading-6 {
    font-size: 1.5rem;
    line-height: 1.5;
  }

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

  .style-guide-menu-wrapper {
    width: 100%;
  }

  .heading-3, .heading-3.text-weight-regular.large {
    font-size: 2rem;
  }

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

  .style-guide-component, .divider-line {
    width: 100%;
  }

  .button {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .subtitle-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .nav-menu {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .hero-buttons {
    margin-top: 2rem;
  }

  .footer-component {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .footer-button {
    flex-direction: column;
  }

  .footer-links-wrapper {
    justify-content: end;
  }

  .footer-bottom {
    margin-top: 5rem;
  }

  .footer-bottom-wrapper {
    grid-row-gap: 2rem;
    flex-direction: column;
    margin-top: 2rem;
  }

  .credits {
    grid-row-gap: .5rem;
    padding-left: 0;
  }

  .project-info {
    grid-row-gap: .5rem;
  }

  .home-project {
    border-radius: 1rem;
    overflow: hidden;
  }

  .projects-home-list-item {
    border-radius: 1rem;
    height: 80vh;
    overflow: hidden;
  }

  .testimonial-component {
    grid-row-gap: 1rem;
    max-width: 100%;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .slider-text {
    font-size: 2rem;
  }

  .slider-text.line-height-150 {
    font-size: 1.5rem;
  }

  .blog-post-heading {
    padding-top: 5vh;
  }

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

  .project-image-wrapper {
    height: 19rem;
  }

  .divider-line-2, .style-guide-component-2 {
    width: 100%;
  }

  .style-guide-text {
    font-size: 1.8rem;
    line-height: 1.3;
  }

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

  .license-component {
    grid-row-gap: 1.75rem;
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 2.5rem;
  }

  .text-size-huge-2 {
    font-size: 2rem;
  }

  .contact-body{
    height: 120vh;
  }
  .contact-bg{
    width: 100%;
    height: 150vh;
    object-fit: cover;
  }
.footer-heading {
    grid-row-gap: 1.25rem;
    flex-direction: column-reverse;
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
}

}
/* 모바일 */

#w-node-_61174186-6305-818c-2614-c298c5e5a954-fb6bcdd5, #w-node-_2a3767c4-28d6-139d-2a16-e083071bb3cc-fb6bcdd5, #w-node-_7a2b9bd6-ce91-37e1-ba7e-9f1bab86fc95-fb6bcdd5, #w-node-_009d1f59-9d67-2312-9654-2b6ac95f92a7-fb6bcdd5, #w-node-_84ba5f90-2cb0-8521-8acb-cf7dbbe8ae4a-fb6bcdd5 {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-_6373a919-fdbe-ceba-2105-cf457e623c3d-7e623c2f {
  justify-self: end;
}

#w-node-_0cd2e8ee-c7f4-75d0-11de-cd8bf4dc8794-fb6bcdd8, #w-node-_0cd2e8ee-c7f4-75d0-11de-cd8bf4dc8796-fb6bcdd8, #w-node-_0cd2e8ee-c7f4-75d0-11de-cd8bf4dc8798-fb6bcdd8, #w-node-_0cd2e8ee-c7f4-75d0-11de-cd8bf4dc879a-fb6bcdd8, #w-node-_0cd2e8ee-c7f4-75d0-11de-cd8bf4dc879c-fb6bcdd8, #w-node-fe4d30b0-64e9-fcd4-efdc-00b23a9204f8-fb6bcdd8, #w-node-_20f7a3b2-d225-1726-5bd6-d189be8bd8c5-fb6bcdd8, #w-node-dd184649-0a16-02ab-c835-df78ba6906d3-fb6bcdd8, #w-node-_203e35f7-1a5e-b000-2562-9b40957e2877-fb6bcdda {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

#w-node-a6cc1f50-a1a3-45f2-7087-cb50058638aa-fb6bcddb {
  align-self: center;
}

#w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d93678-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d93695-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d93697-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d93698-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d93699-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d9369a-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d9369b-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d9369c-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d9369d-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d9369e-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d9369f-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936a0-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936a1-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936a2-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936a3-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936a4-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936a5-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936a6-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936a7-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936a8-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936a9-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936aa-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936ab-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936ac-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936ad-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936ae-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936af-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936b0-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936b1-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936b2-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936b3-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936b4-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936b5-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936b6-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936b7-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936b8-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936b9-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936ba-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936bb-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936bc-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936bd-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936be-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936bf-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936c0-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936c1-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936c2-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936c3-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936c4-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936c5-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936c6-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936c7-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936c8-fb6bcdde, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee4af-fb6bcddf, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee4c3-fb6bcddf, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee4c8-fb6bcddf, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee4df-fb6bcddf, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee509-fb6bcddf, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee53f-fb6bcddf, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee55d-fb6bcddf, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee55f-fb6bcddf, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee564-fb6bcddf, #w-node-_8c01f6eb-49bb-f352-b9dd-b9afe37ee56d-fb6bcddf {
  grid-area: span 1 / span 1 / span 1 / span 1;
}

@media screen and (max-width: 479px) {
  #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936bd-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936bf-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936c1-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936c3-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936c5-fb6bcdde, #w-node-_88c5a06b-5764-835b-7c5d-c9a1e3d936c7-fb6bcdde {
    grid-area: span 1 / span 1 / span 1 / span 1;
  }
}


@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Satoshi';
  src: url('../fonts/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* 추가 */
.footer-link-box{
    display: flex;
    grid-column-gap: 1rem;
    margin-bottom: 30px;
    flex-wrap: nowrap;
    font-size: 1rem;
    flex-direction: row;
    justify-content: flex-end;
}

