:root {

    --orange: #f04422;
    --orange-dark: #d93b1b;

    --black: #080808;
    --black-soft: #111111;

    --white: #f5f1e8;
    --white-pure: #ffffff;

    --gray: #b9b5ae;
    --gray-dark: #77736c;

    --border: rgba(8, 8, 8, 0.17);
    --border-light: rgba(245, 241, 232, 0.18);

    --heading:
        "Space Grotesk",
        Arial,
        sans-serif;

    --body:
        "DM Sans",
        Arial,
        sans-serif;
}


/* =====================================================
   RESET
===================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    width: 100%;
    min-height: 100vh;

    background: var(--white);
    color: var(--black);

    font-family: var(--body);

    overflow-x: hidden;
}

body.menu-open,
body.popup-open {
    overflow: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
}

button,
a {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    border: none;
    background: none;
    cursor: pointer;
}


/* =====================================================
   CURSOR
===================================================== */

.cursor-dot {
    position: fixed;

    width: 6px;
    height: 6px;

    background: var(--orange);

    border-radius: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;

    z-index: 99999;
}


.cursor-ring {
    position: fixed;

    width: 34px;
    height: 34px;

    border: 1px solid rgba(240, 68, 34, 0.7);

    border-radius: 50%;

    transform: translate(-50%, -50%);

    pointer-events: none;

    z-index: 99998;

    transition:
        width 0.25s ease,
        height 0.25s ease,
        background 0.25s ease;
}


.cursor-ring.hover {
    width: 54px;
    height: 54px;

    background:
        rgba(240, 68, 34, 0.08);
}


@media (pointer: coarse) {

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

}


/* =====================================================
   GLOBAL
===================================================== */

.container {
    width:
        min(
            calc(100% - 100px),
            1460px
        );

    margin-inline: auto;
}


.section-space {
    padding: 120px 0;
}


.section-top {
    display: grid;

    grid-template-columns:
        80px 1fr;

    align-items: start;

    gap: 25px;

    margin-bottom: 75px;
}


.section-number {
    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.2em;
}


.label {
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.25em;

    text-transform: uppercase;
}


.section-line {
    width: 100%;
    height: 1px;

    margin-top: 16px;

    background:
        rgba(8, 8, 8, 0.17);
}


.section-top-light {
    color: var(--white);
}


.section-top-light .section-line {
    background:
        rgba(245, 241, 232, 0.2);
}


.eyebrow {
    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.28em;

    text-transform: uppercase;
}


/* =====================================================
   BUTTONS
===================================================== */

.btn {
    display: inline-flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    min-width: 190px;

    padding: 17px 20px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.13em;

    text-transform: uppercase;

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        color 0.3s ease;
}


.btn span {
    font-size: 18px;
}


.btn-dark {
    background: var(--black);
    color: var(--white);
}


.btn-dark:hover {
    background: var(--orange);
    color: var(--black);
}


.text-link {
    display: inline-flex;

    align-items: center;

    gap: 14px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    transition:
        color 0.3s ease;
}


.text-link:hover {
    color: var(--orange);
}


.text-link span {
    font-size: 18px;
}


/* =====================================================
   LOADER
===================================================== */

.page-loader {
    position: fixed;
    inset: 0;

    display: flex;
    flex-direction: column;

    justify-content: space-between;

    padding: 28px 40px;

    background:
        var(--black);

    color:
        var(--white);

    z-index: 100000;

    opacity: 1;
    visibility: visible;

    transition:
        opacity 0.7s ease,
        visibility 0.7s ease;
}


.page-loader.loaded {
    opacity: 0;

    visibility: hidden;

    pointer-events: none;
}


.loader-top,
.loader-bottom {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 20px;

    font-size: 10px;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}


.loader-center {
    display: grid;

    place-items: center;

    gap: 32px;
}


.loader-logo-wrap {
    display: flex;

    align-items: center;

    justify-content: center;
}


.loader-logo-plate {
    width: 225px;

    padding:
        16px 22px 18px;

    background:
        var(--white);

    border:
        1px solid
        rgba(245, 241, 232, 0.3);

    box-shadow:
        0 15px 45px
        rgba(0, 0, 0, 0.38);
}


.loader-logo-label {
    margin-bottom:
        9px;

    font-size:
        7px;

    font-weight:
        700;

    letter-spacing:
        0.22em;

    color:
        rgba(8, 8, 8, 0.5);
}


.loader-logo-plate img {
    width: 100%;

    height: auto;

    mix-blend-mode:
        multiply;
}


.loader-title {
    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}


.loader-title span {
    font-size:
        13px;

    letter-spacing:
        0.3em;
}


.loader-title strong {
    margin-top:
        7px;

    font-family:
        var(--heading);

    font-size:
        clamp(
            34px,
            6vw,
            88px
        );

    line-height:
        0.95;
}


.loader-progress {
    flex: 1;

    max-width: 420px;

    height: 1px;

    background:
        rgba(
            245,
            241,
            232,
            0.18
        );
}


.loader-progress div {
    width: 0;

    height: 100%;

    background:
        var(--orange);
}


/* =====================================================
   HEADER
===================================================== */

.header {
    position: fixed;

    top: 0;
    left: 0;
    right: 0;

    height: 96px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 0 70px;

    background:
        var(--white);

    border-bottom:
        1px solid
        rgba(8, 8, 8, 0.14);

    z-index: 1000;
}


.logo-box {
    width: 170px;

    height: 92px;

    display: flex;

    align-items: center;

    justify-content: flex-start;

    background:
        var(--white);

    overflow: hidden;

    position: relative;
}


.logo-box img {
    width: 155px;

    height: auto;

    transform:
        translateY(-7px);

    mix-blend-mode:
        multiply;
}


.header nav {
    display: flex;

    align-items: center;

    gap: 48px;
}


.header nav a {
    position: relative;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.2em;

    text-transform: uppercase;
}


.header nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 2px;

    background:
        var(--orange);

    transition:
        width 0.3s ease;
}


