.sections_container{
    width: 70%;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

/* --- Section --- */

.sections_container section{
    width: 100%;
    height: fit-content;
    scroll-margin-top: 80px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* section title */

.section_title{
    font-size: 20px;
    color: var(--text1);
}

/* section text */

.section_text{
    width: 100%;
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
    color: var(--text2);
}

/* --- Section list --- */

.section_list{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    padding-left: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* list li */

.section_list li{
    font-size: 14px;
    color: var(--text2);
}

.section_list li::marker{
    font-weight: 700;
    color: var(--text1);
}

/* --- Section box --- */

.section_box{
    width: 100%;
    height: fit-content;
    box-sizing: border-box;
    padding: 40px;
    border-radius: 14px;
}

/* colors */

.blue{
    background: rgba(0, 132, 255, 0.1);
}

.yellow{
    background: rgba(255, 136, 0, 0.1);
}

.red{
    background: rgba(255, 0, 55, 0.1);
}

/* image */

.section_box img{
    width: 26px;
    height: 26px;
    opacity: 0.7;
}

/* text */

.section_box p{
    width: 100%;
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
    color: var(--text2);
}

/* --- Media --- */

@media screen and (max-width: 800px) {
    
    .sections_container{
        width: 100%;
    }
}