.card {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;

    background-color: #8E8181;
    padding: 3rem 0;
}

.card_container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    background-color: #8E8181;

    padding: 3rem;
}

.card_box {
    display: flex;
    flex-direction: column;

    background-color: #FFF;

    height: 320px;
    width: 400px;

    margin-top: 2rem;
    
}

.card_imagem {
    width: 355px;
}

.card_texto {
    font-size: 1.25rem;
    font-weight: 700;
    text-align: center;

    height: 56px;
    padding: 2rem;
}

@media screen and (min-width: 1020px) {
    .card_container {
        justify-content: space-evenly;
        flex-direction: row;
        padding-bottom: 4rem;
    }
    .card_box {
        height: 400px;
        width: 500px; 
    }
    .card_imagem {
        height: 300px;
        width: 500px;
    }
}