/* Galleries */

.tile {
    padding: 10px 10px;
}

.count {
    background: black;
    padding: 0 5px;
}

.gallery {
    position: relative;
    height: 250px;
    width: 100%;

    box-shadow: 3px 3px 3px rgba(0,0,0,.3);
}

.gallery-title {
    position: absolute;
    padding: 10px 15px;
    left: -10px;
    /*top: 15px;*/
    bottom: 15px;
    max-width: 100%;

    text-transform: uppercase;

    color: #ffffff;
    background: #000000;

    border-radius: 3px;
    box-shadow: 3px 3px 3px rgba(0,0,0,.3);
}

.gallery-overlay {
    height: 100%;
    overflow: hidden;
}

.gallery-cover {
    height: 100%;

    background-position: center center;
    background-size: cover;

    -moz-transition: all 1s ease-out;
    -o-transition: all 1s ease-out;
    -webkit-transition: all 1s ease-out;
    transition: all 1s ease-out;

    will-change: transform;
}

.gallery-cover:hover {
    -webkit-transform: rotate(10deg) scale(1.5);
    -moz-transform: rotate(10deg) scale(1.5);
    -ms-transform: rotate(10deg) scale(1.5);
    -o-transform: rotate(10deg) scale(1.5);
    transform: rotate(10deg) scale(1.5);
}

/* Images */

figure.tile {
    overflow: hidden; 
    height: 250px; 
}

.image {
    width: 100%;
    /*height: 100%;*/
}

.image-descriprion {
    display: none;
}