@font-face {
    font-family: 'Trafika';
    src: url("../fonts/Trafika/Trafika-Sans.otf") format("opentype");
}

@font-face {
    font-family: 'Roobert';
    src: url("../fonts/Roobert/Roobert-Regular.otf") format("opentype");
}

@font-face {
    font-family: 'Space Grotesk';
    src: url("../fonts/Space_Grotesk/SpaceGrotesk-VariableFont_wght.ttf") format("truetype");
}

@font-face {
    font-family: 'Instrument Serif';
    src: url("../fonts/Instrument_Serif/InstrumentSerif-Regular.ttf") format("truetype");
}

@font-face {
    font-family: 'Instrument Serif Italic';
    src: url("../fonts/Instrument_Serif/InstrumentSerif-Italic.ttf") format("truetype");
}

@font-face {
    font-family: 'Rinter';
    src: url("../fonts/Rinter/OpenTypePS/Rinter.otf") format("opentype");
}

body,
html {
    margin: 0;
    padding: 0;
    font-family: 'Trafika', sans-serif;
    font-size: calc((100vw * .005) + 10px);
    font-weight: 400;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    webkit-overflow-scrolling: touch;
    background-color: #0D0D0A;
    cursor: url('../icons/banana_mouse.png'), default;
    color: #E4E1D4;
}

*:focus,
*:active,
*:hover,
input,
input:focus,
input:active,
input:hover {
    outline: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
}

input {
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    color: #E4E1D4;
    /* cursor: url('../icons/text-edit.png'), text; */
}

h1,
h2,
h3,
h4 {
    font-family: 'Trafika', sans-serif;
    color: #E4E1D4;
}

a {
    text-decoration: none
}

span {
    color: #494746;
}

.grain {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
    z-index: 300;
    transform: translateZ(0);
}

.grain:before {
    content: "";
    top: -10rem;
    left: -10rem;
    width: calc(100vw + 20rem);
    height: calc(100vh + 20rem);
    z-index: 9999;
    position: fixed;
    background-image: url(https://upload.wikimedia.org/wikipedia/commons/5/5c/Image_gaussian_noise_example.png);
    opacity: 0.1;
    pointer-events: none;
    -webkit-animation: noise 1s steps(2) infinite;
    animation: noise 1s steps(2) infinite;
}

@-webkit-keyframes noise {
    to {
        transform: translate3d(-7rem, 0, 0)
    }
}

@keyframes noise {
    0% {
        transform: translate3d(0, 9rem, 0)
    }
    10% {
        transform: translate3d(-1rem, -4rem, 0)
    }
    20% {
        transform: translate3d(-8rem, 2rem, 0)
    }
    30% {
        transform: translate3d(9rem, -9rem, 0)
    }
    40% {
        transform: translate3d(-2rem, 7rem, 0)
    }
    50% {
        transform: translate3d(-9rem, -4rem, 0)
    }
    60% {
        transform: translate3d(2rem, 6rem, 0)
    }
    70% {
        transform: translate3d(7rem, -8rem, 0)
    }
    80% {
        transform: translate3d(-9rem, 1rem, 0)
    }
    90% {
        transform: translate3d(6rem, -5rem, 0)
    }
    to {
        transform: translate3d(-7rem, 0, 0)
    }
}

.bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 10px;
    background-color: #2a65c3;
    z-index: 1000;
    transition: all 0.1s cubic-bezier(.075, .82, .165, 1);
}

nav {
    width: calc(100% - 2rem);
    margin: 0;
    position: fixed;
    top: 0;
    left: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99;
}

nav .txt {
    margin: 1rem 0 0;
    font-size: 1.6rem;
    line-height: 1.4rem;
}

nav img {
    height: 3.4rem;
    width: auto;
    margin: 1vw 0 0;
}

nav .btn {
    margin-top: 0.2rem;
    padding: 0.5rem 1.6rem 0.2rem;
    border-radius: 0.6rem;
    font-size: 1.4rem;
    background-color: #E4E1D4;
    color: #0D0D0A;
    border: solid 1px #E4E1D4;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 1s cubic-bezier(.075, .82, .165, 1);
}

nav .btn:hover {
    background-color: #0D0D0A;
    border: solid 1px #E4E1D4;
    color: #E4E1D4;
    text-decoration: line-through;
    transition: all 1s cubic-bezier(.075, .82, .165, 1);
    /* transition-delay: 0.2s; */
}

main {
    max-width: 100%;
    /* overflow-x: hidden; */
    cursor: url('../icons/banana_mouse.png'), default;
}

.mid-nav {
    height: 100vh;
    width: calc(100% - 0rem);
    display: flex;
    justify-content: center;
    align-content: center;
}

