/*==================================================
    CHALLENGE SECTION
==================================================*/

.challenge-section{

    position:relative;

    overflow:hidden;

    padding:100px 0;

    background:#030707;

}

/*==================================================
BACKGROUND
==================================================*/

.challenge-bg{

    position:absolute;

    inset:0;

    background:
        radial-gradient(circle at left center,
        rgba(0,192,131,.08),
        transparent 45%),

        radial-gradient(circle at right center,
        rgba(128,206,10,.08),
        transparent 35%);

    z-index:1;

}

/*==================================================
MESH
==================================================*/

.challenge-mesh{

    position:absolute;

    right:0px;

    top:70px;

    width:450px;
    
    opacity:1;

    pointer-events:none;

    z-index:2;

}

.challenge-mesh img{

    width:100%;

    display:block;

}

/*==================================================
CONTAINER
==================================================*/

.challenge-section .container{

    position:relative;

    z-index:5;

}

/*==================================================
HEADING
==================================================*/

.section-heading{

    text-align:center;

    margin-bottom:70px;

}

.title-white{

    color:#fff;

    font-size:66px;

    font-weight:normal;

    line-height:1.1;

    margin:0;

}

.title-green{

    color:#92cc40 !important;

    font-size:66px;

    font-weight:normal;

    line-height:1.1;

    margin-top:10px;

}

/*==================================================
CARDS
==================================================*/

.challenge-card{

    position:relative;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:flex-start;

    min-height:430px;

    padding:30px;

    border-radius:22px;

    background:#152521;

    overflow:hidden;

    cursor:pointer;

    transition:all .4s ease;

}

/* Middle Card */

.challenge-card.active{

    background:#00351f;

}

/* Glow */

.challenge-card::before{

    content:"";

    position:absolute;

    inset:0;

    background:linear-gradient(

        180deg,

        rgba(0,192,131,.05),

        transparent

    );

    opacity:0;

    transition:.45s;

}

/* Hover */

.challenge-card:hover{

    transform:translateY(-10px);

    box-shadow:

        0 20px 40px rgba(0,192,131,.18);

}

.challenge-card:hover::before{

    opacity:1;

}

/*==================================================
ICON
==================================================*/

.challenge-card  .card-icon{

    width:70px;

    height:70px;

    margin-bottom:35px;

}

.challenge-card .card-icon img{

    width:100%;
    height:70px;
}

/*==================================================
TITLE
==================================================*/

.challenge-card h3{

    color:#fff;

    font-size:35px;

    font-weight:400;

    line-height:1.2;

    margin-bottom:30px;

}

/*==================================================
TEXT
==================================================*/

.challenge-card p{

    color:#00b287;

    font-size:var(--fs-md);

    line-height:1.7;

    margin:0;

}

/*==================================================
ACTIVE CARD
==================================================*/

.challenge-card.active{

    box-shadow:

        inset 0 0 120px rgba(0,192,131,.08);

}

/*==================================================
BORDER GLOW
==================================================*/

.challenge-card::after{

    content:"";

    position:absolute;

    inset:0;

    border-radius:22px;

    border:1px solid rgba(0,192,131,.15);

    opacity:0;

    transition:.4s;

}

.challenge-card:hover::after{

    opacity:1;

    border-color:#00C083;

}

/*==================================================
RESPONSIVE
==================================================*/

@media(max-width:1199px){

.title-white,

.title-green{

    font-size:52px;

}

.challenge-card{

    padding:35px;

}

}

@media(max-width:991px){

.challenge-section{

    padding:90px 0;

}

.section-heading{

    margin-bottom:50px;

}

.title-white,

.title-green{

    font-size:42px;

}

.challenge-card{

    margin-bottom:30px;

}

.challenge-mesh{

    width:420px;

    right:-180px;

}

}

@media(max-width:576px){

.challenge-mesh{

    width:280px;

    right:-140px;

}

.title-white,

.title-green{

    font-size:34px;

}

.challenge-card{

    padding:30px;

}

.challenge-card h3{

    font-size:26px;

}

.challenge-card p{

    font-size:var(--fs-base);

}

}

/*==================================================
CHALLENGE AMBIENT LIGHT
==================================================*/

.challenge-light{

    left:-300px;

}