/* =========================================================
   BANSI PICTURES — WORK PAGE
   LAYER 01 — CINEMATIC ARCHIVE
========================================================= */

:root {

    --work-black: #0b0b0b;
    --work-white: #eeeeea;
    --work-muted: rgba(238, 238, 234, .42);
    --work-faint: rgba(238, 238, 234, .14);
    --work-yellow: #f5c400;

}


/* =========================================================
   GLOBAL
========================================================= */

.work-page {

    margin: 0;

    background: var(--work-black);

    color: var(--work-white);

    overflow-x: hidden;

    font-family: "Manrope", sans-serif;

}


.work-page a {

    color: inherit;

    text-decoration: none;

}


.work-page button {

    font-family: inherit;

}


/* =========================================================
   LOADER
========================================================= */

.work-loader {

    position: fixed;

    inset: 0;

    z-index: 9999;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 18px;

    background: var(--work-black);

    pointer-events: none;

}


.work-loader span {

    font-family: "DM Mono", monospace;

    font-size: 8px;

    letter-spacing: .22em;

    color: rgba(255,255,255,.45);

}


.work-loader-line {

    width: 120px;

    height: 1px;

    background: var(--work-yellow);

    transform-origin: left center;

}


/* =========================================================
   HEADER
========================================================= */

.work-header {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    height: 90px;

    padding: 0 42px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 500;

    mix-blend-mode: difference;

}


.work-logo {

    display: flex;

    align-items: center;

    gap: 12px;

}


.work-logo-mark {

    width: 28px;

    height: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid rgba(255,255,255,.6);

    font-family: "Space Grotesk", sans-serif;

    font-size: 14px;

}


.work-logo-text {

    font-family: "DM Mono", monospace;

    font-size: 8px;

    letter-spacing: .15em;

}


.work-header-right {

    display: flex;

    align-items: center;

    gap: 30px;

}


.work-scene-counter {

    font-family: "DM Mono", monospace;

    font-size: 8px;

    letter-spacing: .16em;

    color: rgba(255,255,255,.5);

}


.work-menu-button {

    width: 38px;

    height: 38px;

    padding: 0;

    border: 1px solid rgba(255,255,255,.45);

    background: transparent;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

}


.work-menu-button span {

    width: 13px;

    height: 1px;

    background: #fff;

    display: block;

}


/* =========================================================
   HERO
========================================================= */

.work-hero {

    position: relative;

    height: 100vh;

    min-height: 700px;

    overflow: hidden;

    display: flex;

    align-items: center;

    justify-content: center;

    background:

        radial-gradient(
            circle at 70% 45%,
            rgba(255,255,255,.035),
            transparent 28%
        ),

        #0b0b0b;

}


.work-hero::before {

    content: "";

    position: absolute;

    inset: 0;

    opacity: .025;

    pointer-events: none;

    background-image:

        repeating-linear-gradient(
            0deg,
            transparent 0,
            transparent 3px,
            rgba(255,255,255,.25) 4px
        );

}


.work-hero::after {

    content: "";

    position: absolute;

    left: 50%;

    top: 0;

    bottom: 0;

    width: 1px;

    background: rgba(255,255,255,.045);

}


/* =========================================================
   HERO META
========================================================= */

.work-hero-meta {

    position: absolute;

    top: 130px;

    left: 42px;

    right: 42px;

    display: flex;

    justify-content: space-between;

    font-family: "DM Mono", monospace;

    font-size: 7px;

    letter-spacing: .18em;

    color: rgba(255,255,255,.32);

}


.work-hero-meta span:first-child {

    color: var(--work-yellow);

}


/* =========================================================
   HERO TITLE
========================================================= */

.work-hero-title {

    position: relative;

    z-index: 2;

    width: 82vw;

    margin-top: 30px;

}


.work-title-line {

    display: block;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(
        110px,
        18vw,
        310px
    );

    line-height: .72;

    letter-spacing: -.09em;

    font-weight: 300;

    text-align: center;

}


.work-title-line:last-child {

    margin-left: 11vw;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.55);

}


/* =========================================================
   HERO DESCRIPTION
========================================================= */

