@import url(./font.css);
body{
    overflow-x: hidden;
}
.swiper-button-next::after{
    font-size: 18px !important;
    font-weight: bold;
    background: transparent !important;
    color: #000;
    padding-left: 3px;
}
.swiper-button-prev::after{
    font-size: 18px !important;
    font-weight: bold;
    background: transparent !important;
    color:#000;
    padding-right: 3px;
}
.swiper-button-next{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px !important;
    width: 30px !important;
    border-radius: 50% !important;
    background: #F3F3F3 !important;
}
.swiper-button-prev{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 30px !important;
    width: 30px !important;
    border-radius: 50% !important;
    background: #F3F3F3 !important;
}
.swiper-button-next:hover{
    background-color: #292929 !important;
    transition: all 0.2s;
}
.swiper-button-prev:hover{
    background-color: #292929 !important;
    transition: all 0.2s;
}
.swiper-button-prev:hover::after {
    color: white !important;
    transition: all 0.2s;
}

.swiper-button-next:hover::after {
    color: white !important;
    transition: all 0.2s;
}
.swiper-pagination{
    /* background: white; */
    /* width: 100px !important; */
    border-radius: 20px;
}
.swiper-pagination-bullet{
    background: #8A8A8A !important;
}
.swiper-pagination-bullet-active{
    background: #292929 !important;
}
@keyframes change {
    0%{
        width: 90px;
        height: 90px;
    /* transition:all 5s; */

    }
    50%{
        width: 120px;
        height: 120px;
        /* transition:all 5s; */

    }
    100%{
        width: 90px;
        height: 90px;
        /* transition:all 5s; */

    }
}
@media only screen and (max-width:640px) {
    .swiper-button-next{
        display: none !important;
    }
    .swiper-button-prev{
        display: none !important;
    }
}

.search-blur {
    backdrop-filter: blur(10px);
    background-color: rgba(0, 0, 0, 0.5);
}

.nav-item {
    padding: 4px 12px;

    text-align: left;
    position: relative;
    list-style: none;
    cursor: pointer;
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: white;
    transform: translateX(-50%) scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-item:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.clip-image{
    clip-path: polygon(20% 0%, 100% 0%, 80% 100%, 0% 100%);
}
/* 
#filter-menu {
    transform: translateX(100%);
}

#filter-menu.left-full {
    transform: translateX(100%);
}

#filter-menu.translate-x-0 {
    transform: translateX(0);
} */