/*-- Use For Custom Styling --*/


/* ===================================
   Latest Blog
====================================== */

.news-item{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    text-align: left;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.news-item img{
    width: 100%;
}

.news-item:hover{
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .12);
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);

}

.news-item .news-text-box{
    padding: 30px;
    background-color: #fff;
}

.news-item .date{
    font-weight: 400;
    color: #ef1000;
    transition: .3s ease;
}

.news-item:hover .date, .news-item:hover .author .author-name {
/*    color: #002450;*/
    color: black;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.news-item:hover .news-title {
    color: #ef1000;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.news-item .news-title{
    font-size: 24px;
    font-weight: 500;
/*    color: #002450;*/
    color: black;
    margin: 10px 0;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;}

.news-item .author{
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    margin-bottom: 10px;
}

.news-item .author > img{
    max-width: 50px;
    border-radius: 50px;
    overflow: hidden;
    margin-right: 15px;
}

.news-item .author .author-name{
    margin: 0;
    font-size: 15px;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    font-style: italic;
    font-family: Roboto, sans-serif;
}

.news-item .news-text-box .para {
    font-size: 16px;
    color: #9fa4af;
}