.header nav a:hover::after {
    width: 100%;
}


.menu-btn {
    display: none;

    width: 45px;
    height: 45px;

    border:
        1px solid
        rgba(8, 8, 8, 0.25);

    align-items: center;

    justify-content: center;

    flex-direction: column;

    gap: 6px;
}


.menu-btn span {
    display: block;

    width: 18px;
    height: 1px;

    background:
        var(--black);
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 100vh;

    padding-top: 96px;

    overflow: hidden;

    background:
        var(--white);
}


.hero-grid-bg {
    position: absolute;

    inset: 0;

    pointer-events: none;

    background-image:

        linear-gradient(
            rgba(8, 8, 8, 0.035) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(8, 8, 8, 0.035) 1px,
            transparent 1px
        );

    background-size: 70px 70px;
}


.hero-grid-bg::after {
    content: "";

    position:
        absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 70% 30%,
            rgba(
                240,
                68,
                34,
                0.13
            ),
            transparent 28%
        );
}


.hero-container {
    position: relative;

    width:
        min(
            calc(100% - 100px),
            1460px
        );

    min-height:
        calc(
            100vh - 96px
        );

    margin-inline: auto;

    display: grid;

    grid-template-columns:
        1.1fr 0.9fr;

    align-items: center;

    gap: 60px;
}


.hero-content {
    padding: 80px 0;
}


.hero-meta {
    display: flex;

    justify-content: space-between;

    max-width: 700px;

    margin-bottom: 45px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 0.2em;
}


.hero-kicker {
    display: inline-block;

    margin-bottom: 25px;

    padding-bottom: 10px;

    border-bottom:
        1px solid
        var(--orange);

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.15em;

    text-transform:
        uppercase;
}


.hero h1 {
    max-width: 850px;

    font-family:
        var(--heading);

    font-size:
        clamp(
            60px,
            8.3vw,
            140px
        );

    line-height:
        0.87;

    font-weight:
        600;

    letter-spacing:
        -0.065em;
}


.hero h1 span {
    display: block;
}


.hero h1 strong {
    display: block;

    color:
        var(--orange);

    font-weight:
        600;
}


.hero-description {
    max-width:
        560px;

    margin-top:
        40px;

    font-size:
        clamp(
            15px,
            1.3vw,
            19px
        );

    line-height:
        1.65;

    color:
        #3d3b38;
}


.hero-actions {
    display:
        flex;

    align-items:
        center;

    gap:
        30px;

    margin-top:
        40px;
}


/* =====================================================
   HERO FOOTER
===================================================== */

.hero-footer {

    display:
        grid;

    grid-template-columns:
        auto 1fr;

    gap:
        25px;

    max-width:
        700px;

    margin-top:
        75px;

    padding-top:
        18px;

    border-top:
        1px solid
        rgba(
            8,
            8,
            8,
            0.18
        );

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        0.18em;
}


.hero-footer span:last-child {
    display:
        none;
}


/* =====================================================
   HERO VISUAL
===================================================== */

.hero-visual {
    position: relative;

    min-height:
        690px;

    display:
        grid;

    place-items:
        center;
}


.hero-card {
    position:
        relative;

    width:
        min(
            100%,
            540px
        );

    aspect-ratio:
        0.79;

    padding:
        26px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    background:
        var(--black);

    color:
        var(--white);

    border:
        1px solid
        rgba(
            245,
            241,
            232,
            0.17
        );

    overflow:
        hidden;

    box-shadow:
        25px 30px 90px
        rgba(
            0,
            0,
            0,
            0.14
        );

    transform:
        rotate(3deg);
}


.hero-card::before {
    content: "";

    position:
        absolute;

    width:
        320px;

    height:
        320px;

    right:
        -100px;

    top:
        25%;

    border-radius:
        50%;

    border:
        1px solid
        rgba(
            240,
            68,
            34,
            0.5
        );

    box-shadow:
        0 0 0 35px
        rgba(
            240,
            68,
            34,
            0.03
        ),

        0 0 0 70px
        rgba(
            240,
            68,
            34,
            0.025
        );
}


.hero-card-top {
    position:
        relative;

    z-index:
        3;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    font-size:
        9px;

    letter-spacing:
        0.18em;
}


/* =====================================================
   HERO LOGO
===================================================== */

.hero-card-logo {
    position:
        absolute;

    inset:
        0;

    display:
        grid;

    place-items:
        center;

    z-index:
        3;
}


.hero-logo-plate {
    width:
        76%;

    max-width:
        390px;

    padding:
        22px 28px;

    background:
        var(--white);

    border:
        1px solid
        rgba(
            8,
            8,
            8,
            0.2
        );

    box-shadow:
        14px 18px 45px
        rgba(
            0,
            0,
            0,
            0.32
        );

    transform:
        rotate(-1.5deg);
}


.hero-logo-label {
    margin-bottom:
        11px;

    font-size:
        7px;

    font-weight:
        700;

    letter-spacing:
        0.2em;

    color:
        rgba(
            8,
            8,
            8,
            0.52
        );
}


.hero-logo-plate img {
    width:
        100%;

    height:
        auto;

    mix-blend-mode:
        multiply;
}


.hero-card-bottom {
    position:
        relative;

    z-index:
        3;

    display:
        flex;

    justify-content:
        space-between;

    align-items:
        end;
}


.hero-card-bottom > div:first-child {
    display:
        flex;

    flex-direction:
        column;
}


.hero-card-bottom span {
    font-size:
        10px;

    letter-spacing:
        0.2em;
}


.hero-card-bottom strong {
    margin-top:
        4px;

    font-family:
        var(--heading);

    font-size:
        48px;

    letter-spacing:
        -0.05em;

    line-height:
        0.9;
}


.hero-card-services {
    font-size:
        9px;

    line-height:
        1.4;

    letter-spacing:
        0.2em;

    text-align:
        right;
}


.hero-orbit {
    position:
        absolute;

    width:
        480px;

    height:
        480px;

    border:
        1px solid
        rgba(
            240,
            68,
            34,
            0.2
        );

    border-radius:
        50%;
}


