/*=========================
CTA PROYECTO
=========================*/

.cta-project{

    padding:90px 0 120px;

    background:#111;

}

.cta-project-card{

    display:grid;

    grid-template-columns:55% 45%;

    align-items:center;

    min-height:520px;

    background:#171717;

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    overflow:hidden;

}
.cta-project-content{

    padding:50px;

    display:flex;

    flex-direction:column;

    justify-content:center;

}
.cta-project-subtitle{

    color:var(--color-primary);

    font-size:15px;

    font-weight:700;

    letter-spacing:2px;

    text-transform:uppercase;

    margin-bottom:18px;

}
.cta-project-content h2{

    font-size:42px;

    line-height:1.15;

    color:#fff;

    margin-bottom:22px;

}
.cta-project-content p{

    font-size:15px;

    line-height:1.8;

    color:#bdbdbd;

    max-width:520px;

    margin-bottom:35px;

}
.cta-project-content .btn-primary{

    width:max-content;

}
.cta-project-image{

    height:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

}
.cta-project-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

    transition:.6s;

}
.cta-project-card:hover .cta-project-image img{

    transform:scale(1.04);

}