:root {
  --swiper-pagination-color: white !important;
  --swiper-pagination-bullet-height: 10px !important;
  --swiper-pagination-bullet-size: 10px !important;
  /* Ensures both height and width are 12px */ }

.shadow-1 {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); }

.shadow-1:hover {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22); }

.shadow-2 {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23); }

.shadow-3 {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23); }

.shadow-4 {
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22); }

.shadow-5 {
  box-shadow: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22); }

* {
  box-sizing: border-box; }

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
  font-family: "Public Sans", serif;
  font-weight: 300;
  scroll-behavior: smooth; }

body {
  margin: 0;
  padding: 0;
  color: #212121; }

h1,
h2,
h3,
h4,
p,
blockquote,
figure {
  margin: 0;
  padding: 0; }

section,
main {
  display: block;
  position: relative; }

h1,
h2,
h3,
h4 {
  font-size: inherit;
  font-weight: normal; }

p {
  font-weight: normal; }

strong, b {
  font-weight: 600; }

a,
button {
  color: inherit;
  transition: .3s; }

a {
  text-decoration: none; }
  a:hover, a:focus {
    text-decoration: none; }

button {
  overflow: visible;
  border: 0;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer; }

::-moz-focus-inner {
  padding: 0;
  border: 0; }

:focus {
  outline: 0; }

img {
  max-width: 100%;
  height: auto;
  border: 0; }

ol.stripped, ul.stripped {
  margin: 0;
  padding: 0; }
  ol.stripped li, ul.stripped li {
    list-style-type: none; }

.fill {
  position: absolute;
  inset: 0; }

.cover {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
  display: flex;
  height: 100%;
  width: 100%; }

.btn {
  display: inline-block;
  transition: all .25s ease-in-out; }

.hide-overflow {
  overflow: hidden;
  display: block; }

.appear {
  transition: 0.6s;
  display: block; }
  .appear.down {
    transform: translateY(-100%); }
  .appear.up {
    transform: translateY(100%); }
  .appear.in-view {
    transform: translateY(0%); }

@media (min-width: 641px) {
  .delay-25 {
    transition-delay: 0.25s; } }

@media (min-width: 641px) {
  .delay-50 {
    transition-delay: 0.5s; } }

@media (min-width: 641px) {
  .delay-75 {
    transition-delay: 0.75s; } }

@media (min-width: 641px) {
  .delay-100 {
    transition-delay: 1s; } }

.fadeup {
  opacity: 0;
  transition-duration: 1s;
  transform: translate3d(0, 8%, 0); }
  .fadeup.in-view {
    transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
    opacity: 1;
    transform: none; }

.slidedown {
  opacity: 0;
  transition-duration: 1s;
  transform: translate3d(0, -8%, 0); }
  .slidedown.in-view {
    transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
    opacity: 1;
    transform: none; }

.slideleft {
  opacity: 0;
  transition-duration: 1s;
  transform: translate3d(-20px, 0, 0); }
  .slideleft.in-view {
    transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
    opacity: 1;
    transform: none; }

.fadein {
  opacity: 0;
  transition-duration: 1s; }
  .fadein.in-view {
    transition-timing-function: linear;
    opacity: 1;
    transform: none; }

nav {
  padding: 2rem 2.5%;
  display: flex;
  align-items: center;
  justify-content: space-between; }
  nav .home-link {
    font-size: 20.736px;
    letter-spacing: 0.023em;
    margin: auto; }
    @media (min-width: 641px) {
      nav .home-link {
        margin: 0; } }
  nav #menu-toggle {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 20px;
    z-index: 1000; }
    @media (min-width: 1025px) {
      nav #menu-toggle {
        display: none; } }
    nav #menu-toggle svg {
      width: 100%;
      height: 100%;
      transform-box: fill-box;
      fill: black !important;
      /* Force the fill to be black */ }
    nav #menu-toggle .hamburger {
      display: block; }
    nav #menu-toggle .x {
      display: none; }
    nav #menu-toggle.open .hamburger {
      display: none; }
    nav #menu-toggle.open .x {
      display: block; }
    nav #menu-toggle.open .top {
      transform: translateY(8px) rotate(45deg); }
    nav #menu-toggle.open .middle {
      opacity: 0; }
    nav #menu-toggle.open .bottom {
      transform: translateY(-8px) rotate(-45deg); }
  nav .nav-contain {
    display: none;
    width: 100%;
    text-align: center; }
    @media (min-width: 1025px) {
      nav .nav-contain {
        display: flex;
        width: auto; } }
    nav .nav-contain a {
      font-size: 17.28px;
      font-weight: 500;
      letter-spacing: -0.02em;
      width: 100%;
      transition: opacity 0.3s ease; }
      @media (min-width: 1025px) {
        nav .nav-contain a {
          width: auto;
          margin-left: 2rem;
          display: block; } }
    nav .nav-contain.open {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      position: fixed;
      inset: 0;
      background: white;
      z-index: 1; }
      nav .nav-contain.open a {
        font-size: 29.85984px;
        margin: 1rem auto;
        opacity: 1; }

