.inf {
    display: grid;
    grid-template-columns: repeat(3, 25%);
    justify-content: center;
    justify-items: center;
    align-items: center;
    margin-top: -26px;
    position: relative;
    z-index: 10;
}

.inf ul li {
    font-family: 's-medium';
    display: flex;
    align-items: center;
    column-gap: 10px;
    margin-bottom: 10px;
    color: var(--cor-cinza);
}

.inf ul li img {
    width: 30px;

}

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

    .inf {
        display: grid;
        grid-template-columns: 80%;
        justify-content: center;
        justify-items: center;
        align-items: center;
        margin-top: -50px;
        position: relative;
        z-index: 10;
    }


    .inf img:first-of-type{
        width: 150px;
    }
    .inf img:nth-child(2){
        width: 250px;
    }

    .inf ul li img{
        width: 25px;
    }

    .inf ul{
        margin-top: 20px;
    }

    .list_inf{
        width: 10px !important;
    }

}