@font-face {
    font-family: 'Baryton-Italic';
    src: url('fonts/Baryton-Italic.woff2') format('woff2'),
        url('fonts/Baryton-Italic.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans';
    src: url('fonts/InstrumentSans-Bold.woff2') format('woff2'),
        url('fonts/InstrumentSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Instrument Sans';
    src: url('fonts/InstrumentSans-Regular.woff2') format('woff2'),
        url('fonts/InstrumentSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --blue: #162E91;
    --yellow: #f36e2e;
    --white: #ffffff;
    --red: #F71735;
    --off-white: #ffffff;
    --black: #000;
    --nav-clearance: calc((2.5vw * 2));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: 'Instrument Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.15;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    overflow-x: hidden;
    background-color: var(--off-white);
    cursor: url('main/cursor.png'), auto;
}

body {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    position: relative;
    overflow-x: hidden;
    background-color: var(--off-white);
    color: #212529;
    font-family: 'Instrument Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

article,
aside,
figure,
footer,
header,
hgroup,
main,
nav,
section {
    display: block;
}

img {
    max-width: 100%;
    z-index: 1;
}

video {
    display: block;
    width: 1920px;
    max-width: 100vw;
    margin: 0 auto;
}

video.full {
    width: 100vw;
    z-index: 1 !important;
}

iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

progress {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    display: none;
    width: 100%;
    height: 20px;
    appearance: none;
    border: none;
    background-color: transparent;
    color: red;
    mix-blend-mode: difference;
}

progress::-webkit-progress-bar,
progress::-moz-progress-bar {
    background-color: transparent;
}

progress::-webkit-progress-value,
.scrolled-progress::-webkit-progress-value {
    background-color: #e9d16e;
}

progress::-moz-progress-value {
    background-color: var(--yellow);
    mix-blend-mode: difference;
}

.scrolled-progress::-moz-progress-value {
    background-color: #0c91d1;
    mix-blend-mode: difference;
}

h2 {
    font-family: 'Baryton-Italic', serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: -2.5px;
    text-align: left;
}

h2.title {
    font-size: 2.5rem;
    line-height: 2rem;
}

h3 {
    font-size: 1rem;
    font-weight: 300;
}

h4 {
    display: inline;
    vertical-align: top;
    font-family: 'Baryton-Italic', serif;
    font-weight: 400;
    letter-spacing: -2px;
    color: var(--white);
}

h5 {
    font-weight: 300;
}

p {
    position: relative;
    margin-top: 0;
    margin-bottom: 0.7rem;
    font-size: 0.9rem;
    line-height: 1.3;
    text-align: left;
}

.col-xs-12 h3 {
    padding: 1rem;
    text-align: left;
}

.col-md-6 {
    vertical-align: top;
}

.col-md-6 video {
    max-width: 100%;
    max-height: 95vh;
}

.container {
    max-width: 90%;
    margin: 0 auto;
}

.iframe-container {
    position: relative;
    padding-top: 56.25%;
    background-color: var(--blue);
}

.work-section {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
}

#top {
    position: absolute;
    top: 0;
    left: 0;
}

#main {
    margin-top: 0;
    z-index: 999999 !important;
}

#showreel {
    position: relative;
    z-index: 9999999999;
    width: 100vw;
    padding: 0;
    background-color: var(--blue);
}

.showreel {
    max-width: 100vw;
    box-shadow: none;
}

img.full {
    display: block;
    width: 100vw;
    margin-left: auto;
    margin-right: auto;
}

#fader {
    position: fixed;
    inset: 0;
    width:100vw;
    height:100vh;
    z-index: 99999999999;
    pointer-events: none;
    background: var(--black);
    animation-duration: 300ms;
    animation-timing-function: ease-in-out;
}

#fader.fade-out {
    opacity: 0;
    animation-name: fade-out;
}

#fader.fade-in {
    opacity: 1;
    animation-name: fade-in;
}

