section#news{
    overflow: hidden;
}

section#news .search{
    font-size: 0;
    text-align: right;
}
section#news .search label{
    display: inline-block;
    font-size: 16px;
    background: url('../img/search.png') no-repeat;
    background-position: 0 1px;
    vertical-align: middle;
    padding: 0px 7px 0 23px;
}
section#news .search input{
    display: inline-block;
    width: 130px;
    margin: 0;
    border: solid 1px #757575;
    background: #fff;
    line-height: 22px;
    border-radius: 0;
    height: 22px;
    padding:  0 7px;
    font-size: 14px;
    vertical-align: middle;
}
section#news .search a{
    display: inline-block;
    width: 25px;
    text-align: center;
    vertical-align: middle;
    font-size: 16px;
    line-height: 21px;
}
section#news .search a,
section#news .search a:visited,
section#news .search a:focus,
section#news .search a:active{
    color: #717171;
}
section#news .search a:hover{
    color: #ec5f32;
}

section#news .news{
    margin: 0 -10px;
    padding:  30px 0;
    min-height: 200px;
}
section#news .news:after{
    content: '';
    display: block;
    clear: both;
}
section#news .post{
    position: relative;
    float: left;
    width: 33.333333%;
    padding:  0 10px;
    margin-bottom: 50px;
    z-index: 2;
    opacity: 1;
    -webkit-transition: all 0.1s ease-out;
       -moz-transition: all 0.1s ease-out;
         -o-transition: all 0.1s ease-out;
            transition: all 0.1s ease-out;
}
section#news .loading .post{
    opacity: 0;
}
section#news .post a{
    display: block;
}

section#news .post:nth-child(3n - 3):before{
    content: '';
    display: block;
    position: absolute;
    width: 100vw;
    left: 150%;
    bottom: 255px;
    height: 80px;
    background: #ec5f32;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
}

section#news .post.animated:before{
    width: 0;
    -webkit-transition: all 1.0s ease-out;
       -moz-transition: all 1.0s ease-out;
         -o-transition: all 1.0s ease-out;
            transition: all 1.0s ease-out;
}
section#news .post.animate:before{
    width: 100vw;
}



section#news .post.animated a{
    opacity: 0;
    -webkit-transition: all 0.25s ease-out 0.75s;
       -moz-transition: all 0.25s ease-out 0.75s;
         -o-transition: all 0.25s ease-out 0.75s;
            transition: all 0.25s ease-out 0.75s;
}
section#news .post.animate a{
    opacity: 1;
}



section#news .post .img{
    padding-bottom: 100%;
}

section#news .post .info{
    position: relative;
    margin: -55px 20px 0 20px;
    padding: 20px 20px 75px;
    height: 255px;
    color: #717171;
    background: #fff;
    z-index: 1;
    -webkit-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
       -moz-box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
            box-shadow: 2px 2px 5px 0px rgba(0,0,0,0.3);
    -webkit-transition: all 0.25s ease-out;
       -moz-transition: all 0.25s ease-out;
         -o-transition: all 0.25s ease-out;
            transition: all 0.25s ease-out;
}

section#news .post a:hover .info{
    color: #fff;
    background: #595959;
}

section#news .post .info > h3{
    position: relative;
    font-size: 24px;
    line-height: 28px;
    font-family: 'HelveticaNeue75';
    padding: 20px 0;
    margin: 0;
}
section#news .post .info > h3:before{
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 70px;
    height: 3px;
    background: #717171;
    -webkit-transition: all 0.25s ease-out;
       -moz-transition: all 0.25s ease-out;
         -o-transition: all 0.25s ease-out;
            transition: all 0.25s ease-out;
}
section#news .post a:hover .info > h3:before{
    background: #fff;
}

section#news .post .plus{
    position: absolute;
    left: 50%;
    bottom: 20px;
    width: 43px;
    opacity: 0;
    z-index: 1;
    -webkit-transform: translateX(-50%);
       -moz-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all 0.25s ease-out;
       -moz-transition: all 0.25s ease-out;
         -o-transition: all 0.25s ease-out;
            transition: all 0.25s ease-out;
}
section#news .post .plus.grey{
    opacity: 1;
    background: transparent;
}

section#news .post a:hover .plus{
    opacity: 1;
}
section#news .post a:hover .plus.grey{
    opacity: 0;
}



@media (max-width: 980px){
    section#news .post{
        width: 50%;
    }
}

@media (max-width: 600px){
    section#news .post{
        width: 100%;
        margin-bottom: 40px;
    }
}

@media (max-width: 450px){
    section#news .post .info{
        margin: 0;
    }
}