/* =====================================================
   CTA SECTION
===================================================== */


.cta-section {

    padding: 100px 0;

}



.cta-box {

    background:
        linear-gradient(135deg, #055080, #05a2e6);

    border-radius: 30px;

    padding: 60px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 40px;

    color: #ffffff;

    overflow: hidden;

}



.cta-content {

    max-width: 650px;

}



.cta-content h2 {

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 20px;

    color: #ffffff;

}



.cta-content p {

    font-size: 18px;

    line-height: 1.8;

    color: rgba(255, 255, 255, .9);

}




.cta-buttons {

    display: flex;

    gap: 15px;

    flex-wrap: wrap;

}



.cta-buttons .btn-primary {

    background: #ffffff;

    color: #055080;

}



.cta-buttons .btn-primary:hover {

    background: #f1f5f9;

}



.cta-buttons .btn-outline {

    border-color: #ffffff;

    color: #ffffff;

}



.cta-buttons .btn-outline:hover {

    background: #ffffff;

    color: #055080;

}



@media(max-width:768px) {


    .cta-box {

        padding: 40px 25px;

        flex-direction: column;

        text-align: center;

    }


    .cta-content h2 {

        font-size: 32px;

    }


    .cta-buttons {

        justify-content: center;

    }


}