@font-face {
    font-family: "elza-text";
    src: url("https://use.typekit.net/af/9b4894/00000000000000007735f938/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/9b4894/00000000000000007735f938/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/9b4894/00000000000000007735f938/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
}

@font-face {
    font-family: "magno-sans-variable";
    src: url("https://use.typekit.net/af/a10d72/0000000000000000774bf5a5/30/l?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff2"), url("https://use.typekit.net/af/a10d72/0000000000000000774bf5a5/30/d?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("woff"), url("https://use.typekit.net/af/a10d72/0000000000000000774bf5a5/30/a?primer=7cdcb44be4a7db8877ffa5c0007b8dd865b3bbc383831fe2ea177f62257a9191&fvd=n4&v=3") format("opentype");
    font-display: swap;
    font-style: normal;
    font-weight: 400;
    font-stretch: normal;
}

/* */

:root {
    --step--1: clamp(0.844rem, 0.6431rem + 1.0044vi, 1.547rem);
    --step-0: clamp(1.125rem, 0.8214rem + 1.5179vi, 2.1875rem);
    --step-1: clamp(1.4996rem, 1.0443rem + 2.2764vi, 3.0931rem);
    --step-2: clamp(1.999rem, 1.3205rem + 3.3924vi, 4.3737rem);

    /*--space: 25vh;*/
    --space-sm: 5rem;
    --space-lg: 10rem;
}

/* */

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

/* */

body {
    font-family: elza-text, sans-serif;
    font-style: normal;
    font-weight: 300;
    font-size: var(--step-0);
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.75);
    background-color: #000000;
}

/* */

body::-webkit-scrollbar {
    width: 0.5rem;
}

body::-webkit-scrollbar-track {
    background-color: hsl(120, 100%, 10%);
}

body::-webkit-scrollbar-thumb {
    background: hsl(120, 100%, 50%);
}

body::-webkit-scrollbar-thumb:hover {
    background: hsl(120, 100%, 40%);
}

/* */

h1,
h2,
h3,
h4,
h5,
h6,
.intro p {
    font-family: "magno-sans-variable", Impact, sans-serif;
    font-variation-settings: 'wght' 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 0.9;
    color: #00ff00;
}

h2 {
    font-size: var(--step-2);
}

h3 {
    font-size: var(--step-1);
}

h4 {
    font-size: var(--step-0);
}

a {
    color: #000000;
}

section {
    overflow-x: clip;
}

/* */

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

/* */

.wrapper {
    padding-inline: 5vw;
}

/* */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #000000;
    z-index: 2;
}

.loader-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.glitch {
    position: relative;
}

.glitch img {
    width: 150px;
}

.glitch img:nth-child(2) {
    position: absolute;
    top: 0;
    left: 12px;
    background-color: #000000;
    animation:
        glitch-interval 1000ms step-end infinite,
        glitch 300ms linear forwards infinite;
}

@keyframes glitch-interval {
    0% {
        opacity: 0;
    }

    75% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@keyframes glitch {
    from {
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    }

    to {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* */

.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    z-index: 1;
}

.sticky video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 75vh;
}

.intro-inner {
    position: relative;
    top: -100vh;
    padding: 5vw 5vw 0 5vw;
}

.intro-inner img:nth-child(1) {
    display: block;
}

.intro-inner img:nth-child(2) {
    display: none;
}

@media (max-aspect-ratio: 4 / 3) {
    .intro-inner img:nth-child(1) {
        display: none;
    }

    .intro-inner img:nth-child(2) {
        display: block;
    }
}

/* */

.top {
    display: grid;
    gap: 1.5rem
}

@media (min-width: 768px) {
    .top {
        grid-template-columns: 1fr 2fr;
    }

    .top h2 {
        padding-top: 0.75rem;
    }
}

/* */

.cards-container {
    height: 100vh;
    padding: 25vh 10vw;
}

.cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-height: 100%;
    margin-top: 25vh;
    border: 5px solid #ffffff;
    background-color: #cccccc;
    opacity: 0;
    aspect-ratio: 16 / 9;
}

@media (min-width: 768px) {
    .card {
        border: 10px solid #ffffff;
    }
}

