.news-filter {
    list-style: none!important;
    margin: 0px 0 50px;
    padding: 0!important;
    display: flex;
    justify-content: center;
    display: none;
}
.news-filter li {
    margin: 0 10px ;
    padding: 0;
}
.news-filter li a {
    padding: 8px 35px;
    background: #fff;
    border-radius: 25px;
    display: block;
    font-size: 15px;
    transition: all .2s ease;
}

.news-filter li.active a {
    background-color: #18b4e4;
    color: #fff;
}
@media(max-width:480px){
    .news-filter li {
        margin: 0 5px ;
        padding: 0;
    }
    .news-filter li a {
        padding: 8px 25px;
        
    }
}
.news-list {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
    list-style: none!important;
    padding: 0!important;
}

.news-item {
    width: 33.33%;
    padding: 0 15px;
    color: #404040;
   /* animation: fadeIn 1s ease-in 0.7s forwards;*/
   margin-bottom: 30px;
   box-sizing: border-box;
}
.news-content {
     background: #fff;
     height: 100%;
     border-bottom: 4px #A5DDC4 solid;
}
.news-content:hover {
    
}
@media(max-width:768px){
    .news-item {
        width: 50%;
        
    }
}
@media(max-width:480px){
    .news-item {
        width: 100%;
        
    }
}

.news-brief {
    padding: 2rem 0;
}
.news-item-img {
    position: relative; 
    overflow: hidden;
    border-radius: 2rem;
    overflow: hidden;

}
.news-item-img::after {
    background-color: rgba(0,0,0,0);
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: 2;
    left: 0;
    content: '';
    transition: all .2s ease;
}
.news-item-img  img{
    width: 100%;
    display: block;
    transition: all .2s ease;
}

.news-content:hover .news-item-img::after {
    opacity: 0;
}
.news-content:hover .news-item-img  img{
    transform: scale(1.1);
    transition: all .2s ease;
}
.news-item .cat {
    font-size: 1.6rem;
    color: #A5DDC4;
    text-transform: uppercase;
    margin: 0;
}
.news-item h3 {
    font-size: 3rem;
    margin: 0;
    padding: 0;
    

}
.news-item a {
    text-decoration: none;
}

.news-item .day {
    font-size: 1.8rem;
}
 .news-item {
     font-size: 2rem;
 }

@keyframes fadeIn {
    0% {
      opacity: 0;
    }
  
    100% {
      opacity: 1;
    }
  }