.news-top-image {
    margin-bottom: 50px;
}

.blog {
    margin: 55px auto;
}

.blog-item {
    margin-bottom: 18px;
    padding-left: 5px;
    padding-right: 5px;
}

.blog-items {
    margin-top: 57px;
}

.blog-item:hover img {
    -webkit-transform: scale(1.1); /* Safari and Chrome */
    -moz-transform: scale(1.1); /* Firefox */
    -ms-transform: scale(1.1); /* IE 9 */
    -o-transform: scale(1.1);
    transform: scale(1.1);
}

.blog-item:hover a {
    color: #7B6D1D;
}

.blog-item-img {
    overflow: hidden;
    display: block;
    -webkit-backface-visibility: hidden;
    -webkit-transition: all .4s ease-in-out;
    -moz-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    -ms-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
}

.blog-item-img img {
    -webkit-transition: all .6s ease; /* Safari and Chrome */
    -moz-transition: all .6s ease; /* Firefox */
    -ms-transition: all .6s ease; /* IE 9 */
    -o-transition: all .6s ease; /* Opera */
    transition: all .6s ease;
}

.blog-item-img img:hover {
    -webkit-transform: scale(1.1); /* Safari and Chrome */
    -moz-transform: scale(1.1); /* Firefox */
    -ms-transform: scale(1.1); /* IE 9 */
    -o-transform: scale(1.1); /* Opera */
    transform: scale(1.1);
}

.blog-item-title {
    font-size: 16px;
    font-family: 'Lora', sans-serif;
    font-weight: 700;
    color: #173651;
    display: block;
    margin-top: 10px;
    transition: 0.4s all;
    -webkit-transition: 0.4s all;
    -moz-transition: 0.4s all;
    height: 30px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.blog-item-date, .blog-item-description {
    font-family: 'Roboto', cursive;
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: 700;
    color: #4B4B4B;
}

.blog-item-description {
    font-weight: 400;
    height: 100px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.category-pagination {
    display: flex;
    justify-content: flex-end;
}

.category-pagination ul {
    margin-bottom: 50px;
    display: flex;
    align-items: center;
    list-style-type: none;
    color: #173651;
}

.category-pagination > ul > li {
    margin-right: 8px;
}

.category-pagination > ul > li:last-child {
    margin-right: 0;
}

.category-pagination ul li, .category-pagination ul a {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: 0.2s all;
    cursor: pointer;
    color: #173651;
}

.category-pagination ul li a {
    color: #173651;
    font: 200 21px 'Lora';
    transition: 0.2s all;
    border-radius: 200px;
}

.category-pagination ul li:hover,
.category-pagination ul span:hover {
    color: #ffffff;
    background: #173651;
}

.category-pagination ul li a.active {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    transition: 0.2s all;
    cursor: pointer;
    width: 40px;
    height: 40px;
    color: #ffffff;
    background: #173651;
}

.category-pagination ul li.active a, .category-pagination ul li:hover a {
    color: #ffffff;
}

@media (max-width: 991px) {
    .blog-item-title {
        font-size: 15px;
        margin-bottom: 6px;
        height: 19px;
    }

    .blog-item-date, .blog-item-description {
        margin-bottom: 6px;
    }
}