.news-main-section {
    width: 100%;
    padding: 80px 0px;
}

.news-main-section ul {
    width: auto;
    margin-left: -2%;
    margin-right: -2%;
    display: flex;
    flex-wrap: wrap;
}

.news-main-section ul li {
    width: 46%;
    margin: 0 2%;
    list-style: none;
    margin-bottom: 50px;
    border: 1px solid #dcdcdc;
    position: relative;
    /* height: 100%; */
}

.news-main-section ul li::after {
    content: "";
    width: 100%;
    height: 5px;
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-image: linear-gradient(to right, #18b0be, #00a9d0, #3c9edb, #6f91da, #9980cc, #b478bf, #c970ad, #d86b97, #e4708a, #eb787d, #ef8271, #ee8e67);
}

.news-main-image {
    overflow: hidden;
    position: relative;
}

.news-main-image img {
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}

.news-main-image:hover img {
    -webkit-transform: scale(1.1, 1.1);
    -moz-transform: scale(1.1, 1.1);
    transform: scale(1.1, 1.1);
}

.news-main-content {
    width: 100%;
    padding: 40px;
}

.news-main-content h3 {
    font-size: 20px;
    line-height: 30px;
    color: #000;
    font-weight: 500;
    margin-bottom: 20px;
}

.news-main-content h5 {
    font-size: 15px;
    line-height: 20px;
    color: #000;
    margin-top: 35px;
    display: none;
}

.news-main-content p {
    color: #666666;
}

.news-main-content h3:hover a {
    color: #f49459;
}

.news-badge {
    position: absolute;
    z-index: 1;
    display: inline-block;
    padding: 5px 10px;
    line-height: 15px;
    top: 20px;
    color: #fff;
    font-size: 11px;
    text-transform: uppercase;
    left: 20px;
    background-image: linear-gradient(to right, #18b0be, #00a9d0, #3c9edb, #6f91da, #9980cc, #b478bf, #c970ad, #d86b97, #e4708a, #eb787d, #ef8271, #ee8e67);
}

img.left-adt {
    float: right;
}