/*PROPERTIES*/
.news-item li {
    position: relative;
    float: left;
    clear: left;
    width: 100%;
}
.news-item h6 {
    margin-top: 15px;
    margin-bottOm: 0;
    color: #122ca9;
    font-weight: 600;
}

.news-thumbnail {
    display: block;
    height: 200px;    
    overflow: hidden;
    border-radius: 5px;
}
.news-thumbnail a {
    height: 100%;
    width: 100%;
}

.news-thumbnail a img {
    width: 100%;
    height: 100%;
    transition: transform .3s;
    object-fit: cover;
}

.news-thumbnail a:hover img {
    transform: scale(1.1);
}



.news-thumbnail span {
    text-transform: uppercase;
    font-size: 12px;
}

.featured img {
    width: 100%;
}