
* {
    margin: 0;
    padding: 0;
}

@font-face {
    font-family: 'generalFont';
    src: url('Fonts/SoÌhne-Buch.otf') format('opentype');
}

@font-face {
    font-family: 'title';
    src: url('Fonts/SoÌhne-KraÌftig.otf') format('opentype');
}

body {
    font-family: 'generalFont', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    background: black;
    height: 100vh;
}


@media (max-width: 799px) {
    body {
        font-family: 'generalFont', sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
        background: black;
        height: auto;
    }
}

.container {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    flex-direction: column;
    color: #fff;
    padding: 20px;
}

@media (max-width: 799px) {
    .external_container {
        display: flex;
        align-items: center;
        justify-content: center;
        box-sizing: border-box;
        flex-direction: column;
        color: #fff;
        position: relative;
        padding: 8px;
    }
}

.video_main_container {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video_container {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.container_text {
    z-index: 2;
    opacity: 0;
    max-width: 480px;
}


.title {
    font-family: "title", sans-serif;
    font-size: 32px;
    font-weight: 500;
    line-height: 48px;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFF;
}

.description {
    font-family: "generalFont", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0;
    text-align: center;
    color: #8A8A8A;
    margin-top: 16px;
    margin-bottom: 64px;
}

@media (max-width: 799px) {
    .description {
        font-family: "generalFont", sans-serif;
        font-size: 18px;
        font-weight: 400;
        line-height: 32px;
        letter-spacing: 0;
        text-align: center;
        color: #8A8A8A;
        margin-top: 16px;
        margin-bottom: 32px;
    }
}

.footer_text {
    font-family: "generalFont", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0;
    text-align: left;
    color:#1840FF;
}

.external_text_title {
    font-family: "generalFont", sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0;
    text-align: left;
    color: #fff;
}

.external_text_description {
    font-family: "generalFont", sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 32px;
    letter-spacing: 0;
    text-align: left;
    color: #8A8A8A;
    margin-top: 8px;
    margin-bottom: 24px;
}

.external_text_icon {
    cursor: pointer;
    width: 24px;
    height: 24px;
}

.external_container {
    display: flex;
    gap: 46px;
    opacity: 0;
    z-index: 9;
}

@media (max-width: 799px) {
    .external_container {
        display: flex;
        flex-direction: column;
        gap: 46px;
        margin-top: 32px;
        opacity: 0;
    }
}

.external_container_item {
    display: flex;
    flex-direction: column;
    max-width: 454px;
}

.horizontal_line {
    background: #151515;
    width: 100%;
    height: 1px;
}

.horizontal_line_external {
    background: #151515;
    width: 100%;
    height: 1px;
    display: none;
}

@keyframes animatedMainInfo {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes animatedVideo {
    from {
        top: 50%;
    }
    to {
        top: 15%;
    }
}

@keyframes animatedVideoForMobile {
    from {
        top: 50%;
    }
    to {
        top: 8%;
    }
}