@keyframes fade-out {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

a {
    color: var(--red);
    text-decoration: none;
    background-color: transparent;
}

a:hover {
    color: var(--red);
    cursor: url('main/cursorhover.png') 0 32, pointer;
    text-decoration: underline;
    text-decoration-thickness: from-font;
}

input:hover,
textarea:hover {
    cursor: url('main/cursorinput.png'), text;
}

input,
select,
textarea {
    display: inline;
    width: 100%;
    padding: 10px 0;
    resize: vertical;
    border: none;
    background-color: transparent;
    box-sizing: border-box;
    color: var(--white);
    font-family: 'Instrument Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 1rem;
    transition: 0.2s;
}

input:focus,
textarea:focus {
    border-bottom: 10px solid var(--blue);
}

textarea {
    height: 5rem;
}

.form-group {
    width: 100%;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--yellow);
}

.button {
    display: inline-block;
    width: auto;
    margin-top: 5px;
    padding: 0.2rem 0.3rem;
    opacity: 1;
    pointer-events: all;
    color: var(--yellow);
    font-family: 'Instrument Sans', sans-serif;
    font-size: 0.9rem;
    text-align: center;
    text-transform: uppercase;
    transition: 0.2s;
}

.client-name {
    pointer-events: all;
    color: var(--yellow);
    font-family: 'Baryton-Italic', serif;
    font-size: 1.05em;
    font-weight: 400;
    letter-spacing: -1px;
    transition: 0.2s;
}

h4 .client-name {
    letter-spacing: -1px;
}

.brandon {
    position: absolute;
    top: 50vh;
    left: 50vw;
    z-index: 9999999 !important;
    display: none;
    width: 400px;
    height: 400px;
    transform: translate(-50%, -50%);
    background: url(main/me.jpg);
    background-color: magenta;
    background-size: cover;
    transition: 0.2s;
}

.name {
    display: inline;
    cursor: url('main/cursorhover.png') 0 32, pointer;
}

.name:hover .brandon {
    display: block;
    opacity: 1;
    cursor: url('main/cursorhover.png') 0 32, pointer;
    transition: 0.2s;
}

#cursor-label {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999999;
    display: none;
    pointer-events: none;
    opacity: 0;
    transform: translate(6px, 10px);
    color: var(--white);
    font-family: 'Baryton-Italic', serif;
    font-size: 4rem;
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -5.5px;
    text-align: left;
    white-space: nowrap;
    mix-blend-mode: difference;
    transition: opacity 0.2s ease;
}

#cursor-label .cursor-title,
#cursor-label .cursor-meta,
#cursor-label .cursor-meta span {
    display: block;
}

#cursor-label .cursor-meta {
    margin-top: 0.5rem;
    font-family: 'Instrument Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: 0;
    white-space: normal;
}

#landing {
    position: relative;
    height: 100svh;
    padding-bottom: 5%;
    overflow: hidden;
    background-color: var(--black);
    opacity: 1;
    transition: 0.5s;
}

#landing-project {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: var(--black);
}

#landing-project img.hero {
    position: absolute;
    top: 50%;
    left: 50.5%;
    max-width: 70%;
    max-height: 70%;
    transform: translate(-50%, -50%);
}

#landing-project .title {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 10;
    width: 100%;
    margin: 0;
    transform: translate(-50%, -50%);
    color: var(--yellow);
    font-size: 3.5rem;
    mix-blend-mode: exclusion;
}

#landing-project #hello {
    z-index: -3;
}

#hello {
    position: fixed;
    top: 50%;
    left: 0;
    z-index: 99999999980;
    display: inline-block;
    width: auto;
    float: left;
    opacity: 1;
    pointer-events: none;
    transform: translate(0, -50%);
    text-align: center;
    transition: 0.2s;
}

#hello h1 {
    z-index: 1;
    margin-top: 0;
    font-family: 'Instrument Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    line-height: 3rem;
    letter-spacing: -2px;
    text-decoration: none;
}

#hello a {
    transition: 0.2s;
}

#hello a:hover {
    color: var(--yellow);
    text-decoration: none;
}

#hello.hello-light {
    z-index: 99999999980;
    mix-blend-mode: normal;
    transition: 0.2s ease;
}

.hello-dark {
    z-index: 99999999980;
    mix-blend-mode: difference;
    transition: 0.2s ease;
}

svg.logo {
    min-width: 150vw;
    max-width: none;
    padding: 0 2.5%;
}

svg.logo.desktop,
.hello-light svg.logo.desktop {
    color: var(--yellow);
}

.hello-dark svg.logo.desktop {
    color: var(--white);
    transition: 0.2s ease;
}

#hello svg.logo.desktop,
#hello svg.logo.desktop * {
    fill: currentColor;
}

