/*

    Sellix.me
    ------------
    Version 0.2.24

*/

.about{
    background: var(--backgroundSecondary);
    padding: 70px 0 60px;
}

.about_title{
    font-size: 26px;
    font-weight: 600;
    color: var(--primary);
}

.about_description{
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 15px;
    width: 80%;
}

.about_description::after{
    content: "";
    position: static;
    display: block;
    border-radius: 100px;
    margin-top: 35px;
    margin-bottom: 58px;
    height: 1.7px;
    width: 100%;
    background: linear-gradient(90deg, rgba(39,35,51,1) 0%, rgba(19,17,26,0) 75%);
}

.about_card{
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.about_card_title{
    color: var(--primary);
    font-size: 16px;
    font-weight: 400;
}

.about_card_description{
    color: var(--text-secondary);
    font-size: 15px;
    font-weight: 400;
    width: 90%;
}

.about_icon{
    background-color: #201e27;
    min-width: 50px;
    min-height: 50px;
    max-width: 50px;
    max-height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 6px;
}

@media only screen and (max-width: 768px) {
    .about_description{
        width: 100%;
    }

    .about{
        padding: 30px 0 10px;
    }

    .about_card_description{
        width: 100%;
    }
}