@import "fonts.css";
@import "variables.css";
@import "header/header.css";
@import "header/header_mobile.css" (max-width: 1200px);
@import "footer/footer.css";
@import "footer/footer_mobile.css" (max-width: 1000px);
@import "../glitches/vhs_glitch.css";
@import "bootstrap-grid.min.css";
@import "../glitches/buttons_01.css";

*, ::before, ::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

html {
    background: #000;
    color: #eee;
    font-family: "Share Tech Mono", Consolas, Monaco, Consolas, Menlo, monospace, SFMono-Regular;
}

body {
    margin: 0 !important;
}

main {
    background: #000;
    min-height: 100vh;
    width: 100%;
    max-width: 1920px;
    margin: auto;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 { font-size: 5em; }

.center {
    text-align: center;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50% , -50%);
}

.typed-cursor {
    display:none;
}

.btn {
    text-transform: uppercase;
    text-decoration: none;
}

.show {
    opacity: 1;
    transition: opacity 500ms;
}

.hide {
    opacity: 0;
    transition: opacity 500ms;
}

::selection {
    background: #a5e5d4;
    color: #1d1e22;
    text-shadow: none;
}

::-moz-selection {
    background: #a5e5d4;
    color: #1d1e22;
    text-shadow: none;
}

#page {
    position: sticky;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
}

#intro {
    background: #101214;
    pointer-events: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    color: #519975;
}

#logo-container {
    transform-origin: 50% 50%;
    transform: scale(0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

#logo-container > svg {
    width: 70vw;
    height: 70vh;
    max-width: 800px;
    max-height: 600px;
}

.full-size {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right:0;
}

#clip-paths {
    position: absolute;
    top: 0;
    left: 0;
}

.full_width {
    width: 100%;
}

.half_width {
    width: 50%;
}

.full_height {
    height: 100%;
}

.half_height {
    height: 50%;
}

.full_screen_height {
    height: 100vh !important;
}

.half_screen_height {
    height: 50vh;
}

.flex_row {
    display: flex;
    flex-direction: row;
}

.flex_column {
    display: flex;
    flex-direction: column;
}

.flex_center {
    justify-content: center;
    align-content: center;
}

.justify_content_center {
    justify-content: center;
}

.align_content_center {
    align-content: center;
}

.text-center {
    text-align: center;
}

section {
    position: relative;
    max-width: 1920px;
    width: 100%;
    margin: auto;
}

section:not(:last-child)::after {
    content: "";
    width: 100%;
    height: 120px;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: -60px;
    backdrop-filter: blur(1.5rem);
    background-color: transparent;
    z-index: 5;
    mask: linear-gradient(transparent, black 50%, transparent);
}

