.categories{

    padding:20px 0;
    background:#fff;

}

.categories-inner{
    max-width:1400px;
    margin:0 auto;
    padding:0px;
    
}
    
.categorySwiper{

    overflow:hidden;

}

.swiper-slide{

    height:auto;

}
.categories{
    padding:40px 0;
    background:#fff;
}

.categories-inner{
    max-width:1400px;
    margin:auto;
    padding:0 10px;
}

.categorySwiper{
    overflow:hidden;
}

.swiper-slide{
    height:auto;
}

/* CARD */

.cat-card{
    position:relative;
    display:block;
    height:330px;
    border-radius:22px;
    overflow:hidden;
    text-decoration:none;
    background:#111;
}

.cat-img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s ease;
}

.cat-card:hover .cat-img{
    transform:scale(1.08);
}

/* OVERLAY */

.cat-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(
        180deg,
        rgba(0,0,0,.75) 0%,
        rgba(0,0,0,.25) 45%,
        rgba(0,0,0,.05) 100%
    );
}

/* CONTENT */

.cat-content{
    position:absolute;
    inset:0;
    padding:22px;

    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

/* TITLE */

.cat-card-name{

    font-family:'Cormorant Garamond',serif;

    font-size:26px;

    line-height:1.1;

    font-weight:700;

    color:#fff;

    max-width:170px;

    text-shadow:0 4px 15px rgba(0,0,0,.45);

}

/* ARROW */

.cat-arrow{

    width:52px;
    height:52px;

    margin-left:auto;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:rgba(255,255,255,.18);

    backdrop-filter:blur(10px);

    color:#fff;

    font-size:18px;

    transition:.35s;

}

.cat-card:hover .cat-arrow{

    background:#d9a441;
    color:#1a2a1a;

    transform:translateX(4px);

}



.sec-tag{

    text-align:center;
    margin-bottom:10px;

}

.sec-h{

    text-align:center;
    margin-bottom:35px;

}
/* Heading */

.cat-heading{

    text-align:center;
    margin-bottom:55px;

}

.cat-heading span{

    color:#b8860b;
    letter-spacing:4px;
    text-transform:uppercase;
    font-size:13px;
    font-weight:700;
    font-family:'Cormorant Garamond', serif;

}

.cat-heading h2{

    margin:15px 0;
    font-size:58px;
    color:#1f1f1f;
    font-weight:700;
    font-family:'Cormorant Garamond', serif;
    line-height:1.1;
    letter-spacing:.5px;

}

.cat-heading p{

    max-width:700px;
    margin:auto;
    color:#666;
    font-size:18px;
    line-height:32px;

}

@media(max-width:932px){

.cat-card{
    height:250px;
}

.cat-content{
    padding:18px;
}

.cat-card-name{
    font-size:18px;
    max-width:130px;
}

.cat-arrow{

    width:42px;
    height:42px;
    font-size:15px;

}

.cat-heading{
    width:100%;
    max-width:100%;
    padding:0 20px;
    margin:0 auto 30px;
    text-align:center;
}

.cat-heading span{
    display:block;
    font-size:12px;
    letter-spacing:3px;
    font-weight:600;
    color:#b8860b;
    text-transform:uppercase;
    margin-bottom:10px;
}

.cat-heading h2{
    margin:0px;
    font-size:28px;
    line-height:1.15;
    font-weight:700;
    color:#1f1f1f;
    word-break:break-word;
}

.cat-heading p{
    max-width:600px;
    margin:0 auto;
    font-size:15px;
    line-height:24px;
    color:#666;
}

}