/* =====================================================
   WHY RYTHON
===================================================== */

.wr-section{
    padding:140px 0;
    background:#ffffff;
    position:relative;
    overflow:hidden;
}

.wr-section::before{
    content:"";
    position:absolute;
    left:-220px;
    top:-220px;
    width:600px;
    height:600px;
    border-radius:50%;
    background:radial-gradient(circle,#dbeafe 0%,transparent 70%);
    opacity:.7;
}

.wr-section::after{
    content:"";
    position:absolute;
    right:-220px;
    bottom:-220px;
    width:600px;
    height:600px;
    border-radius:50%;
    background:radial-gradient(circle,#eef5ff 0%,transparent 70%);
}

.wr-heading{
    text-align:center;
    max-width:850px;
    margin:auto;
    margin-bottom:80px;
}

.wr-tag{
    display:inline-block;
    color:#2563EB;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    margin-bottom:18px;
}

.wr-heading h2{
    font-size:58px;
    color:#081B4B;
    line-height:1.15;
    margin-bottom:22px;
}

.wr-heading h2 span{
    display:block;
    color:#2563EB;
}

.wr-heading p{
    font-size:19px;
    line-height:1.9;
    color:#64748B;
}

.wr-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.wr-card{
    background:#fff;
    border-radius:24px;
    padding:35px;
    border:1px solid #E8EEF9;
    box-shadow:0 18px 45px rgba(15,23,42,.06);
    transition:.35s;
    position:relative;
    overflow:hidden;
}

.wr-card::before{
    content:"";
    position:absolute;
    left:0;
    top:0;
    width:5px;
    height:100%;
    background:#2563EB;
    transform:scaleY(0);
    transition:.35s;
    transform-origin:top;
}

.wr-card:hover{
    transform:translateY(-10px);
    box-shadow:0 30px 70px rgba(37,99,235,.16);
}

.wr-card:hover::before{
    transform:scaleY(1);
}

.wr-icon{
    width:72px;
    height:72px;
    border-radius:18px;
    background:#EFF6FF;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
    transition:.35s;
}

.wr-icon svg{
    width:34px;
    height:34px;
    color:#2563EB;
}

.wr-card:hover .wr-icon{
    background:#2563EB;
    transform:rotate(-8deg);
}

.wr-card:hover .wr-icon svg{
    color:#fff;
}

.wr-card h3{
    font-size:24px;
    color:#081B4B;
    margin-bottom:15px;
}

.wr-card p{
    color:#64748B;
    line-height:1.8;
    font-size:16px;
}

.wr-button{
    text-align:center;
    margin-top:70px;
}