/* ===========================
   PREMIUM CATEGORIES
=========================== */


.categories{

    padding:90px 5%;

}



.category-grid{

    display:grid;

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

    gap:25px;

    max-width:1200px;

    margin:auto;

}



.category-card{

    position:relative;

    overflow:hidden;

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

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

    border-radius:25px;

    padding:35px 25px;

    text-align:center;

    backdrop-filter:blur(15px);

    transition:.4s ease;

}



.category-card::before{

    content:"";

    position:absolute;

    width:120px;

    height:120px;

    background:#8B5CF6;

    filter:blur(70px);

    opacity:.2;

    top:-40px;

    right:-40px;

}



.category-card:hover{

    transform:translateY(-12px);

    border-color:#8B5CF6;

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

}



.category-card span{

    display:block;

    font-size:50px;

    margin-bottom:20px;

    transition:.3s;

}



.category-card:hover span{

    transform:scale(1.15);

}



.category-card h3{

    color:#fff;

    font-size:22px;

    margin-bottom:10px;

}



.category-card p{

    color:#aaa;

    font-size:14px;

}



@media(max-width:900px){

.category-grid{

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

}

}



@media(max-width:600px){

.category-grid{

grid-template-columns:1fr;

}

}