.lux-category-section{

    background:#062f2d;
    padding:90px 0;
    position:relative;
}

.section-header{

    display:flex;
    justify-content:space-between;
    align-items:end;
    margin-bottom:60px;
}

.section-tag{

    color:#d4af37;
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:13px;
}

.section-header h2{

    color:#fff;
    font-size:42px;
    font-weight:700;
    margin-top:10px;
}

.section-header p{

    color:#bfc8c8;
    max-width:500px;
}

.view-btn{

    border:1px solid #d4af37;
    color:#d4af37;
    padding:12px 32px;
    border-radius:40px;
    text-decoration:none;
    transition:.4s;
}

.view-btn:hover{

    background:#d4af37;
    color:#062f2d;
}

.category-link{

    text-decoration:none;
}

.category-card{

    background:rgba(255,255,255,.05);
    backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,.08);

    border-radius:20px;

    padding:35px 20px;

    text-align:center;

    transition:.45s;

    overflow:hidden;

    position:relative;
}

.category-card:before{

    content:"";

    position:absolute;

    width:0;

    height:100%;

    background:rgba(212,175,55,.08);

    top:0;
    left:0;

    transition:.5s;
}

.category-card:hover:before{

    width:100%;
}

.category-card:hover{

    transform:translateY(-12px);

    border-color:#d4af37;

    box-shadow:0 25px 60px rgba(0,0,0,.35);
}

.category-image{

    width:120px;
    height:120px;
    border-radius:50%;
    overflow:hidden;
    margin:auto;
    border:3px solid #d4af37;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.category-card:hover .category-image{

    transform:rotate(8deg) scale(1.08);
}

.category-card:hover .category-image img{

    transform:scale(1.08);
}

.category-image img{

    width:100%;
    height:100%;
    object-fit:cover;
    border-radius:50%;
    transition:.4s;
}


.category-card h5{

    color:#fff;

    margin-top:25px;

    font-size:18px;

    font-weight:600;
}

@media(max-width:991px){

.section-header{

display:block;

text-align:center;
}

.view-btn{

margin-top:20px;

display:inline-block;
}

}

@media(max-width:768px){

.section-header h2{

font-size:30px;
}

.category-image{

width:85px;
height:85px;
}

.category-image img{

width:55px;
height:55px;
}

.category-card{

padding:25px 15px;
}

.category-card h5{

font-size:15px;
}

}