/*==========================================================
 CTA SECTION
 Trade by Ray
==========================================================*/

.cta-section{

    position:relative;

    overflow:hidden;

    padding:120px 0;

    background:linear-gradient(
        135deg,
        #0F5132 0%,
        #146B43 50%,
        #0B3D27 100%
    );

}

/*=========================================
BACKGROUND EFFECT
=========================================*/

.cta-section::before{

    content:"";

    position:absolute;

    width:700px;

    height:700px;

    left:-300px;

    top:-250px;

    border-radius:50%;

    background:rgba(212,175,55,.12);

    filter:blur(120px);

}

.cta-section::after{

    content:"";

    position:absolute;

    width:600px;

    height:600px;

    right:-250px;

    bottom:-250px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    filter:blur(120px);

}

/*=========================================
WRAPPER
=========================================*/

.cta-wrapper{

    position:relative;

    z-index:5;

    display:grid;

    grid-template-columns:1.2fr .8fr;

    gap:70px;

    align-items:center;

}

/*=========================================
CONTENT
=========================================*/

.cta-content{

    color:#ffffff;

}

.cta-tag{

    display:inline-flex;

    align-items:center;

    padding:12px 24px;

    border-radius:50px;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(15px);

    font-size:14px;

    font-weight:600;

    margin-bottom:30px;

}

.cta-content h2{

    font-size:56px;

    line-height:1.15;

    font-weight:800;

    margin-bottom:28px;

    color:#ffffff;

}

.cta-content p{

    font-size:18px;

    line-height:1.9;

    color:rgba(255,255,255,.85);

    margin-bottom:40px;

}

/*=========================================
BUTTON
=========================================*/

.cta-buttons{

    display:flex;

    gap:18px;

    flex-wrap:wrap;

}

.btn-gold{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    min-width:220px;

    height:58px;

    border-radius:50px;

    text-decoration:none;

    background:linear-gradient(
        135deg,
        #D4AF37,
        #F0CF62
    );

    color:#ffffff;

    font-weight:700;

    transition:.35s;

    box-shadow:

        0 18px 40px rgba(212,175,55,.30);

}

.btn-gold:hover{

    transform:translateY(-4px);

    box-shadow:

        0 25px 50px rgba(212,175,55,.45);

}

.btn-white{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    min-width:200px;

    height:58px;

    border-radius:50px;

    text-decoration:none;

    background:#ffffff;

    color:var(--primary);

    font-weight:700;

    transition:.35s;

}

.btn-white:hover{

    transform:translateY(-4px);

    background:#f3f3f3;

}

/*=========================================
RIGHT CARD
=========================================*/

.cta-info{

    display:flex;

    flex-direction:column;

    gap:20px;

}

.cta-card{

    padding:30px;

    border-radius:24px;

    background:rgba(255,255,255,.10);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.12);

    transition:.35s;

}

.cta-card:hover{

    transform:translateX(8px);

    background:rgba(255,255,255,.16);

}

.cta-card h3{

    margin-bottom:12px;

    color:#ffffff;

    font-size:22px;

    font-weight:700;

}

.cta-card p{

    color:rgba(255,255,255,.82);

    line-height:1.8;

    margin:0;

}

/*=========================================
TABLET
=========================================*/

@media(max-width:1100px){

.cta-wrapper{

grid-template-columns:1fr;

gap:60px;

}

.cta-content{

text-align:center;

}

.cta-buttons{

justify-content:center;

}

}

/*=========================================
MOBILE
=========================================*/

@media(max-width:768px){

.cta-section{

padding:80px 0;

}

.cta-content h2{

font-size:36px;

}

.cta-content p{

font-size:15px;

}

.cta-buttons{

flex-direction:column;

}

.btn-gold,

.btn-white{

width:100%;

}

.cta-card{

padding:24px;

}

.cta-card h3{

font-size:20px;

}

}