section.banner_image {
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

section.banner_image .banner_image {
    width: 75vw;
    padding-top: 42%;
    position: relative;
    background: var(--home_banner_background);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.standard-section {
    justify-content: start;
    min-height: 75vh;
    height: 100%;
    width: 100%;
    padding: 3.5rem 0;
    margin: 0;
    position: relative;
    display: flex;
    align-items: center;
    z-index: unset;
}

.standard-section.layout3 > div:first-child {
    display: flex;
    flex-direction: row;
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.standard-section.layout2 {
    min-height: 25rem;
}

.standard-section .section-content-wrapper {
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    left: 0;
    right: 0;
    z-index: 1;
    overflow: hidden;
}

.standard-section .section-content-wrapper:after {
    display: inline-block;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.standard-section.layout3 .section-content-wrapper {
    position: relative;
    width: 50%;
}

.standard-section .section-image-container {
    -o-object-fit: cover;
    object-fit: cover;
    height: 100%;
    width: 100%;
    z-index: 1;
    position: relative;
}

.standard-section .section-image-span {
    box-sizing: border-box;
    display: block;
    overflow: hidden;
    width: initial;
    height: initial;
    background: none;
    opacity: 1;
    border: 0;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

.standard-section .section-image {
    position: absolute;
    inset: 0;
    box-sizing: border-box;
    padding: 0;
    border: medium none;
    margin: auto;
    display: block;
    width: 0;
    height: 0;
    min-width: 100%;
    max-width: 100%;
    min-height: 100%;
    max-height: 100%;
    vertical-align: middle;
    object-fit: cover;
}

.standard-section .section-content-container {
    z-index: 6;
    position: relative;
    left: 50%;
    display: block;
    color: #dadad1;
    padding: 1.3125rem;
    -webkit-backdrop-filter: blur(.35rem);
    backdrop-filter: blur(.35rem);
    background-color: rgba(0,0,0,.7);
    transition: transform .05s linear;
    width: calc((55% - 12.375rem)/12*8 + 7.875rem);
    transform: translate(-50%,0px);
}

.standard-section.layout2 .section-content-container {
    width: max-content;
    max-width: 100%;
}

.standard-section.layout3 .section-content-container {
    width: 45vw;
    max-width: 100%;
}

.standard-section .section-content-container.left {
    left: 33%;
}

.standard-section .section-content-container.right {
    left: 66%;
}

.standard-section .section-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    height: 100%;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(90deg,#635c61 .125rem,transparent 0) 0 0,linear-gradient(90deg,#635c61 .125rem,transparent 0) 0 100%,linear-gradient(270deg,#635c61 .125rem,transparent 0) 100% 0,linear-gradient(270deg,#635c61 .125rem,transparent 0) 100% 100%,linear-gradient(180deg,#635c61 .125rem,transparent 0) 0 0,linear-gradient(180deg,#635c61 .125rem,transparent 0) 100% 0,linear-gradient(0deg,#635c61 .125rem,transparent 0) 0 100%,linear-gradient(0deg,#635c61 .125rem,transparent 0) 100% 100%;
    background-repeat: repeat, repeat, repeat, repeat, repeat, repeat, repeat, repeat;
    background-size: auto, auto, auto, auto, auto, auto, auto, auto;
    background-repeat: no-repeat;
    background-size: .8rem .8rem;
}

.standard-section.layout2 .section-content {
    align-items: center;
    text-align: center;
}

.standard-section.layout3 .section-content-container {
    width: calc((66% - 12.375rem)/12*8 + 7.875rem);
}

.standard-section .section-title {
    color: #dadad1;
    margin: 0 0 1rem;
    margin-bottom: 1.25rem;
    font-style: normal;
    font-weight: 800;
    font-size: 52px;
    line-height: 54px;
    text-transform: uppercase;
    display: block;
    word-wrap: break-word;
    overflow-wrap: anywhere;
    width: 100%;
}

.standard-section .section-desc {
    color: #dadad1;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    margin: 0 0 1.5rem;
}

@media screen and (max-width: 1800px) {
    .standard-section .section-title {
        font-size: 32px;
        line-height: 34px;
    }
}

@media screen and (max-width: 1600px) {
    .standard-section.layout3 .section-content-container {
        width: calc((80% - 12.375rem)/12*8 + 7.875rem);
    }
}

@media screen and (max-width: 1200px) {
    .standard-section {
        padding: 11rem 0;
    }

    .standard-section .section-content-container {
        width: calc((75% - 12.375rem)/12*8 + 7.875rem);
    }

    .standard-section.layout2 .section-content-container {
        width: max-content;
    }

    .standard-section.layout3 .section-content-container {
        width: calc((100% - 10.375rem)/12*8 + 7.875rem);
    }

    .standard-section .section-title {
        font-size: 36px;
        line-height: 38px;
    }

    .standard-section .section-desc {
        font-size: 18px;
        line-height: 25px;
    }
}

@media screen and (max-width: 960px) {
    .standard-section {
        padding: 8rem 0;
    }

    .standard-section .section-content-container {
        width: calc((85% - 10rem)/12*9 + 9rem);
        padding: 1.2rem;
    }

    .standard-section.layout2 .section-content-container {
        width: max-content;
    }

    .standard-section.layout3 .section-content-container {
        width: calc((100% - 6.375rem)/12*8 + 12.875rem);
    }

    .standard-section .section-title {
        font-size: 40px;
        line-height: 42px;
    }
}

@media screen and (max-width: 768px) {
    .standard-section {
        padding: 5.5rem 0;
    }

    .standard-section .section-content-container {
        width: calc((100% - 8rem)/12*10 + 10.125rem);
    }

    .standard-section.layout2 .section-content-container {
        width: max-content;
    }

    .standard-section.layout3 .section-content-container {
        width: 100%;
    }

    .standard-section .section-content-container.left, .standard-section .section-content-container.right {
        left: 50%;
    }

    .standard-section .section-content {
        padding: 2rem 1.5rem;
    }

    .standard-section .section-title {
        font-size: 21px;
        line-height: 24px;
    }
}

@keyframes flicker {
    0% {
        opacity: 0.27861;
    }
    5% {
        opacity: 0.34769;
    }
    10% {
        opacity: 0.23604;
    }
    15% {
        opacity: 0.90626;
    }
    20% {
        opacity: 0.18128;
    }
    25% {
        opacity: 0.83891;
    }
    30% {
        opacity: 0.65583;
    }
    35% {
        opacity: 0.67807;
    }
    40% {
        opacity: 0.26559;
    }
    45% {
        opacity: 0.84693;
    }
    50% {
        opacity: 0.96019;
    }
    55% {
        opacity: 0.08594;
    }
    60% {
        opacity: 0.20313;
    }
    65% {
        opacity: 0.71988;
    }
    70% {
        opacity: 0.53455;
    }
    75% {
        opacity: 0.37288;
    }
    80% {
        opacity: 0.71428;
    }
    85% {
        opacity: 0.70419;
    }
    90% {
        opacity: 0.7003;
    }
    95% {
        opacity: 0.36108;
    }
    100% {
        opacity: 0.24387;
    }
}

@keyframes textShadow {
    0% {
        text-shadow: 0.4389924193300864px 0 1px rgba(0,30,255,0.5), -0.4389924193300864px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    5% {
        text-shadow: 2.7928974010788217px 0 1px rgba(0,30,255,0.5), -2.7928974010788217px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    10% {
        text-shadow: 0.02956275843481219px 0 1px rgba(0,30,255,0.5), -0.02956275843481219px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    15% {
        text-shadow: 0.40218538552878136px 0 1px rgba(0,30,255,0.5), -0.40218538552878136px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    20% {
        text-shadow: 3.4794037899852017px 0 1px rgba(0,30,255,0.5), -3.4794037899852017px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    25% {
        text-shadow: 1.6125630401149584px 0 1px rgba(0,30,255,0.5), -1.6125630401149584px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    30% {
        text-shadow: 0.7015590085143956px 0 1px rgba(0,30,255,0.5), -0.7015590085143956px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    35% {
        text-shadow: 3.896914047650351px 0 1px rgba(0,30,255,0.5), -3.896914047650351px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    40% {
        text-shadow: 3.870905614848819px 0 1px rgba(0,30,255,0.5), -3.870905614848819px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    45% {
        text-shadow: 2.231056963361899px 0 1px rgba(0,30,255,0.5), -2.231056963361899px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    50% {
        text-shadow: 0.08084290417898504px 0 1px rgba(0,30,255,0.5), -0.08084290417898504px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    55% {
        text-shadow: 2.3758461067427543px 0 1px rgba(0,30,255,0.5), -2.3758461067427543px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    60% {
        text-shadow: 2.202193051050636px 0 1px rgba(0,30,255,0.5), -2.202193051050636px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    65% {
        text-shadow: 2.8638780614874975px 0 1px rgba(0,30,255,0.5), -2.8638780614874975px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    70% {
        text-shadow: 0.48874025155497314px 0 1px rgba(0,30,255,0.5), -0.48874025155497314px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    75% {
        text-shadow: 1.8948491305757957px 0 1px rgba(0,30,255,0.5), -1.8948491305757957px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    80% {
        text-shadow: 0.0833037308038857px 0 1px rgba(0,30,255,0.5), -0.0833037308038857px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    85% {
        text-shadow: 0.09769827255241735px 0 1px rgba(0,30,255,0.5), -0.09769827255241735px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    90% {
        text-shadow: 3.443339761481782px 0 1px rgba(0,30,255,0.5), -3.443339761481782px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    95% {
        text-shadow: 2.1841838852799786px 0 1px rgba(0,30,255,0.5), -2.1841838852799786px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
    100% {
        text-shadow: 2.6208764473832513px 0 1px rgba(0,30,255,0.5), -2.6208764473832513px 0 1px rgba(255,0,80,0.3), 0 0 3px;
    }
}

.crt::after {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.05);
    opacity: 0;
    z-index: 2;
    pointer-events: none;
    animation: flicker 0.15s infinite;
}

.crt::before {
    content: " ";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.05);
    bottom: 0;
    right: 0;
    z-index: 2;
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
}

.crt {
    animation: textShadow 1.6s infinite;
}

.scanlines {
    position: relative;
    overflow: hidden;
}

.scanlines:before, .scanlines:after {
    display: block;
    pointer-events: none;
    content: '';
    position: absolute;
}

.scanlines:before {
    width: 100%;
    height: 2px;
    z-index: 1;
    background: rgba(0, 0, 0, .3);
    opacity: 0.75;
    animation: scanline 6s linear infinite;
}

.scanlines:after {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: linear-gradient(to bottom, transparent 50%, var(--scanline_color) 51%);
    background-size: 100% 4px;
    animation: scanlines 1s steps(60) infinite;
}

@keyframes scanline {
    0% {
        transform: translate3d(0, 200000%, 0);
    }
}

@keyframes scanlines {
    0% {
        background-position: 0 50%;
    }
}

.scroll-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    cursor: pointer;
}

.scroll-container {
    position: relative;
    width: 35px;
    height: 90px;
}

.scroll-chevron {
    position: absolute;
    width: 2.1rem;
    height: 0.48rem;
    opacity: 0;
    transform: scale(0.3);
    animation: move-chevron 3s ease-out infinite;
}

.scroll-chevron:first-child {
    animation: move-chevron 3s ease-out 1s infinite;
}

.scroll-chevron:nth-child(2) {
    animation: move-chevron 3s ease-out 2s infinite;
}

.scroll-chevron:before, .scroll-chevron:after {
    content: '';
    position: absolute;
    top: 0;
    height: 100%;
    width: 50%;
    background: rgba(255, 0, 0, 0.25);
}

.scroll-chevron:before {
    left: 0;
    transform: skewY(30deg);
}

.scroll-chevron:after {
    right: 0;
    width: 50%;
    transform: skewY(-30deg);
}

@keyframes move-chevron {
    25% {
        opacity: 1;
    }
    33.3% {
        opacity: 1;
        transform: translateY(2.28rem);
    }
    66.6% {
        opacity: 1;
        transform: translateY(3.12rem);
    }
    100% {
        opacity: 0;
        transform: translateY(4.8rem) scale(0.5);
    }
}

i.arrow {
    border: solid white;
    border-width: 0 3px 3px 0;
    display: inline-block;
    padding: 3px;
    transition: all .3s ease-in-out;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    position: relative;
    top: -2px;
}

i.arrow.active {
    transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    top: 0;
}

.no_padding {
    padding: 0 !important;
}
