﻿.news-block .inner-box {
    margin-bottom: 25px;
}

.news-block .image-box {
    position: relative;
    margin-right: 5px;
    transition: .35s;
}

    .news-block .image-box .image {
        position: relative;
        margin-bottom: 0;
        box-shadow: 0 0 10px rgba(0,0,0,1);
        line-height: 0;
        border-radius: 4px;
        overflow: hidden;
    }

        .news-block .image-box .image img {
            display: block;
            width: 100%;
            height: auto;
            -webkit-box-shadow: 0 0 21px rgba(0,0,0,.21);
            -moz-box-shadow: 0 0 21px rgba(0,0,0,.21);
            -ms-box-shadow: 0 0 21px rgba(0,0,0,.21);
            -o-box-shadow: 0 0 21px rgba(0,0,0,.21);
            box-shadow: 0 0 21px transparent;
            transition: all ease-in-out .35s;
        }

    .news-block .image-box .overlay-box {
        position: absolute;
        left: 0;
        top: 0;
        height: 0%;
        width: 100%;
        background: #056839 padding-box content-box;
        content: "";
        padding: 15px;
        opacity: 0;
        -webkit-transition: all .3s linear;
        -moz-transition: all .3s linear;
        -ms-transition: all .3s linear;
        -o-transition: all .3s linear;
        transition: all .3s linear; 
		display:none;
    }

.news-block .inner-box:hover .overlay-box {
    height: 100%;
    opacity: .8;
}

.news-block .image-box:hover .image img {
    transform: scale(1.2);
}

.news-block .overlay-box a {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 40px;
    width: 40px;
    margin-left: -20px;
    margin-top: -20px;
    text-align: center;
    font-size: 30px;
    line-height: 40px;
    color: #fff;
    font-weight: 400;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
}

.news-block .inner-box:hover .overlay-box a {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .3s linear;
    -moz-transition: all .3s linear;
    -ms-transition: all .3s linear;
    -o-transition: all .3s linear;
    transition: all .3s linear;
    -webkit-transition-delay: .3s;
    -moz-transition-delay: .3s;
    -ms-transition-delay: .3s;
    -o-transition-delay: .3s;
    transition-delay: .3s;
}

.news-block .overlay-box a i {
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}

.news-block .overlay-box a:hover i {
    color: #fff;
}

.news-block .caption-box {
    position: relative;
    margin-top: -35px;
    margin-right: -15px;
    margin-left: 60px;
    padding: 10px 15px;
    background-color: #fff;
    -webkit-box-shadow: 0 0 21px rgba(0,0,0,.21);
    -moz-box-shadow: 0 0 21px rgba(0,0,0,.21);
    -ms-box-shadow: 0 0 21px rgba(0,0,0,.21);
    -o-box-shadow: 0 0 21px rgba(0,0,0,.21);
    box-shadow: 0 0 21px rgba(0,0,0,.21);
}

    .news-block .caption-box h3 {
        position: relative;
        display: block;
        font-size: 20px;
        line-height: 20px;
        color: #2f2f2f;
        font-weight: 500;
        margin: 0;
    }

        .news-block .caption-box h3 a {
            color: #222;
            display: inline-block;
            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
            font-size: 20px;
            letter-spacing: 1.5px;
            margin-bottom: 2px;
        }

    .news-block .caption-box .info {
        position: relative;
        display: block;
        line-height: 1;
    }

        .news-block .caption-box .info li {
            position: relative;
            display: inline-block;
            font-size: 14px;
            line-height: 1;
            color: #777;
            font-weight: 400;
            margin-right: 10px;
            -webkit-transition: all .3s ease;
            -moz-transition: all .3s ease;
            -ms-transition: all .3s ease;
            -o-transition: all .3s ease;
            transition: all .3s ease;
        }

.news-block .inner-box:hover .caption-box .info li {
    color: #222;
}

.news-block .caption-box .info li a {
    transition: all ease-in-out .35s;
    color: #056839;
    letter-spacing: 1.2px;
    /*font-size: 12px;*/
}

    .news-block .caption-box .info li a:hover {
        letter-spacing: 1.8px;
    }
