/* ============================================= */
/*                   ПЕРЕМЕННЫЕ                  */
/* VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV */



/* ============================================= */
/*                ОБЩАЯ СТИЛИЗАЦИЯ               */
/* VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV */

._0_start_cl {
    width: 100vw;
    height: 100vh;
    background-image: url(./image/fon.png);
    background-size: cover;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
}

.carsway_main_text_cl {
    font-size: 15vh;
    font-weight: bold;
    color: white;
}

.language_selector_cl {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.language_selector_cl:hover {
    cursor: pointer;
}

.language_selector_cl>div{
    width: 40px;
    height: 40px;
    background-image: url(./lan_icon/ru.webp);
    background-size: cover;
}

.language_selector_cl>span{
    font-size: 3vh;
    font-weight: bold;
    color: white;
}

/* ========== Начало - выбор языка ========== */

#beginning-language_selection_id {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    gap: 10vh;
    padding-bottom: 10%;
    opacity: 1;
    transition: 500ms all;
}

/* ========== Начало - знакомство с приложением ========== */

#get_st-fam_you_with_the_app_id {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 10vh;
    padding-bottom: 10vh;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: 500ms all;
}

.start_main_text_cl {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.start_main_text_cl>span:nth-child(1) {
    font-size: 6vh;
    font-weight: bold;
    color: white;
    text-align: center;
}

.start_main_text_cl>span:nth-child(2), .start_main_text_cl>span:nth-child(5) {
    font-size: 4vh;
    font-weight: bold;
    color: green;
    text-align: justify;
    text-indent: 30px;
}

.start_main_text_cl>span:nth-child(3), .start_main_text_cl>span:nth-child(6) {
    font-size: 4vh;
    color: white;
    text-align: justify;
    text-indent: 30px;
}

/* ========== Начало - начат работу ========== */

#home-work_started_id {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80vh;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding-top: 10vh;
    padding-bottom: 10vh;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: 500ms all;
}

.start_main_text_two_cl {
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
    gap: 20px;
}

.start_main_text_two_cl>span {
    width: 100%;
    font-size: 4vh;
    color: white;
    text-align: start;
    text-indent: 30px;
}

.start_main_text_two_cl>span:nth-child(1) {
    font-size: 4vh;
    font-weight: bold;
    color: green;
    text-indent: 30px;
    text-align: center;
}

.boofer_1_cl {
    height: 20vh;
}

/* ============================================= */
/*           АДАПТИВНАЯ ВЕРСТКА (800px)          */
/* VVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVVV */

@media (max-width: 800px) {
    ._0_start_cl {
        width: 100vw;
        height: 100vh;
        background-image: url(./image/fon_mob.png);
        background-position: 50% 50%;
    }

    .carsway_main_text_cl {
        font-size: 8vh;
    }

    .start_main_text_cl {
        width: 90%;
    }

    .start_main_text_cl>span:nth-child(1) {
        font-size: 4vh;
    }

    .boofer_1_cl {
        height: 20vh;
    }

    .start_main_text_cl>span:nth-child(2), .start_main_text_cl>span:nth-child(5) {
        font-size: 2.75vh;
    }

    .start_main_text_cl>span:nth-child(3), .start_main_text_cl>span:nth-child(6) {
        font-size: 2.75vh;
        text-align: start;
    }

    .start_main_text_two_cl{
        width: 90%;
    }

    .start_main_text_two_cl>span:nth-child(1) {
        font-size: 2.75vh;
    }

    .start_main_text_two_cl>span {
        font-size: 2.75vh;
    }

}