@import url('/css/clash-display.css');

@import url('/css/abc-whyte.css');

@import url('/css/pp-editorial.css');

/* DESIGN SYSTEM */

:root {
    --ruby: #d64e3c;
    --black: #000000;
}

html {
    font-size: 10px;
}

* {
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--ruby); /* WebKit/Blink Browsers */
    color: white;
  }
  ::-moz-selection {
    background: var(--ruby); /* Gecko Browsers */
    color: white;
  }

body {
    background-color: black;
}

h1 {
    font-size: 72px;
    font-family: 'ClashDisplay-Variable';
    font-weight: 500;
    font-display: swap;
    margin: 0;
    color: white;
}

h2 {
    font-size: clamp(3.2rem, 3.2rem + 4vw, 8rem);
    font-family: 'ClashDisplay-Variable';
    font-weight: 400;
    margin: 0;
    color: white;
}

h3 {
    font-size: clamp(2.8rem, 2.8rem + 1vw, 3.2rem);
    font-family: 'ClashDisplay-Variable', sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    color: white;
}

h4 {
    font-size: 24px;
    font-family: 'ClashDisplay-Variable', sans-serif;
    font-weight: 400;
    font-style: normal;
    margin: 0;
    color: white;
}

h5 {
    font-size: 18px;
    font-family: 'ClashDisplay-Variable', sans-serif;
    font-weight: 300;
    font-style: normal;
    text-transform: uppercase;
    margin: 0;
    color: white;
}

p {
    font-size: clamp(1.6rem, 1.6rem + 0.5vw, 2.4rem);
    font-family: 'ClashDisplay-Variable';
    font-weight: 300;
    font-style: normal;
    line-height: 1.5;
    margin: 0;
    color: white;
}

.Text--Style__Subhead {
    font-family: 'ClashDisplay-Variable';
    font-weight: 300;
    font-size: clamp(1.6rem, 1.6rem + .5vw, 2.4rem);
    color: white;
    letter-spacing: .04em;
    line-height: normal;
}

.Text--Style__Mini {
    font-family: 'ClashDisplay-Variable';
    font-weight: 300;
    font-size: clamp(1.4rem, 1.4rem + .6vw, 2rem);
    color: white;
    letter-spacing: .04em;
    line-height: normal;
}

.Emphasize {
    font-family: PP Editorial New;
    font-weight: 300;
    font-style: italic;
}

a {
    margin: 0;
    padding: 0;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* unvisited link */
a:link {
    color: white;
    transition: all .2s;
    text-decoration: none;
}
  
/* visited link */
a:visited {
    color: rgba(255, 255, 255, 50%);
    text-decoration: none;
}
  
/* mouse over link */
a:hover {
    color: var(--ruby);
    transition: all .2s;
    text-decoration: none;
}
  
  /* selected link */
  a:active {
    color: var(--ruby);
    text-decoration: none;
  }
  
.download-link {
    font-size: clamp(1.2rem, 1rem + 0.2vw, 1.4rem);
    font-family: 'ClashDisplay-Variable', sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 1.5;
    margin: 0;
    color: white;
    text-transform: uppercase;
    text-decoration: underline !important;
}

a.Emphasize--Link {
    font-family: PP Editorial New;
    font-weight: 300;
    font-style: italic;
    text-decoration: underline;
}

.Footer--Credit a.Emphasize--Link:hover {
color: var(--black);
}

a.footer-contact-detail:hover {
    color: var(--black);
}

.ruby {
    color: var(--ruby);
}

.black {
    color: black;
}

.hover-ruby {
    transition: all .2s;
}

.hover-ruby:hover {
    color: var(--ruby);
    transition: all .2s;
    cursor: pointer;
}

.hover-white {
    transition: all .2s;
}

button {
    padding: 0;
    margin: 0;
    border: 0;
    width: fit-content;
    border-radius: 8px;
}

.button {
    display: flex;
    font-size: 18px;
    font-family: 'ClashDisplay-Variable', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: .08rem;
    background-color: black;
    color: var(--ruby);
    cursor: pointer;
    outline: 2px solid var(--ruby);
    border-radius: 8px;
    width: fit-content;
    overflow: hidden;
}

.button-main {
    height: 24px;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.button-downarrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 48px;
    overflow: hidden;
    transform-origin: center;
    outline: 2px solid var(--ruby);
}

.button-rightarrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 48px;
    overflow: hidden;
    transform: rotate(-90deg);
    transform-origin: center;
    outline: 2px solid var(--ruby);
}