/* */

.video-grid {
    display: grid;
    gap: var(--space-sm);
    padding: 0 5vw;
}

@media (min-width: 768px) {
    .video-grid {
        gap: var(--space-lg);
    }
}

.video-grid-item {
    display: flex;
    justify-content: var(--jc);
    opacity: 0;
    --w-sm: 50%;
    --w-md: 75%;
    --w-lg: 100%;
}

@media (min-width: 768px) {
    .video-grid-item {
        --w-sm: 30%;
        --w-md: 40%;
        --w-lg: 50%;
    }
}

.video-grid-item video {
    aspect-ratio: 1 / 1;
}

.video-grid-item:nth-child(1) video {
    width: var(--w-md);
}

.video-grid-item:nth-child(2) video {
    width: var(--w-lg);
}

.video-grid-item:nth-child(3) video {
    width: var(--w-sm);
}

.video-grid-item:nth-child(4) video {
    width: var(--w-lg);
}

.video-grid-item:nth-child(5) video {
    width: var(--w-md);
}

.video-grid-item:nth-child(6) video {
    width: var(--w-sm);
}

/* */

.map-container {
    position: relative;
    height: 100vh;
}

.map {
    position: absolute;
    top: 0;
    right: 0;
    aspect-ratio: 1 / 1;
    max-width: 100vh;
    width: 100%;
    opacity: 1;
}

.map img {
    width: 100%;
    height: 100%;
}

.pin {
    position: absolute;
    transform-origin: center center;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    width: max(1.5rem, 2.5vw);
    height: max(1.5rem, 2.5vw);
    border-radius: 50%;
    background-color: #00ff00;
    opacity: 0;
    animation: pulse 2s infinite;
}

.pin1 {
    top: 79.3%;
    left: 76.7%;
}

.pin2 {
    top: 58.3%;
    left: 77.3%;
}

.pin3 {
    top: 79.3%;
    left: 76.7%;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 255, 0, 0.5);
    }

    100% {
        box-shadow: 0 0 0 2.5vw rgba(0, 255, 0, 0);
    }
}

.step {
    position: relative;
    display: grid;
    height: 100vh;
    opacity: 0.25;
}

@media (min-width: 540px) {
    .step {
        grid-template-columns: 1fr 1fr;
    }
}

.step-content {
    height: fit-content;
}

.step-content h3 {
    margin-bottom: 1.5rem;
}

.video-embed {
    border: 1px solid #00ff00;
}

/* */

footer {
    position: relative;
    padding-top: 5vw;
    color: #000000;
    background-color: #00ff00;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .footer-grid {
        grid-template-columns: 37ch 1fr 17ch;
    }

    .footer-grid>*:nth-child(2) {
        grid-column: 3;
    }
}

.credits-list {
    font-size: var(--step--1);
    list-style: none;
}

.credits-list-item {
    margin-bottom: clamp(1rem, 0.4286rem + 2.8571vi, 3rem);
}

.credits-list-item h4 {
    margin-bottom: 0.25rem;
}

.bottom img {
    width: 100%;
}

.bottom img:nth-child(1) {
    display: block;
}

.bottom img:nth-child(2) {
    display: none;
}

@media (min-width: 768px) {
    .bottom img:nth-child(1) {
        display: none;
    }

    .bottom img:nth-child(2) {
        display: block;
    }
}

.btn-scrolltop {
    position: absolute;
    right: 1.5rem;
    bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    border: none;
    border-radius: 50%;
    background-color: #000000;
    cursor: pointer;
}

.btn-scrolltop svg {
    fill: hsl(120, 100%, 50%);
    ;
    width: 40%;
}

.btn-scrolltop:hover svg {
    fill: hsl(120, 100%, 40%);
    ;
}

/* */

.mb {
    margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
    .mb {
        margin-bottom: var(--space-lg);
    }
}

/* */

.text-black {
    color: #000000;
}

/* */

.hidden {
    position: absolute;
    visibility: hidden;
    pointer-events: none;
    clip: rect(0 0 0 0);
    margin: -1px;
    overflow: hidden;
}

/* */

p {
    font-size: larger;
}

.footer-grid p {
    font-size: inherit;
}