svg.logo-slider {
    position: absolute;
    top: 50%;
    bottom: 50%;
}

.logo-slider {
    width: 100%;
    height: 100%;
}

.logo-slider .desktop {
    display: block !important;
}

.logolanding.splide,
.work-scroll.splide {
    visibility: visible;
}

.logolanding.splide {
    display: block;
    width: 150vw;
    max-width: 100%;
    overflow: hidden;
    opacity: 1;
    transition: opacity 450ms ease;
}

.logolanding.splide.is-logo-hidden {
    opacity: 0;
}

.logolanding .splide__list,
.work-scroll .splide__list {
    transition-timing-function: linear !important;
}

.logolanding .splide__list {
    display: flex !important;
}

.logolanding .splide__slide {
    display: flex;
    flex: 0 0 100vw;
    align-items: center;
    justify-content: flex-start;
    width: 150vw;
}

.logolanding.logo-marquee,
.logolanding.logo-marquee .logo-slider,
.logolanding.logo-marquee .logo {
    pointer-events: auto;
}

.logolanding.logo-marquee {
    touch-action: pan-y;
}

.logolanding.logo-marquee:not(.thing2) {
    cursor: grab;
}

.logolanding.logo-marquee:not(.thing2).is-dragging {
    cursor: grabbing;
}

.thing2.logolanding.logo-marquee,
.thing2.logolanding.logo-marquee .logo-slider,
.thing2.logolanding.logo-marquee .logo,
.thing2.logolanding.logo-marquee.is-dragging,
.thing2.logolanding.logo-marquee.is-dragging .logo-slider,
.thing2.logolanding.logo-marquee.is-dragging .logo {
    cursor: auto !important;
}

nav {
    position: fixed;
    top: 1%;
    right: 5%;
    z-index: 30;
    width: 25px;
    height: 60px;
    color: var(--black);
}

.back-to-top,
.back-to-top-landing,
.close {
    width: 32px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: 50%;
}

.back-to-top,
.back-to-top-landing {
    height: 19px;
    padding: 25px;
    opacity: 0;
    pointer-events: none;
    transform: rotate(180deg);
    transition: 0.2s;
    -webkit-transition: 0.2s;
    background-image: url(main/downArrow.svg);
}

.back-to-top {
    display: block;
    margin-top: 0.5rem;
}

.back-to-top-landing {
    display: none;
}

.close {
    height: 32px;
    padding: 25px;
    opacity: 1;
    pointer-events: all;
    transition: 0.2s;
    -webkit-transition: 0.2s;
    background-image: url(main/close.svg);
    filter: invert(44%) sepia(98%) saturate(7491%) hue-rotate(343deg) brightness(97%) contrast(100%);
}

.show-back-to-top {
    display: block;
    pointer-events: all;
    opacity: 1;
    transition: 0.2s;
    -webkit-transition: 0.2s;
}

.show-back-to-top-landing {
    pointer-events: all;
    opacity: 1;
    transition: 0.2s;
    -webkit-transition: 0.2s;
}

a.close:hover {
    filter: invert(80%) sepia(69%) saturate(1245%) hue-rotate(332deg) brightness(96%) contrast(101%);
    cursor: url('main/cursorclose.png'), pointer !important;
}

.show-back-to-top:hover {
    filter: invert(23%) sepia(80%) saturate(5229%) hue-rotate(342deg) brightness(95%) contrast(103%);
    cursor: url('main/cursorhover.png') 0 32, pointer;
}

.nav {
    position: fixed;
    bottom: 0;
    z-index: 99999999990;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100vw;
    padding: 2.5%;
    padding-bottom: 1em;
    text-align: center;
}

.nav a:hover {
    text-decoration: none;
}

.nav .summary {
    display: none;
    width: 100%;
    margin: 0 2px;
    margin-top: 5px;
    padding: 0.2rem 0.5rem;
    color: var(--yellow);
    font-size: 0.9rem;
    text-decoration: none;
    transition: 0.2s;
}

.nav .summary:empty::before {
    content: 'Design → Execution for Food, Beverage & Culture.';
}

.nav .summary-state {
    display: inline-flex;
    grid-area: stack;
    align-items: center;
    white-space: nowrap;
    transition:
        opacity 0.2s ease,
        transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}

