/* ===========================
   HOW IT WORKS PREMIUM
=========================== */


.how-it-works{

    padding:90px 5%;

}



.steps{

    max-width:1100px;

    margin:auto;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    position:relative;

}



.step{

    position:relative;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.1);

    border-radius:25px;

    padding:40px 25px;

    text-align:center;

    backdrop-filter:blur(15px);

    transition:.4s ease;

}



.step:hover{

    transform:translateY(-10px);

    border-color:#8B5CF6;

    box-shadow:0 25px 50px rgba(139,92,246,.25);

}



.step-icon{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    border-radius:50%;

    background:#8B5CF6;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    box-shadow:0 10px 30px rgba(139,92,246,.4);

}



.step h3{

    color:#fff;

    font-size:22px;

    margin-bottom:15px;

}



.step p{

    color:#aaa;

    font-size:15px;

}



/* Step Number */

.step::after{

    content:"";

    position:absolute;

    top:35px;

    right:-15px;

    width:30px;

    height:2px;

    background:#8B5CF6;

}



.step:last-child::after{

    display:none;

}



@media(max-width:900px){

.steps{

grid-template-columns:1fr;

}


.step::after{

display:none;

}

}