/* ==========================================
   Home Info Card
========================================== */

:root{

    --home-info-width:1100px;

    --home-info-radius:16px;

    --home-info-padding:48px;

}


.home-info-section{

    padding:60px 20px 80px;

    display:flex;

    justify-content:center;

    background:
        radial-gradient(
            circle at top right,
            #DDF7F6 0%,
            transparent 30%
        ),
        radial-gradient(
            circle at bottom left,
            #EAF6FF 0%,
            transparent 35%
        );

}


.home-info-wrapper{

    width:min(100%,var(--home-info-width));

}



.home-info-card{

    position:relative;

    overflow:hidden;

    background:#FFFFFF;

    border:1px solid #E5E7EB;

    border-radius:var(--home-info-radius);

    padding:var(--home-info-padding);


    box-shadow:

        0 20px 60px rgba(15,23,42,.08),

        0 5px 12px rgba(15,23,42,.04);

}



.home-info-card::before{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    top:-120px;

    right:-120px;

    border-radius:50%;

    background:rgba(10,147,150,.08);

}



.home-info-card::after{

    content:"";

    position:absolute;

    width:170px;

    height:170px;

    left:-90px;

    bottom:-90px;

    border-radius:50%;

    background:rgba(56,189,248,.08);

}



.home-info-header{

    text-align:center;

    margin-bottom:40px;

}



.home-info-icon{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:var(--brand-gradient);

    color:#fff;

    font-size:28px;

}



.home-info-header h2{

    margin-top:22px;

    font-size:2rem;

    color:var(--primary);

    font-weight:700;

}



.home-info-header p{

    color:#6B7280;

    margin-top:10px;

}



.home-info-content h5{

    margin-top:30px;

    margin-bottom:15px;

    color:var(--primary);

    font-size:1.2rem;

}



.home-info-content p{

    color:#1F2937;

    line-height:1.9;

}



.home-info-content ul{

    padding-left:25px;

}



.home-info-content li{

    margin-bottom:10px;

    line-height:1.8;

}



@media(max-width:1199.98px){

    :root{

        --home-info-width:760px;

        --home-info-padding:30px;

        --home-info-radius:22px;

    }


    .home-info-header h2{

        font-size:1.7rem;

    }

}