.nav .summary-state-hover {
    opacity: 0;
    transform: translateY(0.45em);
}

.nav .summary-arrow {
    display: inline-block;
    transform-origin: 50% 50%;
    transition: transform 0.2s cubic-bezier(0.33, 1, 0.68, 1);
}

.nav .button {
    color: var(--yellow);
    transition: 0.2s;
}

.summary-mobile {
    position: fixed;
    width: 100%;
    margin: 0 2px;
    margin-top: 25px;
    padding: 0.2rem 0.5rem;
    color: var(--yellow);
    font-size: 0.9rem;
    text-align: center;
    text-decoration: none;
}

.summary-mobile::before {
    content: 'Design → Execution for Food, Beverage & Culture.';
}

.scrolled-nav,
.scrolled-nav .button,
.scrolled-nav .summary,
.scrolled-nav .summary-mobile {
    color: #fff !important;
    mix-blend-mode: exclusion;
    transition: 0.2s;
}

#about {
    position: relative;
    z-index: 99;
    box-sizing: border-box;
}

#about .client-name {
    color: var(--blue);
}

#about .client-name:hover {
    color: var(--red);
    transition: 0.2s;
}

#about #landing-text-sub {
    width: 100%;
    max-width: 100vw;
    margin-top: 0;
    margin-bottom: 0;
    padding: 5vw;
    color: var(--black);
    text-align: left;
}

#landing-text-sub h1 {
    position: relative;
    z-index: 1;
    margin: 0;
    padding-top: 0;
    padding-bottom: 1rem;
    color: var(--black);
    font-family: 'Instrument Sans', Arial, Helvetica, 'Helvetica Neue', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    line-height: 1.4rem;
    letter-spacing: -0.5px;
    pointer-events: none;
    vertical-align: top;
}

#landing-text-sub h3 {
    display: inline;
    vertical-align: top;
    color: var(--white);
    font-family: 'Baryton-Italic', serif;
    font-weight: 400;
    letter-spacing: -1px;
}

.sub-page-pull-text {
    display: inline-block;
    position: relative;
    margin: 0;
    padding-bottom: 2rem;
    /* color: var(--yellow); */
    font-family: 'Baryton-Italic', serif;
    font-size: 2rem;
    line-height: 2.25rem;
    text-align: left;
    vertical-align: top;
}

#contact {
    position: relative;
    z-index: 9999999999;
    padding: 2.5vh 0;
    background-color: var(--black);
    color: var(--yellow);
}

#contact .col-md-6 {
    vertical-align: top;
}

#contact h2 {
    margin-top: 20px;
    margin-bottom: 40px;
    color: var(--yellow);
}

#contact h4 {
    margin-bottom: 0;
    font-size: 2rem;
}

#contact h4 a {
    color: var(--white);
}

#contact h4 a:hover {
    color: var(--yellow);
}

#contact button {
    width: auto;
    padding: 10px 15px;
    margin-bottom:10px;
    border: none;
    background-color: var(--yellow);
    color: var(--black);
    cursor: url('main/cursorhover.png') 0 32, pointer;
    font-family: 'Instrument Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 1rem;
    letter-spacing: -0.1px;
    text-transform: uppercase;
    transition: 0.2s;
}

#contact button:hover {
    border-radius: 30px;
    background-color: var(--blue);
    color: var(--yellow);
}

#footer {
    position: relative;
    z-index: 10;
        padding: 0 0 var(--nav-clearance);
        padding-top: 5%;
        padding-bottom:15%;
    background-color: var(--black);
    text-align: center;
}

#footer .col-md-6 {
    vertical-align: middle;
}

#footer h5 {
    max-width: 250px;
    margin: 0 0.5rem 5%;
    color: var(--yellow);
    font-size: 1rem;
    line-height: 1.25rem;
}

#footer h5 a {
    display: block;
    color: var(--yellow);
    text-transform: capitalize;
    transition: 0.2s;
}

#footer h5 a:hover {
    color: var(--red);
}

#footer.homefooter-featured {
    display: flex;
    flex-direction: column;
    background: var(--blue);
    border-top: 2px solid var(--white);
    text-align: left;
}

#footer.homefooter-featured .container.footer-top {
    display: flex;
    flex-direction: row;
    gap: 1.25rem;
    align-items: flex-start;
    margin: 0 auto;
}

 #footer.homefooter-featured .footer-col {
        max-width: 400px;
    }

