:root {
    --bg-dark: #E0E0E0;
    --bg-light: #F5F5F5;
    --card: #FFFFFF;
    --head: #2B2525;
    --main-text: #5C5C5C;
    --primary: #0DCAF0;
    --stroke: #C2C2C2;
}

#road-block .road_wrapper {
    width: 100%;
    padding-bottom: 80px;
    flex-shrink: 0;
}

#road-block {
    background: var(--bg-light, #F5F5F5);
}

#road-block .road_title {
    color: var(--head, #2B2525);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    padding-top: 70px;
    max-width: 1090px;
}

#road-block .road_title span {
    color: var(--primary, #0DCAF0);
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    text-transform: uppercase;
    padding-top: 70px
}

#road-block .svg_wrap {
    display: flex;
    margin-left: auto;
    justify-content: flex-end;
}

.video {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 60%;
    background-color: #000;
    overflow: hidden;
    cursor: pointer;
}

.video__link {
    pointer-events: none;
}

.video__media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    object-fit: cover;
}

.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    padding: 0;
    transform: translate(-50%, -50%);
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    background: var(--primary);
    z-index: 2;
    transition: 0.3s;
}

.video:hover .video-btn {
    background: var(--sec);
}

.video-btn svg {
    width: 98px;
    height: 98px;
    margin-left: unset;
    flex-shrink: 0;
}

#road-block .left_side {
    width: 570px;
    height: 352px;
    flex-shrink: 0;
    padding-top: 48px;
}

#road-block .right_side {
    flex-grow: 1;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 40px;
    padding-left: 30px;
    padding-top: 50px;
}

#road-block .questions_count {
    display: flex;
    min-width: 24px;
    min-height: 24px;
    justify-content: center;
    align-items: center;
    color: var(--primary, #0DCAF0);
    border-radius: 50%;
    border: 2px solid var(--primary, #0DCAF0);

}

#road-block .question {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--head, #2B2525);
    font-size: 18px;
    font-style: normal;
    font-weight: 800;
    line-height: 120%;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--stroke, #C2C2C2);
}
#road-block .question.is-opened .question_icon {
    transform: rotate(180deg);
    color: var(--primary, #0DCAF0);
    
}
#road-block .question_icon{
    margin-left: auto;
    transition: .3s transform ease-in;
}

#road-block .text_question {
    display: flex;
    /* width: 570px; */
    /* height: 134px; */
    justify-content: center;
    align-items: center;
    /* max-height: 0px; */
    /* transition: all .5s; */
    /* display: none; */
    color: var(--main-text, #5C5C5C);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    padding-top: 10px;
}
#road-block .questions_holder {
    width: 100%;
}

#road-block .rectangle_wrap {
    width: 570px;
    height: 1px;
    background: var(--stroke, #C2C2C2);
}

#road-block .holder {
    display: flex;
    flex-direction: row;
}
@media screen and (max-width: 1140px) {
    #road-block .svg_wrap {
    display: none; 
}       
}
@media screen and (max-width: 900px) {
    #road-block .holder {
        flex-direction: column;
    }
}
@media screen and (max-width: 900px) {
    #road-block .left_side {
        width: unset;
        height: unset;
    }
    #road-block .right_side {
        padding-left: unset;
    }
}
@media screen and (max-width: 630px) {
    #road-block .road_title {
        font-size: 30px;
        padding-left: 10%;
    }
}
@media screen and (max-width: 630px) {
    #road-block .road_title span {
        font-size: 30px;
    }
}

@media screen and (max-width: 639px) {
    #road-block .rectangle_wrap {
        width: 370px;
    }
}

@media screen and (max-width: 440px) {
    #road-block .rectangle_wrap {
        width: 270px;
    }
}
@media screen and (max-width: 340px) {
    #road-block .rectangle_wrap {
        width: 230px;
    }
}

@media screen and (max-width: 603px) {
#road-block .text_question {
    width: 100%;
    font-size: 14px;
}
}
@media screen and (max-width: 428px) {
#road-block .text_question {
    font-size: 12px;
}
}
@media screen and (max-width: 364px) {
#road-block .text_question {
    font-size: 11px;
}
}