.mid-nav .mid-nav-container {
    width: 100%;
    margin: 4rem auto 8rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mid-nav .lnk {
    padding: 1rem;
    font-size: 2.2rem;
    /* cursor: pointer; */
    cursor: url('../icons/pointer.png'), pointer;
    transition: all 1s cubic-bezier(.075, .82, .165, 1);
    transition-delay: 0.2s;
}

.mid-nav .lnk:hover a {
    text-decoration: line-through;
    transition: all 1s cubic-bezier(.075, .82, .165, 1);
    transition-delay: 0.2s;
}

.mid-nav .lnk l {
    margin-left: 0.1rem;
    font-weight: 300;
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    margin-right: 0.6rem;
    color: #494746;
    display: block;
}

.mid-nav hr {
    height: 0rem;
    width: 1px;
    background-color: #494746;
    opacity: 0.4;
}

t {
    width: 100%;
    margin: 0 auto;
    position: absolute;
    top: -2.2rem;
    left: 0rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.1rem;
    /* font-style: italic; */
    text-align: right;
    color: #E4E1D4;
    opacity: 0.4;
    ;
}

vrt {
    width: 100%;
    height: 1px;
    display: block;
    background-color: #494746;
}

.sc-01 {
    width: calc(100% - 0rem);
    height: calc(73svh + 56svw - 0rem);
    margin: 0rem auto 0;
    position: relative;
    overflow: hidden;
    /* background-color: #fff; */
}

.sc-01 .txt-cont {
    width: 100%;
    height: auto;
    /* height: 30vw; */
    margin: 0rem 0 0;
    overflow: hidden;
    display: inline-block;
    white-space: nowrap;
    position: absolute;
    top: 100svh;
    left: 0;
    transform: translateY(-100%);
    z-index: 2;
    mix-blend-mode: difference;
}

.sc-01 h1 {
    width: 100%;
    margin: 0rem 0 0;
    text-align: center;
    overflow-wrap: break-word;
}

.sc-01 h2 {
    width: auto;
    margin: 0 0 0 0.8vw;
    font-family: 'Instrument Serif', serif;
    font-size: calc(2vw + 2vh);
    font-weight: 400;
    color: #E4E1D4;
}

.sc-01 img {
    width: 80%;
    height: 40svh;
    margin: 0;
    object-fit: stretch;
    object-position: center;
    position: absolute;
    left: 9%;
    top: 10svh;
    z-index: 1;
    opacity: 0.8;
}

.sc-01 .txt-cont img {
    position: relative;
    width: 100%;
    height: 40vh;
    left: 0;
    top: 0;
}

.sc-01 .vid-cont {
    /* width: 80vw;
    height: auto;
    margin: 0 auto; */
    width: 100%;
    height: calc(56.25vw - 1.125rem);
    height: 80vh;
    position: absolute;
    top: 73svh;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
    overflow: hidden;
}

.sc-01 .vid-cont video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    margin: auto;
}

.sc-02 {
    width: calc(100% - 2rem);
    max-width: 1200px;
    margin: 0rem auto 0;
    position: relative;
}

.sc-02 h1 {
    width: 100%;
    max-width: 960px;
    font-size: 3.2rem;
    line-height: 3.4rem;
    margin: 1.2rem auto 0.4rem 0;
    color: #E4E1D4;
}

.sc-02 hl {
    width: 100%;
    max-width: 960px;
    margin: 0 auto 3.4rem 0;
    display: block;
    font-family: 'Instrument Serif', serif;
    font-weight: bold;
    font-size: 1.6rem;
    font-weight: 400;
    opacity: 0.6;
}

.sc-02 span {
    display: block;
    /* max-width: 1200px; */
    margin: 0;
    padding: 0.8rem 0 0.4rem 2rem;
    border-left: solid 1px #E4E1D4;
    font-size: 1.6rem;
    line-height: 2.6rem;
    text-align: justify;
    color: #E4E1D4;
}

.sc-03 {
    width: calc(100% - 10vw);
    margin: 25vh auto 0;
    position: relative;
    display: flex;
}

.sc-03 .txt-cont {
    width: 100%;
}

.sc-03 .projects {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4vw 2vw;
}

.sc-03 .projects .project {
    width: calc(100%/3 - 4vw/3);
    margin: 0 0;
    /* cursor: pointer; */
    cursor: url('../icons/pointer.png'), pointer;
    transition: all 1s cubic-bezier(.075, .82, .165, 1);
}

.sc-03 .projects .project h2 {
    margin: 0;
    font-size: 1.4rem;
    color: #E4E1D4;
}

.sc-03 .projects .project hl {
    margin: 0 0 0.4rem;
    padding-top: 0.8rem;
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.76rem;
    font-weight: 400;
    opacity: 0.6;
    color: #E4E1D4;
    text-transform: uppercase;
    border-top: solid 1px #E4E1D4;
}

