/*

    Sellix.me
    ------------
    Version 0.2.24

*/

.terms{
    background: var(--backgroundSecondary);
    padding: 70px 0 60px;
}

.terms_header{
    font-size: 26px;
    font-weight: 600;
    color: var(--primary);
}

.terms_subparagraph{
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 15px;
    width: 80%;
}

.terms_subparagraph::after{
    content: "";
    position: static;
    display: block;
    border-radius: 100px;
    margin-top: 25px;
    margin-bottom: 28px;
    height: 1.7px;
    width: 100%;
    background: linear-gradient(90deg, rgba(39,35,51,1) 0%, rgba(19,17,26,0) 75%);
}

.terms_list{
    list-style-type: none;
    color: var(--text-light);
    background-color: #201e27;
    font-weight: 400;
    font-size: 15px;
    margin-bottom: 50px;
    padding: 20px;
    border-radius: 6px;
    list-style-position: inside;
}

.terms_list li{
    margin-bottom: 4px;
    margin-top: 4px;
}


@media only screen and (max-width: 768px) {
    .terms_subparagraph{
        width: 100%;
    }

    .terms{
        padding: 30px 0 0;
    }

    .terms_list{
        font-size: 13px;
    }
    .terms_header{
        font-size: 20px;
    }
}