#gallery{
    height: auto;
    position: relative;
}
#gallery:after {
    clear: both;
    content: '';
    display: block;
}

#gallery * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
#gallery .gallery-colunm {
    float: left;
    width: 33.333333333%;
    height: 402px;
    position: relative;
    overflow: hidden;
}
#gallery #gallery-title {
    display: table;
    width: 100%;
    height: 100%;
}
#gallery #gallery-title-center {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
#gallery #gallery-title #title {
    font-size: 18px;
    font-family: 'ArcherBold';
    color: #00356C;
    text-transform: uppercase;
}
#gallery #gallery-title #gallery-icon {
    width: 50px;
    height: auto;
    display: block;
    margin: 5px auto 0;
}
#gallery .gallery-colunm a.album {
    display: block;
    width: 100%;
    height: 100%;
}
#gallery .gallery-colunm a.album img {
    display: block;
    width: auto;
    height: auto;
    min-width: 100%;
    min-height: 100%;
    max-width: none;
}
#gallery .gallery-colunm a.album .album_nav {
    height: auto;
    padding: 7px 20px;
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
    background-color: rgba(255, 255, 255, 0.8);
}
#gallery .gallery-colunm a.album .album_nav h1 {
    font-size: 18px;
    font-family: 'ArcherBold';
    text-transform: uppercase;
}
#gallery .gallery-colunm a.album .album_nav h2 {
    font-size: 14px;
    text-transform: capitalize;
}
#gallery .gallery-colunm a.album .album_nav h1,
#gallery .gallery-colunm a.album .album_nav h2 {
    margin: 0;
    padding: 0;
    color: #00356C;
    display: block;
}
#gallery .gal_hidden {
    display: none;
}

@media (max-width: 750px){
    #gallery .gallery-colunm {
        width: 50%;
    }   
    #gallery #gallery-title #title {
        font-size: 16px;
    }
}
@media (max-width: 450px){
    #gallery .gallery-colunm {
        width: 100%;
    }
    #gallery #gallery-title #title {
        font-size: 14px;
    }
}