body {
    font-family: 'IBM Plex Serif', serif;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0px;
    line-height: 1.6;
    font-size: 16px;
    background: #000;
}
img {
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    color: inherit;
}
a {
  overflow: hidden;
  position: relative;
  display: inline-block;
}
a::before,
a::after {
 content: '';
  position: absolute;
  width: 100%;
  left: 0;
}
a::before {
  background-color: #54b3d6;
  height: 2px;
  bottom: 0;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}
a::after {
  content: attr(data-replace);
  height: 100%;
  top: 0;
  transform-origin: 100% 50%;
  transform: translate3d(200%, 0, 0);
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
  color: #54b3d6;
}

a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
a:hover::after {
  transform: translate3d(0, 0, 0);
}

a span {
  display: inline-block;
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

a:hover span {
  transform: translate3d(-200%, 0, 0);
}


nav {
    padding: 10px 40px 0px 40px;
    height: 75px;
    display: grid;
    border-bottom: 1px solid #FFF;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #000;
}
.col-1, .nav-col-1 {
    grid-column: 1/2;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 300;    
    font-size: clamp(0.5rem, 0.5vw + 0.4rem, 0.875rem);
    align-self: center;
    justify-self: start;
}
.col-2, .nav-col-2 {
    grid-column: 2/3;
    justify-self: end;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 300;
    font-size: clamp(0.5rem, 0.5vw + 0.4rem, 0.875rem);
    align-self: center;
}
.col-3 {
    grid-column: 3/4;
    justify-self: end;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 300;
    font-size: clamp(0.5rem, 0.5vw + 0.4rem, 0.875rem);
    align-self: center;
}
.col-span-2 {
    grid-column: 1/3;
    font-family: 'IBM Plex Sans', sans-serif;
    font-weight: 300;    
    font-size: clamp(0.5rem, 0.5vw + 0.4rem, 0.875rem);    
}
.friction-logo-words-img img {
    width: 123px;
}
.friction-logo-img img {
    width: 53px;
}
.friction-logo-black-img img {
    width: 83px;
}
.white-text {
    color: #FFF;
}
.black-text {
    color: #000;
}
.text-center {
    text-align: center;
}
.single-column {
    padding: 0px 200px;
}
.one-column-grid {
    justify-self: center;
    justify-content: center;
    display: grid;
    grid-template-columns: 1fr;
}
.h1-text {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 3.5vw + 1rem, 6rem);
    font-weight: 400;
    margin-bottom: 0px;
}
.italic-text {
    font-style: italic;
}
.inter-text {
    font-family: 'Inter', sans-serif;
}
.text-size-24 {
    font-size: clamp(0.8875rem, 1.25vw + 0.3rem, 1.5rem);
}
.text-size-32 {
    font-size: clamp(1.1875rem, 1.75vw + 0.5rem, 2rem);
}
.small-text {
    font-size: clamp(0.75rem, 0.5vw + 0.2rem, 1rem);
}
.justify-center {
    text-align: center;
    justify-self: center;
}
.justify-right {
    text-align: right;
    justify-self: end;
}
.justify-left {
    text-align: left;
    justify-self: start;
}
.two-column-grid {
    justify-self: center;
    justify-content: center;
    display: grid;
    grid-template-columns: fit-content(450px) fit-content(450px);
    gap: 40px;
}
.three-column-grid {
    justify-self: center;
    justify-content: center;
    display: grid;
    grid-template-columns: fit-content(150px) fit-content(150px) fit-content(150px);
    gap: 40px;
}
.image-work-logo {
    width: 165px;
}
.text-light {
    font-weight: 100;
}
.text-underline {
    text-decoration: underline;
}
.pad-top-0 {
    padding-top: 0px;
}
.pad-top-40 {
    padding-top: 40px;
}
.pad-bottom-40 {
    padding-bottom: 40px;
}
.pad-bottom-80 {
    padding-bottom: 80px;
}
.pad-bottom-160 {
    padding-bottom: 160px;
}
.pad-bottom-80-not-mobile {
    padding-bottom: 80px;
}
.white-background-section {
    background: #FFF;
    padding: 60px 0px;
    width: 100%;
}

@media screen and (max-width: 1025px) {
    body {
        line-height: 1.3;
    }
    nav {
        padding: 15px 40px;
        height: 30px;
    }
    .col-1 {
        justify-self: end;
    }
    .col-2 {
        justify-self: start;
    }
    .col-3 {
        justify-self: start;
    }
    .col-1, .col-2, .col-3 {
        padding: 10px 45px;
    }  
    .col-span-2 {
        padding: 0px 45px;
    } 
    .two-column-grid {
        column-gap: 20px;
    }
    .white-background-section {
        padding: 40px 0px 0px 0px;
    }
}

@media screen and (max-width: 479px) {
    body {
        line-height: 1.3;
    }
    nav {
        padding: 10px 15px;
        height: 30px;
    }
    .friction-logo-words-img img {
        width: 83px;
    }
    .friction-logo-img img {
        width: 35px;
    }
    .friction-logo-black-img img {
        width: 50px;
    }
    .single-column {
        padding: 40px 25px 0px 25px;
    }
    .text-light {
        font-weight: 300;
    }
    .col-1 {
        align-self: center;
        justify-self: center;
    }
    .col-2 {
        grid-column: 1/2;
        align-self: center;
        justify-self: center;
    }
    .col-3 {
        grid-column: 1/2;
        align-self: center;
        justify-self: center;
    }
    .col-1, .col-2, .col-3 {
        padding: 10px 25px;
    }   
    .two-column-grid {
        grid-template-columns: 1fr;
        margin: 0px 25px;
    }
    .three-column-grid {
        grid-template-columns: 1fr;
        padding: 0px 25px;
    }
    .image-work-logo {
        width: 85px;
    }
    .white-background-section {
        padding: 0px;
    }
    .col-span-2 {
        grid-column: 1/2;
        padding: 10px 25px;
    }
    .pad-bottom-40 {
        padding-bottom: 40px;
    }
    .pad-bottom-80, .pad-bottom-80-only-mobile, .pad-bottom-160 {
        padding-bottom: 80px;
    }
    .pad-bottom-80-not-mobile {
        padding-bottom: 0px;
    }    
    .hide-on-mobile {
        display: none;
    }
}