/*blog css start*/

.blog-wrapper {
    padding: 60px 0;
    position: relative;
}

.blog-list-box {
    position: relative;
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow:  0 0 25px rgba(0,0,0,0.07);
    margin-bottom: 20px;
    transition: .2s ease-in;
    top: 0;
}

.blog-list-box:hover {
    top: -10px;
}



.blog-list-box .blog-image {
    height: 220px;
    overflow: hidden;
    border-radius: 4px;
}

.blog-list-box .blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* overflow: hidden; */
    /* border-radius: 4px; */
}

.blog-list-box .blog-content {}

.blog-list-box .blog-content h4 {
    font-size: 16px;
    line-height: initial;
    padding: 9px 0;
    color: #000;
}

.blog-list-box .blog-content .blog-dt {
    color: #6c757d;
    font-weight: 300;
    font-size: 13px;
    padding-top: 15px;
    display: block;
}

.blog-list-box .blog-content p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #8f8f8f;
    font-weight: 400;
}


/*blog sidebar*/

.blog-sidebar {
    position: sticky;
    top: 0px;
}

.blog-side-content {
        margin-bottom: 30px;
}

.blog-side-content h2 {
    font-size: 18px;
    padding-bottom: 25px;
    font-weight: 500;
}

/* recent-posts */

.recent-posts li {
    margin-bottom: 18px;
}

.recent-posts li{
    display: flex;
    position: relative;
    top: 0;
    transition: .2s ease-in;
}

.recent-posts li:hover {
    top: -3px;
}

.recent-posts li  .entry-thumb {
    width: 80px;
    height: 80px;
    padding: 6px;
    box-shadow: 0 0 9px rgb(0 0 0 / 15%);
    margin-right: 20px;
    border-radius: 6px;
}

.recent-posts li .entry-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 6px;
}

.recent-posts li .entry-header {
    display: block;
    flex-basis: 5%;
    margin: 0;
    padding: 0;
    flex-grow: 1;
}

.recent-posts li .entry-header h4 {
    color: #000;
    line-height: initial;
    margin-bottom: 10px;
}

.recent-posts li .entry-header .blog-dt {
    color: #6c757d;
    font-weight: 300;
    font-size: 13px;
    display: block;
}

/*.recent-posts.no-thumb */

.recent-posts.no-thumb li {
    border-bottom: 1px solid #dbdbdb;
    padding-bottom: 15px;
}

.blog-category {
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 25px rgb(0 0 0 / 7%);
}

.blog-category li {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
}

.blog-category li input {
    zoom: 1.3;
    margin-right: 7px;
}

.blog-category li label {
    font-size: 14px;
    font-weight: 400;
}

.blog-category li:last-child {
    margin: 0;
}


/*blog-detail*/

.blog-detail-wrapper {}

.blog-detail-wrapper 
 .blog-dt-title {
    font-size: 22px;
    line-height: initial;
    margin-bottom: 10px;
}

.blog-detail-wrapper .blog-dt {
    color: #6c757d;
    font-weight: 300;
    font-size: 13px;
    display: block;
}

.blog-detail-image {
    margin: 20px 0;
    /*height: 400px;*/
}

.blog-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-wrapper p {
    font-weight: 400;
    margin-bottom: 15px;
    font-size: 14px;
    color: #000;
}


.blog-detail-wrapper ul {
    list-style-type: disc;
    padding-left: 15px;
        margin: 15px 0;
}

.blog-detail-wrapper ul li {
    margin-bottom: 15px;
    line-height: initial;
}


.blog-detail-wrapper .title-head {
    font-size: 20px;
    padding: 10px 0;
    margin-bottom: 10px;
}

@media screen and (max-width: 768px){
    .blog-detail-image{
        height: auto;
    }

    .blog-sidebar {
    margin-top: 40px;
}
}

/*dark-blog*/

.dark-blog {
    
    background: #292929;
}

.dark-blog .blog-list-box {
    background: #313131;
}

.dark-blog .blog-list-box .blog-dt {
    color: #e4e4e4;
}

.dark-blog .blog-list-box .blog-content h4 {
    color: #fff;
}

.dark-blog .blog-list-box .blog-content p {
    color: #d7d7d7;
}

.dark-blog .blog-side-content h2 {
    color: #fff;
}

.dark-blog .recent-posts li .entry-header h4 {
    color: #fff;
}

.dark-blog .blog-dt {
    color: #e4e4e4 !important;
}

.dark-blog .entry-thumb {
    background: #313131;
}

.dark-blog .recent-posts.no-thumb li {
    border-color: #505050;
}

.dark-blog .blog-category {
    background: #313131;
}

.dark-blog .blog-category li label {
    color: white;
}

.dark-blog .blog-detail-wrapper .blog-dt-title {
    color: #fff;
}

.dark-blog .blog-detail-wrapper .title-head {
    color: #fff;
}

.dark-blog .blog-detail-wrapper p {
    color: #f6f6f6;
}

.dark-blog .blog-detail-wrapper ul li {
    color: #f6f6f6;
}