.work-hero-description {

    position: absolute;

    left: 9vw;

    bottom: 120px;

    display: flex;

    align-items: flex-start;

    gap: 15px;

    z-index: 5;

}


.work-yellow-line {

    width: 35px;

    height: 1px;

    margin-top: 7px;

    background: var(--work-yellow);

}


.work-hero-description p {

    width: 220px;

    margin: 0;

    font-size: 10px;

    line-height: 1.7;

    color: rgba(255,255,255,.4);

}


/* =========================================================
   HERO SCROLL
========================================================= */

.work-hero-scroll {

    position: absolute;

    right: 9vw;

    bottom: 110px;

    display: flex;

    align-items: center;

    gap: 15px;

    font-family: "DM Mono", monospace;

    font-size: 7px;

    letter-spacing: .15em;

    color: rgba(255,255,255,.35);

}


.work-scroll-line {

    width: 55px;

    height: 1px;

    background: rgba(255,255,255,.25);

}


/* =========================================================
   FPS MARK
========================================================= */

.work-hero-mark {

    position: absolute;

    right: 42px;

    top: 50%;

    transform: translateY(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 5px;

    font-family: "DM Mono", monospace;

    font-size: 7px;

    letter-spacing: .15em;

    color: rgba(255,255,255,.25);

}


.work-hero-mark span:first-child {

    color: var(--work-yellow);

}


/* =========================================================
   PROJECT ARCHIVE
========================================================= */

.work-archive {

    position: relative;

    background: var(--work-black);

}


/* =========================================================
   PROJECT
========================================================= */

.work-project {

    position: relative;

    min-height: 100vh;

    padding:
        120px 9vw
        140px;

    display: grid;

    grid-template-columns:
        70px
        minmax(0, 1fr);

    grid-template-rows:
        auto
        auto;

    column-gap: 25px;

    border-top:
        1px solid rgba(255,255,255,.08);

    overflow: hidden;

}


/* =========================================================
   PROJECT NUMBER
========================================================= */

.work-project-number {

    grid-column: 1;

    grid-row: 1 / span 2;

    display: flex;

    flex-direction: column;

    gap: 8px;

    padding-top: 5px;

    font-family: "DM Mono", monospace;

    font-size: 7px;

    letter-spacing: .14em;

    color: rgba(255,255,255,.25);

}


.work-project-number span:first-child {

    color: var(--work-yellow);

}


/* =========================================================
   PROJECT IMAGE
========================================================= */

.work-project-image {

    position: relative;

    width: 100%;

    height: min(68vh, 760px);

    overflow: hidden;

    background: #171717;

}


.work-project-image img {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    filter:
        grayscale(.25)
        contrast(1.05);

    transform: scale(1.04);

    transition:
        transform 1.4s cubic-bezier(.2,.7,.2,1),
        filter 1s ease;

}


.work-project:hover
.work-project-image img {

    transform: scale(1);

    filter:
        grayscale(0)
        contrast(1.05);

}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.work-project-image-overlay {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,.12),
            transparent 35%,
            rgba(0,0,0,.35)
        );

    pointer-events: none;

}


/* =========================================================
   FILM FRAME
========================================================= */

.work-project-frame {

    position: absolute;

    top: 20px;

    left: 20px;

    right: 20px;

    display: flex;

    justify-content: space-between;

    font-family: "DM Mono", monospace;

    font-size: 7px;

    letter-spacing: .14em;

    color: rgba(255,255,255,.55);

}


.work-project-frame span:first-child {

    color: var(--work-yellow);

}


/* =========================================================
   PROJECT INFO
========================================================= */

.work-project-info {

    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        170px
        auto;

    gap: 50px;

    align-items: end;

    padding-top: 35px;

}


.work-project-type {

    font-family: "DM Mono", monospace;

    font-size: 7px;

    letter-spacing: .18em;

    color: rgba(255,255,255,.3);

}


.work-project-info h2 {

    margin: 10px 0 0;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(
        40px,
        5vw,
        76px
    );

    line-height: .9;

    letter-spacing: -.06em;

    font-weight: 300;

}


