@import url(http://fonts.googleapis.com/css?family=Roboto:100,300,400);

.gallery {
    position:relative; /**/
    overflow: hidden;
    background: #fff;
    margin: 0;
    padding: 0;
    width: 100%;
    height:500px;      /**/
}

.gallery .slider {
    white-space: nowrap;
    font-size: 0;
    margin: 0;
    padding: 0;
}

.slider li {
    display: inline-block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slider a {
    display: block;
    width: 230px;
    height: 500px;
    position: relative;
}

.slider a:before {
    content:"+";
    position: absolute;
    top: -300px;
    width: 100%;
    color: #ecf0f1;
    font-size: 36pt;
    text-align: center;
    font-weight: 100;
    z-index: 3;
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: top .2s ease-in-out;
            transition: top .2s ease-in-out;
}

.slider a:hover:before {
    top: 200px;
}

.slider .wrapperImg {
    width: 100%;
    height: 100%;
}

.slider .wrapperImg:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.3);
    -webkit-transition: background .2s ease-in-out;
            transition: background .2s ease-in-out;
}

.slider a:hover .wrapperImg:before {
    background: rgba(0,0,0,.8);
}

.slider img {
    height: 100%;
}

.slider p {
    position: absolute;
    color: #ecf0f1;
    font-size: 14pt;
    font-weight: 100;
    text-transform: uppercase;
    text-align: center;
    line-height: 50px;
    width: 100%;
    height: 50px;
    background-color: rgba(52,152,219,.6);
    bottom: 0;
    left: 0;
    font-family: 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: bottom .2s ease-in-out;
            transition: bottom .2s ease-in-out;
}

.slider a:hover p {
    bottom: -69px;
}

.sliderMobile li {
    display: block;
}

.sliderMobile a {
    width: 100%;
    height: auto;
    max-height: 200px;
}

.sliderMobile a:before {
    content: "";
}

.sliderMobile a:hover .wrapperImg:before {
    background: rgba(0,0,0,.3);
}

.sliderMobile img {
    height: auto;
    width: 100%;
}

.sliderMobile p {
    display: none;
}