/*recent section*/
.blog-img {
    background-color: #fff;
    width: 100%;
    height: auto;
}

.blog-content {
    padding-top: 10px;
    padding-bottom: 10px;
}

.blog-category {
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    padding: 5px;
    background-color: #f0631b;
}
.blog-date {
    margin-left: 5px;
    border-radius: 5px;
    text-decoration: none;
    text-align: center;
    padding: 5px;
    border: 1px solid #bebebe;
}

.blog-img-left {
    background-color: #fff;
    width: 40%;
    float: left;
    height: auto;
}
.post {
    margin-bottom: 20px;
}
.post .post-meta {
    margin-top: 15px;
    margin-bottom: 15px;
}
.post:after {
    content: "";
    display: block;
    clear: both;
}
.post .post-body {
    margin-left: calc(40% + 30px);
}
.post-body-title{
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.5s ease;
}

.post-body-title:hover {
  border-bottom: 2px solid white;
}

.post .post-meta {
    margin-top: 0;
}
.category-widget ul li {
    display: block;
}
.category-widget ul li > a {
    display: block;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}
.category-widget ul li > a > span {
    float: right;
}
.category-widget ul li > a:hover,
.category-widget ul li > a:focus {
    text-decoration: none;
}
.load-more {
    position: relative;
    padding: 9px 45px;
    border: none;
    outline: none;
    background: rgb(251, 209, 4);
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
}
/***pagination***/
.pagination {
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    border-radius: 0.25rem;
}
.pagination li{
    list-style: none;
}
.pagination .page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem;
}
.pagination .page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #64d97b;
    border-color: #64d97b;
}
.pagination .page-link {
    position: relative;
    display: block;
    padding: 0.5rem 0.75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #515151;
    background-color: #fff;
    border: 1px solid #dee2e6;
}
.pagination .page-item:last-child .page-link {
    border-top-right-radius: 0.2rem;
    border-bottom-right-radius: 0.2rem;
}
/***pagination/***/
@media (min-width: 480px) and (max-width: 991px) {
    .right-sidebar{
        margin-top: 20px;
    }
    .blog-img-left {
        float: unset;
        display: block;
        width: 100%;
        height: auto;
    }
    .post .post-body{
        margin-left: 0;
        margin-top: 10px;
    }
    .post{margin-bottom: 20px;}
}
@media (min-width: 320px) and (max-width: 479px) {
    .right-sidebar{
        margin-top: 20px;
    }
    .blog-img-left {
        float: unset;
        display: block;
        width: 100%;
        height: auto;
    }
    .post .post-body{
        margin-left: 0;
        margin-top: 10px;
    }
    .post{margin-bottom: 20px;}
}