.work-project-info p {

    margin: 20px 0 0;

    font-size: 10px;

    color: rgba(255,255,255,.35);

}


.work-project-details {

    display: grid;

    grid-template-columns: 1fr;

    gap: 6px;

    font-family: "DM Mono", monospace;

    font-size: 7px;

    letter-spacing: .1em;

}


.work-project-details span {

    margin-top: 10px;

    color: rgba(255,255,255,.22);

}


.work-project-details strong {

    font-weight: 400;

    color: rgba(255,255,255,.6);

}


/* =========================================================
   VIEW PROJECT
========================================================= */

.work-view-project {

    align-self: end;

    padding: 14px 18px;

    border: 1px solid rgba(255,255,255,.25);

    background: transparent;

    color: #fff;

    font-family: "DM Mono", monospace;

    font-size: 7px;

    letter-spacing: .14em;

    cursor: pointer;

    transition:
        background .3s ease,
        color .3s ease,
        border-color .3s ease;

}


.work-view-project span {

    display: inline-block;

    margin-left: 15px;

    color: var(--work-yellow);

}


.work-view-project:hover {

    background: #fff;

    color: #111;

    border-color: #fff;

}


/* =========================================================
   SHOWREEL
========================================================= */

.work-showreel {

    position: relative;

    min-height: 90vh;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    text-align: center;

    border-top:
        1px solid rgba(255,255,255,.08);

    overflow: hidden;

}


.work-showreel::before {

    content: "";

    position: absolute;

    width: 45vw;

    height: 45vw;

    border: 1px solid rgba(255,255,255,.05);

    border-radius: 50%;

}


.work-showreel-label {

    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 35px;

    font-family: "DM Mono", monospace;

    font-size: 7px;

    letter-spacing: .2em;

    color: rgba(255,255,255,.3);

}


.work-showreel-label span:first-child {

    width: 30px;

    height: 1px;

    background: var(--work-yellow);

}


.work-showreel h2 {

    margin: 0;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(
        70px,
        10vw,
        150px
    );

    line-height: .78;

    letter-spacing: -.075em;

    font-weight: 300;

}


.work-showreel h2 span {

    display: block;

    color: transparent;

    -webkit-text-stroke:
        1px rgba(255,255,255,.5);

}


.work-showreel-button {

    position: relative;

    z-index: 2;

    margin-top: 60px;

    width: 115px;

    height: 115px;

    border-radius: 50%;

    border: 1px solid rgba(255,255,255,.3);

    background: transparent;

    color: #fff;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 7px;

    font-family: "DM Mono", monospace;

    font-size: 7px;

    letter-spacing: .12em;

    cursor: pointer;

    transition:
        background .4s ease,
        color .4s ease;

}


.work-play-icon {

    font-size: 12px;

    color: var(--work-yellow);

}


.work-showreel-button:hover {

    background: #fff;

    color: #111;

}


.work-showreel-meta {

    position: absolute;

    left: 42px;

    right: 42px;

    bottom: 35px;

    display: flex;

    justify-content: space-between;

    font-family: "DM Mono", monospace;

    font-size: 7px;

    letter-spacing: .13em;

    color: rgba(255,255,255,.22);

}


/* =========================================================
   ENDING
========================================================= */

.work-ending {

    min-height: 85vh;

    padding:
        160px 30px
        120px;

    display: flex;

    align-items: center;

    justify-content: center;

    flex-direction: column;

    text-align: center;

    border-top:
        1px solid rgba(255,255,255,.08);

}


.work-ending > span {

    margin-bottom: 20px;

    font-family: "DM Mono", monospace;

    font-size: 8px;

    letter-spacing: .2em;

    color: rgba(255,255,255,.28);

}


.work-ending h2 {

    margin: 0;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(
        80px,
        12vw,
        190px
    );

    line-height: .75;

    letter-spacing: -.09em;

    font-weight: 300;

}


.work-ending h2 em {

    color: var(--work-yellow);

    font-style: normal;

}


.work-ending-link {

    margin-top: 60px;

    padding-bottom: 10px;

    border-bottom:
        1px solid rgba(255,255,255,.3);

    font-family: "DM Mono", monospace;

    font-size: 8px;

    letter-spacing: .15em;

}


