.swiper-blog-four .swiper-slide .post-item .readmore {
    display: none;
    transition: 0.4s;
}
.swiper-blog-four .swiper-slide .post-item .readmore:hover {
    transform: rotate(0deg);
}
.swiper-blog-four .swiper-slide .post-item .desc {
    display: none;
    position: absolute;
    right: 0;
    bottom: 24px;
    transition: 0.4s;
    flex-direction: column;
    gap: 16px;
    padding-inline: 32px;
}
.swiper-blog-four .swiper-slide-active .post-item .readmore,
.swiper-blog-four .swiper-slide-active .post-item .desc {
    display: inline-flex;
}
.swiper-blog-four .swiper-slide .post-item:before {
    content: "";
    width: 100%;
    height: 0;
    position: absolute;
    bottom: 0;
    right: 0;
    background: linear-gradient(0deg, var(--color2), transparent);
    transition: 0.4s;
}
.swiper-blog-four .swiper-slide-active .post-item:before {
    height: 500px;
}
.swiper-blog-four .swiper-slide .post-item .desc:before {
    content: "";
    width: 0;
    height: 64px;
    background: var(--white);
    position: absolute;
    top: -8px;
    right: 0;
    transition: 0.4s;
    border-radius: 0 10px 10px 0;
}
.swiper-blog-four .swiper-slide-active .post-item .desc:before {
    width: 10px;
}
.section-blog .btn1 {
    border-radius: 0 0 24px 0;
}
.swiper-blog-four .swiper-slide .post-item {
    transition: 0.4s;
}
.swiper-blog-four .swiper-slide.swiper-slide-next .post-item:after,
.swiper-blog-four .swiper-slide:not(.swiper-slide-active) .post-item:after {
    content: "";
    width: 100%;
    position: absolute;
    height: 100%;
    backdrop-filter: blur(8px);
    top: 0;
    right: 0;
}
.swiper-blog-four .swiper-slide.swiper-slide-next .post-item:after {
    border-radius: 50px 0 0 0;
    overflow: hidden;
}
.swiper-blog-four .swiper-slide.swiper-slide-prev .post-item:after {
    border-radius: 0 50px 0 0;
    overflow: hidden;
}
.swiper-blog-four .swiper-slide.swiper-slide-next .post-item img {
    border-radius: 50px 0 0 0;
}
.swiper-blog-four .swiper-slide.swiper-slide-prev .post-item img {
    border-radius: 0 50px 0 0;
}
.section-blog .sw-between.sw-between-align .swiper-nav-next {
    right: -28px;
}
.section-blog .sw-between.sw-between-align .swiper-nav-prev {
    left: -28px;
}
.section-blog .post-item .desc p {
    font-size: 1rem;
}
/** Tab **/
.blog-categories {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-bottom: 70px;
}
.blog-categories .cat-item {
    color: #010D1599;
    transition: 0.4s;
    font-size: clamp(14px,2vw,18px);
    position: relative;
}
.blog-categories .cat-item.active,
.blog-categories .cat-item:hover {
    color: var(--color2);
}
.blog-categories li:not(:nth-last-child(1)) .cat-item:before {
    content: "";
    height: 13px;
    width: 1px;
    background: rgb(1 13 21 / 16%);
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
}
@media only screen and (max-width: 576px) {
    .section-blog .sw-between.sw-between-align .swiper-nav-next {
        right: -4.5rem;
    }
    .section-blog .sw-between.sw-between-align .swiper-nav-prev {
        left: -4.5rem;
    }
    .blog-categories {
        justify-content: flex-start;
        overflow: scroll;
    }
    
    ul.blog-categories li {
    min-width: fit-content;
        
    }
    .blog-categories {
        overflow: auto;
        justify-content: flex-start;
        li {
            min-width:max-content;
        }
    }
}