#footer.homefooter-featured .footer-col p,
#footer.homefooter-featured .footer-col a {
    margin: 0;
    color: var(--white);
    font-size: 0.9rem;
    line-height: 1.2rem;
    letter-spacing: 0;
}

#footer.homefooter-featured .footer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
}

#footer.homefooter-featured .footer-links a {
    text-transform: none;
    transition: color 0.2s;
}

#footer.homefooter-featured .footer-links a:hover {
    color: var(--yellow);
}

#footer.homefooter-featured .footer-logo-stage {
    overflow: hidden;
    width: 90%;
    margin: 0 auto;
}

#footer.homefooter-featured .footer-logo-stage .logo.desktop {
    color: var(--yellow);
}

#footer.homefooter-featured .footer-logo-stage svg.logo.desktop {
    display: block;
    width: 100%;
    max-width: none;
    min-width: 0;
    height: auto;
    margin: 20px auto 0;
    padding: 0;
}

.preload .nav,
.preload .logolanding .logo.desktop,
.preload .summary-mobile {
    opacity: 0;
}

#posters {
    display: flex;
    align-items: center;
    height: 120vh;
}

.work-scroll {
    padding-top: 25vh;
    padding-bottom: 25vh;
}

.work-scroll.splide {
    width: 100%;
}

.work-scroll.splide img {
    max-width: none;
}

.splide__list,
.splide__track,
.project-swiper,
.project-swiper .splide__slide {
    cursor: url(main/cursorresize.png) 16 16, ew-resize;
}

.splide__list {
    transition-timing-function: linear !important;
}

.splide__track {
    overflow: visible !important;
}

.work-scroll .splide__list {
    align-items: center !important;
    margin: 0 auto;
}

.work-scroll .splide__slide {
    display: flex;
    width: auto;
    max-width: 250px;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    pointer-events: all;
    transform: translateZ(0);
}

.work-scroll .splide__slide img,
.work-scroll .splide__slide video {
    display: block;
    width: 250px;
    height: auto;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    transform: scale(1);
    transition: ease 0.2s;
}

.work-scroll .splide__slide video {
    z-index: 1;
}

.work-scroll.marquee .splide__slide {
    margin: 0 75px;
}

.project-swiper {
    width: 100%;
    padding: 0 5vw;
}

.project-swiper .splide__track,
.project-swiper .splide__list {
    align-items: center;
}

.project-swiper .splide__slide {
    display: flex;
    width: auto;
    height: 300px;
    margin: 50px 0;
    align-items: stretch;
    justify-content: center;
}

.project-swiper .splide__slide img,
.project-swiper .splide__slide video {
    display: block;
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
}

#wrapper {
    width: 100%;
    margin: 0 auto;
    padding: 25px 0;
}

#wrapper h3,
#wrapper h5 {
    text-align: center;
}

#wrapper h5 {
    margin-left: 10px;
    text-align: left;
}

#wrapper video {
    width: auto;
}

section#magazine-1,
#magazine-1 {
    padding: 2rem 0;
    background-color: #fff;
}

#virgin-5 {
    padding: 50px 0;
    text-align: center;
}

#virgin-5 p {
    padding: 2rem 0;
}