.work-ending-link span {

    margin-left: 20px;

    color: var(--work-yellow);

}


/* =========================================================
   MENU OVERLAY
========================================================= */

.work-menu-overlay {

    position: fixed;

    inset: 0;

    z-index: 1000;

    padding: 120px 9vw;

    background: #111;

    opacity: 0;

    visibility: hidden;

    pointer-events: none;

}


.work-menu-overlay nav {

    display: flex;

    flex-direction: column;

    gap: 10px;

}


.work-menu-overlay nav a {

    display: flex;

    align-items: baseline;

    gap: 25px;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(
        50px,
        7vw,
        100px
    );

    line-height: .9;

    letter-spacing: -.06em;

    font-weight: 300;

}


.work-menu-overlay nav a span {

    font-family: "DM Mono", monospace;

    font-size: 8px;

    letter-spacing: .15em;

    color: var(--work-yellow);

}


.work-menu-close {

    position: absolute;

    top: 30px;

    right: 42px;

    padding: 10px;

    border: 0;

    background: transparent;

    color: #fff;

    font-family: "DM Mono", monospace;

    font-size: 8px;

    letter-spacing: .15em;

    cursor: pointer;

}


.work-menu-contact {

    position: absolute;

    left: 9vw;

    bottom: 60px;

}


.work-menu-contact span {

    display: block;

    margin-bottom: 10px;

    font-family: "DM Mono", monospace;

    font-size: 7px;

    letter-spacing: .18em;

    color: rgba(255,255,255,.25);

}


.work-menu-contact strong {

    display: block;

    max-width: 450px;

    font-family: "Space Grotesk", sans-serif;

    font-size: 42px;

    line-height: .9;

    font-weight: 300;

    letter-spacing: -.05em;

}


.work-menu-contact a {

    display: inline-block;

    margin-top: 25px;

    font-family: "DM Mono", monospace;

    font-size: 8px;

    letter-spacing: .15em;

    color: var(--work-yellow);

}


/* =========================================================
   PROJECT CINEMATIC OVERLAY
========================================================= */

.project-overlay {

    position: fixed;

    inset: 0;

    z-index: 2000;

    background: #0a0a0a;

    color: #eeeeea;

    visibility: hidden;

    opacity: 0;

    pointer-events: none;

    overflow: hidden;

}


/* =========================================================
   CLOSE
========================================================= */

.project-overlay-close {

    position: absolute;

    top: 32px;

    right: 42px;

    z-index: 30;

    display: flex;

    align-items: center;

    gap: 12px;

    padding: 8px;

    border: 0;

    background: transparent;

    color: rgba(255,255,255,.6);

    font-family: "DM Mono", monospace;

    font-size: 8px;

    letter-spacing: .16em;

    cursor: pointer;

}


.project-overlay-close span {

    font-size: 18px;

    line-height: 1;

    color: var(--work-yellow);

}


/* =========================================================
   COUNTER
========================================================= */

.project-overlay-counter {

    position: absolute;

    top: 35px;

    left: 42px;

    z-index: 30;

    display: flex;

    align-items: center;

    gap: 10px;

    font-family: "DM Mono", monospace;

    font-size: 7px;

    letter-spacing: .16em;

    color: rgba(255,255,255,.28);

}


.project-overlay-counter strong {

    color: var(--work-yellow);

    font-weight: 400;

}


/* =========================================================
   VISUAL
========================================================= */

.project-overlay-visual {

    position: absolute;

    top: 9vh;

    left: 7vw;

    width: 55vw;

    height: 78vh;

    overflow: hidden;

    background: #171717;

}


/* =========================================================
   IMAGE
========================================================= */

.project-overlay-image {

    width: 100%;

    height: 100%;

    display: block;

    object-fit: cover;

    transform:
        scale(1.08);

    filter:
        grayscale(.2)
        contrast(1.08);

}


/* =========================================================
   IMAGE SHADE
========================================================= */

.project-overlay-image-shade {

    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.08),
            transparent 55%,
            rgba(0,0,0,.35)
        );

    pointer-events: none;

}


