@media only screen and (min-width: 600px) and (max-width: 1300px){

   
    .wrapper {
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    #boxes {
        width: 100%;
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
    }

    .box {
        display: flex;
        padding: 10px;
        width: 260px;
        margin: 8px;
        box-shadow: 7px 7px 20px rgba(0, 0, 0, 0.15);
        border-radius: 12px;
        align-items: center;
    }

    .box img {
        height: 30px;
        margin: 5px;
    }

    .box p {
        font-weight: 400;
        font-size: 10px;
        color: var(--hover-gray);
    }

    .box .azul-bold {
        font-weight: 600;
        font-size: 10px;
        color: var(--default-blue);
    }
}