﻿
.gallery-section .gallery-item .gallery-hover,
a {
    outline: none;
    -webkit-transition: ease-in-out 0.2s;
    -moz-transition: ease-in-out 0.2s;
    -o-transition: ease-in-out 0.2s;
    transition: ease-in-out 0.2s;
}
/* start gallery */
.gallery-section {
    padding: 10px 0 70px;
}
.gallery-section .gallery-item {
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.gallery-section .gallery-item .gallery-hover {
    position: absolute;
    background: rgba(0,0,0,0.3);
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    text-align: center;  
    opacity: 0;
    filter: alpha(opacity=0);
}
.gallery-section .gallery-item:hover .gallery-hover{
    opacity: 1;
    filter: alpha(opacity=100);
}
.gallery-section .gallery-item .gallery-hover h3 {
    color: #ffffff;
    font-weight: 300;
    font-size: 23px;
    margin: 25% auto 10px;
}
.gallery-section .gallery-item .gallery-hover a {
    color: #fff;
    font-size: 35px;
    margin: 0 10px;
    font-weight: 100;
}
.gallery-section .gallery-item .gallery-hover a i {
    font-size: 18px;
    vertical-align: bottom;
}
/* end gallery */
@media (max-width: 320px) {
   
    .gallery-section  {
        width: 100%;
    }
    

}