@import 'generics.css';
@import 'variables.css';
@import 'preloader.css';
@import 'interface.css';
@import 'text.css';


.CSiteBackground {
    position: fixed;

    left: 0px;
    top: 0px;

    width: 100%;
    height: 100%;

    background-color: #000000;
}

.CSite {
    position: fixed;

    left: 0px;
    top: 0px;

    width: 100%;
    min-height: var(--site-height);

    overflow-x: hidden;
}

.CScreen {
    position: relative;

    width: fit-content;
    min-width: 100%;
    height: var(--site-height);
    background-color: #000000;

    overflow-y: hidden;
}

.CHalfScreen {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: fit-content;
    min-width: 100%;
    min-height: calc(var(--site-height) * 0.5);
    background-color: #ffffff;

    overflow-y: hidden;
}

.CQuestionDeco {
    position: absolute;

    left: 36px;
    top: 60px;

    width: 280px;
    height: 400px;
}

.CScreenCentered {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100%;
    height: 100%;
}

.CScreenScrollElement {
    position: relative;

    height: 100%;

    display: flex;
    flex-direction: row;
    white-space: nowrap;

    overflow-y: hidden;
}

.CSubScreen {
    position: relative;

    min-width: 100vw;
    height: 100%;

    display: flex;
    flex-direction: row;

    white-space: nowrap;
}

.CScreenOverlay {
    position: absolute;

    pointer-events: none;

    left: 0px;
    top: 0px;

    width: 100vw;
    height: 100%;
}

.CScreenContent {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100vw;

    will-change: transform;

    white-space: nowrap;
}

.CContentVideoPlayer {
    position: relative;

    width: 100vh;
    max-width: 1080px;
    height: 100vh;
    max-height: 1080px;
}

.CScreenOverlayContent {
    position: relative;

    display: inline-block;

    grid-row: content-start / content-end;
    grid-column: content-start / content-end;

    will-change: transform;

    white-space: nowrap;
}

.CScreenBox {
    position: relative;

    display: inline-block;

    width: 20vw;
    height: 100%;

    background-color: white;

    border-radius: calc(var(--content-padding) * 0.1);
}

.CScreenContentFooter {
    position: absolute;

    display: grid;

    left: 0px;
    bottom: 0px;

    width: 100%;
    min-height: 125px;

    gap: 20px;

    grid-template-columns: [start] 1fr [center] 1fr [end];
    grid-template-rows: auto;
}

.CScreenContentFooter div:nth-child(1) {
    grid-column: start / center;
    justify-content: flex-start;
    align-items: center;
}

.CScreenContentFooter div:nth-child(2) {
    grid-column: center / end;
    justify-content: right;
    align-items: center;
}

.CScreenProgress {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 0px;
    height: 40px;

    transform: translate(-50%, -50%);
    background-color: #00a4e0;
}

.CScreenVideoContainer {
    position:absolute;

    left: 50%;
    top: 50%;

    width: 960px;
    height: 960px;

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

.CScreenVideoContainer::after {
    position: absolute;

    left: -2px;
    top: -2px;

    content: "";
    display: inline-block;

    width: calc(100% + 4px);
    height: calc(100% + 4px);

    background-image: radial-gradient(circle, rgb(23, 23, 26, 0) 50%, #17171a 70%);
}

.CScreenVideo {
    position:absolute;

    left: 0px;
    top: 0px;

    width: 100%;
    height: 100%;
}

.CScreenColumn1 {
    position: relative;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;

    width: calc(60vw - var(--content-padding));
    max-width: 1000px;
    height: 100%;

    white-space: normal;
}



.CScreenScrollArrow3 {
    position: absolute;

    left: 50%;
    bottom: 6vh;

    width: 2px;
    height: 100px;
    background-color: rgba(0, 0, 0, 1);
}

.CScreenScrollArrow3 img {
    position: absolute;

    left: calc(50% - 15px);
    bottom: -3px;

    width: 30px;
    height: 18px;
}

.CScreenScrollArrow2 {
    position: absolute;

    top: 50%;
    right: 6vw;

    width: 20vh;
    height: 2px;
    background-color: rgba(255, 255, 255, 1);
}

.CScreenScrollArrow2 img {
    position: absolute;

    right: -10px;
    bottom: calc(50% - 9px);

    width: 30px;
    height: 18px;

    transform: rotate(-90deg);
}

.CScreenScrollArrow1 {
    position: absolute;

    left: 50%;
    bottom: 0px;

    width: 2px;
    height: 20vh;
    background-color: rgba(255, 255, 255, 1);
}

.CScreenScrollArrow1 img {
    position: absolute;

    left: calc(50% - 15px);
    bottom: -3px;

    width: 30px;
    height: 18px;
}

.CIntroTT {
    width: 308px;
    height: 514px;
}

.CButton {
    position: relative;

    cursor: pointer;

    display: inline-block;

    padding: 30px 60px 30px 60px;
    border-radius: 60px;

    background-color: var(--primary-color);
    color: var(--text-color);

    transition-property: background-color, color;
    transition-duration: 0.5s;
    transition-timing-function: ease;
}

.CButton:hover {
    background-color: var(--text-color);
    color: var(--primary-color);
}

/*** </connections> ***/

@media (max-width: 1400px) {
    .CQuestionDeco {
        left: 36px;

        width: calc(280px * 0.75);
        height: calc(400px * 0.75);
    }

    .CIntroTT {
        width: 154px;
        height: 257px;
    }
}

@media (max-width: 970px) {


    .CScreenCentered {
        height: 100vh;
    }

    .CQuestionDeco {
        left: 10px;
        top: 0px;

        width: calc(280px * 0.3);
        height: calc(400px * 0.3);
    }

    .CSite {
        position: relative;
    }

    .CSubScreen {
        flex-direction: column;
    }

    .CScreenContent {
        width: 100vw;
        padding-top: 20vh;
        padding-bottom: 20vh;
    }

    .CScreenVideoContainer {
        width: 600px;
        height: 600px;
    }

    .CContentVideoPlayer {
        position: relative;

        width: 100vw;
        height: 100vw;
    }

    .CScreenColumn1 {
        width: calc(100vw - var(--content-padding) * 2);
    }

    .CScreen {
        height: auto;
    }

    .CScreenVideo {
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);

        width: auto;
        height: 100%;
    }




    .CScreenScrollArrow2 {
        top: auto;
        left: 50%;
        bottom: 0px;

        width: 2px;
        height: 10vh;
        background-color: rgba(255, 255, 255, 1);
    }

    .CScreenScrollArrow2 img {
        top: auto;
        left: calc(50% - 15px);
        bottom: -3px;

        width: 30px;
        height: 18px;

        transform: rotate(0deg);
    }

    .CButton {
        padding: 15px 30px 15px 30px;
        border-radius: 60px;
    }



    .CScreenScrollElement {
        height: auto;
        flex-direction: column;
        overflow-y: visible;
    }
}

@media screen and (max-aspect-ratio: 16/9) {

}