:root {
  --warm-black: #171717;
  --tan: #dfd3c3;
  --white: white;
  --neon: #e1ff00;
  --fckuornge: #ff4c00;
  --white-smoke: #f8f8f8;
  --blue-crayola: #0075f2;
  --black: black;
  --grey: #272727;
}

.w-checkbox {
  margin-bottom: 5px;
  padding-left: 20px;
  display: block;
}

.w-checkbox:before {
  content: " ";
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox:after {
  content: " ";
  clear: both;
  grid-area: 1 / 1 / 2 / 2;
  display: table;
}

.w-checkbox-input {
  float: left;
  margin: 4px 0 0 -20px;
  line-height: normal;
}

.w-checkbox-input--inputType-custom {
  width: 12px;
  height: 12px;
  border: 1px solid #ccc;
  border-radius: 2px;
}

.w-checkbox-input--inputType-custom.w--redirected-checked {
  background-color: #3898ec;
  background-image: url('https://d3e54v103j8qbb.cloudfront.net/static/custom-checkbox-checkmark.589d534424.svg');
  background-position: 50%;
  background-repeat: no-repeat;
  background-size: cover;
  border-color: #3898ec;
}

.w-checkbox-input--inputType-custom.w--redirected-focus {
  box-shadow: 0 0 3px 1px #3898ec;
}

body {
  background-color: var(--warm-black);
  color: var(--tan);
  cursor: auto;
  font-family: Zen Kaku Gothic New, sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.3;
}

h1 {
  color: var(--tan);
  margin-top: 20px;
  margin-bottom: 15px;
  font-family: Grandslang b side, Palatino Linotype, sans-serif;
  font-size: 4em;
  font-weight: 400;
  line-height: 1.3;
}

h2 {
  color: var(--tan);
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 2em;
  font-weight: 400;
  line-height: 1.3;
  text-decoration: none;
}

h3 {
  color: var(--white);
  text-align: left;
  letter-spacing: .05em;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.1;
}

h4 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 1.7em;
  font-weight: 400;
  line-height: 1.3;
}

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

h6 {
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 28px;
}

p {
  margin-bottom: 10px;
}

a {
  color: var(--neon);
  padding: 0;
  text-decoration: none;
  transition: all .2s;
  display: inline-block;
}

a:hover {
  text-decoration: underline;
}

a:active {
  color: rgba(255, 255, 255, .5);
}

a:focus {
  color: var(--white);
  text-decoration: underline;
}

ul {
  margin-top: 20px;
  margin-bottom: 20px;
  padding-left: 40px;
  list-style-type: disc;
}

li {
  margin-bottom: 10px;
}

img {
  z-index: 1;
  padding: 0;
  display: block;
}

label {
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 20px;
}

blockquote {
  text-align: center;
  text-transform: uppercase;
  border-left-style: solid;
  border-left-width: 0;
  font-family: Grandslang b side, Palatino Linotype, sans-serif;
  font-size: 4.5vw;
  line-height: 1;
}

figure {
  margin-top: 25px;
  padding-bottom: 20px;
}

figcaption {
  opacity: .6;
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
  line-height: 26px;
}

.button {
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  border-radius: 0;
  padding: 12px 25px;
  font-size: 12px;
  line-height: 20px;
  text-decoration: none;
  transition: background-color .4s, opacity .4s, color .4s;
}

.button:hover {
  color: #fff;
  background-color: #32343a;
}

.button:active {
  background-color: #43464d;
}

.menu-button {
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
}

.text-field {
  border: 1px solid #e4e4e4;
  border-radius: 0;
  margin-bottom: 18px;
  padding: 21px 20px;
  font-size: 14px;
  line-height: 26px;
  transition: border-color .4s;
}

.text-field:hover {
  border-color: #e3e6eb;
}

.text-field:active, .text-field:focus {
  border-color: #43464d;
}

.text-field::-ms-input-placeholder {
  color: rgba(50, 52, 58, .4);
}

.text-field::placeholder {
  color: rgba(50, 52, 58, .4);
}

.status-message {
  color: #fff;
  text-align: center;
  background-color: #202020;
  padding: 9px 30px;
  font-size: 14px;
  line-height: 26px;
}

.status-message.cc-error-message {
  background-color: #db4b68;
}

.utility-page-wrap {
  width: 100vw;
  height: 40vh;
  max-height: 100%;
  max-width: 100%;
  color: #fff;
  text-align: center;
  object-fit: contain;
  justify-content: center;
  align-items: center;
  padding: 30px;
  display: flex;
}

.protected-wrap {
  text-align: center;
  justify-content: center;
  padding-top: 90px;
  padding-bottom: 100px;
  display: flex;
}

.protected-form {
  flex-direction: column;
  display: flex;
}

.protected-heading {
  margin-bottom: 30px;
}

.paragraph {
  color: var(--white);
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 1.5em;
  font-family: Helveticaneueltcom lt, sans-serif;
  font-size: 1.3em;
  font-weight: 400;
  line-height: 1.6;
}

.paragraph.work {
  margin-top: 2rem;
  margin-right: 16rem;
}

.cta-text {
  color: var(--fckuornge);
  margin-right: 1em;
  font-family: Helveticaneueltcom ex, sans-serif;
  font-weight: 400;
  display: inline;
}

.cta-text.big {
  margin-right: 24px;
  font-family: Helveticaneueltcom ltex, sans-serif;
  font-size: 2em;
}

.cta-text.light {
  font-weight: 500;
}

.arrow-button {
  text-align: right;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 5em;
  padding: .5em .5em .5em 0;
  font-size: 1em;
  display: flex;
}

.arrow-button:hover {
  border: 0px solid var(--neon);
  border-radius: 0%;
  text-decoration: none;
}

.arrow-button.big {
  align-items: baseline;
  padding: .5em;
  display: flex;
}

.arrow-button.case {
  margin-top: 2em;
  margin-bottom: 0;
}

.rotate-circle {
  z-index: 500;
  width: 40%;
  float: none;
  clear: none;
  object-fit: fill;
  flex: 0 auto;
  order: 1;
  align-self: auto;
  margin-left: 0;
  padding: 0;
  position: absolute;
  top: 20%;
  bottom: 0%;
  left: -20%;
  right: auto;
}

.rotate-circle.desktop {
  width: 8%;
  position: absolute;
  top: auto;
  bottom: -4%;
  left: auto;
  right: 14%;
}

.footer {
  z-index: 1;
  width: 100%;
  height: 100vh;
  text-align: left;
  background-color: #1b1b1b;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 110px 3vw 3vw;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  bottom: 0;
}

