h1 {
    display: none;
}

h2 {
    font-family: 'NewIcon';
}

header {
    background-color: var(--bigeye-bg-color);
    height: 100vh;
    color: var(--bigeye-color);
}

.backgound-video-container {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    z-index: 1;
    mix-blend-mode: exclusion;
    pointer-events: none;
}

.background-video {
    width: 100%;
    height: 120%;
    object-fit: cover;
}

.row-header {
    position: relative;
    z-index: 9;
}

.header-container div.row {
    height: 100vh;
}

nav {
    padding: 20px;
}

.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    mix-blend-mode: difference;
}



.nav-list {
    list-style: none;
    display: flex;
    gap: 20px;
    width: 100%;
    justify-content: space-between;
    padding: 0px;
}

.list-item-link {
    display: flex;
    gap: 20px;
    align-items: center;
    text-decoration: none;
}

.list-item-link a {
    color: var(--bigeye-color);
    font-family: 'DmMono', 'mono-space';
    font-size: var(--text-info-fontSize);
    text-decoration: none;
    text-transform: uppercase;
    transition: font-size 0.2s;
}

.list-item-link a:hover {
    /*font-size: calc(var(--text-info-fontSize) + 1px);*/
}

.logo-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    max-width: 80px;
}

.logo-src {
    width: 100%;
    height: auto;
}



.middle-text-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 0px;
    transform: translateY(200%);
}

.middle-text-container h2 {
    font-family: 'NewIcon', serif;
    font-size: var(--header-middle-text-fontSize);
    color: var(--bigeye-color);
}

.last-text {
    margin-top: -12px;
}

.middle-text-container h2::first-letter {
    font-family: 'NewIconScript', script;
}

.middle-text-container h2 div:first-child div::first-letter {
    font-family: 'NewIconScript', script;
    text-transform: uppercase;
    overflow-y: visible;
}

.end-text-container {
    display: flex;
    flex-direction: column;
    align-items: start;
    height: 100%;
    gap: 0px;
}





.bottom-text-container {
    position: absolute;
    display: flex;
    flex-direction: row;
    gap: 5px;
    overflow: hidden;
    bottom: 40px
}

.text-container {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.arrow-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding-bottom: 30px;
    padding-top: 43px;
    /* transform: translateX(20px);
    mix-blend-mode: difference;
    z-index: 12;*/
}

.arrow-line {
    height: 100%;
    background-color: var(--bigeye-color);
    width: 1.9px;
    margin-left: 6.5px;
    transform: translateY(20px);
}

.arrow-head {
    font-family: 'NeueMontreal', sans-serif;
    font-size: 25px;
    color: var(--bigeye-color);
}


.bottom-text-container span {
    font-family: 'Arges', 'sans-serif';
    font-size: var(--backMonth-fontSize);
    color: var(--bigeye-color);
    text-transform: uppercase;
    font-variation-settings:
        'wght' var(--backMonth-weight),
        'wdth' var(--backMonth-width),
        'slnt' var(--backMonth-slant);
}

.bottom-text-container span.sm-text {
    font-size: calc(var(--backMonth-fontSize) / 2);
    font-variation-settings:
        'wght' 900,
        'wdth' var(--backMonth-width),
        'slnt' var(--backMonth-slant);
    transform: translateY(67%);
}


.scroll-indicator {
    display: flex;
    justify-content: center;
    z-index: 12;
}

.scroll-indicator span {
    font-family: 'DmMono', 'mono-space';
    font-size: var(--text-info-fontSize);
    color: var(--bigeye-color);
    text-decoration: none;
    text-transform: uppercase;
    transform: translateY(-100%);
}



.contact-container {
    display: flex;
    justify-content: end;
    height: 100%;
    margin-bottom: 20px;
}

.contact-container a {
    font-family: 'DmMono', 'mono-space';
    font-size: calc(var(--text-info-fontSize) * 1.2);
    text-decoration: none;
    text-transform: uppercase;
    transition: font-size 0.2s;
    color: var(--bigeye-color);
    mix-blend-mode: exclusion;
}

@media only screen and (min-width:960px) {
    .logo-container {
        max-width: 100px;
    }

    .last-text {
        margin-top: -15px;
    }

    .middle-text-container {
        transform: translateY(110%);
    }

    .bottom-text-container {
        transform: translateY(0px);
    }

    .arrow-container {
        padding-bottom: 42px;
        padding-top: 68px;
    }

    .contact-container {
        margin-bottom: 40px;
    }


}










#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bigeye-bg-color);
    color: var(--text-white);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    z-index: 9999;
}

.percent-text {
    font-family: "DMMono", monospace;
    font-size: 15px;
    text-decoration: none;
    text-transform: uppercase;
}