.contacto{
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    background-color:#006a94;
    color: #fff;
    bottom: 0%;
}
.contacto .title__section{
    color: #fff;
}
.contact__cards{
    width: 80%;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
    text-align: center;
}
.contact__card{
    width: 95%;
    font-size: 1.2rem;
    line-height: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #fff;
}
.contact__card h2{
    font-size: 2.025rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.contact__card a{
    color: #fff;
    
}
@media (min-width: 768px) { 
    .contact__cards{
        width: 90%;
        flex-direction: row;
        text-align: left;
    }
    .contact__card{
        width: 45%;
        font-size: 1.2rem;
        line-height: 2rem;
        margin-bottom: 2rem;
        border: none;
    }
}
@media (min-width: 1024px) {
    .contacto{
        flex-direction: row;
        height: 400px;
    }
 }