.button-arrow {
    height: 48px;
    width: 48px;
    position: relative;
    bottom: 24px;
}

.button-arrow-icon {
    height: 16px;
    padding: 16px 0;
    fill: var(--ruby);
}

.button:hover .button-arrow {
    bottom: -24px;
    transition: all .3s ease-in-out;
}

.grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    column-gap: 24px;
    padding: 0 64px;
}

.case-study-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    column-gap: 24px;
    row-gap: 120px;
    max-width: 1440px;
    padding: 0 64px 0 64px;
}

.border-top {
    border-top: 1px solid white;
}

.border-bottom {
    border-bottom: 1px solid white;
}

.border-left {
    border-left: 1px solid white;
}

.border-right {
    border-right: 1px solid white;
}

.spacer-320 {
    height: 320px;
    grid-column: 1 / span 12;
    width: 100%;
}

.spacer-240 {
    height: 240px;
    grid-column: 1 / span 12;
    width: 100%;
}

.spacer-160 {
    height: 160px;
    grid-column: 1 / span 12;
    width: 100%;
}

.spacer-120 {
    height: 120px;
    grid-column: 1 / span 12;
    width: 100%;
}

.spacer-80 {
    height: 80px;
    grid-column: 1 / span 12;
    width: 100%;
}

.spacer-40 {
    height: 40px;
    grid-column: 1 / span 12;
    width: 100%;
}

.spacer-24 {
    height: 24px;
    grid-column: 1 / span 12;
    width: 100%;
}

.img-container {
    overflow: hidden;
    width: 100%;
    /*height: 100%;*/
    object-fit: cover;
    border-radius: 16px;
}

.container {
    height: auto;
}

.case-study-container {
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.body-xl {
    font-size: clamp(2.8rem, 2.8rem + 0.8vw, 3.2rem);
    font-family: 'ClashDisplay-Variable', sans-serif;
    font-weight: 300;
    font-style: normal;
}

.body-large {
    font-size: clamp(2rem, 2rem + 1.6vw, 2.4rem);
    font-family: 'ClashDisplay-Variable', sans-serif;
    font-weight: 300;
    font-style: normal;
}

.body-sm {
    font-size: 1.8rem;
    font-family: 'ClashDisplay-Variable', sans-serif;
    font-weight: 300;
    font-style: normal;
    line-height: 160%;
}
/* NAV */

.nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px;
    background-color: none;
    transition: all .3s;
    z-index: 98;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.nav.scrolled{
    background-color: black;
    border-bottom: 1px solid white;
}

.nav-logo img {
    height: 32px;
    margin-left: 64px;
}

.nav-items {
    margin-right: 64px;
}

.nav-item {
    color: white;
    font-size: 18px;
    font-family: 'ClashDisplay-Variable', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1;
}

.nav-item:hover {
    color: var(--ruby);
}

.nav-item:nth-child(2) {
    margin: 0 40px;
}

#nav-icon4 {
    width: 40px;
    height: 40px;
    position: relative;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .5s ease-in-out;
    -moz-transition: .5s ease-in-out;
    -o-transition: .5s ease-in-out;
    transition: .5s ease-in-out;
    cursor: pointer;
    top: 8px;
    z-index: 100;
    display: none;
}
  
#nav-icon4 span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #ffffff;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

#nav-icon4 span:nth-child(1) {
  top: 0px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(2) {
  top: 12px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4 span:nth-child(3) {
  top: 24px;
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}

#nav-icon4.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}

#nav-icon4.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

#nav-icon4.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 25px;
  left: 8px;
}

/* SIDEBAR */

.hamburger-container {
    position: absolute;
    display: block;
    right: 24px;
}

/* .hamburger-container.scrolled {
    border-right: 2px solid white;
} */

.sidebar-menu {
    height: 100vh;
    width: 100%;
    position: fixed;
    left: -100%;
    top: 0;
    background-color: black;
    transform: translateX(0%);
    transition: 1s cubic-bezier(.78,.01,.27,.94);
}

.openNav {
    right: 0;
    transform: translateX(100%);
}

