.latest-section {
    background: #1F1F1F;
    margin-bottom: 70px;
    box-shadow: 0px 10px 17px 13px #1F1F1F;
}

.latest-section .page-title {
    color: #fff;
    text-align: center;
}

.latest-section .page-subtitle {
    color: #fff;
    text-align: center;
}

.latest-section .swiper-slide {
    padding: 30px;
    border-radius: 20px;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.latest-section .swiper-slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: rgba(190, 171, 164, 0.9);
}

.latest-section .swiper-slide:nth-child(3n + 2)::after {
    background: rgba(165, 165, 165, 0.9);
}

.latest-section .swiper-slide:nth-child(3n)::after {
    background: rgba(185, 180, 166, 0.9);
}

.latest-section .latest-swiper * {
    color: #fff;
    position: relative;
    z-index: 2;
}

.latest-section .latest-swiper .blog-title {
    font-size: 20px;
    font-family: 'Poppins-Bold';
}

.latest-section .choose-category {
    color: #fff;
    text-align: center;
    padding-top: 40px;
}

.latest-section .blog-cat {
    mix-blend-mode: luminosity;
}

.latest-section .blog-cat:hover {
    mix-blend-mode: normal;
}

.latest-section .blog-cat.active {
    mix-blend-mode: normal;
}

.latest-section .blog-cat span {
    color: #00D1CD;
}

.latest-section .categories {
    justify-content: space-evenly;
    padding-bottom: 80px;
}

.blogs-section .blogs-section-wrapper {
    row-gap: 40px;
}

.blogs-section .search-blogs {
    border-radius: 10px;
    border: 1.5px solid #BEBEBE;
    padding: 10px 20px;
    column-gap: 10px;
    max-width: 400px;
    width: 100%;
    margin-left: auto;
}

.blogs-section .search-blogs input {
    color: #1F1F1F;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.blogs-section .search-blogs input::placeholder {
    color: rgba(108, 108, 108, 0.75);
}

.blogs-section .blog-grid,
.blogs-section .blog-results {
    display: none;
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
    column-gap: 40px;
}

.blogs-section .blog-results.active,
.blogs-section .blog-grid.active {
    display: grid;
}

.blogs-section .blog {
    border-radius: 20px;
    min-height: 100%;
    max-height: 100%;
    height: fit-content;
    row-gap: 40px;
    position: relative;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.blogs-section .blog::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #978781;
    opacity: 0.85;
    transition: all 300ms ease;
}

.blogs-section .blog:nth-child(4n+2)::after {
    background-color: #8EA1A3;
}

.blogs-section .blog:nth-child(4n+3)::after {
    background-color: #89867E;
}

.blogs-section .blog:nth-child(4n)::after {
    background-color: #868686;
}

.blogs-section .blog:hover::after {
    background-color: #000;
    opacity: 0.9;
}

.blogs-section .blog-details {
    position: relative;
    z-index: 1;
}

.blogs-section .blog-author {
    height: 100px;
    width: 100px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: #bdaba4;
}

.blogs-section .blog-author img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.blogs-section .blog-title {
    color: #FFF;
    font-family: 'Poppins-Bold';
    font-size: 36;
    text-transform: capitalize;
    line-height: 1.2;
    margin-bottom: 10px;
}

.blogs-section .blog-details p {
    color: #FFF;
    text-transform: capitalize;
}

.blog.no-results {
    background: none;
    color: #000;
    border-radius: 0;
}

.blog.no-results::after {
    display: none;
}

.blogs-section .search-blogs input {
    width: 100%;
    font-family: inherit !important;
    background-color: transparent;
}

@media screen and (max-width: 989px) {
    .latest-section .categories {
        flex-wrap: wrap;
    }

    .latest-section .blog-cat {
        flex: 1;
    }

    .blogs-section .blog-grid,
    .blogs-section .blog-results {
        grid-template-columns: 1fr;
    }
}