.orbit-one {
    transform:
        rotate(22deg)
        scaleX(1.4);
}


.orbit-two {
    transform:
        rotate(-35deg)
        scaleX(0.65);
}


.hero-side-label {
    position:
        absolute;

    right:
        -65px;

    top:
        50%;

    transform:
        rotate(90deg)
        translateX(50%);

    transform-origin:
        right center;

    font-size:
        9px;

    letter-spacing:
        0.25em;

    font-weight:
        700;

    line-height:
        1.5;
}


.hero-floating-note {
    position:
        absolute;

    right:
        2%;

    bottom:
        12%;

    display:
        flex;

    flex-direction:
        column;

    gap:
        5px;

    padding:
        14px 16px;

    background:
        var(--orange);

    color:
        var(--black);

    font-size:
        9px;

    letter-spacing:
        0.16em;
}


.hero-floating-note strong {
    font-size:
        11px;
}


.hero-scroll-note {
    position:
        absolute;

    bottom:
        30px;

    left:
        50%;

    transform:
        translateX(-50%);

    display:
        flex;

    flex-direction:
        column;

    align-items:
        center;

    gap:
        11px;

    font-size:
        9px;

    letter-spacing:
        0.25em;

    z-index:
        5;
}


.hero-scroll-note div {
    width:
        1px;

    height:
        45px;

    background:
        var(--black);
}


/* =====================================================
   REVEAL
===================================================== */

.reveal {
    opacity:
        0;

    transform:
        translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.reveal-delay {
    transition-delay:
        0.12s;
}


.reveal.visible {
    opacity:
        1;

    transform:
        translateY(0);
}


/* =====================================================
   MARQUEE
===================================================== */

.marquee {
    width:
        100%;

    overflow:
        hidden;

    background:
        var(--orange);

    border-top:
        1px solid
        var(--black);

    border-bottom:
        1px solid
        var(--black);
}


.marquee-track {
    width:
        max-content;

    display:
        flex;

    align-items:
        center;

    gap:
        48px;

    padding:
        18px 0;

    animation:
        marquee
        28s linear infinite;
}


.marquee-track span {
    font-family:
        var(--heading);

    font-size:
        clamp(
            21px,
            2.2vw,
            34px
        );

    font-weight:
        600;

    letter-spacing:
        -0.04em;

    white-space:
        nowrap;
}


.marquee-track span::after {
    content:
        "✦";

    margin-left:
        48px;
}


@keyframes marquee {

    from {
        transform:
            translateX(0);
    }

    to {
        transform:
            translateX(-50%);
    }

}


/* =====================================================
   ABOUT
===================================================== */

.about {
    background:
        var(--white);
}


.about-intro {
    display:
        grid;

    grid-template-columns:
        1.4fr 0.6fr;

    gap:
        60px;

    align-items:
        end;
}


.display-heading {
    max-width:
        1000px;

    font-family:
        var(--heading);

    font-size:
        clamp(
            46px,
            6.4vw,
            105px
        );

    line-height:
        0.92;

    font-weight:
        600;

    letter-spacing:
        -0.06em;
}


.display-heading span {
    color:
        var(--orange);
}


.about-intro-side {
    padding-bottom:
        8px;
}


.about-intro-side span {
    display:
        block;

    margin-bottom:
        16px;

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        0.25em;
}


.about-intro-side p {
    max-width:
        300px;

    font-size:
        14px;

    line-height:
        1.7;

    color:
        #66615a;
}


.about-columns {
    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        70px;

    align-items:
        stretch;

    margin-top:
        90px;
}


.about-copy {
    max-width:
        650px;
}


.about-copy p {
    margin-bottom:
        26px;

    font-size:
        15px;

    line-height:
        1.8;

    color:
        #4d4a45;
}


.about-copy .about-lead {
    font-family:
        var(--heading);

    font-size:
        clamp(
            22px,
            2vw,
            30px
        );

    line-height:
        1.25;

    color:
        var(--black);

    letter-spacing:
        -0.03em;
}


.about-panel {
    min-height:
        520px;

    padding:
        25px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    background:
        var(--black);

    color:
        var(--white);

    overflow:
        hidden;

    position:
        relative;
}


.about-panel::before {
    content:
        "";

    position:
        absolute;

    width:
        430px;

    height:
        430px;

    right:
        -160px;

    top:
        15%;

    border-radius:
        50%;

    border:
        1px solid
        rgba(
            240,
            68,
            34,
            0.65
        );

    box-shadow:
        0 0 0 35px
        rgba(
            240,
            68,
            34,
            0.05
        ),

        0 0 0 70px
        rgba(
            240,
            68,
            34,
            0.035
        );
}


.about-panel-top,
.panel-bottom {
    position:
        relative;

    display:
        flex;

    justify-content:
        space-between;

    gap:
        15px;

    font-size:
        9px;

    letter-spacing:
        0.22em;

    text-transform:
        uppercase;
}


.panel-big {
    position:
        relative;

    max-width:
        500px;

    font-family:
        var(--heading);

    font-size:
        clamp(
            52px,
            6vw,
            90px
        );

    line-height:
        0.85;

    letter-spacing:
        -0.07em;

    font-weight:
        600;
}


.panel-big span {
    display:
        block;

    color:
        var(--orange);
}


/* =====================================================
   WHAT DRIVES US
===================================================== */

.about-focus {
    margin-top:
        95px;

    background:
        var(--orange);

    border:
        1px solid
        var(--black);
}


.focus-heading {
    padding:
        28px 35px;

    display:
        flex;

    align-items:
        end;

    justify-content:
        space-between;

    gap:
        25px;

    border-bottom:
        1px solid
        rgba(
            8,
            8,
            8,
            0.22
        );
}


.focus-heading > div:first-child {
    display:
        flex;

    flex-direction:
        column;

    gap:
        8px;
}


.focus-heading span {
    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        0.25em;
}


.focus-heading strong {
    font-family:
        var(--heading);

    font-size:
        clamp(
            26px,
            3vw,
            42px
        );

    line-height:
        0.95;

    letter-spacing:
        -0.045em;
}


.focus-mark {
    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        0.2em;
}


.focus-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );
}