.hamburger-menu {
    height: 48px;
    width: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

/* .spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 2px;
    width: 32px;
    background-color: white;
    cursor: pointer;
    z-index: 100;
}

.hamburger-top {
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
}

.hamburgerTop {
    transform-origin: left center;
    transform: translateX(4px) rotate(45deg);
}

.hamburger-middle {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    margin: 9px 0;
    filter: opacity(1);
}

.hamburgerMiddle {
    filter: opacity(0);
}

.hamburger-bottom {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
}

.hamburgerBottom {
    transform-origin: left center;
    transform: translateX(4px) rotate(-45deg);
}

.sidebar-logo-container {
    height: 100%;
    width: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sidebar-logo {
    height: 48px;
    width: auto;
    padding: 24px 0;
}

.sidebar-logo img {
    height: 48px;
} */

/* input[type=checkbox]:checked ~ .hamburger-container > .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    opacity: 0;
}

input[type=checkbox]:checked ~ .hamburger-container > .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: translateY(7px) rotate(45deg);
    transform-origin: center bottom;
    position: relative;
}

input[type=checkbox]:checked ~ .hamburger-container > .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
    transform: translateY(-8px) rotate(-45deg);
    transform-origin: center top;
    position: relative;
} */

.discover-container {
    height: 240px;
    width: 64px;
    transform-origin: top center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: black;
}

.discover-container span {
    transform: rotate(90deg);
    display: flex;
    flex-direction: row;
}

.discover-container span p {
    margin-right: 16px;
    color: white;
}

.discover-arrow {
    height: 24px;
}

/* .back2top {
    overflow: hidden;
    z-index: 999;
    cursor: pointer;
    position: fixed;
    bottom: 32px;
    display: none;
    background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

.back2top-arrow {
    display: block;
    opacity: 50%;
    transition: opacity .3s;
    height: 32px;
    width: 32px;
}

.back2top-arrow:hover {
    opacity: 100%;
} */


/* FOOTER */

.footer{
    transition: all .3s;
}

.footer:hover {
    background-color: var(--ruby);
}
.footer-cta {
    grid-column: 2 / span 4;
    font-size: 48px;
}

.footer-contact-container {
    grid-column: 9 / span 3;
}

.footer-contact-list, .footer-nav-list {
    margin-top: 16px;
}

.footer-contact-detail, .footer-nav-item {
    font-size: 24px;
    font-family: 'ClashDisplay-Variable', sans-serif;
    font-weight: 400;
    font-style: normal;
    line-height: 1.5;
    margin: 0;
    color: white;
}

.footer-nav-item:hover {
    color: black;
}

.footer-contact-list li, .footer-nav-list li {
    width: fit-content;
}

.footer-nav-container {
    grid-column: 7 / span 2;
}

.contact-detail-linebreak {
    margin: 0 0 16px 0;
    border: 1px solid white;
    width: 100%;
}

.social-icons-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 24px;
}

.social-icons-container a {
    margin-right: 24px;
}

.cert-badge {
    margin-top: 24px;
    height: 120px;
}

/* .social-icon {
    width: 24px;
    height: 24px;
    background-color: white;
    margin-top: 24px;
    margin-right: 16px;
}

.instagram-icon {
    mask: url(../assets/images/icons/instagram-icon.svg);
    mask-size: 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    transition: all .2s;
}

.instagram-icon:hover {
    mask: url(../assets/images/icons/instagram-icon.svg);
    mask-size: 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    background-image: repeating-linear-gradient(45deg, #405DE6 0%, #833AB4 14%, #fd1d1d 30%, #fc9445 48%, #c52656 60%, #833AB4 74%,#405DE6 80%);
    background-position: 0% 0%;
    background-size: 1000%;
    background-repeat: repeat;
    animation: colors 2s infinite;
}

.behance-icon {
    mask: url(../assets/images/icons/behance-icon.svg);
    mask-size: 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    transition: all .2s;
}

.behance-icon:hover {
    mask: url(../assets/images/icons/behance-icon.svg);
    mask-size: 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #405DE6;
    background-position: 0% 0%;
    background-size: 1000%;
    background-repeat: repeat;
    animation: colors 2s infinite;
}

.linkedin-icon {
    mask: url(../assets/images/icons/linkedin-icon.svg);
    mask-size: 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    transition: all .2s;
}

.linkedin-icon:hover {
    mask: url(../assets/images/icons/linkedin-icon.svg);
    mask-size: 100%;
    mask-repeat: no-repeat;
    mask-position: center;
    background-color: #405DE6;
    background-position: 0% 0%;
    background-size: 1000%;
    background-repeat: repeat;
    animation: colors 2s infinite;
} */

