/* blog style */

.home_blog {
    background-color: var(--background-color);
    position: relative;
    padding: 50px;
    z-index: 10;
}

.home_blog .blog_title {
    margin-bottom: 25px;
    gap: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.home_blog .blog_title .mini_title {
    font-weight: 500;
    font-size: 0.9rem;
    display: block;
    margin: 0;
    color: var(--secondary-text-color);
}
.home_blog .blog_title h2 {
    font-weight: 500;
    font-size: 2rem;
    color: var(--text-color);
    margin: 0;
}

.single {
    min-height: 50vh;
}
.blog_content {
    max-width: 980px;
    display: block;
    margin: 0 auto;
}
.content h1 {

}
.content h2 {
    margin-top: 2rem;
}
.content h3 {
    margin-top: 1.6rem;
}
.content h4 {
    margin-top: 1.5rem;
}
.content h5 {
    margin-top: 1rem;
}
.content h6 {
    margin-top: 1rem;
}
.content p {
    line-height: 1.7;
    font-size: 1rem;
}
.content a {
    color: var(--main-color);
}
.content ul {

}
.content li {
    margin-bottom: 12px;
    font-size: 1rem;
    display: block;
}
.content li:before {
    content: '';
    background: url("../images/svg/check-2.svg") no-repeat center center;
    background-size: contain;
    display: inline-block;
    margin-bottom: -4px;
    margin-right: 8px;
    opacity: 0.8;
    height: 22px;
    width: 22px;
    filter: brightness(0);
    -webkit-filter: brightness(0);
}
.content img {
    border-radius: 6px;
    object-fit: cover;
    max-height: 90vh;
    max-width: 100%;
    display: block;
}