/* =========================================================
   FILM FRAME
========================================================= */

.project-overlay-frame {

    position: absolute;

    top: 20px;

    left: 20px;

    right: 20px;

    display: flex;

    justify-content: space-between;

    font-family: "DM Mono", monospace;

    font-size: 7px;

    letter-spacing: .15em;

    color: rgba(255,255,255,.55);

}


.project-overlay-frame span:first-child {

    color: var(--work-yellow);

}


/* =========================================================
   FOCUS MARK
========================================================= */

.project-overlay-focus {

    position: absolute;

    left: 50%;

    top: 50%;

    width: 45px;

    height: 45px;

    transform:
        translate(-50%, -50%);

    border:
        1px solid rgba(255,255,255,.18);

}


.project-overlay-focus::before,
.project-overlay-focus::after {

    content: "";

    position: absolute;

    background:
        rgba(255,255,255,.3);

}


.project-overlay-focus::before {

    width: 1px;

    height: 8px;

    left: 50%;

    top: -4px;

}


.project-overlay-focus::after {

    width: 8px;

    height: 1px;

    left: -4px;

    top: 50%;

}


.project-overlay-focus span {

    position: absolute;

    width: 8px;

    height: 1px;

    right: -4px;

    top: 50%;

    background:
        rgba(255,255,255,.3);

}


/* =========================================================
   CONTENT
========================================================= */

.project-overlay-content {

    position: absolute;

    right: 7vw;

    top: 17vh;

    width: 29vw;

    min-width: 300px;

    z-index: 20;

}


/* =========================================================
   TITLE
========================================================= */

.project-overlay-type {

    display: block;

    margin-bottom: 20px;

    font-family: "DM Mono", monospace;

    font-size: 7px;

    letter-spacing: .2em;

    color: rgba(255,255,255,.3);

}


.project-overlay-title {

    margin: 0;

    font-family: "Space Grotesk", sans-serif;

    font-size: clamp(
        55px,
        6vw,
        100px
    );

    line-height: .78;

    letter-spacing: -.075em;

    font-weight: 300;

}


/* =========================================================
   DETAILS
========================================================= */

.project-overlay-details {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 20px;

    margin-top: 50px;

    padding-top: 20px;

    border-top:
        1px solid rgba(255,255,255,.12);

}


.project-overlay-details div {

    display: flex;

    flex-direction: column;

    gap: 8px;

}


.project-overlay-details span {

    font-family: "DM Mono", monospace;

    font-size: 6px;

    letter-spacing: .15em;

    color: rgba(255,255,255,.22);

}


.project-overlay-details strong {

    font-family: "DM Mono", monospace;

    font-size: 7px;

    letter-spacing: .08em;

    font-weight: 400;

    color: rgba(255,255,255,.6);

}


/* =========================================================
   SYNOPSIS
========================================================= */

.project-overlay-description {

    margin-top: 45px;

}


.project-overlay-description > span {

    display: block;

    margin-bottom: 12px;

    font-family: "DM Mono", monospace;

    font-size: 7px;

    letter-spacing: .18em;

    color: var(--work-yellow);

}


.project-overlay-synopsis {

    width: 85%;

    margin: 0;

    font-size: 11px;

    line-height: 1.75;

    color: rgba(255,255,255,.48);

}


/* =========================================================
   TRAILER
========================================================= */

.project-trailer-button {

    margin-top: 45px;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 0;

    border: 0;

    background: transparent;

    color: #fff;

    font-family: "DM Mono", monospace;

    font-size: 8px;

    letter-spacing: .14em;

    cursor: pointer;

}


.project-play-icon {

    width: 45px;

    height: 45px;

    border:
        1px solid rgba(255,255,255,.35);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 9px;

    color: var(--work-yellow);

    transition:
        background .3s ease,
        color .3s ease;

}


.project-trailer-button:hover
.project-play-icon {

    background: #fff;

    color: #111;

}


/* =========================================================
   NEXT PROJECT
========================================================= */

