.list-content{
    margin: 20px 0;
}

.list-item{
    width: 100%;
    background-color: var(--primary-lightGray);
    padding: 20px;
    border-radius: 10px;
}

.list-item,
.first-side{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.first-side .icon{
    width: 70px;
    font-size: 2vw;
    border-radius: 5px;
    height: 70px;
    margin: 0 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.first-side .data h3{
    font-size: 20px;
    margin: 0 0 10px 0;
}

.first-side .data p{
    font-size: 16px;
    color: var(--secondary-lightGray);
    text-align: justify;
}

.options{
    display: flex;
    align-items: center;
    padding: 0 0 0 10px;
}

.options button{
    width: 60px;
    height: 60px;
    display: flex;
    margin: 0 12px 0 0;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 10px;
}

.options button i{
    font-size: 18px;
    margin: 0 0 5px 0;
}

@media screen and (max-width: 1000px){

    .first-side .icon{
        font-size: 4vw;
    }
    
}

@media screen and (max-width: 500px){
    .first-side .icon{
        font-size: 8vw;
    }
    .list-item,
    .first-side{
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }

    .options{
        margin: 30px 0 0 0;
    }
}