/* ==========================================
ABOUT CTA
========================================== */

.about-cta{
    background:#f8fafc;
}

.cta-box{

    background:linear-gradient(135deg,#2563eb,#1d4ed8);

    border-radius:24px;

    padding:70px 60px;

    box-shadow:0 20px 50px rgba(37,99,235,.25);

    position:relative;

    overflow:hidden;

}

.cta-box::before{

    content:"";

    position:absolute;

    width:350px;

    height:350px;

    background:rgba(255,255,255,.08);

    border-radius:50%;

    top:-120px;

    right:-120px;

}

.cta-box::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    background:rgba(255,255,255,.05);

    border-radius:50%;

    bottom:-80px;

    left:-80px;

}

.cta-box>*{
    position:relative;
    z-index:2;
}

.cta-box .btn{
    border-radius:50px;
    padding:14px 32px;
    font-weight:600;
    transition:.3s;
}

.cta-box .btn:hover{
    transform:translateY(-3px);
}

@media(max-width:991px){

    .cta-box{

        padding:50px 30px;
        text-align:center;

    }

}