.proyectoCard { width: auto; background-color: #fff; padding-bottom: 24px; height: 100%; }
.proyectoCard .imageCont { width: 100%; height: 212px; overflow: hidden; }
.proyectoCard .imageCont img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: .3s all linear; }
.proyectoCard .title {
    padding: 36px 16px 0;
    color: #00205B;
    font-family: "Noto Sans";
    font-size: 24px;
    font-weight: 600;
    line-height: 30px;
    transition: .3s all linear;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
}
.proyectoCard:hover .imageCont img { transform: scale(1.1); }
.proyectoCard:hover .title { text-decoration: underline; color: #005199; }
.proyectoCard .cardCta {
    display: block;
    width: fit-content;
    color: #005199;
    font-family: "Noto Sans";
    font-size: 12px;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 99px;
    border: 1px solid #005199;
    margin-left: 16px;
    margin-top: 16px;
}

@media screen and (max-width: 800px) {
    .proyectoCard .title { padding-top: 16px; font-size: 28px; }
}
@media screen and (min-width: 1000px) {
    .proyectoCard .cardCta { display: none; }
}