/* =====================================================
   CTA SECTION
   ===================================================== */

.twothirty-footer-cta{
    position:relative;
    overflow:hidden;
    background:#202F78;
    color:#fff;
    text-align:center;
    padding:64px 20px;
}

/* Orange glow circles */
.twothirty-footer-cta::before{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    right:-140px;
    top:-140px;
    background:rgba(247,148,29,.18);
    border-radius:50%;
    filter:blur(90px);
    pointer-events:none;
}

.twothirty-footer-cta::after{
    content:"";
    position:absolute;
    width:320px;
    height:320px;
    left:-140px;
    bottom:-140px;
    background:rgba(247,148,29,.10);
    border-radius:50%;
    filter:blur(90px);
    pointer-events:none;
}

.twothirty-container{
    position:relative;
    z-index:2;
    max-width:768px;
    margin:0 auto;
}

/* ==========================
   ICON
========================== */

.twothirty-icon{
    width:48px;
    height:48px;
    margin:0 auto 24px;
    border-radius:50%;
    background:#F7941D;
    color:#202F78;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
}

/* ==========================
   TITLE
========================== */

.twothirty-footer-cta h2{
    margin:0;
    font-family:Poppins,sans-serif;
    font-size:48px;
    font-weight:700;
    line-height:1.08;
    letter-spacing:-0.03em;
    color:#fff;
}

/* ==========================
   DESCRIPTION
========================== */

.twothirty-footer-cta p{
    margin:16px auto 0;
    max-width:672px;
    font-family:Poppins,sans-serif;
    font-size:18px;
    line-height:1.65;
    font-weight:400;
    color:rgba(255,255,255,.80);
}

/* ==========================
   BUTTONS
========================== */

.twothirty-buttons{
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap:wrap;
    gap:12px;
    margin-top:32px;
}

/* Primary */

.twothirty-btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    min-height:52px;
    padding:14px 28px;

    border-radius:999px;
    background:#F7941D;

    color:#202F78;
    font-family:Poppins,sans-serif;
    font-size:14px;
    font-weight:600;

    text-decoration:none;
    transition:.25s;
}

.twothirty-btn-primary:hover{
    filter:brightness(.95);
    color:#202F78;
}

/* Secondary */

.twothirty-btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;

    min-height:52px;
    padding:14px 28px;

    border-radius:999px;
    border:2px solid rgba(255,255,255,.70);

    color:#fff;
    text-decoration:none;

    font-family:Poppins,sans-serif;
    font-size:14px;
    font-weight:600;

    transition:.25s;
}

.twothirty-btn-secondary:hover{
    background:#fff;
    color:#202F78;
}

.twothirty-btn-secondary svg{
    width:16px;
    height:16px;
    flex-shrink:0;
}

/* ==========================
   MOBILE
========================== */

@media (max-width:768px){

    .twothirty-footer-cta{
        padding:48px 20px;
    }

    .twothirty-footer-cta h2{
        font-size:36px;
    }

    .twothirty-footer-cta p{
        font-size:17px;
    }

    .twothirty-buttons{
        flex-direction:column;
    }

    .twothirty-btn-primary,
    .twothirty-btn-secondary{
        width:100%;
        max-width:320px;
    }
}