.sc-03 .projects .project span {
    font-size: 1.2rem;
    color: #E4E1D4;
    opacity: 0.6;
}

.sc-03 .projects .project img,
.sc-03 .projects .project video {
    width: 100%;
    margin: 0.4rem 0 0.8rem;
    /* aspect-ratio: 5/6; */
    object-fit: cover;
    object-position: center;
    transition: all 1.5s cubic-bezier(.075, .82, .165, 1);
}

.sc-03 .projects .project:hover img,
.sc-03 .projects .project:hover video {
    border-radius: 1.8rem;
    transition: all 1.5s cubic-bezier(.075, .82, .165, 1);
}

.sc-04 {
    width: calc(100% - 10vw);
    margin: 25vh auto 0;
    display: flex;
    align-items: flex-start;
    position: relative;
}

.sc-04 .itm {
    width: 50%;
    height: 100%;
}

.sc-04 .itm h2 {
    width: 80%;
    margin: 0 auto 0 0;
    font-size: 3.4rem;
    color: #E4E1D4;
}

.sc-04 .itm hl {
    margin: 0.6rem 0 0.2rem;
    display: block;
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 2rem;
    color: #E4E1D4;
    opacity: 0.6;
}

.sc-04 .txt {
    width: 80%;
    margin: 15svh 0 15svh auto;
    /* padding-bottom: 20svh; */
    font-size: 1.6rem;
    color: #E4E1D4;
}

.sc-04 .txt:last-of-type {
    padding-bottom: 0;
}

.sc-04 .txt h3 {
    font-size: 2.2rem;
    color: #E4E1D4;
    margin: 0.4rem 0 0.8rem;
}

.sc-04 .txt l {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #E4E1D4;
    opacity: 0.6;
}

.sc-04 .sticky {
    /* height: calc(100svh - 5rem); */
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    /* justify-content: space-between; */
    position: sticky;
    top: 5rem;
}

.sc-05 {
    width: calc(100% - 10vw);
    margin: 25vh auto 0;
    position: relative;
}

.sc-05 .video {
    width: 100%;
}

.sc-05 .video video {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
}

.sc-05 .video span {
    display: block;
    font-size: 2rem;
    margin: 6rem auto 2.6rem;
    text-align: center;
    text-decoration: line-through;
    color: #E4E1D4;
}

.sc-05 .txt-m {
    width: calc(100% - 2rem);
    margin: 1.2rem auto 0rem;
    text-align: center;
}

.sc-05 .txt-m h3 {
    display: inline-block;
    margin: 0 auto;
    padding: 0 0 0.1rem;
    font-size: 1.6rem;
    border-bottom: solid 1px #31302F;
    /* cursor: url('../icons/pointer.png'), pointer; */
}

.sc-05 .projects {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 4vw 2vw;
}

.sc-05 .projects .project {
    width: calc(100%/4 - 6vw/4);
    margin: 0 0;
}

.sc-05 .projects .project img {
    width: 100%;
    margin: 0;
    /* aspect-ratio: 4/5; */
    object-fit: cover;
    object-position: center;
}

.sc-05 .projects .project .txt {
    margin-top: 0.4rem;
    display: flex;
    align-items: top;
}

.sc-05 .projects .project .txt h2 {
    margin: 0 0 0 0.4rem;
    font-weight: 400;
    font-size: 1.4rem;
    color: #E4E1D4;
}

.sc-05 .projects .project .txt nr {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    opacity: 0.6;
}

.sc-06 {
    width: calc(100% - 10vw);
    margin: 25vh auto 50vh;
    padding-bottom: 10vh;
    position: relative;
}

.sc-06 .txt h2 {
    font-size: 2.8rem;
}

.sc-06 .txt h3 {
    font-size: 2.8rem;
    margin-top: 6rem;
    margin-bottom: 0;
}

.sc-06 .txt hl {
    margin: 0 0 2.2rem;
    display: block;
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 1.4rem;
    color: #E4E1D4;
    opacity: 0.6;
}

.sc-06 form {
    width: 100%;
    max-width: 44rem;
    margin: 10vh 0 0 auto;
}

.sc-06 form-group {
    width: 100%;
    display: block;
    position: relative;
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
}

.sc-06 form-group input {
    width: 34rem;
    border: none;
    border-bottom: solid 1px #E4E1D4;
    background-color: transparent;
    padding: 0 0 0.4rem 10rem;
    font-size: 1.6rem;
    font-family: 'Trafika', sans-serif;
}

.sc-06 form-group label {
    position: absolute;
    top: 0;
    left: 0;
    color: #E4E1D4;
    pointer-events: none;
    opacity: 0.6;
}

