.galleryMain {
    margin-top:130px;
    border: 1px solid #c6c6c6;
    border-radius: 5px;
    background-color: #fafafa;
    padding-bottom:20px;
    margin-bottom: 20px;
}

.gallery {
    margin: 0 auto;
    text-align: center;
    width: 100%;
}
.gallery li {
    width: 421px;
    max-width: 100%;
    min-height: 100%;
    text-align: center;
    height: 255px;
    position: relative;
    margin: 0 auto;
    display: inline-block;
    overflow: hidden;
    background-color: black;
}
.gallery li .GalleryName {
    text-decoration: none;
    text-transform: uppercase;
    text-shadow: rgba(0, 0, 0, 0.7) 1px 1px 5px;
    color: white;
    font-weight: lighter;
    font-size: 20px;
    letter-spacing: .1em;
    position: absolute;
    display: block;
    top: 40%;
    left: 0;
    text-align: center;
    opacity: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}
.gallery li:hover .GalleryName {
    opacity: 1;
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    -moz-transition-property: all;
    -o-transition-property: all;
    -webkit-transition-property: all;
    transition-property: all;
    -moz-transition-duration: 0.6s;
    -o-transition-duration: 0.6s;
    -webkit-transition-duration: 0.6s;
    transition-duration: 0.6s;
}
.gallery li:hover img {
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    background-position: top top;
    -webkit-filter: grayscale(0.4) blur(2px);
    filter: grayscale(0.4) blur(2px);
    -moz-transition-property: all;
    -o-transition-property: all;
    -webkit-transition-property: all;
    transition-property: all;
    -moz-transition-duration: 0.8s;
    -o-transition-duration: 0.8s;
    -webkit-transition-duration: 0.8s;
    transition-duration: 0.8s;
}
.gallery li:hover:hover img {
    opacity: 0.5;
}
.gallery li img {
    display: block;
    height: 255px;
    margin: 0 auto;
    display: inline-block;
    text-align: center;
    -moz-transform: scale(1.09, 1.09);
    -ms-transform: scale(1.09, 1.09);
    -webkit-transform: scale(1.09, 1.09);
    transform: scale(1.09, 1.09);
    -moz-transition-property: all;
    -o-transition-property: all;
    -webkit-transition-property: all;
    transition-property: all;
    -moz-transition-duration: 0.4s;
    -o-transition-duration: 0.4s;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
}