﻿.secton_2 {
    position: relative;
    display: grid;
    background: linear-gradient(360deg, #8edbff 0%, #a800f1 100%);
    width: 100%;
    justify-items: center;
    padding: 10vh 40px;
}

.secton_2 .header {
    max-width: 700px;
    text-align: center;
    line-height: 1.1;
}

.secton_2 .header .header_text {
    font-size: 70px;
    padding-top: 20px;
    color: white;
    display: block;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
}


.secton_2 .corse_title {
    padding: 15px 40px;
    font-size: 25px;
    display: inline-block;
    color: white;
    text-transform: uppercase;
    font-weight: 600;
    border: 6px solid white;
}




.secton_2 .sub_header {
    font-size: 22px;
    color: white;
    font-weight: 600;
    margin: 35px 0 40px 0;
}


.secton_2 .question_wrap {
    width: 100%;
    max-width: 860px;
    display: inline-grid;
    margin-top: 40px;
    grid-template-columns: 49% 49%;
    grid-column-gap: 2%;

    grid-row-gap: 5px;
    margin: 40px auto;
}



.secton_2 .question_level_1 {
    background: white;
    box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    width: 100%;
    color: #000000;
    font-family: 'Montserrat';
    align-items: center;
    display: inline-grid;
    text-align: left;
    min-height: 60px;
    position: relative;
}


.secton_2 .question_level_1_text {
    font-size: 15px;
    line-height: 1.3;
    font-family: 'Montserrat';
    font-style: normal;
    font-weight: 500;
    padding-right: 40px;
    padding-left: 28px;
}

.secton_2 .arrow {
    width: 25px;
    position: absolute;
    right: 20px;
    animation: arrow_moove_2 ease-in-out 0.4s forwards;
}

.secton_2 .open .arrow {
    width: 25px;
    position: absolute;
    right: 20px;
    animation: arrow_moove ease-in-out 0.4s forwards;
}

.secton_2 .level_2_text {
    position: relative;
    text-align: left;
    font-weight: 400;
    display: none;
    line-height: 1.5;
    background-color: white;
    border: none;
    padding: 0 40px 30px 30px;
    border-radius: 0 0 10px 10px;
    font-size: 15px;
    margin-bottom: 5px;
    box-shadow: 0px 3px 0px rgba(0, 0, 0, 0.10);
}

.secton_2 .open .question_level_1 {
    font-size: 17px;
    background: #ffffff;
    line-height: 1.3;
    border-radius: 10px 10px 0 0;
    font-family: Open Sans;
    font-style: normal;
    font-weight: bold;
}



.secton_2 .text_wrap {
    position: relative;
    padding-left: 30px;
    margin-left: 2px;
    padding-bottom: 15px;
    border-left: 1px solid #d0d0d0;
}

.secton_2 .bulet_2 {
    width: 11px;
    height: 11px;
    left: -6px;
    top: 6px;
    border-radius: 100%;
    background-color: #00d1b0;
    position: absolute;
    right: 40px;
    box-shadow: 0 0 0 5px white;
}

.level_2_text :last-child {
    padding-bottom: 0px;
}

.level_2_text :last-child .bulet_2 {
    left: -5px;
}


.level_2_text :first-child .bulet_2 {
    top: 5px;
}


.level_2_text :last-child {
    padding-bottom: 0px;
    border-left: none;
}


.v_line {
    position: absolute;
    width: 2px;
    height: 100%;
    background-color: aquamarine;

}


@media (max-width: 767px) {

    .secton_2 .question_wrap {
        max-width: 460px;
        display: inline-grid;
        margin-top: 40px;
        grid-template-columns: 100%;
        margin-bottom: 10px;

    }

    .secton_2 .header {
        max-width: 450px;

    }

    .secton_2 .corse_title {
        font-size: 18px;
        max-width: 360px;
    }

    .secton_2 .header .header_text {
        font-size: 48px;
    }

    .secton_2 .open .arrow {
        width: 15px;
        position: absolute;
        right: 20px;
        animation: arrow_moove ease-in-out 0.4s forwards;
    }

    .secton_2 .arrow {
        width: 15px;

    }

    .secton_2 .text_wrap {
        line-height: 1.4;
        padding-bottom: 10px;
    }

    .secton_2 .question_level_1_text {

        padding-left: 20px;
    }

    .secton_2 .question_level_1 {

        min-height: 60px;

    }

    .secton_2 .level_2_text {

        padding: 0 40px 15px 25px;

    }

    .secton_2 .sub_header {
        font-size: 18px;
        margin: 30px 0 30px 0;
    }

    .secton_2 {
        padding: 5vh 30px;
    }
}