footer {
  display: flex;
  align-items: center;
  flex-direction: column-reverse;
  margin-top: 5%;
  border-top: 1px solid #212121;
  padding: 5% 10%; }
  @media (min-width: 1024px) {
    footer {
      flex-direction: row;
      padding: 2.5%;
      margin-top: 2.5%; } }
  footer p {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: -0.023em;
    text-align: center;
    padding: 2rem 0; }
    @media (min-width: 1024px) {
      footer p {
        text-align: left;
        margin-right: auto; } }
  footer img {
    width: 18rem;
    margin-left: 2rem;
    padding: 1rem; }
    @media (min-width: 1024px) {
      footer img {
        padding: 0;
        width: 15rem; } }
  footer .logos {
    display: flex;
    align-items: center;
    flex-direction: column; }
    @media (min-width: 1024px) {
      footer .logos {
        flex-direction: row;
        margin-left: auto; } }
    footer .logos p {
      max-width: 43rem;
      text-align: center; }
      @media (min-width: 1024px) {
        footer .logos p {
          text-align: right; } }
span[part="bullet-active"] {
  color: #ffffff !important; }

.work h1 {
  font-size: 35.83181px;
  line-height: 1;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  color: #212121;
  margin: 4rem auto 4rem auto;
  text-align: center; }
  @media (min-width: 641px) {
    .work h1 {
      font-size: 51.5978px; } }
.work-detail h1 {
  text-align: left;
  margin-bottom: 3rem;
  letter-spacing: 0; }
  @media (min-width: 1024px) {
    .work-detail h1 {
      max-width: 90%; } }
.home h2 {
  font-size: 35.83181px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 2rem; }
  @media (min-width: 641px) {
    .home h2 {
      font-size: 42.99817px;
      letter-spacing: 0.23em; } }
.types-of-work h2 {
  font-size: 29.85984px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2rem; }
  @media (min-width: 641px) {
    .types-of-work h2 {
      font-size: 42.99817px;
      letter-spacing: 0.23em; } }
h3 {
  font-size: 35.83181px;
  letter-spacing: 0.23em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2rem; }
  .about h3 {
    font-size: 20.736px;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: uppercase;
    color: #212121;
    margin-bottom: 2rem;
    margin-top: 4rem; }

.container-lg {
  width: 100%;
  max-width: 90%;
  margin: 0 auto; }
  @media (min-width: 1024px) {
    .container-lg {
      max-width: 95%; } }
.overline {
  font-size: 20.736px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase; }

.link {
  font-size: 17.28px;
  font-weight: 600;
  letter-spacing: 0.23em;
  color: #ffffff;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 10px; }

.tag {
  font-size: 12px;
  border-bottom: 1px solid #cdcdcd;
  padding: 0.5rem 1rem;
  text-transform: uppercase;
  display: inline-block; }

swiper-container {
  position: relative;
  width: 100%;
  height: 50rem; }
  @media (min-width: 641px) {
    swiper-container {
      height: 80rem; } }
  swiper-container .content {
    position: relative; }
  swiper-container swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    opacity: 0.8; }
    swiper-container swiper-slide img:before {
      content: '';
      background: #000000;
      position: absolute;
      inset: 0; }
  swiper-container .copy {
    position: relative; }
    swiper-container .copy p {
      text-transform: uppercase;
      font-size: 17.28px;
      font-weight: 500;
      margin-bottom: 10rem;
      color: #ffffff; }
  swiper-container .content {
    position: relative;
    text-align: center;
    background: #000000;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
    swiper-container .content a {
      position: relative;
      justify-self: flex-end; }

.types-of-work {
  display: flex;
  flex-wrap: wrap; }
  .types-of-work .work {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center; }
    .types-of-work .work.pad-top {
      margin-top: 2.5%; }
    .types-of-work .work.tinted {
      background: #212121; }
      .types-of-work .work.tinted img {
        opacity: 0.8; }
  .types-of-work .half {
    width: 90%;
    margin: 5% auto;
    aspect-ratio: 1/1;
    max-height: 90rem; }
    @media (min-width: 641px) {
      .types-of-work .half {
        width: 50%;
        aspect-ratio: 3/4;
        margin: 0; } }
  .types-of-work .full {
    width: 100%;
    max-height: 80rem;
    aspect-ratio: 1/1; }
    @media (min-width: 641px) {
      .types-of-work .full {
        aspect-ratio: 16/9; } }
  .types-of-work .pad-bottom {
    margin-bottom: 2.5%; }
  .types-of-work .copy {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-wrap: balance;
    padding: 20%; }
    .types-of-work .copy p {
      text-transform: uppercase;
      font-size: 17.28px;
      font-weight: 500;
      margin-bottom: 5rem;
      color: #ffffff; }
      @media (min-width: 641px) {
        .types-of-work .copy p {
          margin-bottom: 10rem; } }
.work-contain {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  flex-direction: column; }
  @media (min-width: 1024px) {
    .work-contain {
      flex-direction: row; } }
  .work-contain.column {
    flex-direction: column;
    overflow: hidden; }
  .work-contain .work-info {
    width: 100%;
    padding: 5% 2.5% 5% 2.5%; }
    @media (min-width: 1024px) {
      .work-contain .work-info {
        position: sticky;
        top: 1rem;
        width: 50rem;
        padding: 5% 2.5% 0 2.5%; } }
  .work-contain .medium {
    font-size: 20.736px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: #919191;
    margin-bottom: 3rem; }
  .work-contain .work-content {
    padding: 0rem 0 2.5rem 0;
    max-width: 50rem; }
  .work-contain .size {
    font-size: 17.28px;
    letter-spacing: -0.02em;
    font-weight: 600;
    border-top: 1px solid #212121;
    padding: 1.5rem 0;
    max-width: 45rem; }
  .work-contain .images {
    width: 100%; }
    @media (min-width: 1024px) {
      .work-contain .images {
        width: calc(100% - 50rem); } }
  .work-contain .images-contain {
    display: flex; }
    .work-contain .images-contain img {
      width: 50%; }

.about .about-contain {
  display: flex;
  flex-direction: column;
  margin-top: 4rem; }
  @media (min-width: 1024px) {
    .about .about-contain {
      flex-direction: row; } }
.about figure {
  width: 43rem;
  margin-right: 5%;
  border-radius: 1rem;
  overflow: hidden;
  max-height: 50rem; }

.about .info {
  margin-top: 5rem;
  max-width: 80rem; }
  @media (min-width: 1024px) {
    .about .info {
      width: calc(100% - 43rem); } }
.about .content {
  max-width: 90%; }
  .about .content p {
    font-size: 17.28px;
    line-height: 1.4;
    margin-bottom: 1.2rem; }
    .about .content p strong {
      display: block; }
  .about .content br {
    display: none; }

.about .headline {
  font-size: 42.99817px;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-top: 4rem;
  margin-bottom: 3rem;
  max-width: 60rem; }