.social-icon {
    height: 24px;
    fill: white;
    fill-rule:evenodd
}

@keyframes colors {
    0% {
        background-position: 0% 0%;
    }
    100% {
        background-position: 100% 100%;
    }
}

.Footer--Credit {
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
    bottom: 40px;
}

/* HERO SECTION */
.hero {
    height: calc(100vh - 2px);
}

.project-hero {
    overflow: hidden;
}

/* .hero-cta-container {
    margin-bottom: 24vh;
    grid-column: 2 / span 8;
    position: absolute;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
} */

.hero-cta-container {
    width: 100%;
    height: 100vh;
    grid-column: 1 / span 12;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;
}

.hero-subhead {
    color: white;
    font-weight: 400;
    font-size: clamp(1.6rem, 1.6rem + 2vw, 2.4rem);
    position: absolute;
    bottom: clamp(4rem, 4rem + 1.2vh, 8rem);
    text-align: center;
}

/* .hero-cta {
    font-weight: 600;
    color: var(--ruby);
    font-size: clamp(8rem, 8rem + 8vw, 32rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 96%;
    text-shadow: 0px 0 32px rgba(0, 0, 0, 50%);
} */

.hero-cta-italic {
    font-family: PP Editorial New;
    color: var(--ruby);
    font-size: clamp(6.4rem, 6.4rem + 6vw, 32rem);
    font-weight: 300;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    font-style: italic;
    position: relative;
}

.hero-cta-desc {
    color: white;
    text-align: right;
    text-shadow: 0px 0 8px #000000;
    filter: drop-shadow(0 0 16px black);
}

.homepage-hero-bg {
    width: 100%;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    overflow-x: hidden;
    min-height: 100vh;
}

.homepage-hero-bg-vid {
    /* width: 56vw; */
    max-width: 800px;
    height: auto;
    max-height: 72vh;
    /* filter: brightness(120%); */
    filter: contrast(80%);
    border-radius: 16px;
}