.project-next-button {

    position: absolute;

    right: 42px;

    bottom: 35px;

    z-index: 30;

    display: flex;

    align-items: center;

    gap: 15px;

    padding: 10px;

    border: 0;

    background: transparent;

    color: rgba(255,255,255,.45);

    font-family: "DM Mono", monospace;

    font-size: 7px;

    letter-spacing: .15em;

    cursor: pointer;

}


.project-next-button strong {

    color: var(--work-yellow);

    font-size: 18px;

    font-weight: 300;

}


/* =========================================================
   MOBILE OVERLAY
========================================================= */

@media (max-width: 767px) {

    .project-overlay {

        overflow-y: auto;

    }


    .project-overlay-visual {

        position: relative;

        top: auto;

        left: auto;

        width: calc(100% - 40px);

        height: 48vh;

        margin:
            90px 20px 0;

    }


    .project-overlay-content {

        position: relative;

        right: auto;

        top: auto;

        width: auto;

        min-width: 0;

        margin:
            35px 20px 100px;

    }


    .project-overlay-title {

        font-size: 65px;

    }


    .project-overlay-details {

        grid-template-columns:
            repeat(2, 1fr);

    }


    .project-overlay-close {

        top: 22px;

        right: 20px;

    }


    .project-overlay-counter {

        top: 27px;

        left: 20px;

    }


    .project-next-button {

        right: 15px;

        bottom: 20px;

    }

}
/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .work-header {

        height: 75px;

        padding: 0 20px;

    }


    .work-logo-text {

        font-size: 7px;

    }


    .work-scene-counter {

        display: none;

    }


    .work-hero {

        min-height: 650px;

    }


    .work-hero-meta {

        top: 100px;

        left: 20px;

        right: 20px;

    }


    .work-hero-title {

        width: 92vw;

    }


    .work-title-line {

        font-size: 28vw;

    }


    .work-title-line:last-child {

        margin-left: 7vw;

    }


    .work-hero-description {

        left: 20px;

        bottom: 75px;

    }


    .work-hero-scroll {

        right: 20px;

        bottom: 75px;

    }


    .work-hero-scroll span:first-child {

        display: none;

    }


    .work-hero-mark {

        right: 20px;

        top: 50%;

    }


    .work-project {

        min-height: auto;

        padding:
            80px 20px
            90px;

        display: block;

    }


    .work-project-number {

        margin-bottom: 18px;

    }


    .work-project-image {

        height: 62vh;

    }


    .work-project-info {

        display: block;

        padding-top: 25px;

    }


    .work-project-info h2 {

        font-size: 52px;

    }


    .work-project-details {

        margin-top: 30px;

    }


    .work-view-project {

        margin-top: 35px;

    }


    .work-showreel {

        min-height: 75vh;

    }


    .work-showreel::before {

        width: 90vw;

        height: 90vw;

    }


    .work-showreel-meta {

        left: 20px;

        right: 20px;

    }


    .work-ending {

        min-height: 70vh;

        padding:
            120px 20px;

    }


    .work-ending h2 {

        font-size: 22vw;

    }


    .work-menu-overlay {

        padding:
            100px 25px
            40px;

    }


    .work-menu-overlay nav a {

        font-size: 48px;

    }


    .work-menu-contact {

        left: 25px;

        bottom: 35px;

    }


    .work-menu-contact strong {

        font-size: 30px;

    }

}

/* =========================================================
   CINEMATIC FRAME FLASH
========================================================= */

.work-frame-flash {

    position: fixed;

    inset: 0;

    z-index: 900;

    background: #ffffff;

    opacity: 0;

    pointer-events: none;

    mix-blend-mode: screen;

}

/* =========================================================
   PROJECT FRAME CENTER MARK
========================================================= */

.work-frame-center {

    position: absolute;

    left: 50%;

    top: 50%;

    width: 25px;

    height: 1px;

    transform:
        translate(-50%, -50%);

    background:
        rgba(255,255,255,.25);

}


.work-frame-center::before,
.work-frame-center::after {

    content: "";

    position: absolute;

    top: -3px;

    width: 1px;

    height: 7px;

    background:
        rgba(255,255,255,.25);

}


.work-frame-center::before {

    left: 0;

}


.work-frame-center::after {

    right: 0;

}