#blog-section {
    padding: 0 5%;
}
.rounded-sm {
    border-radius: 4px;
}

.hero-img {
    transition: all 0.3s;
    opacity: 1;
    cursor: pointer;
    width: 100%;
}

.hero-img:hover {
    opacity: 0.9;
}

.badge {
    width: auto;
    font-size: 14px;
    font-weight: 400;
    border-radius: 4px;
    color: #fff;
    background: linear-gradient(
        252deg,
        #8055a0 0%,
        #7a68aa 44.05%,
        #5bc1da 98.86%
    );
    mix-blend-mode: multiply;
}

/* .badge-primary {
    background: rgb(9, 9, 218);
}

.badge-success {
    background: rgb(10, 165, 10);
}

.badge-info {
    background: rgb(127, 11, 180);
} */

.hero-img-content-box {
    color: #fff;
    bottom: 40px;
    padding-left: 30px;
    cursor: pointer;
    z-index: 70;
}

.below-shadow {
    position: absolute;
    background-color: #36363698;
    width: 100%;
    height: 150px;
    bottom: 0px;
    z-index: 65;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
}

.title {
    margin-top: 10px;
    padding-right: 15px;
}

.blogs {
    margin-top: 20px;
}

.blog {
    display: flex;
    width: 100%;
    gap: 15px;
    margin: 20px 0;
    transition: all 0.3s;
}

.blog:hover {
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.sep4 {
    width: 40%;
    text-align: center;
    display: flex;
    align-items: center;
}

.sep8 {
    width: 60%;
    padding-right: 4px;
}

@media only screen and (max-width: 768px) {
    .blog {
        display: flex;
        flex-direction: column;
        padding: 10px;
    }

    .recent-post .sep4 img {
        width: 50%;
    }

    .recent-post .sep8 h6 {
        width: 100%;
        margin-left: -80px;
    }

    .sep4 {
        width: 100%;
    }

    .sep8 {
        width: 100%;
    }
}

.recent-post {
    width: 100%;
    display: flex;
    color: #333;
    margin: 20px 0;
}

.sep4 img {
    width: 90%;
}

.category {
    color: #333;
    transition: all 0.3s;
}

.category.active {
    color: purple;
}

.category:hover {
    color: purple;
}

.pagination,
.page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.pagination {
    margin-top: 50px;
}

.btn-nav,
.btn-page {
    border-radius: 50%;
    background-color: #fff;
    cursor: pointer;
}

.btn-nav {
    padding: 8px;
}

.btn-nav {
    width: 42px;
    height: 42px;
    border: 1.5px solid #7a68aa;
    color: #7a68aa;
}

.btn-nav:hover,
.btn-page:hover {
    color: #fff;
    background: linear-gradient(
        252deg,
        #8055a0 0%,
        #7a68aa 44.05%,
        #5bc1da 98.86%
    );
    mix-blend-mode: multiply;
}

.btn-page {
    border: none;
    width: 36px;
    height: 36px;
    font-size: 16px;
    background: #777;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.btn-selected {
    color: #fff;
    background: linear-gradient(
        220deg,
        #8055a0 0%,
        #7a68aa 44.05%,
        #5bc1da 98.86%
    );
    mix-blend-mode: multiply;
}

.banner-title {
    padding: 6rem;
    margin-top: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-title h1 {
    text-transform: uppercase;
}