@media (min-width: 769px) {
    #contact {
        padding: 100px 0px;
    }


    .back-to-top-landing,
    .show-back-to-top-landing {
        display: block;
    }

    .summary-mobile {
        display: none;
    }

    .nav .summary {
        display: grid;
        grid-template-areas: 'stack';
        align-items: center;
        width: auto;
        cursor: url('main/cursorhover.png') 0 32, pointer;
    }

    .nav .summary:hover .summary-state-default {
        opacity: 0;
        transform: translateY(-0.45em);
    }

        .button:hover {
    letter-spacing: 20px;
}

    .nav .summary:hover .summary-state-hover {
        opacity: 1;
        transform: translateY(0);
    }

    .nav .summary:hover .summary-state-default .summary-arrow {
        transform: rotate(-90deg);
    }

    .nav .summary:hover .summary-state-hover .summary-arrow {
        transform: rotate(-90deg);
    }

    #cursor-label {
        display: block;
    }

    #hello {
        left: 50%;
        padding: 2rem;
        transform: translate(-50%, -50%);
    }

    #hello h1 {
        font-size: 3.2rem;
        line-height: 2rem;
    }

    .name {
        pointer-events: all;
    }

    .logolanding.splide {
        width: 100vw !important;
    }

    .logolanding .splide__slide {
        width: 100vw !important;
        justify-content: center;
    }

    nav {
        top: 5%;
    }

    #landing {
        height: 100vh;
        padding-bottom: 0;
        max-height: -webkit-fill-available;
    }

    #landing-project {
        z-index: 0 !important;
    }

    #landing-project img.hero {
        position: fixed;
        z-index: 0 !important;
        opacity: 1;
        transition: 0.2s;
    }

    #landing-project img.hero.fade {
        opacity: 0;
        transition: 0.2s;
    }

    #landing-project .title {
        font-size: 8rem;
        line-height: 7rem;
    }

    svg.logo {
        min-width: 0;
        width: 100vw;
    }

    video.full,
    img.full {
        position: relative;
        z-index: 1 !important;
        padding: 2.5vw;
    }

    .work-scroll.splide.is-dragging a {
        pointer-events: none !important;
    cursor: default;
}

.logolanding.splide.is-logo-hidden,
.logolanding.splide.is-logo-hidden *,
.logolanding.logo-marquee.is-logo-hidden,
.logolanding.logo-marquee.is-logo-hidden * {
    pointer-events: none !important;
    cursor: default !important;
}

    .work-scroll.splide .splide__slide {
        margin: 0 250px;
        background: var(--blue);
        cursor: url('main/cursorhover.png') 0 32, pointer;
    }

    .work-scroll.marquee .splide__slide {
        margin: 0 162px;
    }

    .work-scroll.splide .splide__slide a,
    #posters .work-scroll.splide .splide__slide a {
        pointer-events: none;
    }

    #main.work-section .work-scroll.splide .splide__slide a {
        pointer-events: auto;
    }

    .work-scroll.splide .splide__slide:hover img,
    .work-scroll.splide .splide__slide:hover video {
        transform: scale(1.25);
        transition: ease 0.2s;
        -webkit-transition-duration: 0.2s;
    }

    .work-scroll.splide .splide__slide:hover p {
        transition-delay: 0.05s;
        -webkit-transition-delay: 0.05s;
        -webkit-transition-duration: 0.2s;
        transition-duration: 0.2s;
    }

    .splide figure,
    .work-scroll.splide figure {
        background-color: rgba(0, 0, 255, 1);
    }

    .splide figure figcaption {
        display: initial;
    }

    .work-scroll.splide figure img,
    .work-scroll.splide figure video {
        opacity: 1;
    }

    #about #landing-text-sub {
        padding: 2.5vw;
    }

    #landing-text-sub h1 {
        font-size: 1.2em;
        line-height: 1.15em;
    }

    .sub-page-pull-text {
        font-size: 2.2rem;
        line-height: 2.5rem;
    }

    .splide .splide__slide p {
        color: var(--white);
        opacity: 0;
        -webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
        transition: opacity 0.2s, transform 0.2s;
    }

    section#magazine-1 {
        padding: 4rem 0;
    }

    #virgin-5 p {
        padding-left: 1rem;
    }

    h1 {
        font-size: 5rem;
    }

    h2.title {
        font-size: 4rem;
        line-height: 3.5rem;
        letter-spacing: -6px;
    }

    h3 {
        font-size: 1.5rem;
    }

    section .container {
        width: 95vw;
        max-width:95vw;
    }

    .project-swiper .splide__slide {
        height: 650px;
        margin: 0;
    }

    #footer.homefooter-featured .footer-logo-stage {
        width: 95vw;
    }
}


@media (min-width: 992px) {
    nav {
        top: 2.5%;
        right: 2%;
    }

    .back-to-top,
    .back-to-top-landing,
    .show-back-to-top-landing,
    .close {
        padding: 1rem;
    }

    #footer {
        width: 100%;
        padding: 0 0 var(--nav-clearance);
    }

    #footer.homefooter {
        margin-top: 0 !important;
    }