.footer-flex {
  z-index: 50;
  color: var(--white);
  text-align: left;
  flex-flow: row;
  align-content: stretch;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6vw;
  margin-left: 3vw;
  margin-right: 3vw;
  padding: 1em;
  display: flex;
  position: static;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.footer-link {
  color: #fff;
  border-bottom: 0 solid #000;
  flex-direction: row;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: flex-start;
  align-items: center;
  margin-left: .5em;
  margin-right: .5em;
  padding: .3em .5em;
  font-family: Helveticaneueltcom ex, sans-serif;
  line-height: 2rem;
  text-decoration: none;
  transition: color .2s ease-in-out;
  display: flex;
  overflow: hidden;
}

.footer-link:hover {
  opacity: 1;
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
  transform: rotate(0);
}

.footer-link:active {
  color: var(--warm-black);
}

.footer-link.w--current {
  font-family: Helveticaneueltcom ex, sans-serif;
}

.footer-link.w--current:hover {
  text-decoration: none;
}

.footer-link.nav {
  border-bottom-width: 0;
  border-bottom-color: var(--white);
  color: var(--white-smoke);
  flex-direction: row;
  align-items: center;
  margin-top: .5em;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 1.3em;
  transition-duration: .4s;
  position: static;
}

.footer-link.email {
  border-bottom-width: .25px;
  border-bottom-color: var(--white);
  align-self: auto;
  margin-left: 1em;
  margin-right: 1em;
  padding-bottom: 0;
  padding-left: 0;
  padding-right: 0;
  display: none;
}

.footer-link.email.nav {
  flex-wrap: nowrap;
  margin-left: 0;
  margin-right: 0;
}

.footer-text {
  color: var(--fckuornge);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: Helveticaneueltcom ex, sans-serif;
  font-size: .9em;
  display: block;
}

.list {
  height: 100%;
  cursor: none;
  align-items: center;
  padding-left: 3vw;
  padding-right: 3vw;
  display: flex;
}

.container-slider {
  max-width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.featured-section {
  display: flex;
}

.featured-section.section-wrapper {
  width: 100%;
  height: 70vw;
  flex-direction: row;
  padding-top: 4em;
  padding-bottom: 4em;
  display: block;
  position: relative;
  overflow: hidden;
}

.featured-section.section-wrapper.hidden {
  display: none;
}

.right-arrow, .left-arrow {
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: -90px;
  display: flex;
  transform: rotate(90deg);
}

.slider-navigation {
  width: 90px;
  opacity: .4;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: 2em;
  padding: .5em .2em .5em .5em;
  transition: all .25s;
  display: flex;
}

.slider-navigation:hover {
  opacity: 1;
}

.scroll-text {
  color: var(--fckuornge);
  white-space: nowrap;
  margin-right: 10px;
  padding-right: 0;
  font-family: Grandslang b side, Palatino Linotype, sans-serif;
  font-size: 4vw;
}

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

.scroll-text.white.test, .scroll-text.test {
  font-family: Goudy, sans-serif;
}

.text-span-4 {
  letter-spacing: -.02em;
  font-family: Zen Kaku Gothic New, sans-serif;
}

.text-span-4.test {
  color: var(--white);
  font-family: Goudy, sans-serif;
}

.text-scroll-move {
  opacity: 1;
  justify-content: flex-start;
  align-items: center;
  margin-top: 35px;
  margin-bottom: 35px;
  display: flex;
}

.text-scroll-move.offset {
  margin-left: -200px;
  padding-bottom: 0;
  padding-left: 0;
}

.text-scroll-wrap {
  z-index: 2;
  width: 100%;
  position: relative;
  top: 0;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.text-scroll-wrap.top {
  z-index: 2;
  overflow: hidden;
}

.text-scroll-wrap.contact {
  margin-top: 0;
  padding-top: 5em;
}

.text-scroll-wrap.sticky {
  z-index: 3;
  margin-top: 50px;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.home-contact {
  width: 100%;
  padding-top: 4em;
  padding-bottom: 4em;
  position: relative;
}

.contact-wrap {
  z-index: 850;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.contact-home-cta {
  width: 100%;
  height: 100%;
  background-color: var(--fckuornge);
  color: var(--warm-black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  padding-top: 30px;
  padding-bottom: 30px;
  text-decoration: none;
  transition: transform .3s cubic-bezier(.23, 1, .32, 1);
  display: flex;
}

.contact-home-cta:hover {
  color: var(--warm-black);
  text-decoration: none;
  transform: rotate(-23deg);
}

.contact-circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  transition: transform .3s cubic-bezier(.165, .84, .44, 1);
  overflow: hidden;
}

.contact-circle:hover {
  transform: scale(1.1);
}

.text-block-3 {
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: Helveticaneueltcom ex, sans-serif;
  font-weight: 500;
}

.home-xp {
  height: 60vw;
  justify-content: space-between;
  align-items: center;
  padding-top: 4em;
  padding-bottom: 4em;
  display: flex;
}

.home-grid-fields {
  color: var(--white);
  letter-spacing: .05rem;
  text-transform: uppercase;
  border-top: 0 solid #000;
  border-bottom: 0 solid #000;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 30px;
  font-family: Helveticaneueltcom ltex, sans-serif;
  font-weight: 400;
  display: block;
}

.div-block-25 {
  justify-content: flex-start;
  margin-top: 49px;
  display: flex;
}

.expertise-columns-text {
  margin-top: 10px;
  padding: 0 9px 7px 0;
}

.div-block-26 {
  width: 100%;
  height: .5px;
  background-color: var(--tan);
  margin: 0 auto;
  padding: 0;
  overflow: visible;
}

.div-line-overflow {
  height: 100%;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.text-animate-wrap {
  position: relative;
  overflow: hidden;
}

.column-overflow {
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.nav-link {
  width: 100%;
  height: 100%;
  align-items: center;
  margin-left: 0;
  margin-right: 0;
  padding: 0 .3em;
  font-family: Grandslang b side, Palatino Linotype, sans-serif;
  font-size: 6em;
  transition: all .4s;
  display: flex;
}

.nav-link:focus {
  color: var(--white-smoke);
}

.nav-link.w--current {
  color: var(--neon);
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  font-size: 6em;
}

.nav-link.hidden {
  color: var(--white);
  font-family: Zen Kaku Gothic New, sans-serif;
  font-size: 6em;
  font-weight: 500;
  position: absolute;
  top: -12px;
  left: 9px;
}

.resume-sections {
  background-color: var(--tan);
  padding: 4em 3em;
}

.resume-section-head {
  color: var(--warm-black);
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1;
}

.home-text-wrap {
  max-width: 65vw;
  flex-direction: column;
  flex: 0 auto;
  align-items: flex-end;
  display: flex;
  position: relative;
}

.xp-subhead {
  color: rgba(39, 39, 39, .75);
  letter-spacing: .075rem;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 1.3;
}

.resume-text {
  margin-bottom: 10px;
  padding-bottom: 0;
  font-size: 1.2em;
  line-height: 1.6;
}

.div-line {
  height: .5px;
  background-color: var(--warm-black);
  margin-top: 28px;
  margin-bottom: 28px;
}

.div-line.white {
  width: 100%;
  background-color: rgba(255, 255, 255, .5);
  margin-top: 6em;
}

.resume-column {
  margin-top: 1em;
  margin-bottom: 1em;
  padding: 25px;
}

.resume-wrap {
  z-index: 4;
  background-color: var(--tan);
  object-fit: contain;
  display: none;
  position: relative;
  overflow: hidden;
}

.resume-head {
  overflow: hidden;
}

.resume-block-head {
  font-size: 1.7rem;
  line-height: 1.5;
}

.resume-list-item {
  list-style-type: disc;
}

.resume-list {
  padding-left: 20px;
  font-size: 1.2em;
}

.filter {
  z-index: 3;
  background-image: linear-gradient(to bottom, transparent, rgba(1, 1, 1, .06) 48%, var(--warm-black));
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.feat-card-title {
  color: var(--fckuornge);
  text-align: left;
  letter-spacing: 0;
  text-transform: none;
  border-radius: 500px;
  margin-bottom: 1em;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-right: 1em;
  font-family: Helveticaneueltcom ex, sans-serif;
  font-size: 1em;
  font-weight: 400;
}

.item {
  z-index: 2;
  width: 40vw;
  height: 100%;
  min-width: 40vw;
  color: #fff;
  border-radius: 0;
  flex-direction: column;
  flex: none;
  justify-content: flex-start;
  align-items: stretch;
  padding: 0 2vw;
  display: flex;
  position: relative;
}

.item:last-child {
  margin-right: 0;
}

.wrapper-icon-right-2 {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  transform: rotate(-180deg)translate(-5px);
}

.featured-header-container {
  justify-content: center;
  align-items: center;
}

.wrapper-nav-2 {
  z-index: 2;
  flex-direction: row;
  flex: 0 auto;
  justify-content: flex-start;
  align-self: auto;
  align-items: center;
  display: none;
  position: relative;
}

.slider-prev {
  width: 90px;
  opacity: .4;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  margin-left: 1em;
  padding: .5em;
  transition: all .25s;
  display: flex;
}

.slider-prev:hover {
  opacity: 1;
}

.slider-prev.prev-slide {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  padding: 2em;
  overflow: hidden;
}

.slider-prev.prev-slide:hover {
  color: #ff6d6d;
}

.wrapper-icon-left-2 {
  width: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
  transform: rotate(0)translate(-5px);
}

.feat-head {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  font-family: Goudy, sans-serif;
  font-size: 7vw;
  font-weight: 400;
  line-height: 1.3;
}

.home-med-img {
  width: 25%;
  object-fit: fill;
  flex-flow: row;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  display: flex;
  position: -webkit-sticky;
  position: sticky;
  top: 100vh;
  bottom: auto;
  right: auto;
  overflow: visible;
}

.home-hero {
  width: 100%;
  height: 150vh;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 30%;
  display: none;
  position: relative;
  overflow: visible;
}

.home-headline {
  color: var(--white);
  white-space: nowrap;
  cursor: default;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 3vw;
  font-family: Grandslang b side, Palatino Linotype, sans-serif;
  font-size: 12vw;
  font-weight: 400;
  line-height: 1;
  display: inline-block;
}

.home-headline.test {
  font-family: Goudy, sans-serif;
}

.home-headline.test._404 {
  text-align: center;
  object-fit: fill;
  display: flex;
}

.text-animate {
  justify-content: flex-start;
  align-items: center;
  margin-left: 0;
  padding-left: 0;
  display: flex;
  position: relative;
}

.text-animate-two {
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.img-container {
  width: 60%;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: center;
  align-self: auto;
  align-items: center;
  display: block;
}

.home-small-img {
  z-index: 3;
  width: 20%;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
  top: auto;
  bottom: -40%;
  left: 5%;
  right: auto;
}

.main-img-wrap {
  z-index: 1;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: -45%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.home-desc {
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 0;
  padding: 4em 2em;
  display: block;
  position: relative;
}

.expertise-columns {
  margin-left: auto;
  margin-right: 0;
}

.footer-head {
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 8vw;
}

.footer-head.cta {
  color: var(--white);
  text-transform: uppercase;
  padding-left: .5vw;
  font-family: Goudy, sans-serif;
  font-size: 8vw;
  font-weight: 400;
  display: inline-block;
}

.footer-head.cta.test {
  letter-spacing: 0;
  text-transform: uppercase;
  font-family: Goudy, sans-serif;
}

.social-link {
  text-align: center;
  justify-content: center;
  align-items: center;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.social-link.nav {
  width: 50px;
  height: 50px;
  color: var(--white);
  border: 1px solid rgba(248, 248, 248, .2);
  border-radius: 50%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-right: 1em;
  transition: all .2s;
  display: flex;
  position: static;
}

.social-link.nav:hover {
  color: var(--fckuornge);
  background-color: #3b3b3b;
  border-color: rgba(0, 0, 0, 0);
}

.social-link.nav.no--space {
  color: #fff;
  margin-right: 0;
}

.social-link.nav.no--space:hover {
  color: var(--fckuornge);
}

.get-in-touch {
  color: rgba(23, 23, 23, .44);
  font-weight: 500;
}

.get-in-touch.nav {
  color: rgba(255, 255, 255, .45);
  text-align: left;
  position: static;
}

.social-link-wrap {
  justify-content: center;
  align-items: stretch;
  display: flex;
}

.social-link-wrap.nav {
  flex-direction: row;
  grid-template-rows: auto;
  grid-template-columns: .5fr .5fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: center;
  justify-content: flex-start;
  align-items: center;
  justify-items: center;
  margin-top: 1em;
  margin-left: 0;
  margin-right: 0;
  padding-top: 0;
  display: flex;
  position: static;
}

.contact-wrapper {
  flex-direction: column;
  padding: 0;
  display: none;
}

.footer-wrap {
  width: 100%;
  color: var(--tan);
  flex-direction: column;
  justify-content: flex-end;
  display: flex;
}

.footer-cta {
  flex-direction: column;
  align-items: center;
  padding: 0;
  display: flex;
}

.about-img-wrap {
  width: 100%;
  height: 100%;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: relative;
}

.about-header {
  color: var(--white);
  text-align: left;
  text-transform: none;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 4vw;
}

.about-header.test {
  font-family: Goudy, sans-serif;
}

.about-headline-wrap {
  z-index: 2;
  width: 100%;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-left: 5em;
  padding-right: 5em;
  display: flex;
  position: absolute;
}

.header-wrap {
  width: 100%;
  height: 200vh;
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  display: flex;
  position: relative;
  overflow: hidden;
}

.about-text-wrap {
  width: 100%;
  min-height: 90vh;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding-top: 8em;
  padding-bottom: 8em;
  padding-right: 10em;
  display: flex;
  position: relative;
}

.about-text {
  z-index: 4;
  max-width: 30em;
  color: var(--tan);
  font-size: 1.5em;
  line-height: 1.5;
  position: relative;
}

.resume-contain {
  color: var(--warm-black);
  margin-top: 2em;
}

.img03 {
  z-index: 3;
  width: 8%;
  position: absolute;
  top: 40%;
  bottom: auto;
  left: 25%;
  right: auto;
  overflow: hidden;
}

.img02 {
  z-index: 3;
  width: 15%;
  display: block;
  position: absolute;
  top: 15%;
  bottom: auto;
  left: auto;
  right: 0%;
  overflow: hidden;
}

.img04 {
  z-index: 2;
  width: 22%;
  object-fit: cover;
  display: block;
  position: absolute;
  top: auto;
  bottom: 21%;
  left: auto;
  right: 20%;
  overflow: hidden;
}

.img01 {
  z-index: 3;
  width: 22%;
  display: block;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 12%;
  right: auto;
  overflow: hidden;
}

.img05 {
  z-index: 2;
  width: 10%;
  margin-bottom: 5em;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: auto;
  overflow: hidden;
}

.case-head {
  height: 90vh;
  background-color: var(--warm-black);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10em 15em;
  display: flex;
  position: relative;
}

.h1-project-page {
  color: var(--white);
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-family: Goudy, sans-serif;
  font-size: 10vw;
  font-weight: 400;
  line-height: .9;
}

.h1-project-page.next {
  color: var(--white);
  border-bottom-width: 0;
  margin-top: .3em;
  font-size: 6em;
}

.h1-project-page.small {
  font-size: 6vw;
}

.h1-project-page._404 {
  margin-bottom: .4em;
}

.full-width-img {
  width: 100%;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  display: flex;
  overflow: hidden;
}

.full-width-img.main {
  margin-top: 0;
  margin-bottom: 0;
  position: relative;
}

.full-height-text {
  width: 100%;
  height: 60vh;
  min-height: 30vw;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
  position: relative;
}

.full-height-text.end {
  height: 100vh;
  min-height: 40vw;
  flex-direction: column;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
}

.full-height-text.conclusion {
  color: var(--white);
  color: #fff;
}

.proj-subhead {
  color: var(--white);
  text-align: left;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1em;
  font-family: Helveticaneueltcom ex, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.proj-large-copy {
  color: rgba(255, 255, 255, .8);
  text-align: left;
  margin-right: 0;
  font-family: Helveticaneueltcom lt, sans-serif;
  font-size: 1.4em;
  font-weight: 300;
  line-height: 1.6;
}

.proj-large-copy.link-below {
  margin-bottom: 1em;
}

.proj-col {
  margin: 2em 0;
}

.img-space-wrap {
  width: 100vw;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-bottom: 0;
  display: flex;
}

.img-space-wrap.two-col {
  width: 100vw;
  height: auto;
  flex-direction: row;
  align-items: flex-start;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
}

.single-column-video {
  width: 90%;
  height: 80%;
  max-width: 1200px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2em;
  margin-bottom: 2em;
  display: flex;
  position: relative;
  box-shadow: 0 6px 50px -20px rgba(0, 0, 0, .35);
}

.proj-copy-contain {
  max-width: 1180px;
  text-align: center;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  display: block;
}

.next {
  border-bottom: .25px solid var(--white);
  color: var(--white);
  text-align: center;
  font-family: Goudy, sans-serif;
  font-size: 1em;
}

.next-link {
  z-index: 3;
  width: 100%;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 6em 10em;
  display: flex;
  position: relative;
  overflow: visible;
}

.next-link:hover, .next-link:focus {
  text-decoration: none;
}

.xp-wrap {
  flex: 1;
}

.video-embed {
  width: 100%;
  height: 100%;
}

.video-wrap {
  z-index: 2;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.single-column-gif {
  width: 90%;
  height: 80%;
  max-width: 1200px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2em;
  margin-bottom: 2em;
  padding-top: 0;
  padding-bottom: 0;
  display: none;
  position: relative;
  box-shadow: 0 6px 50px -20px rgba(0, 0, 0, .35);
}

.single-column-img {
  height: 80%;
  max-width: 1200px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.slider-next {
  width: 90px;
  opacity: .4;
  cursor: pointer;
  border: 1px solid #fff;
  border-radius: 25px;
  justify-content: center;
  align-items: center;
  margin-left: 1em;
  padding: .5em;
  transition: all .25s;
  display: flex;
}

.slider-next:hover {
  opacity: 1;
}

.slider-next.next-slide {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin-right: 0;
  padding: 2em;
  overflow: hidden;
}

.img-link {
  opacity: 1;
  cursor: none;
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  display: flex;
}

.img-link:hover {
  text-decoration: none;
}

.cursor {
  z-index: 1000;
  width: 100%;
  height: 100vh;
  opacity: 0;
  color: var(--fckuornge);
  justify-content: center;
  align-items: center;
  transition: opacity .2s;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.cursor_dot {
  width: 1em;
  height: 1em;
  border: 1.5px solid var(--fckuornge);
  border-radius: 50%;
  transition: all .2s;
}

.link {
  color: var(--white);
  text-align: center;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 100vw;
  padding: 1.1em 2.6em;
  transition: color .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.link.is--submit {
  border-width: 0;
  border-radius: 0;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
  overflow: visible;
}

.menu-button {
  z-index: 991;
  width: 70px;
  height: 70px;
  background-color: rgba(23, 23, 23, .3);
  border-radius: 50%;
  margin-top: 20px;
  margin-right: 20px;
  padding: 0;
  transition: background-color .3s;
  position: fixed;
  top: 0%;
  bottom: auto;
  left: auto;
  right: 0%;
}

.menu-button:hover {
  background-color: rgba(255, 255, 255, .06);
  border-radius: 50%;
}

.menu-button:focus {
  background-color: rgba(255, 255, 255, .05);
}

.menu-button.w--open {
  background-color: var(--warm-black);
  color: var(--warm-black);
}

.menu-button.w--open:hover {
  background-color: rgba(255, 255, 255, .08);
}

.img-wrap {
  width: 100%;
  height: 30vw;
  justify-content: center;
  align-items: flex-start;
  display: flex;
  position: relative;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: hidden;
}

.text-sticky-wrap {
  height: 80vh;
  object-fit: fill;
  padding-top: 4%;
  padding-bottom: 10%;
  position: -webkit-sticky;
  position: sticky;
  top: 0%;
}

.takeover {
  z-index: 990;
  width: 100vw;
  height: 100vh;
  background-color: #1b1b1b;
  justify-content: center;
  align-items: center;
  padding: 6em 4em;
  display: flex;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
  overflow: auto;
}

.menu-link {
  color: rgba(255, 255, 255, .48);
  border-bottom: 0 solid rgba(248, 248, 248, .2);
  padding: 1em 0;
  font-family: Grandslang b side, Palatino Linotype, sans-serif;
  transition: color .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.menu-link:hover {
  color: var(--white-smoke);
  text-decoration: none;
  transform: translate(0);
}

.menu-link:focus {
  text-decoration: none;
}

.menu-link.w--current {
  color: var(--white);
  border-bottom-width: 0;
}

.menu-link.w--current:hover {
  text-decoration: none;
}

.number {
  font-family: DM Sans;
  font-size: .9em;
}

.social-overflow {
  flex-flow: row;
  grid-template: "Area Area"
                 "Area-2 Area-3"
                 / 1fr 1fr;
  grid-auto-columns: 1fr;
  grid-auto-flow: row;
  align-content: start;
  justify-content: space-between;
  align-items: start;
  padding: 0;
  display: block;
  overflow: hidden;
}

.menu-links-wrapper {
  width: 50%;
  margin-right: 1em;
}

.secondary-link-wrapper {
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  padding-bottom: 3em;
  display: flex;
}

.takeover-inner {
  z-index: 990;
  height: 100%;
  flex-direction: row;
  justify-content: space-around;
  align-items: flex-end;
  display: flex;
}

.page-wrap {
  z-index: 2;
  background-color: var(--warm-black);
  position: relative;
}

.page-wrap.projects {
  width: 100%;
  flex-direction: column;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}

.h2 {
  color: var(--white);
  font-family: Helveticaneueltcom lt, sans-serif;
  font-size: 2.5em;
  font-weight: 400;
}

.h2.test {
  text-transform: uppercase;
  font-family: Goudy, sans-serif;
}

.image-space-wrap {
  z-index: 5;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.img-wrap-home {
  width: 65vw;
  height: 70vw;
  padding-top: 0;
  padding-bottom: 2em;
  display: flex;
  position: relative;
  overflow: hidden;
}

.nav {
  background-color: rgba(0, 0, 0, 0);
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: 0%;
}

.about-intro-wrap, .hero-image {
  position: relative;
}

.text-wrap {
  max-width: 1200px;
  color: var(--white);
  letter-spacing: .001em;
  font-family: Helveticaneueltcom lt, sans-serif;
  font-weight: 300;
}

.text-wrap.big {
  width: 100%;
  margin-bottom: 4em;
  font-size: 1em;
  overflow: hidden;
}

.text-wrap.small {
  max-width: 500px;
  flex-direction: column;
  align-items: flex-start;
  display: flex;
}

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

.project-img.page {
  object-fit: fill;
  justify-content: center;
  align-items: center;
  margin-bottom: 4em;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
  overflow: hidden;
}

.menu-bottom {
  width: 24px;
  height: 2px;
  background-color: var(--white-smoke);
  position: absolute;
  top: 38px;
}

.menu-top {
  width: 24px;
  height: 2px;
  background-color: var(--white-smoke);
  position: absolute;
  top: 30px;
}

.menu-wrap {
  width: 100%;
  height: 100%;
  flex-direction: column;
  flex: none;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
}

.rotate--1st {
  margin-right: 0;
}

.rotate--1st.w {
  margin-right: -5px;
}

.rotate--1st.h {
  margin-right: 3px;
}

.rotate--1st.h.test, .rotate--1st.test {
  font-family: Goudy, sans-serif;
}

.rotate--2nd {
  margin-right: -2px;
}

.rotate--2nd.i {
  margin-right: 0;
}

.rotate--2nd.test, .rotate--3rd.test, .rotate--4th.test {
  font-family: Goudy, sans-serif;
}

.hidden-rotate--1st {
  font-family: Helveticaneueltcom lt, sans-serif;
}

.hidden-rotate--1st.w {
  margin-right: -3px;
}

.hidden-rotate--2nd, .hidden-rotate--3rd, .hidden-rotate--4th, .hidden-rotate--5th {
  font-family: Helveticaneueltcom lt, sans-serif;
}

.rotate--space {
  padding-left: 0;
  padding-right: 0;
}

.rotate--space.test, .rotate--5th.test, .rotate--6th {
  font-family: Goudy, sans-serif;
}

.hidden-rotate--6th {
  font-family: Helveticaneueltcom lt, sans-serif;
}

.hidden-rotate-space {
  padding-left: 0;
  padding-right: 0;
  font-family: Helveticaneueltcom lt, sans-serif;
  position: static;
}

.contact-overflow {
  margin-bottom: 4em;
  display: block;
  overflow: hidden;
}

.social-wrap {
  display: block;
}

.cursor-html {
  color: var(--fckuornge);
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.menu-hover {
  width: 100%;
  height: 100%;
  padding: 0;
}

.project-full-screen {
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 10vh 2.5vw;
  position: relative;
}

.project-full-screen.hidden {
  display: none;
}

.card-title-arrow {
  justify-content: flex-start;
  align-items: center;
  display: flex;
}

.arrow-cta {
  color: var(--fckuornge);
  display: flex;
}

.arrow-cta.send {
  color: var(--white);
}

.project-img-wrap {
  width: 100%;
  height: 35vw;
  justify-content: center;
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.collection-project-item {
  flex-flow: column wrap;
  align-content: stretch;
  align-items: center;
  padding-bottom: 10vw;
  padding-left: 30vw;
  padding-right: 20%;
  display: flex;
  position: relative;
}

.project-title {
  color: var(--white);
  letter-spacing: .025em;
  text-transform: uppercase;
  font-family: Grandslang b side, Palatino Linotype, sans-serif;
  font-size: 5.5vw;
  font-weight: 400;
  line-height: 1;
}

.project-title.desktop {
  font-family: Goudy, sans-serif;
  font-weight: 400;
}

.project-title.small {
  margin-right: 0;
  font-size: 2.5vw;
}

.project-client {
  color: var(--white);
  text-transform: none;
  margin-top: 1vw;
  font-size: 1.3em;
  line-height: 1;
}

.project-client.cms-tablet {
  color: rgba(255, 255, 255, .6);
  margin-bottom: 1vw;
}

.project-client.desktop {
  font-family: Helveticaneueltcom ltex, sans-serif;
}

.project-title-wrap {
  z-index: 5;
  height: 100%;
  text-align: center;
  flex-direction: column;
  justify-content: center;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.project-title-wrap.cms-tablet {
  text-align: left;
  flex-direction: column-reverse;
  position: static;
}

.project-title-wrap.desktop {
  padding: 4em;
}

.project-title-wrap.desktop:hover {
  text-decoration: none;
}

.project-year {
  color: var(--white);
  flex-direction: row;
  align-items: center;
}

.project-year.cms-tablet {
  color: rgba(255, 255, 255, .6);
}

.project-year.desktop {
  font-family: Value serif, sans-serif;
}

.link-over-card {
  width: 100%;
  height: 100%;
  padding: 0;
  position: relative;
}

.link-over-card.cms-tablet:active {
  text-decoration: none;
}

.link-over-card.desktop {
  z-index: 10;
  cursor: pointer;
}

.link-over-card.desktop:active {
  text-decoration: none;
}

.project-year-overflow {
  position: absolute;
  top: 1%;
  bottom: auto;
  left: auto;
  right: -7%;
  overflow: hidden;
  transform: rotate(90deg);
}

.overflow-hidden {
  overflow: hidden;
}

.cursor_hover {
  width: 8em;
  height: 8em;
  background-color: var(--fckuornge);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: none;
}

.circle-arrow {
  z-index: 5;
  width: 6em;
  height: 6em;
  background-color: var(--neon);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 12%;
  left: auto;
  right: -6%;
}

.circle-arrow.cms-tablet {
  z-index: 2;
  display: flex;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: auto;
  right: -10%;
}

.cms-tablet {
  display: none;
}

.drag-text {
  color: var(--black);
  letter-spacing: .1em;
  font-size: 1em;
  font-weight: 500;
}

.half-screen {
  height: 40vh;
  flex-direction: column-reverse;
  align-items: flex-start;
  padding-left: 10vw;
  display: flex;
  position: relative;
}

.h1-project {
  color: var(--white);
  font-family: Helveticaneueltcom ltex, sans-serif;
  font-size: 5vw;
}

.footer-links-flex {
  width: 100%;
  justify-content: space-between;
  padding: 1em;
  display: flex;
}

.footer-links {
  display: flex;
}

.cursor-drag {
  width: 8em;
  height: 8em;
  background-color: var(--fckuornge);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: none;
}

.link_container {
  padding: .8em;
  display: inline-block;
}

.link_container.is--submit {
  transition: all .2s;
}

.link_container.is--submit.disable {
  opacity: .26;
  transition: all .2s, opacity .3s;
}

.link_text {
  letter-spacing: 0;
  text-transform: none;
  font-size: 1.3em;
  font-weight: 400;
}

.link_text.is--2nd {
  position: absolute;
}

.link_text.is--1st {
  margin-bottom: 7px;
}

.form_contain {
  width: 83%;
}

.link_circle {
  z-index: 1;
  width: 100%;
  min-height: 6em;
  background-color: var(--white);
  border-radius: 50%;
  margin-bottom: 5.9em;
  padding-top: 100%;
  transition: margin .4s, border-radius .25s;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.shapes {
  margin-bottom: 4em;
  margin-left: -.8em;
  padding-bottom: 2em;
}

.shapes.submit-contain {
  padding-top: 4em;
  padding-bottom: 0;
}

.submit {
  color: var(--white);
  letter-spacing: -.01em;
  background-color: rgba(0, 0, 0, 0);
  margin-bottom: .2em;
  margin-right: 24px;
  padding: 0;
  font-family: Helveticaneueltcom ex, sans-serif;
  font-size: 2em;
  font-weight: 500;
}

.form {
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  margin-bottom: 0;
  display: flex;
}

.label {
  display: none;
}

.container {
  width: 1440px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 3em 10em;
}

.container.hidden {
  display: none;
}

.radio-button {
  z-index: 30;
  width: 100%;
  height: 100%;
  opacity: 0;
  border-radius: 0;
  margin-top: 0;
  margin-left: 0;
  display: block;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.link_move {
  position: relative;
}

.link_wrap {
  z-index: 2;
  position: relative;
  overflow: hidden;
}

.field_line-2 {
  opacity: .1;
  margin-bottom: -3.7%;
  transition: opacity .3s;
  position: absolute;
  top: auto;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.group {
  padding-top: 1.5em;
}

.group.check {
  display: none;
}

.field {
  height: 3em;
  color: var(--white);
  background-color: rgba(0, 0, 0, 0);
  border: 0 solid #000;
  margin-bottom: 0;
  padding: 0;
  font-family: Helveticaneueltcom thex, sans-serif;
  font-weight: 300;
  transition: all .2s;
}

.field:hover {
  background-color: rgba(39, 39, 39, .42);
  padding-left: .4em;
}

.field:focus {
  background-color: var(--grey);
  padding-left: .4em;
}

.field::-ms-input-placeholder {
  color: #ccc;
}

.field::placeholder {
  color: #ccc;
}

.field.your-email, .field.your-name {
  font-family: Helveticaneueltcom thex, sans-serif;
}

.link-2 {
  text-align: center;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 100vw;
  padding: 1.4em 2.6em;
  transition: color .2s;
  position: relative;
  overflow: hidden;
}

.link-2.is--submit {
  border-width: 0;
  border-radius: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0;
  display: flex;
  overflow: visible;
}

.field_parent {
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .5);
  margin-bottom: 1em;
  font-size: 2.3em;
  position: relative;
}

.form-header {
  color: rgba(255, 255, 255, .5);
  font-size: 1.5em;
}

.utility-text {
  color: var(--black);
  font-weight: 500;
}

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

.error-message {
  background-color: #ff4545;
}

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

.success-message-wrap {
  background-color: #2c2c2c;
  margin-bottom: 2em;
  padding: 1em;
}

.about-headline {
  color: var(--neon);
  white-space: nowrap;
  cursor: default;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 2vw;
  font-family: Grandslang b side, Palatino Linotype, sans-serif;
  font-size: 30vw;
  line-height: 1;
  display: inline-block;
}

.about-headline.test {
  font-family: Goudy, sans-serif;
}

.section-div {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, .5);
  flex-direction: row-reverse;
  justify-content: space-between;
  display: flex;
  position: relative;
}

.label-text {
  color: var(--neon);
  font-size: 14px;
}

.label-text.black {
  color: var(--warm-black);
}

.label-circle {
  width: 15px;
  height: 15px;
  background-color: var(--neon);
  border-radius: 50%;
  margin-right: 10px;
}

.label-circle.black {
  background-color: var(--warm-black);
}

.section-label {
  z-index: 5;
  align-items: center;
  margin-top: 1em;
  margin-left: 4em;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-right: 10px;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.img-track {
  width: 100%;
  height: 100%;
}

.color-load {
  z-index: 4;
  width: 100%;
  height: 100%;
  background-color: var(--fckuornge);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

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

.img-cover.proj {
  object-fit: fill;
}

.img-cover.proj.gif {
  width: 130%;
}

.project-info {
  border-bottom: .25px solid rgba(255, 255, 255, .25);
  flex-direction: row;
  flex: 0 auto;
  justify-content: space-between;
  align-items: flex-start;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
}

.project-details {
  color: rgba(255, 255, 255, .5);
  text-align: left;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: Helveticaneueltcom lt, sans-serif;
  font-size: 14px;
}

.info-head {
  color: var(--white);
  text-align: left;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-family: Helveticaneueltcom ex, sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.info-contain {
  align-items: center;
  padding-top: 1em;
  padding-bottom: 1em;
  display: block;
}

.info-contain.listing {
  margin-right: 1em;
  padding-top: 0;
  padding-bottom: 0;
}

.div-block-72 {
  height: .25px;
}

.rich-text {
  color: rgba(255, 255, 255, .8);
  text-align: left;
  margin-bottom: 1em;
  font-size: 1.4em;
  font-weight: 300;
  line-height: 1.6;
}

.two-col-img {
  width: 100%;
  height: 100%;
  max-width: 1200px;
  column-count: 2;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin-top: 4em;
  margin-bottom: 4em;
  display: block;
  position: relative;
  overflow: hidden;
}

.max-width-img {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 2em;
  margin-bottom: 2em;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
  overflow: hidden;
}

.img-cta-wrap {
  max-width: 1200px;
  flex-direction: column;
  align-items: flex-end;
  display: flex;
  overflow: hidden;
}

.conclusion {
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-left: 2em;
  padding-right: 2em;
  display: flex;
  position: relative;
}

.proj-scroll-text {
  color: rgba(255, 255, 255, .2);
  white-space: nowrap;
  cursor: default;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 3vw;
  font-family: Grandslang b side, Palatino Linotype, sans-serif;
  font-size: 9vw;
  line-height: 1;
  display: none;
}

.toggle {
  flex: 0 auto;
  padding: .5em;
}

.toggle.list {
  z-index: 4;
  height: auto;
  color: rgba(255, 255, 255, .6);
  cursor: pointer;
  justify-content: center;
  transition: color .2s;
  display: flex;
  position: relative;
}

.toggle.list:hover {
  color: rgba(255, 255, 255, .46);
}

.toggle.grid {
  z-index: 4;
  color: var(--warm-black);
  cursor: pointer;
  flex: 0 auto;
  justify-content: center;
  align-items: center;
  transition: color .2s;
  display: flex;
  position: relative;
}

.toggle.grid:hover {
  color: var(--warm-black);
}

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

.switch {
  z-index: 991;
  width: 90px;
  height: 50px;
  background-color: rgba(255, 255, 255, .1);
  border-radius: 100px;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  padding-left: 5px;
  padding-right: 5px;
  display: none;
  position: relative;
}

.switch.desktop {
  cursor: pointer;
  display: flex;
}

.switch.desktop.hidden {
  display: none;
}

.knob {
  width: 40px;
  height: 40px;
  background-color: var(--white);
  cursor: pointer;
  border-radius: 50%;
  position: absolute;
  left: 5px;
}

.html-embed {
  position: absolute;
}

.proj-img-list {
  width: 200px;
  height: 100px;
  margin-right: 1em;
}

.list-wrap {
  border-top: .25px solid rgba(248, 248, 248, .15);
  justify-content: flex-start;
  align-items: center;
  margin-left: 8vw;
  margin-right: 8vw;
  padding: .5em;
  transition: all .4s;
  display: flex;
  position: relative;
}

.list-wrap:hover {
  background-color: rgba(255, 255, 255, .03);
  padding-left: 2em;
  padding-right: 2em;
  text-decoration: none;
}

.list-wrap:focus {
  text-decoration: none;
}

.list-title-wrap {
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}

.listing-cta {
  color: var(--neon);
  flex: none;
}

.list-inner {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  display: flex;
}

.cms-list {
  display: none;
}

.img-col {
  padding-left: 0;
  padding-right: 0;
  display: block;
  overflow: hidden;
}

.proj-img-wrap {
  max-width: 1200px;
  overflow: hidden;
}

.load-swipe {
  z-index: 1001;
  background-color: var(--grey);
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.loading {
  font-size: 1.3em;
  position: absolute;
}

.loading.two {
  color: #5f5f5f;
  font-family: Georgia, Times, Times New Roman, serif;
  display: block;
}

.loading.three {
  color: var(--fckuornge);
  font-family: Goudy, sans-serif;
  font-size: 2em;
  display: block;
}

.loading.four {
  color: var(--white);
  letter-spacing: .05em;
  font-family: Helveticaneueltcom ltex, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.loading.one {
  color: var(--white);
  font-family: Value serif, sans-serif;
  position: static;
}

.overlay {
  z-index: 3;
  background-color: rgba(23, 23, 23, .75);
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.back {
  color: rgba(255, 255, 255, .5);
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
  margin-left: 20px;
  padding: 20px;
  transition: color .2s;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.back-text {
  font-family: Helveticaneueltcom ltex, sans-serif;
  font-size: .9em;
}

.back-icon {
  flex: none;
  margin-right: .5em;
  display: flex;
}

.credits {
  color: var(--white);
  text-align: center;
  font-family: Goudy, sans-serif;
  font-size: 6vw;
  font-weight: 400;
}

.columns {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
}

.rich-text-2 {
  color: var(--white-smoke);
  text-align: left;
  font-family: Helveticaneueltcom ex, sans-serif;
}

.credit-column {
  padding-left: 20px;
  padding-right: 20px;
}

.credit-wrap {
  width: 100%;
  height: 90vh;
  max-width: 1200px;
  min-height: auto;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 0;
  margin-bottom: 5em;
  display: flex;
}

.credit-wrap.hidden {
  display: none;
}

.next-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.branding-section {
  text-align: left;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 2em;
  display: flex;
}

.branding-section.about {
  width: 100vw;
  display: flex;
}

.logo-container {
  height: 1.2em;
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  text-align: center;
  flex-direction: row;
  grid-template-rows: auto auto;
  grid-template-columns: 1fr 1fr;
  grid-auto-columns: 1fr;
  justify-content: flex-start;
  align-items: center;
  margin-top: 8em;
  margin-bottom: 0;
  margin-right: 0;
  display: flex;
}

.logo-container.footer {
  width: auto;
  flex-wrap: wrap;
  margin-top: .7em;
  padding-top: 0;
  padding-bottom: 0;
}

.image {
  width: auto;
  height: .7em;
  text-align: center;
  object-fit: fill;
  flex: 0 auto;
  align-self: center;
}

.rich-text-2-2 {
  color: rgba(255, 255, 255, .7);
  text-align: left;
}

.proj-subhead-2 {
  color: #fff;
  text-align: left;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1em;
  font-size: 14px;
  font-weight: 500;
}

.next-2 {
  color: #fff;
  text-align: center;
  border-bottom: .25px solid #fff;
  font-size: 1em;
}

.info-head-2 {
  color: #fff;
  text-align: left;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
}

.case-head-2 {
  height: 90vh;
  background-color: #171717;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 10em 15em;
  display: flex;
  position: relative;
}

.arrow-button-2 {
  text-align: right;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 2em;
  padding: .5em .5em .5em 0;
  font-size: 1em;
  display: flex;
}

.arrow-button-2:hover {
  border: 0 solid #e1ff00;
  border-radius: 0%;
  text-decoration: none;
}

.arrow-button-2.case {
  margin-top: 2em;
  margin-bottom: 0;
}

.credits-2 {
  color: #fff;
  text-align: center;
  font-size: 6vw;
  font-weight: 400;
}

.div-line-2 {
  height: .5px;
  background-color: #171717;
  margin-top: 28px;
  margin-bottom: 28px;
}

.div-line-2.white {
  width: 100%;
  background-color: rgba(255, 255, 255, .5);
  margin-top: 6em;
}

.h1-project-page-2 {
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  white-space: normal;
  margin-top: 0;
  margin-bottom: 0;
  font-size: 10vw;
  font-weight: 400;
  line-height: .9;
}

.h1-project-page-2.next {
  color: #fff;
  border-bottom-width: 0;
  margin-top: .3em;
  font-size: 6em;
}

.project-details-2 {
  color: rgba(255, 255, 255, .5);
  text-align: left;
  letter-spacing: .05em;
  text-transform: uppercase;
  font-size: 14px;
}

.back-text-2 {
  font-size: .9em;
}

.cta-text-2 {
  color: #ff4c00;
  margin-right: 1em;
  font-weight: 400;
  display: inline;
}

.cta-text-2.light {
  font-family: Helveticaneueltcom ex, sans-serif;
  font-weight: 500;
}

.proj-large-copy-2 {
  color: rgba(255, 255, 255, .8);
  text-align: left;
  margin-right: 0;
  font-size: 1.4em;
  font-weight: 300;
  line-height: 1.6;
}

.proj-large-copy-2.link-below {
  margin-bottom: 1em;
}

.page-wrap-2 {
  z-index: 2;
  background-color: #171717;
  position: relative;
}

.arrow-cta-2 {
  color: #ff4c00;
  display: flex;
}

.color-load-2 {
  z-index: 4;
  width: 100%;
  height: 100%;
  background-color: #ff4c00;
  position: absolute;
  top: 0%;
  bottom: 0%;
  left: 0%;
  right: 0%;
}

.back-2 {
  color: rgba(255, 255, 255, .5);
  flex-direction: row;
  align-items: center;
  margin-top: 20px;
  margin-left: 20px;
  padding: 20px;
  transition: color .2s;
  display: flex;
  position: absolute;
  top: 0%;
  bottom: auto;
  left: 0%;
  right: auto;
}

.proj-scroll-text-2 {
  color: rgba(255, 255, 255, .2);
  white-space: nowrap;
  cursor: default;
  flex-direction: row-reverse;
  justify-content: flex-end;
  align-items: stretch;
  margin-top: 0;
  margin-bottom: 0;
  margin-right: 3vw;
  font-size: 9vw;
  line-height: 1;
  display: none;
}

.credits-3 {
  color: #fff;
  text-align: center;
  font-size: 6vw;
  font-weight: 400;
}

.rich-text-2-3 {
  color: rgba(255, 255, 255, .7);
  text-align: left;
}

.back-text-3 {
  font-size: .9em;
}

.project-img-stack {
  flex-direction: column;
  display: flex;
}

.credit-cont {
  margin-bottom: 2rem;
}

.credit-cont.hidden {
  display: none;
}

.slider-wrapper-detatched {
  display: block;
  position: relative;
}

.list-detatched {
  align-items: center;
  padding-left: 3vw;
  padding-right: 3vw;
  display: flex;
}

.item-detatched {
  width: 40vw;
  min-width: 40px;
  flex-direction: column;
  align-items: stretch;
  padding-left: 2vw;
  padding-right: 2vw;
  display: flex;
}

.project-year-2 {
  color: #fff;
  flex-direction: row;
  align-items: center;
}

.circle-arrow-2 {
  z-index: 5;
  width: 6em;
  height: 6em;
  background-color: #e1ff00;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  display: flex;
  position: absolute;
  top: auto;
  bottom: 12%;
  left: auto;
  right: -6%;
}

.project-client-2 {
  color: #fff;
  text-transform: none;
  margin-top: 1vw;
  font-size: 1.3em;
  line-height: 1;
}

.project-title-2 {
  color: #fff;
  letter-spacing: .025em;
  text-transform: uppercase;
  font-size: 5.5vw;
  font-weight: 400;
  line-height: 1;
}

.project-title-2.desktop {
  font-weight: 400;
}

.arrow-cta-3 {
  color: #ff4c00;
  display: flex;
}

._404-content {
  flex-direction: column;
  align-items: center;
  margin-top: 4rem;
  margin-left: 4rem;
  margin-right: 4rem;
  display: flex;
}

.html-embed-2 {
  z-index: -2;
  width: 50%;
  position: absolute;
  top: 9rem;
}

@media screen and (min-width: 1920px) {
  .paragraph.work {
    font-size: 2em;
  }

  .featured-section.section-wrapper {
    display: block;
  }

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

  .scroll-text.test {
    color: var(--fckuornge);
  }

  .text-span-4.test {
    color: var(--blue-crayola);
  }

  .feat-head {
    font-family: Goudy, sans-serif;
  }

  .footer-head.cta.test {
    text-transform: uppercase;
  }

  .get-in-touch.nav {
    font-family: Helveticaneueltcom ex, sans-serif;
  }

  .h1-project-page.small {
    font-size: 6vw;
  }

  .full-height-text {
    height: 60vh;
  }

  .rotate--1st.test {
    font-family: Goudy, sans-serif;
  }

  .hidden-rotate--1st {
    font-family: Helveticaneueltcom ltex, sans-serif;
  }

  .hidden-rotate--2nd, .hidden-rotate--3rd, .hidden-rotate--4th, .hidden-rotate--5th, .hidden-rotate--6th, .hidden-rotate-space {
    font-family: Helveticaneueltcom lt, sans-serif;
  }

  .submit {
    font-family: Helveticaneueltcom ex, sans-serif;
  }

  .container.hidden {
    display: none;
  }

  .label-text, .back-text {
    font-family: Helveticaneueltcom ltex, sans-serif;
  }

  .credits {
    font-family: Goudy, sans-serif;
  }

  .rich-text-2 {
    font-family: Helveticaneueltcom ltex, sans-serif;
  }

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

  .credit-wrap {
    margin-top: 0;
  }
}

@media screen and (max-width: 991px) {
  .button {
    justify-content: center;
  }

  .menu-button {
    padding: 0;
    display: block;
  }

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

  .paragraph {
    font-size: 1.3em;
  }

  .paragraph.work {
    margin-top: 2rem;
    margin-right: 8rem;
  }

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

  .arrow-button.big {
    align-items: center;
  }

  .rotate-circle {
    width: 60%;
    left: -35%;
  }

  .rotate-circle.desktop {
    width: 12%;
    right: 8%;
  }

  .footer {
    height: 60vw;
    padding-top: 3vw;
    padding-left: 5vw;
    padding-right: 5vw;
    position: relative;
  }

  .footer-text {
    padding-top: 0;
  }

  .featured-section.section-wrapper {
    height: auto;
    padding: 6em 2em;
  }

  .slider-navigation {
    width: 70px;
  }

  .scroll-text {
    margin-right: 10px;
    font-size: 5vw;
  }

  .home-xp {
    height: auto;
    padding: 4em 2em;
  }

  .nav-link {
    font-size: 8vw;
  }

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

  .resume-sections {
    padding: 4em 3em;
  }

  .resume-section-head {
    font-size: 2.3rem;
    font-weight: 400;
  }

  .home-text-wrap {
    align-items: flex-start;
  }

  .div-line.white {
    margin-top: 4em;
  }

  .featured-header-container {
    overflow: hidden;
  }

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

  .slider-prev {
    width: 70px;
  }

  .home-hero {
    height: 120vh;
  }

  .footer-head {
    color: var(--tan);
    text-align: left;
    text-transform: uppercase;
    font-size: 7vw;
  }

  .social-link.nav {
    width: 50px;
    height: 50px;
    padding: 0;
  }

  .get-in-touch.nav {
    font-size: .9em;
  }

  .footer-wrap {
    height: auto;
  }

  .footer-cta {
    flex-direction: column;
    margin-top: 4vw;
    margin-bottom: 4vw;
  }

  .about-header {
    font-size: 5vw;
  }

  .about-text-wrap {
    min-height: 90vw;
    align-items: center;
    padding: 7em 3em;
  }

  .about-text {
    padding: 0;
    font-size: 1.3em;
  }

  .case-head {
    height: 40vh;
    min-height: 250px;
    padding-left: 5em;
    padding-right: 5em;
  }

  .h1-project-page {
    font-size: 12vw;
  }

  .h1-project-page.next {
    font-size: 4.5em;
  }

  .full-width-img.main {
    min-height: 500px;
  }

  .full-height-text {
    height: auto;
    min-height: 60vw;
    align-items: center;
    padding-left: 2em;
    padding-right: 2em;
    display: flex;
  }

  .proj-large-copy {
    color: rgba(255, 255, 255, .8);
    text-align: left;
  }

  .img-space-wrap {
    height: 70vw;
  }

  .single-column-video {
    margin-top: 0;
    margin-bottom: 0;
  }

  .next-link {
    padding-left: 8em;
    padding-right: 8em;
  }

  .slider-next {
    width: 70px;
  }

  .cursor {
    display: none;
  }

  .img-wrap {
    height: 40vw;
  }

  .text-sticky-wrap {
    height: 60vw;
    align-items: center;
    display: flex;
  }

  .takeover {
    overflow: auto;
  }

  .menu-links-wrapper {
    width: 60%;
  }

  .secondary-link-wrapper {
    padding-bottom: 2em;
  }

  .takeover-inner {
    height: auto;
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-end;
  }

  .img-wrap-home {
    width: 80vw;
    height: 800px;
  }

  .project-img.page {
    overflow: hidden;
  }

  .rotate--1st.w {
    margin-right: -.5vw;
  }

  .rotate--1st.h {
    margin-right: .3vw;
  }

  .rotate--2nd {
    margin-right: -.2vw;
  }

  .rotate--space {
    padding-left: 1vw;
    padding-right: 1vw;
  }

  .project-title {
    color: var(--tan);
  }

  .project-title.desktop {
    color: var(--white);
    font-weight: 400;
  }

  .project-title.small {
    color: var(--white);
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 3vw;
    font-weight: 400;
  }

  .project-client {
    color: rgba(223, 211, 195, .7);
    margin-bottom: 1vw;
  }

  .project-client.cms-tablet {
    color: rgba(255, 255, 255, .6);
  }

  .project-client.desktop {
    color: rgba(255, 255, 255, .6);
    font-size: 1.2em;
  }

  .project-title-wrap {
    text-align: left;
    flex-direction: column-reverse;
    position: static;
  }

  .project-title-wrap.desktop {
    padding-top: 1em;
    padding-bottom: 0;
    padding-left: 0;
  }

  .project-year {
    color: rgba(223, 211, 195, .7);
  }

  .project-year.cms-tablet, .project-year.desktop {
    color: rgba(255, 255, 255, .6);
  }

  .link-over-card.cms-tablet:hover, .link-over-card.desktop:hover {
    text-decoration: none;
  }

  .project-year-overflow {
    right: -9%;
  }

  .circle-arrow {
    z-index: 2;
    display: flex;
    position: absolute;
    top: 40%;
    bottom: auto;
    left: auto;
    right: -10%;
  }

  .half-screen {
    height: 40vw;
    justify-content: flex-end;
  }

  .footer-links-flex {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .form_contain {
    width: 100%;
  }

  .container {
    padding-left: 7vw;
    padding-right: 7vw;
  }

  .section-div {
    padding-bottom: 0;
  }

  .section-label {
    margin-left: 3em;
    top: 0%;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .rich-text {
    color: rgba(255, 255, 255, .8);
  }

  .two-col-img {
    overflow: hidden;
  }

  .img-cta-wrap {
    align-items: flex-end;
  }

  .conclusion {
    height: auto;
    min-height: 60vw;
    align-items: center;
    display: flex;
  }

  .switch.desktop {
    position: relative;
  }

  .list-wrap {
    margin-left: 7.5vw;
    margin-right: 7.5vw;
  }

  .list-title-wrap {
    flex-direction: column;
  }

  .listing-cta {
    margin-left: .6em;
  }

  .cms-list {
    display: none;
  }

  .back {
    color: var(--white);
    margin-left: 10px;
  }

  .credits {
    margin-top: 0;
  }

  .credit-column {
    margin-bottom: 1em;
  }

  .credit-wrap {
    height: auto;
    margin-top: 5em;
  }

  .logo-container.footer {
    height: auto;
  }

  .case-head-2 {
    min-height: 250px;
    padding-left: 5em;
    padding-right: 5em;
  }

  .arrow-button-2 {
    justify-content: flex-start;
  }

  .credits-2 {
    margin-top: 0;
  }

  .div-line-2.white {
    margin-top: 4em;
  }

  .h1-project-page-2 {
    font-size: 12vw;
  }

  .h1-project-page-2.next {
    font-size: 4.5em;
  }

  .proj-large-copy-2 {
    color: rgba(255, 255, 255, .8);
    text-align: left;
  }

  .back-2 {
    color: #fff;
    margin-left: 10px;
  }

  .credits-3 {
    margin-top: 0;
  }

  .project-year-2 {
    color: rgba(223, 211, 195, .7);
  }

  .project-year-2.desktop {
    color: rgba(255, 255, 255, .6);
  }

  .circle-arrow-2 {
    z-index: 2;
    display: flex;
    position: absolute;
    top: 40%;
    bottom: auto;
    left: auto;
    right: -10%;
  }

  .project-client-2 {
    color: rgba(223, 211, 195, .7);
    margin-bottom: 1vw;
  }

  .project-client-2.desktop {
    color: rgba(255, 255, 255, .6);
    font-size: 1.2em;
  }

  .project-title-2 {
    color: #dfd3c3;
  }

  .project-title-2.desktop {
    color: #fff;
    font-weight: 400;
  }
}

@media screen and (max-width: 767px) {
  .utility-page-wrap {
    padding: 15px;
  }

  .paragraph {
    font-size: 1em;
  }

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

  .cta-text.big {
    font-size: 1.3em;
  }

  .arrow-button.big {
    justify-content: center;
    align-items: center;
  }

  .rotate-circle.desktop {
    width: 14%;
    right: 12%;
  }

  .footer {
    height: auto;
  }

  .footer-link.email {
    justify-content: center;
  }

  .footer-text {
    padding-top: 0;
  }

  .list {
    padding-left: 2em;
    padding-right: 2em;
  }

  .scroll-text {
    margin-right: 10px;
    font-size: 6vw;
    line-height: 1;
  }

  .text-scroll-move {
    margin-top: 25px;
    margin-bottom: 25px;
  }

  .contact-circle {
    width: 150px;
    height: 150px;
  }

  .nav-link {
    font-size: 6vw;
  }

  .resume-sections {
    padding: 2em;
  }

  .resume-section-head {
    font-size: 2em;
    font-weight: 500;
  }

  .resume-column {
    padding: 0;
  }

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

  .slider-prev.prev-slide {
    margin-left: 0;
  }

  .home-hero {
    height: 100vh;
  }

  .home-desc {
    height: auto;
    padding-bottom: 4em;
  }

  .footer-head {
    font-size: 6vw;
  }

  .footer-head.cta {
    font-size: 6vw;
    font-style: normal;
  }

  .social-link.nav {
    width: 45px;
    height: 45px;
  }

  .get-in-touch.nav {
    font-size: .9em;
  }

  .contact-wrapper {
    margin-top: 2em;
    margin-bottom: 2em;
  }

  .footer-wrap {
    height: auto;
    justify-content: space-around;
  }

  .footer-cta {
    margin-bottom: 4vw;
    display: block;
  }

  .about-headline-wrap {
    padding-left: 4em;
    padding-right: 4em;
  }

  .about-text-wrap {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .about-text {
    font-size: 1.5em;
  }

  .case-head {
    height: 40vh;
    min-height: 250px;
    padding: 0 5em;
  }

  .h1-project-page.next {
    color: var(--white);
    font-size: 3.5em;
  }

  .full-width-img {
    height: 60vw;
  }

  .full-width-img.main {
    height: 100vw;
    min-height: auto;
  }

  .full-height-text {
    height: auto;
    min-height: auto;
    align-items: flex-start;
    padding-left: 1.3em;
    padding-right: 1.3em;
  }

  .full-height-text.end {
    height: 60vw;
    min-height: auto;
    align-items: center;
    margin-top: 0;
  }

  .proj-large-copy {
    font-size: 1.1em;
  }

  .proj-col {
    margin-top: 1em;
    margin-bottom: 1em;
    margin-left: 0;
  }

  .img-space-wrap.two-col {
    padding-left: 1em;
    padding-right: 1em;
  }

  .single-column-video {
    display: none;
  }

  .proj-copy-contain {
    flex-direction: column;
  }

  .next {
    border-bottom-color: rgba(255, 255, 255, .5);
  }

  .next-link {
    padding: 1.5em 6.5em;
  }

  .single-column-gif {
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
    display: block;
  }

  .img-wrap {
    height: 40vw;
  }

  .takeover {
    align-items: center;
    overflow: auto;
  }

  .menu-link {
    overflow: hidden;
  }

  .menu-links-wrapper {
    width: 100%;
    margin-bottom: 2em;
  }

  .takeover-inner {
    height: auto;
    flex-direction: column;
    align-items: flex-start;
  }

  .img-wrap-home {
    height: 500px;
  }

  .text-wrap.big {
    font-size: .9em;
  }

  .project-img.page {
    margin-bottom: 3em;
    padding-left: 1em;
    padding-right: 1em;
  }

  .project-full-screen {
    padding-left: 0;
    position: relative;
    bottom: auto;
    left: 0%;
    right: auto;
  }

  .project-img-wrap.desktop {
    height: 50vw;
  }

  .collection-project-item {
    z-index: 50;
    padding-bottom: 4em;
    padding-left: 0;
    padding-right: 10vw;
  }

  .project-title.small {
    font-size: 4vw;
  }

  .project-client.desktop {
    margin-top: 2vw;
    font-size: 1.1em;
  }

  .project-title-wrap.desktop {
    margin-left: 2em;
    padding-bottom: 0;
  }

  .circle-arrow {
    width: 15vw;
    height: 15vw;
    right: -5%;
  }

  .half-screen {
    height: 32vw;
    padding-left: 2em;
  }

  .footer-links-flex {
    flex-direction: row;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-items: center;
    display: flex;
  }

  .footer-links {
    flex-direction: row;
  }

  .submit, .field_parent {
    font-size: 1.7em;
  }

  .label-circle {
    width: 12px;
    height: 12px;
  }

  .section-label {
    align-items: center;
  }

  .img-cover {
    height: 100%;
  }

  .project-info {
    border-bottom-width: 0;
    border-bottom-color: rgba(0, 0, 0, 0);
    flex-direction: column;
    margin-top: 1em;
    margin-bottom: 1em;
  }

  .info-contain {
    padding-top: .5em;
    padding-bottom: .5em;
  }

  .rich-text {
    font-size: 1.1em;
  }

  .two-col-img {
    column-count: 2;
    margin-top: 3em;
    margin-bottom: 3em;
  }

  .max-width-img {
    padding-left: 1em;
    padding-right: 1em;
  }

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

  .toggle.list {
    padding-left: .5em;
    padding-right: .5em;
  }

  .switch {
    margin-left: 1.75em;
    display: flex;
    position: relative;
  }

  .switch.desktop, .switch.hidden {
    display: none;
  }

  .list-wrap {
    margin-left: 2em;
    margin-right: 2em;
  }

  .back {
    margin-top: 25px;
    margin-left: 12px;
  }

  .credits {
    font-size: 8vw;
  }

  .next-2 {
    border-bottom-color: rgba(255, 255, 255, .5);
  }

  .case-head-2 {
    height: 100vh;
    min-height: 250px;
    padding: 0 5em;
  }

  .credits-2 {
    font-size: 8vw;
  }

  .h1-project-page-2.next {
    color: #fff;
    font-size: 3.5em;
  }

  .cta-text-2 {
    font-size: 1rem;
  }

  .proj-large-copy-2 {
    font-size: 1.1em;
  }

  .back-2 {
    margin-top: 25px;
    margin-left: 12px;
  }

  .credits-3 {
    font-size: 8vw;
  }

  .circle-arrow-2 {
    width: 15vw;
    height: 15vw;
    right: -5%;
  }

  .project-client-2.desktop {
    margin-top: 2vw;
    font-size: 1.1em;
  }
}

@media screen and (max-width: 479px) {
  h2 {
    color: var(--white);
    line-height: 1.3;
  }

  blockquote {
    min-height: 0;
    object-fit: fill;
    font-size: 20px;
    line-height: 25px;
    overflow: visible;
  }

  .menu-button, .menu-button.w--open {
    flex: none;
  }

  .paragraph {
    flex-direction: row;
    margin-bottom: 1em;
    font-size: 1.1em;
  }

  .paragraph.work {
    margin-right: 2rem;
  }

  .cta-text {
    text-align: left;
    font-size: 1rem;
  }

  .rotate-circle {
    width: 80%;
    flex: 0 auto;
    order: 1;
    align-self: auto;
    top: -27%;
    bottom: auto;
    left: -52%;
    right: auto;
  }

  .footer {
    z-index: 1;
    height: 80vh;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    display: flex;
    position: -webkit-sticky;
    position: sticky;
  }

  .footer-flex {
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 2em;
    display: flex;
  }

  .footer-link {
    flex-flow: column;
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    align-content: flex-end;
    justify-content: center;
    align-self: auto;
    align-items: center;
    padding: .7em;
    display: flex;
  }

  .footer-link:hover {
    flex-wrap: nowrap;
  }

  .footer-link.nav {
    border-bottom-width: 0;
    flex-direction: row;
    margin-top: 0;
    margin-left: 1.5em;
    padding: .2em 0;
    font-size: 1.2em;
    overflow: visible;
  }

  .footer-link.email:hover {
    font-size: 1em;
  }

  .footer-text {
    justify-content: center;
    margin-top: 3em;
  }

  .list {
    align-items: flex-start;
    padding-left: 0;
    padding-right: 0;
  }

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

  .scroll-text {
    text-transform: none;
    margin-right: 8px;
    font-size: 32px;
  }

  .text-scroll-move {
    margin-top: 15px;
    margin-bottom: 15px;
  }

  .text-scroll-wrap.top {
    position: -webkit-sticky;
    position: sticky;
    top: 5em;
  }

  .home-contact {
    padding-top: 4em;
    padding-bottom: 4em;
  }

  .contact-home-cta {
    font-size: .9em;
  }

  .home-xp {
    height: auto;
    padding: 4em 2em;
  }

  .home-grid-fields {
    font-size: .9em;
  }

  .expertise-columns-text {
    padding-bottom: 0;
    padding-right: 0;
  }

  .nav-link {
    color: var(--white-smoke);
    padding-top: 0;
    padding-bottom: 0;
    font-size: 3em;
  }

  .nav-link.w--current {
    font-size: 3em;
  }

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

  .resume-section-head {
    font-size: 2em;
    font-weight: 500;
  }

  .home-text-wrap {
    max-width: none;
  }

  .resume-text {
    font-size: 1em;
  }

  .div-line.white {
    margin-top: 2em;
  }

  .resume-column {
    padding-top: 0;
    padding-left: 0;
    padding-right: 0;
  }

  .resume-wrap {
    position: relative;
  }

  .resume-head {
    padding-left: 0;
    padding-right: 0;
  }

  .resume-block-head {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .resume-list {
    padding-left: 20px;
    font-size: 1em;
  }

  .filter {
    display: block;
  }

  .feat-card-title {
    color: var(--fckuornge);
    text-align: left;
    border-radius: 500px;
    order: 0;
    padding-top: .5em;
    padding-bottom: .5em;
    line-height: 1.3;
  }

  .item {
    align-self: flex-start;
    margin-right: .6em;
  }

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

  .feat-head {
    font-size: 12vw;
  }

  .home-med-img {
    width: 35%;
    justify-content: center;
    position: -webkit-sticky;
    position: sticky;
    top: 40vh;
    overflow: visible;
  }

  .home-hero {
    margin-top: 60%;
    display: flex;
  }

  .home-headline {
    line-height: 1.1;
  }

  .img-container {
    width: 60%;
    justify-content: center;
    align-items: center;
    display: flex;
    position: relative;
    overflow: hidden;
  }

  .home-small-img {
    width: 28%;
    top: auto;
    bottom: -30%;
    left: auto;
    right: auto;
    overflow: hidden;
  }

  .main-img-wrap {
    object-fit: fill;
    align-items: center;
    top: -57%;
  }

  .home-desc {
    height: auto;
    margin-top: -110%;
    padding-bottom: 4em;
    padding-left: 2em;
    padding-right: 2em;
    display: block;
  }

  .expertise-columns {
    padding-left: 0;
    padding-right: 0;
  }

  .footer-head {
    align-items: center;
    font-size: 10vw;
  }

  .footer-head.cta {
    text-align: center;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    font-size: 10vw;
  }

  .social-link {
    flex: 1;
  }

  .get-in-touch {
    text-align: center;
    letter-spacing: -.02em;
  }

  .social-link-wrap {
    order: -1;
  }

  .social-link-wrap.nav {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }

  .contact-wrapper, .footer-cta {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    display: flex;
  }

  .about-header {
    color: var(--white);
    text-align: left;
    font-size: 9vw;
  }

  .about-headline-wrap {
    padding-left: 2em;
    padding-right: 2em;
    font-size: 1rem;
  }

  .header-wrap {
    align-items: flex-start;
  }

  .about-text-wrap {
    min-height: auto;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 5em 2em;
    position: relative;
    top: 0;
  }

  .about-text {
    max-width: none;
    padding: 0;
    font-size: 1.5em;
  }

  .img03 {
    width: 30%;
    display: block;
    left: 20%;
  }

  .img02 {
    width: 24%;
    display: block;
  }

  .img04 {
    width: 55%;
    right: 10%;
  }

  .img01 {
    width: 50%;
    display: block;
    left: 10%;
  }

  .img05 {
    width: 20%;
    display: block;
  }

  .case-head {
    height: 40vh;
    min-height: 400px;
    padding: 0 2em;
  }

  .h1-project-page {
    font-size: 12vw;
  }

  .h1-project-page.next {
    font-size: 2.5em;
  }

  .full-width-img {
    height: auto;
  }

  .full-width-img.main {
    height: 60vw;
  }

  .full-height-text {
    padding-left: .5em;
    padding-right: .5em;
  }

  .full-height-text.end {
    height: 60vh;
    min-height: 60vw;
    align-items: center;
    margin-top: -15px;
  }

  .proj-subhead {
    margin-bottom: 1em;
  }

  .proj-large-copy {
    margin-right: 0;
    font-size: 1.3em;
  }

  .img-space-wrap {
    height: auto;
    margin-bottom: 3em;
  }

  .img-space-wrap.two-col {
    margin-bottom: 0;
    padding-left: 1em;
    padding-right: 1em;
  }

  .single-column-video {
    width: 100%;
    height: auto;
    box-shadow: none;
    display: none;
  }

  .next {
    text-align: center;
  }

  .next-link {
    width: 100%;
    height: 100%;
    justify-content: center;
    padding: 2em;
  }

  .video-embed {
    background-color: #faf9fa;
    margin-top: 44px;
    margin-bottom: 44px;
  }

  .single-column-gif {
    width: 90%;
    height: auto;
    background-color: #f7f5f7;
    margin-top: 1em;
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
    display: block;
    position: static;
  }

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

  .single-column-img {
    width: 100%;
    height: auto;
    box-shadow: none;
    padding-left: 1em;
    padding-right: 1em;
  }

  .img-link {
    z-index: 5;
  }

  .link {
    margin-bottom: 20px;
    padding: 1em 1.2em;
    font-size: .9em;
  }

  .menu-button {
    background-color: rgba(23, 23, 23, .5);
    flex-direction: row;
    justify-content: flex-end;
    align-items: flex-end;
    transform: scale(.9);
  }

  .menu-button:hover {
    background-color: rgba(39, 39, 39, .5);
  }

  .menu-button.w--open {
    color: var(--warm-black);
    background-color: rgba(39, 39, 39, .5);
    border-radius: 50%;
  }

  .img-wrap {
    height: 130vw;
  }

  .text-sticky-wrap {
    z-index: 2;
    height: 64vh;
    align-items: flex-start;
    padding-top: 5em;
    padding-bottom: 0%;
    position: relative;
    top: 0%;
    left: auto;
    right: auto;
  }

  .takeover {
    width: 100%;
    height: auto;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    display: none;
    overflow: auto;
  }

  .menu-link {
    color: var(--white-smoke);
    border-bottom-style: solid;
    border-bottom-color: rgba(248, 248, 248, .23);
    padding: 1em 2em;
    overflow: hidden;
  }

  .number {
    color: rgba(248, 248, 248, .45);
    padding-top: 3px;
  }

  .social-overflow {
    grid-template: "Area ."
                   "Area-2 Area-3"
                   / 1fr 1fr;
    grid-auto-columns: 1fr;
    align-content: center;
    justify-content: flex-start;
    align-items: center;
    justify-items: start;
    display: flex;
  }

  .menu-links-wrapper {
    width: 100%;
    margin-right: 0;
  }

  .secondary-link-wrapper {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0;
    padding-left: 2em;
    padding-right: 2em;
    display: block;
  }

  .takeover-inner {
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-top: 0;
    display: flex;
  }

  .page-wrap {
    z-index: 2;
    position: relative;
  }

  .page-wrap.projects {
    padding-top: 40px;
  }

  .resume-body {
    padding-left: 0;
    padding-right: 0;
  }

  .h2 {
    color: var(--white);
    margin-top: .5em;
    margin-bottom: .5em;
    font-size: 1.8em;
  }

  .image-space-wrap {
    display: none;
  }

  .nav {
    top: 0%;
    bottom: auto;
    left: 0%;
    right: 0%;
  }

  .hero-image {
    height: 0;
  }

  .text-wrap.big {
    margin-bottom: 2em;
  }

  .project-img.page {
    padding-top: 0;
    padding-left: 1em;
    padding-right: 1em;
  }

  .rotate--1st {
    margin-right: 2px;
  }

  .contact-overflow {
    display: none;
  }

  .project-img-wrap.desktop {
    height: 100vw;
  }

  .collection-project-item {
    padding-bottom: 4em;
  }

  .project-title.desktop {
    font-size: 10vw;
  }

  .project-title.small {
    font-family: Zen Kaku Gothic New, sans-serif;
    font-size: 4.5vw;
    font-weight: 400;
  }

  .project-client.desktop {
    margin-top: 4vw;
    font-size: 1em;
  }

  .link-over-card.desktop:focus {
    font-style: normal;
    text-decoration: none;
  }

  .circle-arrow {
    width: 4em;
    height: 4em;
  }

  .half-screen {
    height: 100vw;
    justify-content: flex-end;
  }

  .h1-project {
    font-size: 6vw;
  }

  .footer-links-flex {
    grid-column-gap: 2em;
    grid-row-gap: 2em;
    flex-direction: column;
    align-items: center;
  }

  .footer-links {
    justify-content: space-around;
  }

  .link_container {
    padding: 1vw;
    display: inline-block;
  }

  .shapes {
    margin-bottom: 3em;
    margin-left: -1vw;
  }

  .container {
    padding-left: 4vw;
    padding-right: 4vw;
  }

  .link-2 {
    font-size: 10px;
  }

  .field_parent {
    font-size: 1.3em;
  }

  .form-header {
    font-size: 1.2em;
  }

  .about-headline {
    line-height: 1.1;
  }

  .section-div {
    margin-bottom: 30px;
  }

  .section-label {
    margin-left: 2em;
  }

  .color-load {
    z-index: 500;
  }

  .project-info {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 1em;
    padding-right: 1em;
  }

  .info-head {
    margin-right: .5em;
  }

  .info-contain {
    align-items: flex-start;
    padding-bottom: .5em;
    display: flex;
  }

  .rich-text {
    font-size: 1.3em;
  }

  .two-col-img {
    width: 100%;
    height: auto;
    box-shadow: none;
    column-count: auto;
    margin-top: 3em;
    margin-bottom: 0;
  }

  .max-width-img {
    height: auto;
  }

  .conclusion {
    padding-left: 1em;
    padding-right: 1em;
  }

  .proj-scroll-text {
    line-height: 1.1;
  }

  .list-wrap {
    margin-left: 0;
    margin-right: 0;
  }

  .cms-list {
    display: none;
  }

  .img-col {
    margin-bottom: 3em;
  }

  .loading.three {
    font-family: Grandslang b side, Palatino Linotype, sans-serif;
    font-style: italic;
    font-weight: 400;
  }

  .back {
    margin-top: 26px;
  }

  .credits {
    font-size: 12vw;
  }

  .rich-text-2 {
    color: rgba(255, 255, 255, .7);
  }

  .branding-section {
    align-self: center;
    display: flex;
  }

  .branding-section.mobilemenu {
    width: 70vw;
  }

  .logo-container {
    margin-left: 2em;
    margin-right: 2em;
  }

  .logo-container.menu.mobile {
    margin-left: 0;
  }

  .logo-container.footer {
    width: 10em;
    height: .7em;
    padding-left: 0;
    padding-right: 0;
  }

  .image {
    width: 13em;
    height: 1em;
  }

  .image.foot {
    margin-top: 4em;
    margin-bottom: 4em;
  }

  .rich-text-2-2 {
    color: rgba(255, 255, 255, .7);
  }

  .proj-subhead-2 {
    margin-bottom: 1em;
  }

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

  .info-head-2 {
    margin-right: .5em;
  }

  .case-head-2 {
    height: 75vh;
    min-height: 400px;
    padding: 0 2em;
  }

  .credits-2 {
    font-size: 12vw;
  }

  .div-line-2.white {
    margin-top: 2em;
  }

  .h1-project-page-2 {
    font-size: 12vw;
  }

  .h1-project-page-2.next {
    font-size: 2.5em;
  }

  .cta-text-2 {
    text-align: left;
    font-size: 1rem;
  }

  .proj-large-copy-2 {
    margin-right: 0;
    font-size: 1.3em;
  }

  .page-wrap-2 {
    z-index: 2;
    position: relative;
  }

  .color-load-2 {
    z-index: 500;
  }

  .back-2 {
    margin-top: 26px;
  }

  .proj-scroll-text-2 {
    line-height: 1.1;
  }

  .credits-3 {
    font-size: 12vw;
  }

  .rich-text-2-3 {
    color: rgba(255, 255, 255, .7);
  }

  .circle-arrow-2 {
    width: 4em;
    height: 4em;
  }

  .project-client-2.desktop {
    margin-top: 4vw;
    font-size: 1em;
  }

  .project-title-2.desktop {
    font-size: 10vw;
  }
}


@font-face {
  font-family: 'Grandslang b side';
  src: url('../fonts/GrandSlang-B-Side.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Grandslang';
  src: url('../fonts/GrandSlang-Italic.woff') format('woff');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Grandslang roman';
  src: url('../fonts/GrandSlang-Roman.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: auto;
}
@font-face {
  font-family: 'Value serif';
  src: url('../fonts/value-serif.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Copyfonts';
  src: url('../fonts/copyfonts.com_goudy-regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helveticaneueltcom lt';
  src: url('../fonts/HelveticaNeueLTCom-Lt.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helveticaneueltcom ex';
  src: url('../fonts/HelveticaNeueLTCom-Ex.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helveticaneueltcom thex';
  src: url('../fonts/HelveticaNeueLTCom-ThEx.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Helveticaneueltcom ltex';
  src: url('../fonts/HelveticaNeueLTCom-LtEx.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Goudy';
  src: url('../fonts/Goudy.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}