.focus-item {
    position:
        relative;

    min-height:
        370px;

    padding:
        28px 35px;

    border-right:
        1px solid
        rgba(
            8,
            8,
            8,
            0.22
        );

    transition:
        background 0.35s ease,
        color 0.35s ease;
}


.focus-item:last-child {
    border-right:
        none;
}


.focus-item:hover {
    background:
        var(--black);

    color:
        var(--white);
}


.focus-item-top {
    display:
        flex;

    justify-content:
        space-between;

    align-items:
        center;

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        0.2em;
}


.focus-symbol {
    font-size:
        18px;
}


.focus-number {
    margin-top:
        52px;

    font-family:
        var(--heading);

    font-size:
        80px;

    line-height:
        0.8;

    opacity:
        0.18;

    letter-spacing:
        -0.07em;
}


.focus-item h3 {
    margin-top:
        30px;

    font-family:
        var(--heading);

    font-size:
        clamp(
            30px,
            3vw,
            48px
        );

    line-height:
        0.9;

    letter-spacing:
        -0.05em;
}


.focus-item p {
    max-width:
        290px;

    margin-top:
        18px;

    font-size:
        14px;

    line-height:
        1.6;

    color:
        rgba(
            8,
            8,
            8,
            0.7
        );
}


.focus-item:hover p {
    color:
        rgba(
            245,
            241,
            232,
            0.72
        );
}


.focus-line {
    position:
        absolute;

    left:
        35px;

    right:
        35px;

    bottom:
        27px;

    height:
        1px;

    background:
        rgba(
            8,
            8,
            8,
            0.22
        );
}


.focus-item:hover .focus-line {
    background:
        rgba(
            245,
            241,
            232,
            0.2
        );
}


/* =====================================================
   SERVICES
===================================================== */

.services {
    background:
        var(--black);

    color:
        var(--white);
}


.services-heading {
    display:
        grid;

    grid-template-columns:
        1fr 0.65fr;

    gap:
        70px;

    align-items:
        end;
}


.services-heading h2 {
    margin-top:
        18px;

    font-family:
        var(--heading);

    font-size:
        clamp(
            55px,
            7vw,
            115px
        );

    line-height:
        0.82;

    font-weight:
        600;

    letter-spacing:
        -0.07em;
}


.services-heading h2 span {
    color:
        var(--orange);
}


.services-heading > p {
    max-width:
        460px;

    margin-left:
        auto;

    font-size:
        15px;

    line-height:
        1.75;

    color:
        rgba(
            245,
            241,
            232,
            0.68
        );
}


.services-grid {
    display:
        grid;

    grid-template-columns:
        repeat(
            2,
            1fr
        );

    gap:
        14px;

    margin-top:
        85px;
}


.service-card {
    position:
        relative;

    background:
        #151515;

    border:
        1px solid
        rgba(
            245,
            241,
            232,
            0.12
        );

    overflow:
        hidden;

    transition:
        transform 0.35s ease,
        border-color 0.35s ease;
}


.service-card:hover {
    transform:
        translateY(-6px);

    border-color:
        rgba(
            240,
            68,
            34,
            0.55
        );
}


.service-index {
    position:
        absolute;

    top:
        18px;

    left:
        18px;

    z-index:
        2;

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        0.2em;

    color:
        var(--white);
}


.service-image {
    position:
        relative;

    aspect-ratio:
        16 / 10;

    overflow:
        hidden;

    background:
        #0c0c0c;
}


.service-image::after {
    content:
        "";

    position:
        absolute;

    inset:
        0;

    background:
        linear-gradient(
            180deg,
            rgba(
                0,
                0,
                0,
                0.05
            ),
            rgba(
                0,
                0,
                0,
                0.2
            )
        );

    pointer-events:
        none;
}


