﻿.news-cat{
    position: relative;
    margin-bottom: 35px;
}
.news-cat .item{
    position: relative;
    background-color: #e8e8e8;
    box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.05);
    margin-bottom: 15px;
}
.news-cat .item .thumb{
    position: relative;
    max-height: 220px;
    overflow: hidden;
}
.news-cat .item .thumb img{
    width: 100%;
    min-height: 220px;
    transform: scale(1) rotate(0);
    -webkit-transform: scale(1) rotate(0);
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.news-cat .item:hover .thumb img{
    transform: scale(1.08) rotate(0);
    -webkit-transform: scale(1.1) rotate(0);
}
.news-cat .item h3{
    padding: 15px 10px;
    text-align: center;
    text-transform: uppercase;
    color: #2d3091;
    font-weight: 600;
    transition: all 0.3s ease-out 0s;
    -webkit-transition: all 0.3s ease-out 0s;
}
.news-cat .item a{
    color: #252525;
    -webkit-transition: 0.3s ease-out;
    -moz-transition: 0.3s ease-out;
    -o-transition: 0.3s ease-out;
    transition: 0.3s ease-out;
}
.news-cat .item h3:hover a{
    color: #ed0000
}

.viewcat-page h2,
.viewcat-page h3{
    margin-bottom: 8px;
    font-size : 16px;
}
.viewcat-page h2:hover a,
.viewcat-page h3:hover a{
    color: #ed0000;
}
.viewcat-page img{
    margin-right: 15px;
}
.other-news ul li{
    display: inline-block;
    width: 100%;
    margin-bottom: 4px;
}
.other-news h4{
    display: inline-block;
    font-weight: 500;
    font-size: 14px;
}

@media (max-width:767px) {
    .viewcat-page img{
        width: 100%;
        margin: 0 0 10px 0;
    }
}