.sc-06 form-group input[type="button"] {
    width: auto;
    padding: 0 0.4rem;
    margin: 3rem 0 0 auto;
    font-size: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    /* cursor: pointer; */
    cursor: url('../icons/pointer.png'), pointer;
    color: #E4E1D4;
    border: solid 1px #E4e1d4;
    padding: 0.4rem 3.2rem 0.2rem;
    border-radius: 1rem;
}

.sc-07 {
    width: 100%;
    height: 45vh;
    margin: 1rem auto 0;
    position: relative;
    overflow: hidden;
    background-color: #FCDF5F;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.sc-07 img {
    width: 100%;
    height: auto;
    margin: 5vh 0 3vh;
    object-position: center;
    object-fit: contain;
    filter: invert(1);
    opacity: 0.94;
}

.sc-07 .bnna {
    height: auto;
    width: 80vh;
    position: absolute;
    left: 50%;
    top: 40%;
    transform: translate(-50%, -50%) rotate(60deg);
    mix-blend-mode: difference;
    filter: invert(1);
    z-index: 1;
    pointer-events: none;
}

.sc-07 .dtls {
    width: calc(100% - 2rem);
    margin: 0 auto 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #31302F;
}

.sc-07 .dtls p {
    flex: 1;
    margin: 0;
    font-size: 1.3rem;
    font-family: 'Space Grotesk', sans-serif;
}

.sc-07 .dtls p:last-of-type {
    text-align: right;
}

.sc-07 .dtls hl {
    /* margin: 0 0 2.2rem; */
    display: block;
    font-family: 'Instrument Serif', serif;
    font-weight: 400;
    font-size: 1.5rem;
    color: #31302F;
    /* cursor: url('../icons/pointer.png'), pointer; */
}

.sc-07 .dtls img {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0.15rem 0.1rem -0.15rem 0rem;
    object-fit: contain;
    object-position: center;
    filter: invert(0);
    -webkit-animation: circle infinite 12s linear;
    -moz-animation: circle infinite 12s linear;
    -o-animation: circle infinite 12s linear;
    animation: circle infinite 12s linear;
}

@-webkit-keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-moz-keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-o-keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes circle {
    0% {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.sc-08 {
    width: 100%;
    height: auto;
    margin: 25vh auto 10vh;
    display: flex;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
}

.sc-08 h2 {
    margin: 0;
    color: #494746;
    text-align: center;
    text-decoration: line-through;
}

.sc-08 .arrows {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1rem auto 0;
    font-size: 1.2rem;
}

.sc-08 .arrows>* {
    border: solid #E4E1D4 1px;
    border-radius: 0.8rem;
    padding: 0.3rem 1.6rem 0.2rem;
    letter-spacing: -0.1rem;
}

.sc-08 .arrows>*:hover {
    background-color: #E4E1D4;
    color: #000;
    /* cursor: pointer; */
    cursor: url('../icons/pointer.png'), pointer;
}

.sc-08 .container {
    height: 8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.sc-08 .container .content-wrapper {
    width: 1400vw;
    display: flex;
    position: absolute;
    left: 0;
    overflow: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.sc-08 .container::-webkit-scrollbar {
    display: none;
}

.sc-08 .container .fct {
    width: 100vw;
    flex-shrink: 0;
    text-align: center;
}

.sc-08 .container .fct h4 {
    display: block;
    width: 80vw;
    max-width: 1080px;
    margin: 0 auto;
    font-size: 1.6rem;
}

@media only screen and (max-width: 860px) {
    .sc-01 h2 {
        top: calc(100svh - 2vw - 10vh);
    }
    .mid-nav .mid-nav-container {
        width: auto;
        margin: 3.4rem 50% 2rem auto;
        transform: translateX(50%);
        flex-direction: column;
        display: inline-block;
    }
    .mid-nav .lnk l {
        display: inline-block;
        margin-right: 0.4rem;
    }
    .sc-03 {
        width: 100%;
    }
    .sc-03 t {
        width: calc(100% - 2rem);
        left: 1rem;
    }
    .sc-03 .projects {
        width: auto;
        overflow: scroll;
        flex-wrap: nowrap;
        gap: 2rem;
        padding: 0 1rem;
    }
    .sc-03 .projects .project {
        width: 20rem;
        min-width: 20rem;
        margin-bottom: 3rem;
    }
    .sc-04 {
        flex-direction: column;
    }
    .sc-04 .itm {
        width: 100%;
    }
    .sc-04 .sticky {
        height: auto;
        margin-bottom: 3rem;
    }
    .sc-05 .projects .project {
        flex: 1 1 50%;
        max-width: 50%;
    }
    .sc-06 form-group input {
        width: calc(100vw - 8rem);
        padding: 0 0 0.4rem 6rem;
    }
}