.service-image img {
    width:
        100%;

    height:
        100%;

    object-fit:
        cover;

    transition:
        transform 0.6s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.service-details {
    position:
        relative;

    padding:
        28px;

    min-height:
        165px;
}


.service-details h3 {
    font-family:
        var(--heading);

    font-size:
        clamp(
            24px,
            2.5vw,
            40px
        );

    line-height:
        0.9;

    letter-spacing:
        -0.045em;
}


.service-details p {
    max-width:
        470px;

    margin-top:
        18px;

    padding-right:
        35px;

    font-size:
        13px;

    line-height:
        1.6;

    color:
        rgba(
            245,
            241,
            232,
            0.6
        );
}


.service-arrow {
    position:
        absolute;

    right:
        25px;

    bottom:
        26px;

    font-size:
        28px;

    color:
        var(--orange);

    transition:
        transform 0.3s ease;
}


.service-card:hover
.service-arrow {
    transform:
        translate(
            4px,
            -4px
        );
}


/* =====================================================
   WORK
===================================================== */

.work {
    background:
        var(--white);
}


.work-heading {
    display:
        grid;

    grid-template-columns:
        1fr 0.55fr;

    gap:
        70px;

    align-items:
        end;
}


.work-heading h2 {
    margin-top:
        18px;

    font-family:
        var(--heading);

    font-size:
        clamp(
            56px,
            7vw,
            115px
        );

    line-height:
        0.82;

    font-weight:
        600;

    letter-spacing:
        -0.07em;
}


.work-heading h2 span {
    color:
        var(--orange);
}


.work-heading > p {
    max-width:
        400px;

    margin-left:
        auto;

    font-size:
        15px;

    line-height:
        1.75;

    color:
        #68635c;
}


.work-grid {
    display:
        grid;

    grid-template-columns:
        1.15fr 0.85fr;

    align-items:
        start;

    gap:
        28px;

    margin-top:
        85px;
}


.work-card {
    min-width:
        0;
}


.work-media {
    position:
        relative;

    width:
        100%;

    background:
        #090909;

    overflow:
        hidden;
}


.work-media video {
    width:
        100%;

    height:
        auto;

    display:
        block;

    object-fit:
        contain;

    background:
        #000;
}


.work-overlay {
    position:
        absolute;

    left:
        22px;

    right:
        22px;

    top:
        20px;

    display:
        flex;

    justify-content:
        space-between;

    gap:
        20px;

    color:
        var(--white);

    pointer-events:
        none;
}


.work-overlay span,
.work-overlay strong {
    font-size:
        9px;

    letter-spacing:
        0.17em;

    text-transform:
        uppercase;
}


.work-overlay strong {
    font-weight:
        700;
}


.work-info {
    display:
        flex;

    align-items:
        end;

    justify-content:
        space-between;

    gap:
        20px;

    padding-top:
        19px;

    padding-bottom:
        19px;

    border-bottom:
        1px solid
        var(--border);
}


.work-info span {
    font-size:
        9px;

    letter-spacing:
        0.18em;

    color:
        var(--gray-dark);
}


.work-info h3 {
    font-family:
        var(--heading);

    font-size:
        clamp(
            20px,
            2vw,
            32px
        );

    line-height:
        1;

    letter-spacing:
        -0.04em;
}


.work-footer {
    display:
        flex;

    justify-content:
        space-between;

    gap:
        20px;

    margin-top:
        26px;

    font-size:
        10px;

    font-weight:
        700;

    letter-spacing:
        0.18em;
}


/* =====================================================
   HIRING
===================================================== */

.hiring {
    position:
        relative;

    background:
        var(--orange);

    overflow:
        hidden;
}


.hiring-grid-pattern {
    position:
        absolute;

    inset:
        0;

    background-image:

        linear-gradient(
            rgba(
                8,
                8,
                8,
                0.05
            ) 1px,
            transparent 1px
        ),

        linear-gradient(
            90deg,
            rgba(
                8,
                8,
                8,
                0.05
            ) 1px,
            transparent 1px
        );

    background-size:
        80px 80px;
}


.hiring-container {
    position:
        relative;

    display:
        grid;

    grid-template-columns:
        0.95fr 1.05fr;

    align-items:
        center;

    gap:
        80px;
}


.hiring-content .eyebrow {
    margin-bottom:
        28px;
}


.hiring-content h2 {
    font-family:
        var(--heading);

    font-size:
        clamp(
            65px,
            8vw,
            125px
        );

    line-height:
        0.82;

    letter-spacing:
        -0.07em;

    font-weight:
        600;
}


.hiring-content h2 span {
    color:
        var(--white);
}


.hiring-content p {
    max-width:
        510px;

    margin-top:
        35px;

    font-size:
        15px;

    line-height:
        1.75;

    color:
        rgba(
            8,
            8,
            8,
            0.75
        );
}


.hiring-content .btn {
    margin-top:
        35px;
}


.hiring-poster {
    position:
        relative;
}


.poster-label {
    position:
        absolute;

    left:
        20px;

    top:
        20px;

    z-index:
        3;

    padding:
        8px 11px;

    background:
        var(--black);

    color:
        var(--white);

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        0.2em;
}


.hiring-poster img {
    width:
        100%;

    max-width:
        640px;

    margin-left:
        auto;

    box-shadow:
        20px 20px 0
        rgba(
            8,
            8,
            8,
            0.9
        );
}


/* =====================================================
   CONTACT
===================================================== */

.contact {
    background:
        var(--white);
}


.contact-grid {
    display:
        grid;

    grid-template-columns:
        1.2fr 0.8fr;

    gap:
        80px;

    align-items:
        end;
}


.contact-heading h2 {
    max-width:
        900px;

    margin-top:
        20px;

    font-family:
        var(--heading);

    font-size:
        clamp(
            58px,
            7.2vw,
            120px
        );

    line-height:
        0.84;

    font-weight:
        600;

    letter-spacing:
        -0.07em;
}


.contact-heading h2 span {
    color:
        var(--orange);
}


.contact-info {
    max-width:
        460px;

    margin-left:
        auto;
}


.contact-info > p {
    font-size:
        15px;

    line-height:
        1.75;

    color:
        #68635c;
}


.contact-details {
    margin-top:
        45px;

    border-top:
        1px solid
        var(--border);
}


.contact-item {
    display:
        grid;

    grid-template-columns:
        90px 1fr auto;

    align-items:
        center;

    gap:
        20px;

    padding:
        21px 0;

    border-bottom:
        1px solid
        var(--border);
}


.contact-item span {
    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        0.2em;
}


.contact-item strong {
    font-size:
        clamp(
            14px,
            1.5vw,
            19px
        );

    font-weight:
        600;

    overflow-wrap:
        anywhere;
}


.contact-item em {
    font-size:
        22px;

    font-style:
        normal;

    transition:
        transform 0.3s ease;
}


.contact-item:hover em {
    transform:
        translate(
            4px,
            -4px
        );
}


.contact-item:hover strong {
    color:
        var(--orange);
}


.contact-bottom {
    display:
        grid;

    grid-template-columns:
        repeat(
            3,
            1fr
        );

    gap:
        20px;

    margin-top:
        90px;

    padding-top:
        22px;

    border-top:
        1px solid
        var(--border);

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        0.2em;
}


.contact-bottom span:last-child {
    text-align:
        right;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    min-height:
        85px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    gap:
        20px;

    padding:
        0 50px;

    background:
        var(--black);

    color:
        var(--white);

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        0.18em;
}


/* =====================================================
   HIRING POPUP
===================================================== */

.hiring-popup {
    position:
        fixed;

    inset:
        0;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    padding:
        25px;

    opacity:
        0;

    visibility:
        hidden;

    pointer-events:
        none;

    transition:
        opacity 0.35s ease,
        visibility 0.35s ease;

    z-index:
        9990;
}


.hiring-popup.show {
    opacity:
        1;

    visibility:
        visible;

    pointer-events:
        auto;
}


.hiring-popup-overlay {
    position:
        absolute;

    inset:
        0;

    background:
        rgba(
            0,
            0,
            0,
            0.78
        );

    backdrop-filter:
        blur(9px);
}


.hiring-popup-box {
    position:
        relative;

    width:
        min(
            100%,
            1000px
        );

    max-height:
        min(
            760px,
            calc(
                100vh - 50px
            )
        );

    display:
        grid;

    grid-template-columns:
        0.85fr 1.15fr;

    background:
        var(--white);

    border:
        1px solid
        rgba(
            245,
            241,
            232,
            0.14
        );

    overflow:
        hidden;

    transform:
        translateY(25px)
        scale(0.97);

    transition:
        transform 0.45s
        cubic-bezier(
            0.22,
            1,
            0.36,
            1
        );
}


.hiring-popup.show
.hiring-popup-box {
    transform:
        translateY(0)
        scale(1);
}


/* =====================================================
   POPUP LEFT
===================================================== */

.popup-visual {
    position:
        relative;

    min-height:
        620px;

    padding:
        26px;

    display:
        flex;

    flex-direction:
        column;

    justify-content:
        space-between;

    overflow:
        hidden;

    background:
        var(--black);

    color:
        var(--white);
}


.popup-visual::before {
    content:
        "";

    position:
        absolute;

    width:
        500px;

    height:
        500px;

    right:
        -220px;

    top:
        20%;

    border:
        1px solid
        rgba(
            240,
            68,
            34,
            0.5
        );

    border-radius:
        50%;
}


.popup-visual-top,
.popup-visual-bottom {
    position:
        relative;

    display:
        flex;

    justify-content:
        space-between;

    gap:
        15px;

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        0.2em;
}


.popup-rings {
    position:
        absolute;

    left:
        50%;

    top:
        48%;

    width:
        310px;

    height:
        310px;

    transform:
        translate(
            -50%,
            -50%
        );
}


.popup-rings span {
    position:
        absolute;

    inset:
        0;

    border:
        1px solid
        rgba(
            240,
            68,
            34,
            0.5
        );

    border-radius:
        50%;
}


.popup-rings span:nth-child(2) {
    inset:
        35px;
}


.popup-rings span:nth-child(3) {
    inset:
        70px;
}


/* =====================================================
   POPUP LOGO
===================================================== */

.popup-logo-card {
    position:
        absolute;

    left:
        68%;

    top:
        50%;

    transform:
        translate(
            -50%,
            -50%
        )
        rotate(
            -6deg
        );

    width:
        165px;

    aspect-ratio:
        1;

    display:
        grid;

    place-items:
        center;

    background:
        var(--white);

    z-index:
        2;

    box-shadow:
        12px 16px 35px
        rgba(
            0,
            0,
            0,
            0.3
        );
}


.popup-logo-card img {
    width:
        82%;

    mix-blend-mode:
        multiply;
}


/* =====================================================
   POPUP LEFT TEXT
===================================================== */

.popup-visual-title {
    position:
        absolute;

    left:
        26px;

    bottom:
        105px;

    z-index:
        4;

    max-width:
        205px;

    font-family:
        var(--heading);

    font-size:
        clamp(
            45px,
            5vw,
            72px
        );

    font-weight:
        600;

    line-height:
        0.82;

    letter-spacing:
        -0.07em;
}


.popup-visual-title span {
    display:
        block;

    color:
        var(--orange);
}


/* =====================================================
   POPUP MAIN
===================================================== */

.popup-main {
    position:
        relative;

    padding:
        55px 50px 40px;

    overflow-y:
        auto;
}


.popup-close {
    position:
        absolute;

    top:
        18px;

    right:
        20px;

    width:
        42px;

    height:
        42px;

    display:
        grid;

    place-items:
        center;

    border:
        1px solid
        rgba(
            8,
            8,
            8,
            0.2
        );

    font-size:
        28px;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.popup-close:hover {
    background:
        var(--black);

    color:
        var(--white);
}


.popup-tag {
    display:
        inline-block;

    padding:
        8px 11px;

    background:
        var(--orange);

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        0.18em;
}


.popup-kicker {
    margin-top:
        25px;

    font-size:
        9px;

    font-weight:
        700;

    letter-spacing:
        0.2em;

    color:
        var(--gray-dark);
}


.popup-main h2 {
    margin-top:
        18px;

    font-family:
        var(--heading);

    font-size:
        clamp(
            54px,
            6vw,
            88px
        );

    line-height:
        0.84;

    letter-spacing:
        -0.07em;

    font-weight:
        600;
}


.popup-main h2 span {
    display:
        block;

    color:
        var(--orange);
}


.popup-rule {
    width:
        100%;

    height:
        1px;

    margin-top:
        30px;

    background:
        var(--border);
}


.popup-description {
    max-width:
        500px;

    margin-top:
        24px;

    font-size:
        14px;

    line-height:
        1.75;

    color:
        #5f5b55;
}


.popup-role-grid {
    display:
        grid;

    grid-template-columns:
        1fr 1fr;

    gap:
        20px;

    margin-top:
        28px;
}


.popup-role-grid > div {
    padding:
        18px;

    border:
        1px solid
        var(--border);
}


.popup-role-grid span {
    display:
        block;

    margin-bottom:
        8px;

    font-size:
        8px;

    font-weight:
        700;

    letter-spacing:
        0.2em;

    color:
        var(--gray-dark);
}


.popup-role-grid strong {
    font-size:
        12px;

    letter-spacing:
        0.06em;
}


.popup-tags {
    display:
        flex;

    flex-wrap:
        wrap;

    gap:
        8px;

    margin-top:
        19px;
}


.popup-tags span {
    padding:
        8px 10px;

    border:
        1px solid
        var(--border);

    font-size:
        8px;

    font-weight:
        700;

    letter-spacing:
        0.12em;
}


.popup-apply {
    width:
        100%;

    margin-top:
        25px;

    padding:
        18px 20px;

    display:
        flex;

    align-items:
        center;

    justify-content:
        space-between;

    background:
        var(--black);

    color:
        var(--white);

    font-size:
        11px;

    font-weight:
        700;

    letter-spacing:
        0.18em;

    transition:
        background 0.25s ease,
        color 0.25s ease;
}


.popup-apply strong {
    font-size:
        20px;
}


.popup-apply:hover {
    background:
        var(--orange);

    color:
        var(--black);
}


.popup-email {
    margin-top:
        18px;

    font-size:
        8px;

    font-weight:
        700;

    letter-spacing:
        0.15em;

    color:
        var(--gray-dark);
}


.popup-email strong {
    display:
        block;

    margin-top:
        5px;

    color:
        var(--black);

    letter-spacing:
        0;

    font-size:
        11px;
}


/* =====================================================
   1200
===================================================== */

@media (max-width: 1200px) {

    .container {
        width:
            min(
                calc(100% - 60px),
                1460px
            );
    }


    .header {
        padding:
            0 35px;
    }


    .header nav {
        gap:
            28px;
    }


    .hero-container {
        width:
            calc(
                100% - 60px
            );
    }


    .hero-visual {
        min-height:
            600px;
    }


    .hero-side-label {
        right:
            -30px;
    }

}


/* =====================================================
   900
===================================================== */

@media (max-width: 900px) {

    .section-space {
        padding:
            90px 0;
    }


    .section-top {
        margin-bottom:
            55px;
    }


    .header {
        height:
            82px;
    }


    .logo-box {
        width:
            145px;

        height:
            80px;
    }


    .logo-box img {
        width:
            135px;
    }


    .header nav {
        position:
            fixed;

        inset:
            82px 0 0 0;

        padding:
            50px 30px;

        display:
            flex;

        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            26px;

        background:
            var(--black);

        color:
            var(--white);

        transform:
            translateX(100%);

        transition:
            transform 0.45s
            cubic-bezier(
                0.22,
                1,
                0.36,
                1
            );
    }


    .header nav.active {
        transform:
            translateX(0);
    }


    .header nav a {
        font-family:
            var(--heading);

        font-size:
            clamp(
                38px,
                8vw,
                64px
            );

        line-height:
            0.9;

        letter-spacing:
            -0.04em;
    }


    .header nav a::after {
        display:
            none;
    }


    .menu-btn {
        display:
            flex;

        position:
            relative;

        z-index:
            3;
    }


    .hero {
        padding-top:
            82px;
    }


    .hero-container {
        min-height:
            auto;

        grid-template-columns:
            1fr;

        gap:
            35px;

        width:
            calc(
                100% - 60px
            );
    }


    .hero-content {
        padding:
            75px 0 25px;
    }


    .hero-description {
        max-width:
            650px;
    }


    .hero-visual {
        min-height:
            570px;
    }


    .hero-card {
        max-width:
            470px;
    }


    .hero-floating-note {
        right:
            6%;

        bottom:
            8%;
    }


    .about-intro {
        grid-template-columns:
            1fr;
    }


    .about-intro-side {
        padding:
            0;
    }


    .about-columns {
        grid-template-columns:
            1fr;

        gap:
            45px;

        margin-top:
            65px;
    }


    .about-panel {
        min-height:
            450px;
    }


    .services-heading,
    .work-heading,
    .contact-grid {
        grid-template-columns:
            1fr;

        gap:
            35px;
    }


    .services-heading > p,
    .work-heading > p,
    .contact-info {
        margin-left:
            0;
    }


    .services-grid {
        grid-template-columns:
            1fr;
    }


    .work-grid {
        grid-template-columns:
            1fr;

        gap:
            55px;
    }


    .hiring-container {
        grid-template-columns:
            1fr;

        gap:
            55px;
    }


    .hiring-poster img {
        margin-inline:
            auto;
    }


    .contact-bottom {
        margin-top:
            60px;
    }


    .hiring-popup-box {
        grid-template-columns:
            1fr;

        max-height:
            calc(
                100vh - 30px
            );

        overflow-y:
            auto;
    }


    .popup-visual {
        min-height:
            360px;
    }


    .popup-logo-card {
        left:
            66%;

        width:
            145px;
    }


    .popup-visual-title {
        left:
            24px;

        bottom:
            75px;

        max-width:
            190px;
    }


    .popup-main {
        padding:
            45px 35px 35px;
    }

}


/* =====================================================
   640
===================================================== */

@media (max-width: 640px) {

    .container {
        width:
            calc(
                100% - 34px
            );
    }


    .section-space {
        padding:
            75px 0;
    }


    .page-loader {
        padding:
            22px 20px;
    }


    .loader-top,
    .loader-bottom {
        font-size:
            8px;
    }


    .loader-center {
        gap:
            22px;
    }


    .loader-logo-plate {
        width:
            190px;

        padding:
            14px 17px 16px;
    }


    .loader-logo-label {
        font-size:
            5.5px;

        margin-bottom:
            7px;
    }


    .loader-title strong {
        font-size:
            42px;
    }


    .header {
        height:
            76px;

        padding:
            0 17px;
    }


    .logo-box {
        width:
            125px;

        height:
            72px;

        background:
            var(--white);
    }


    .logo-box img {
        width:
            120px;

        transform:
            translateY(-4px);
    }


    .header nav {
        inset:
            76px 0 0 0;

        padding:
            40px 24px;
    }


    .header nav a {
        font-size:
            42px;
    }


    .menu-btn {
        width:
            42px;

        height:
            42px;
    }


    .hero {
        padding-top:
            76px;
    }


    .hero-container {
        width:
            calc(
                100% - 34px
            );
    }


    .hero-content {
        padding:
            60px 0 15px;
    }


    .hero-meta {
        flex-direction:
            column;

        gap:
            9px;

        margin-bottom:
            30px;
    }


    .hero-meta span:last-child {
        color:
            var(--gray-dark);
    }


    .hero h1 {
        font-size:
            clamp(
                48px,
                15vw,
                74px
            );
    }


    .hero-description {
        margin-top:
            28px;

        font-size:
            14px;
    }


    .hero-actions {
        flex-direction:
            column;

        align-items:
            flex-start;

        gap:
            20px;
    }


    .hero-footer {
        grid-template-columns:
            auto 1fr;

        margin-top:
            45px;

        gap:
            18px;
    }


    .hero-footer span:last-child {
        display:
            none;
    }


    .hero-visual {
        min-height:
            430px;
    }


    .hero-card {
        width:
            min(
                82vw,
                390px
            );

        padding:
            19px;
    }


    .hero-logo-plate {
        width:
            78%;

        padding:
            16px 18px;
    }


    .hero-logo-label {
        font-size:
            5.5px;

        margin-bottom:
            8px;
    }


    .hero-card-bottom strong {
        font-size:
            37px;
    }


    .hero-orbit {
        width:
            330px;

        height:
            330px;
    }


    .hero-side-label {
        display:
            none;
    }


    .hero-floating-note {
        right:
            3%;

        bottom:
            4%;

        padding:
            10px 11px;
    }


    .hero-scroll-note {
        display:
            flex;
    }


    .section-top {
        grid-template-columns:
            50px 1fr;

        gap:
            18px;

        margin-bottom:
            45px;
    }


    .display-heading {
        font-size:
            clamp(
                41px,
                12vw,
                64px
            );
    }


    .about-columns {
        margin-top:
            50px;
    }


    .about-panel {
        min-height:
            350px;

        padding:
            20px;
    }


    .panel-big {
        font-size:
            clamp(
                46px,
                14vw,
                72px
            );
    }


    .about-focus {
        margin-top:
            65px;
    }


    .focus-heading {
        padding:
            22px 20px;

        align-items:
            flex-start;

        flex-direction:
            column;
    }


    .focus-grid {
        grid-template-columns:
            1fr;
    }


    .focus-item {
        min-height:
            310px;

        padding:
            24px 20px;

        border-right:
            none;

        border-bottom:
            1px solid
            rgba(
                8,
                8,
                8,
                0.22
            );
    }


    .focus-item:last-child {
        border-bottom:
            none;
    }


    .focus-number {
        margin-top:
            35px;

        font-size:
            65px;
    }


    .focus-item h3 {
        margin-top:
            22px;
    }


    .focus-line {
        left:
            20px;

        right:
            20px;

        bottom:
            20px;
    }


    .services-heading h2,
    .work-heading h2 {
        font-size:
            clamp(
                52px,
                14vw,
                77px
            );
    }


    .services-grid {
        margin-top:
            60px;
    }


    .service-details {
        min-height:
            155px;

        padding:
            22px;
    }


    .service-details h3 {
        font-size:
            28px;
    }


    .service-details p {
        font-size:
            12px;

        padding-right:
            25px;
    }


    .work-grid {
        margin-top:
            60px;
    }


    .work-info {
        flex-direction:
            column;

        align-items:
            flex-start;
    }


    .work-info h3 {
        font-size:
            25px;
    }


    .work-footer {
        flex-direction:
            column;

        gap:
            10px;
    }


    .hiring-content h2 {
        font-size:
            clamp(
                58px,
                16vw,
                88px
            );
    }


    .hiring-content p {
        font-size:
            14px;
    }


    .hiring-poster img {
        box-shadow:
            12px 12px 0
            rgba(
                8,
                8,
                8,
                0.9
            );
    }


    .contact-heading h2 {
        font-size:
            clamp(
                53px,
                15vw,
                80px
            );
    }


    .contact-info > p {
        font-size:
            14px;
    }


    .contact-item {
        grid-template-columns:
            70px 1fr auto;

        gap:
            10px;
    }


    .contact-item strong {
        font-size:
            13px;
    }


    .contact-bottom {
        grid-template-columns:
            1fr;

        gap:
            10px;
    }


    .contact-bottom span:last-child {
        text-align:
            left;
    }


    .footer {
        min-height:
            110px;

        padding:
            22px 17px;

        flex-direction:
            column;

        align-items:
            flex-start;

        justify-content:
            center;

        gap:
            10px;
    }


    .hiring-popup {
        padding:
            12px;
    }


    .hiring-popup-box {
        max-height:
            calc(
                100vh - 24px
            );
    }


    .popup-visual {
        min-height:
            300px;

        padding:
            20px;
    }


    .popup-rings {
        width:
            230px;

        height:
            230px;
    }


    .popup-logo-card {
        left:
            72%;

        top:
            46%;

        width:
            125px;

        z-index:
            2;
    }


    .popup-visual-title {
        left:
            20px;

        bottom:
            50px;

        max-width:
            165px;

        font-size:
            44px;

        z-index:
            4;
    }


    .popup-main {
        padding:
            45px 22px 25px;
    }


    .popup-main h2 {
        font-size:
            55px;
    }


    .popup-role-grid {
        grid-template-columns:
            1fr;
    }


    .popup-close {
        top:
            12px;

        right:
            12px;

        width:
            38px;

        height:
            38px;
    }

}


/* =====================================================
   420
===================================================== */

@media (max-width: 420px) {

    .loader-logo-plate {
        width:
            175px;
    }


    .hero h1 {
        font-size:
            45px;
    }


    .hero-card {
        width:
            84vw;
    }


    .hero-card-bottom strong {
        font-size:
            31px;
    }


    .hero-logo-plate {
        width:
            80%;

        padding:
            13px 15px;
    }


    .display-heading {
        font-size:
            39px;
    }


    .services-heading h2,
    .work-heading h2 {
        font-size:
            50px;
    }


    .hiring-content h2 {
        font-size:
            53px;
    }


    .contact-heading h2 {
        font-size:
            49px;
    }


    .popup-logo-card {
        left:
            74%;

        width:
            112px;
    }


    .popup-main h2 {
        font-size:
            47px;
    }


    .popup-description {
        font-size:
            13px;
    }

}


/* =====================================================
   REDUCED MOTION
===================================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior:
            auto;
    }


    *,
    *::before,
    *::after {

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;

        scroll-behavior:
            auto !important;
    }

}