.news_main {
    margin-top: 3%;
}

.news_list {
    justify-content: flex-start !important;
    align-items: flex-start;
    flex-wrap: wrap;
}

.news_list .news_item {
    width: 31%;
    margin-right: 30px;
    margin-bottom: 30px;
    border: 1px solid #D9D9D9;
    -webkit-transition: all 150ms ease-out 0ms;
    -moz-transition: all 150ms ease-out 0ms;
    -o-transition: all 150ms ease-out 0ms;
    transition: all 150ms ease-out 0ms;
}

.news_list .news_item:nth-child(3n) {
    margin-right: 0;
}

.news_list .news_item .item_img {
    width: 100%;
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 60%;
}


.news_list .news_item .item_img img {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    object-fit: cover;
}


.news_list .news_item:hover .item_img img {
    -webkit-transform: scale(1.05);
    -moz-transform: scale(1.05);
    -o-transform: scale(1.05);
    transform: scale(1.05);
}

.news_main .news_list .news_item .item_date {
    position: absolute;
    top: 30px;
    left: 0;
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #FFFFFF;
    line-height: 32px;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
    background: rgba(12, 65, 156, 0.8);
    padding: 7px 25px;
}

.news_list .news_item .item_info {
    padding: 15px 10px;
}


.news_list .news_item .item_title {
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 20px;
    color: #000000;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
}

.news_list .news_item .item_title a {
    display: inline-block;
    color: #000000;
    height: 60px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news_list .news_item .item_title:hover a {
    color: var(--dominant-color);
}

.news_list .news_item .item_desc {
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 16px;
    color: #999999;
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
    margin: 15px 0;
}

.news_list .news_item .item_desc a {
    display: inline-block;
    color: #999999;
    height: 70px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

.news_list .news_item .item_btn a {
    display: inline-block;
    font-family: 'Lato-Regular';
    font-weight: 400;
    font-size: 18px;
    color: var(--dominant-color);
    text-align: left;
    font-style: normal;
    text-transform: capitalize;
    position: relative;
    padding-right: 25px;
}

.news_list .news_item .item_btn a:after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: 0;
    width: 20px;
    height: 20px;
    background-image: url(../img/view_more.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media (max-width:1200px) {
    .news_list .news_item .item_desc a {
        height: 120px;
        -webkit-line-clamp: 6;
    }
}

@media only screen and (max-width: 950px) {
    .news_list .news_item {
        width: 48%;
    }

    .news_list .news_item:nth-child(3n) {
        margin-right: 30px;
    }

    .news_list .news_item:nth-child(2n) {
        margin-right: 0;
    }
}

@media only screen and (max-width: 800px) {
    .news_list .news_item {
        width: 100%;
        margin-right: 0 !important;
    }

    .news_list .news_item .item_title a {
        height: auto;
        -webkit-line-clamp: unset;
        overflow: visible;
    }

    .news_list .news_item .item_desc a {
        height: auto;
        -webkit-line-clamp: unset;
        overflow: visible;
    }

}