/** cards */

.cards {
    display: flex;

    flex-direction: row;

    justify-content: space-evenly;

    flex-wrap: wrap;

    align-items: center;

    margin: auto;

    padding: 50px 0;
}

.cards .card-icon {
    display: flex;
    width: calc(100%/2 - 40px);
    border-radius: 4px 10px 4px 10px;
    padding: 2rem 0rem;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 50px;
    background-color: #549207;
    color: #FFFFFF;
    background-color: linear-gradient(135deg, #FFFFFF 0%, #EDF4F2 100%);
    margin-bottom: 20px;

}


@media screen and (max-width: 768px) {
    .cards .card-icon {
        width: calc(100%/1 - 40px);
    }
}

.cards .card-icon .card-image {
    width: 128px;
    height: 128px;
    color: #FFFFFF;
}

.cards .card-icon .card-label {
    margin-top: 1rem;
    font-size: 14pt;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    color: #FFFFFF;
}

.cards .card-icon .card-label:hover {
    color: #fec10f;
}

/* footer */

footer {

    background: #EDF4F2;

    padding: 60px 0 30px 0;

    margin: auto;

    overflow: hidden;

}

.footer-container {

    display: flex;

    flex-direction: row;

    justify-content: space-evenly;

    flex-wrap: wrap;

    align-items: center;

    margin: auto;

    padding-bottom: 50px;

    border-bottom: 1px solid #ccc;

}


.footer-item {

    text-align: center;
    width: 24rem;
    height: 16rem;
    margin-bottom: 0.5rem;

}


.footer-item h4 {

    color: #549207;

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;

    font-style: normal;

    font-weight: bold;

    border-bottom: 3px solid #ccc;

    padding-bottom: 5px;

    margin-bottom: 10px;

}


.footer-item p {

    color: #9e9797;

}


.titulo-final {

    text-align: center;

    font-size: 24px;

    margin: 20px 0 0 0;

    color: #9e9797;

}



@media screen and (max-width:500px) {

    /* Footer */



    .contenedor-footer {

        flex-direction: column;

        border: none;

    }



    .footer-item {

        margin-bottom: 20px;

        text-align: center;

    }



    .footer-item h4 {

        border: none;

    }



    .footer-item p {

        color: #ccc;

        border-bottom: 1px solid #f2f2f2;

        padding-bottom: 20px;

    }



    .titulo-final {

        font-size: 20px;

    }

}