.blog-sec {
    margin-block: 25rem;
}

.blog-sec-detail {

    margin-block: 25rem;
}

.blog-title {
    font-weight: bold;
    font-size: 43px;
}

.blog-title-container {
    margin-block: 5rem;
}

.posts {
    width: 100%;
}

.posts .post-card {
    width: 100%;
    height: 935px;
    position: relative;
    margin-top: 2rem;
    margin-bottom: 1.5rem;
    cursor: pointer;
    color: #000;
}

.posts .post-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    position: relative;
}

.posts .post-card .post-container {
    padding-inline: 1rem;
    text-align: justify;
}

.posts .post-card .post-card-badge {
    position: absolute;
    z-index: 2;
    top: -1.3rem;
    left: 0;
    background: #9DD913;
    color: #fff;
    padding: 0.5rem 1rem;
    font-weight: 500;
    cursor: pointer;
}

.posts .post-card .post-card-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #fff;
    z-index: -1;
}

.posts .post-card .post-card-bg-triangle {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 100px;
    width: 60px;
}

.posts .post-card .post-date {
    padding: 0.3rem 0.5rem;
    width: fit-content;
    background: #9DD913;
    background-size: 100%;
    margin-top: 2rem;
    margin-bottom: 0;
}

.posts .post-card .post-date .post-date-text {
    font-size: 0.9rem;
}

.posts .post-card .post-card-title {
    padding-block: 1.5rem;
}

.posts .post-card .post-card-title .post-card-title-text {
    font-weight: bold;
}

.post-desc {
    margin-block: 10rem;
}

/* select Styles */
.select_wrap,
.select_Themes_wrap {
    width: 90%;
    margin: 15px 0;
    position: relative;
    user-select: none;
    margin-bottom: 3rem;
}

.select_wrap .default_option,
.select_Themes_wrap .default_theme_option {
    background: #C7E582;
    padding: 0.6rem 0.3rem;
    position: relative;
    cursor: pointer;
}

.select_wrap .default_option li,
.select_Themes_wrap .default_theme_option li {
    padding: 10px 20px;
}

.select_wrap .default_option:before,
.select_Themes_wrap .default_theme_option:before {
    content: "";
    position: absolute;
    margin-top: 0.3rem;
    top: 18px;
    right: 18px;
    width: 12px;
    height: 12px;
    border: 2px solid;
    border-color: transparent transparent #fff #fff;
    transform: rotate(-45deg);
}

.select_wrap .select_ul,
.select_Themes_wrap .select_theme_ul {
    position: static;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    width: 100%;
    background: #E1EEC2;
    display: none;
}

.select_wrap .select_ul li,
.select_Themes_wrap .select_theme_ul li {
    padding: 10px 20px;
    cursor: pointer;
}

.select_wrap .select_ul li:hover,
.select_Themes_wrap .select_theme_ul li:hover {
    background: #fff;
    color: #9DD913;
}

.select_wrap .option,
.select_Themes_wrap .option {
    display: flex;
    align-items: center;
}

.select_wrap .option .icon,
.select_Themes_wrap .option .icon {
    width: 32px;
    height: 32px;
    margin-right: 15px;
}

.select_wrap.active .select_ul,
.select_Themes_wrap.active .select_theme_ul {
    display: block;
}

.select_wrap.active .default_option:before,
.select_Themes_wrap.active .default_theme_option:before {
    top: 25px;
    transform: rotate(-225deg);
}

.post-img {
    width: 100%;
    max-height: 600px;
    object-fit: cover;
    margin-bottom: 2rem;
}

.post-badge {
    background: #9DD913;
    width: fit-content;
    color: #fff;
    padding: 0.5rem 1rem;
    padding-right: 2rem;
    margin-bottom: 2rem;
}

#post-blog-title {
    margin-bottom: 3rem;
}

@-webkit-keyframes HideList {
    from {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    to {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}

@keyframes HideList {
    from {
        -webkit-transform: scaleY(1);
        transform: scaleY(1);
    }

    to {
        -webkit-transform: scaleY(0);
        transform: scaleY(0);
    }
}

@media (max-width: 991px) {

    .select_wrap,
    .select_Themes_wrap {
        width: 100%;
        margin-inline: auto;
    }

    .post-badge {
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-sec {
        margin-block: 25rem;
    }

    .blog-sec-detail {

        margin-block: 25rem;
    }

    .blog-title-container {
        margin-top: 0;
        margin-bottom: 2rem;
    }

    .select-box {
        width: 100% !important;
        margin-inline: 0;
    }

    .post-desc {
        margin-block: 5rem;
    }


}

@media (max-width: 575px) {
    .blog-sec {
        margin-block: 25rem;
    }

    .blog-sec-detail {

        margin-block: 25rem;
    }

    .posts .post-card {
        height: fit-content;
        padding-bottom: 6rem;
    }


}