.container {
    max-width: 95%;
    margin: 0 auto;
}

    #footer .container {
        display: flex;
        width:100%;
        padding: 2.5rem 0 0;
        align-items: center;
    }

    footer {
        align-content: center;
        text-align: center;
    }

    footer p {
        display: inline-block;
        width: auto;
        margin: 1rem 6rem 1.2rem;
        color: var(--black);
        font-size: 1rem;
        letter-spacing: -0.5px;
        text-align: left;
        text-transform: lowercase;
    }

    #footer.homefooter-featured .container.footer-top {
        flex-direction: row;
        gap: 8vw;
             width: 95vw;
    }

    #footer.homefooter-featured .footer-col {
        max-width: 260px;
    }

    #footer.homefooter-featured .footer-logo-stage {
        width: 95vw;
    }

    #footer.homefooter-featured .footer-logo-stage svg.logo.desktop {
        width: 100%;
        height: auto;
        margin: 40px auto;
        padding: 0;
    }

    .container {
        width: 80vw;
    }

    #wrapper {
        max-width: 100vw;
        padding: 20vh 0;
    }

    .col-md-6 {
        display: inline-block;
        width: 49%;
        margin-right: 0;
    }

    .col-md-6 p {
        max-width: 40vw;
        margin: 0 auto 0.7rem;
        padding-right: 15vw;
    }

    .col-md-6 .sub-page-pull-text {
        max-width: 600px;
        margin-top: -10px;
    }

    .sub-page-pull-text {
        margin-right: 13%;
        font-size: 3.5rem;
        line-height: 4rem;
        letter-spacing: -4px;
    }

    #about {
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {
    :root {
        --nav-clearance: calc((1vw * 2));
    }

    .nav {
        padding: 1% 2%;
    }

    .work-scroll {
        padding-top: 60vh;
        padding-bottom: 60vh;
    }

    #about #landing-text-sub h1 {
        max-width: 600px;
        font-size: 1.2rem;
        line-height: 1.5rem;
    }

    #landing-project .title {
        font-size: 10rem;
        line-height: 8rem;
    }

    h2 {
        font-size: 3.5rem;
    }

    h2.title {
        font-size: 5rem;
        line-height: 4.2rem;
    }

    .splide figure {
        width: 30%;
        margin: 9vw;
        transition: 6s;
    }

    .splide figure h2 {
        font-size: 9rem;
        line-height: 7rem;
    }

    .splide figure p {
        font-size: 1.2rem;
        line-height: 1.5rem;
    }

    .splide figure:hover {
        border-radius: 50%;
        transition: 0.2s ease;
    }

    .splide__slide h2 {
        color: var(--yellow);
        font-size: 5.5rem;
        letter-spacing: -5px;
        text-align: center;
    }

    .work-scroll.splide {
        max-width: 100%;
    }

    section .container {
        max-width: 1600px;
        padding: 10vh 0;
    }

    .show-back-to-top-landing:hover,
    .show-back-to-top:hover {
        filter: invert(23%) sepia(80%) saturate(5229%) hue-rotate(342deg) brightness(95%) contrast(103%);
        cursor: url('main/cursor-up.png') 19 -19, pointer;
    }

    #footer.homefooter-featured .footer-logo-stage {
        display: flex;
        justify-content: center;
        overflow: hidden;
        width: 95vw;
        max-width: 1600px;
        margin: 0 auto;
    }

    #footer.homefooter-featured .footer-logo-stage svg.logo.desktop {
        min-width: 0;
        width: 100%;
        padding: 0;
        margin: 40px auto;
    }
}

@media (min-width: 1500px) {
    .splide figure {
        width: 30%;
        margin: 9vw;
    }
}

@media (min-width: 1800px) {
    #about #landing-text-sub h1 {
        max-width: 40vw;
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .splide figure h2 {
        font-size: 14rem;
        line-height: 11rem;
    }
}

@media (min-width: 2500px) {
    #landing-project .title,
    #main .splide figure h2 {
        font-size: 16rem;
        line-height: 13rem;
    }

    #main .splide figure h2 {
        width: 200%;
        margin-bottom: 1rem;
    }

    #contact h4 {
        font-size: 3rem;
    }

    #hello {
        padding: 5.5rem;
    }

    #hello h1 {
        font-size: 4.5rem;
    }

    h2 {
        font-size: 4rem;
    }


    .button {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }

    .splide figure p {
        font-size: 1.7rem;
        line-height: 2.3rem;
    }
}
