/* ==========================================
   CONTACT CTA
========================================== */

.contact-cta{

    position: relative;

    padding: 110px 0;

    background: url("/assets/img/background/splash-img.jpg") center center / cover no-repeat;

    background-attachment: fixed;

    overflow: hidden;

}

.contact-cta::before{

    content:"";

    position:absolute;

    inset:0;

    background:rgba(0,0,0,.72);

}

.contact-cta .container{

    position:relative;

    z-index:2;

}

.contact-cta-icon{

    width:90px;

    height:90px;

    margin:0 auto 30px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    border:2px solid rgba(255,255,255,.18);

    display:flex;

    justify-content:center;

    align-items:center;

    backdrop-filter:blur(8px);

}

.contact-cta-icon i{

    color:#fff;

    font-size:42px;

}

.contact-cta h2{

    color:#fff;

    font-size:2.8rem;

    font-weight:700;

    margin-bottom:20px;

}

.contact-cta-text{

    max-width:760px;

    margin:0 auto 45px;

    color:rgba(255,255,255,.92);

    font-size:1.1rem;

    line-height:1.9;

}

.contact-cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;

}

.contact-cta-buttons .btn{

    min-width:250px;

    border-radius:50px;

    padding:15px 35px;

    font-weight:600;

    transition:.3s;

}

.contact-cta-buttons .btn-light{

    color:var(--primary-color);

}

.contact-cta-buttons .btn-light:hover{

    transform:translateY(-4px);

    box-shadow:0 12px 25px rgba(0,0,0,.25);

}

.contact-cta-buttons .btn-outline-light{

    border-width:2px;

}

.contact-cta-buttons .btn-outline-light:hover{

    background:#fff;

    color:var(--primary-color);

    transform:translateY(-4px);

    box-shadow:0 12px 25px rgba(0,0,0,.25);

}

@media (max-width:768px){

    .contact-cta{

        padding:80px 0;

        background-attachment:scroll;

    }

    .contact-cta h2{

        font-size:2rem;

    }

    .contact-cta-text{

        font-size:1rem;

    }

    .contact-cta-buttons{

        flex-direction:column;

    }

    .contact-cta-buttons .btn{

        width:100%;

        min-width:unset;

    }

}