.callout {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.callout-container {
    grid-column: 2 / span 10;
    width: 32%;
    text-align: center;
}

.callout-icon {
    height: 6.4rem;
    width: auto;
}

.my-process-header {
    grid-column: span 12;
    margin-bottom: 40px;
}

.process-number {
    -webkit-text-stroke: 1px white;
    opacity: 40%;
    color: #000000;
    font-weight: 900;
    font-size: clamp(8rem, 8rem + 6vw, 32rem);
    position: relative;
    z-index: -1;
    bottom: -120px;
}

.my-process-section {
    grid-column: span 4;
    padding: 40px;
    min-height: 32rem;
    border: 1px solid white;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: end;
}

.content-section-01 {
    justify-content: center;
    align-items: center;
}

.my-process-section h3.Text--Style__Pointless {
    margin: 16px 0;
}

.Pointless-Subhead--Container {
    display: flex;
    gap: 1.6rem;
    align-items: center;
}

.Text--Style__Pointless {
    font-size: clamp(3.2rem, 3.2rem + 3vw, 8rem);
    font-family: PP Editorial New;
    line-height: 120%;
    font-weight: 300;
}

.case-study-section-name {
    font-size: clamp(3.2rem, 3.2rem + 2vw, 5.6rem);
    font-family: PP Editorial New;
    line-height: 120%;
    font-weight: 300;
}

.Pointless--Icon {
    height: 4.8rem;
}

.content-section-01-icon {
    width: clamp(4.8rem, 4.8rem + .5vw, 6.4rem);
    height: auto;
}

.content-section-02-icon {
    height: clamp(4.8rem, 4.8rem + .5vw, 6.4rem);
    width: auto;
}

.eyebrow {
    font-size: clamp(1.6rem, 1.6rem + .2vw, 2rem);
    color: var(--ruby);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.project-title {
    text-align: left;
    font-size: 7.2rem;
    font-size: clamp(5.4rem, 5.4rem + 2.4vw, 12rem);
    margin-top: 160px;
    grid-column: span 2;
}

.hero-background {
    position: absolute;
    width: 100vw;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.project-hero-container {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    grid-column: span 2;
}

.hero-bg-image {
    position: absolute;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index: 1;
}

.project-hero-img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.project-hero-bg-image {
    position: absolute;
    right: 0;
    grid-column: 6 / span 7;
    height: auto;
    width: 100%;
    object-fit:cover;
    z-index: 1;
    margin: 0 -64px;
}

/* .img-gradient {
    position:relative;
  }
  
  
  .img-gradient::before {
    content: '';
    position: absolute;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.7),rgba(0, 0, 0, 0.7));
  } */

/* .hero-bg-video {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    filter: opacity(60%);
} */

/* .tv-screen {
    height: 16vw;
    min-height: 200px;
    width: auto;
    z-index: 0;
    margin-top: 110px;
    transform: rotate(-1deg);

}

.hero iframe {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
} */

/* PORTFOLIO SECTION */

.section-header {
    margin: 0;
    color: white;
    grid-column: 1 / span 4;
}

.slick-arrow {
    z-index: 10;
}

.slider-container {
    grid-column: 1 / span 12;
    width: 100%;
}

section.portfolio .new-slider .slider-item {
    margin-right: 24px;
}

section.portfolio .new-slider .slick-list {
    padding-right: calc(((100vw - 128px) / 12) * 1 - 24px - 4px);
    margin-right: -64px;
}

section.portfolio .new-slider .slick-arrow {
    height: 64px;
    width: auto;
    /* top: 40px;
    right: 0;
    bottom: 0;
    left: 0; */
    transition: all .3s;
}

section.portfolio .new-slider .slick-prev {
    margin-left: 64px;
}

section.portfolio .new-slider .slick-next {
    margin-right: 64px;
}

.project-header {
    margin-top: 40px;
    color: white;
    font-size: 24px;
    color: white;
}

.portfolio-img-container { 
    height: 720px;
    width: 100%;
}

img.portfolio-image {
    width:100%;
    height:100%;
    object-fit: cover;
    transition: all .3s ease-in-out;
}

img.portfolio-image:hover {
    scale: 1.05;
    transition: all .3s ease-in-out;
}

.content-section-container {
    grid-column: 2 / span 4;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    width: 96%;
    gap: 2.4rem;
}

.content-section-img-container {
    grid-column: 6 / span 7;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-section-img {
    display: block;
    width: auto;
    max-height: 80vh;
}

/* EXPERIENCE SECTION */

.experience-col-01 {
    grid-column: 1 / span 4;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}

/* .bio-container {
    margin-top: 120px;
} */

.experience-stat-container {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    column-gap: 24px;
}

.stat-col-01 {
    grid-column: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.stat-col-02 {
    grid-column: 2;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
}

.experience-stat-num {
    font-size: clamp(3.2rem, 3.2rem + 12vw, 12rem);
    font-family: 'ClashDisplay-Variable';
    font-weight: 700;
    color: none;
    -webkit-text-stroke: 1px var(--ruby);
}

.experience-stat {
    position: relative;
    text-transform: uppercase;
    margin-left: -40px;
}

.experience-bio {
    position: relative;
    bottom: 0;
    color: white;
}

.experience-cta-container {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.experience-col-02 {
    grid-column: 6 / span 7;
}

.company-name {
    float: right;
    margin-bottom: 0;
}

/* unvisited link */
.company-name a:link {
    color: white;
    transition: all .2s;
    text-decoration: none;
}
  
/* mouse over link */
.company-name  a:hover {
    color: var(--ruby);
    transition: all .2s;
    text-decoration: none;
}

.job-title {
    margin-bottom: 8px;
    width: 60%;
}

.timeline {
    color: rgba(250, 250, 250, 50%);
}

.job-container {
    border: 1px solid white;
    border-radius: 16px;
    padding: 40px 24px;
}

/* SERVICES SECTION */

.services-container {
    list-style: none;
    counter-reset: item;
    grid-column: 1 / span 12;
    margin: 0;
    padding: 0;
}

.service-list-item {
    display: grid;
    grid-template-columns: 18px auto 32px;
    column-gap: 24px;
}

.services-container li {
    counter-increment: item;
    font-family: 'ClashDisplay-Variable', sans-serif;
    font-weight: 300;
    font-style: normal;
    color: white;
}
  
.services-container li:before {
    grid-column: 1;
    margin-right: 16px;
    content: "0" counter(item);
    border-radius: 100%;
    color: white;
    display: inline-block;
    opacity: 50%;
    font-size: 18px;
}

.service-header {
    grid-column: 2;
    font-size: 4.8rem;
    font-size: clamp(4.8rem, 4.8rem + 3.2vw, 12rem);
    font-family: 'ClashDisplay-Variable', sans-serif;
    font-weight: 500;
    font-style: normal;
    margin: 0;
    line-height: 1;
}

.service-list-item:hover .service-header{
    color: var(--ruby);
    transition: all .2s;
}

.service-arrow-container {
    height: 32px;
    width: 32px;
}

.service-arrow {
    fill: none;
    stroke: white;
    stroke-miterlimit: 10;
    stroke-width: 2px;
    transition: all .2s;
}

.service-list-item:hover .service-arrow {
    stroke: var(--ruby);
    transition: all .2s;
}

/* PORTFOLIO ITEM */

.project {
    padding: 0 64px 0 64px;
}

.project-info {
    grid-column: 2 / span 3;
}

.project-category, .project-detail-heading, .footer-contact-header, .footer-nav-header {
    font-size: 1.6rem;
    font-size: clamp(1.6rem, 1.6rem + 0.2vw, 1.8rem);
    font-family: 'ClashDisplay-Variable', sans-serif;
    font-weight: 300;
    font-style: normal;
    color: rgba(250, 250, 250, 50%);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-name {
    font-weight: 500;
    font-size: 72px;
    transition: all .2s;
}

.project-arrow-container {
    margin-top: 80px;
    height: 64px;
    width: 64px;
}

.project-arrow {
    fill: none;
    stroke: white;
    stroke-miterlimit: 10;
    stroke-width: 4px;
    transition: all .2s;
}

.project-arrow-container:hover .project-arrow {
    stroke: var(--ruby);
    cursor: pointer;
}

.project-arrow-container:hover .project-arrow {
    stroke: var(--ruby);
    cursor: pointer;
}

.project-cover-img-container {
    grid-column: 6 / span 7;
    height: 80vh;
}

/* SINGLE PROJECT PAGE */

.project-detail-container {
    display: flex;
    grid-gap: 24px;
}

.project-detail-heading-container {
    width: fit-content;
}

.project-detail-info-container {
    width: auto;
}

.project-detail {
    text-transform: uppercase;
    font-size: 1.6rem;
    font-size: clamp(1.6rem, 1.6rem + 0.2vw, 1.8rem);
    font-family: 'ClashDisplay-Variable', sans-serif;
    font-weight: 400;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.project-intro-container {
    margin: 0;
    color: white;
}

.project-info-header {
    margin-bottom: 24px;
}

/* .case-study-section-name {
    grid-column: 1 / span 2;
} */

.case-study-section-body {
    display: grid;
    grid-row-gap: 80px;
}

.case-study-img {
    overflow: hidden;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
}

.case-study-information-group {
    display: grid;
    grid-row-gap: 8px;
}

.case-study-compare-img-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 24px;
}

.case-study-compare-img {
    display: flex;
    flex-direction: column;
    grid-gap: 24px;
}

.project-img-section-01 {
    grid-column: 1 / span 7;
    height: 64vh;
    background-color: hotpink;
}

.project-img-section-01-alt {
    grid-column: 1 / span 4;
    height: 56vh;
    background-color: hotpink;
}

.img-container img {
    width:100%;
    height:100%;
    object-fit:cover;
}

.img-container video{
    width:100%;
    height:100%;
    object-fit:cover;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-gap: 24px;
    max-width: 1440px;
    padding: 0 64px 0 64px;
}

.project-img-landscape {
    grid-column: span 4;
}

.project-img-portrait {
    grid-column: span 2;
}

.project-img-full {
    grid-column: span 6;
}

.project-img-half {
    grid-column: span 3;
}

/* .project-img-span-3 {
    grid-column: span 4;
    height: 72vh;
    background-color: hotpink;
}

.project-img-span-4 {
    grid-column: span 1;
    height: 72vh;
    background-color: hotpink;
}

.project-img-span-6 {
    grid-column: span 4;
    height: 72vh;
    background-color: hotpink;
}

.project-img-span-8 {
    grid-column: span 2;
    height: 72vh;
    background-color: hotpink;
}

.project-img-span-9 {
    grid-column: span 4;
    height: 72vh;
    background-color: hotpink;
}

.project-img-span-12 {
    grid-column: span 4;
    height: 72vh;
    background-color: hotpink;
} */