section#gallery h1{
    color: #692345;
    display: block;
    border-bottom: 2px solid #8ac7c8;
    line-height: 0em;
    margin: 20px auto 60px;
    text-decoration: none;
    text-align: center;
    font-weight: 300;
    font-size: 28px;
}
section#gallery h1 span{
    padding: 0px 10px;
    background: #fff;
    position: relative;
    top: 8px;
}
section#gallery .latest-pics{
    text-align: center;
}
section#gallery .gallery-pic{
    display: block;
    padding: 10px;
}
section#gallery a{
    display: block;
}
section#gallery .background-image{
    height: 300px;
    background-position: center;
    background-size: cover;
    position: relative;
}
section#gallery .overlay{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: 0.3s;
    background: rgba(138, 199, 200, 0.7);
    color: #692345;
}
section#gallery a:hover .overlay{
    opacity: 1;

}
section#gallery .overlay .content{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-transform: uppercase;
    font-weight: 700;
    font-size: 22px;
    text-align: center;
    width: 70%;
}
section#gallery .content::after{
    position: absolute;
    content: '';
    height: 4px;
    background: #692345;
    width: 100%;
    bottom: -40px;
    left: 0;
    -webkit-transform: translateY(17px);
    -moz-transform: translateY(17px);
    transform: translateY(17px);
    opacity: 0;
    transition: 0.3s;
}
section#gallery a:hover .content::after{
    opacity: 1;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    transform: translateY(0px);

}

@media(min-width: 640px){
    section#gallery h1{
    font-size: 32px;
    }
}
@media(min-width: 768px){
    section#gallery h1{
    font-size: 38px;
    }
    section#gallery .background-image{
    width: 550px;
    margin: auto;
    }
    section#gallery .overlay .content{
    font-size: 24px;
    }        
}
@media(min-width: 1024px){
    section#gallery h1{
    font-size: 42px;
    }
    section#gallery .gallery-pic{
    width: 20%;
    display: inline-block;
    }
    section#gallery .background-image{
    width: 100%;
    height: 200px;
    }    
    section#gallery .overlay .content{
    font-size: 24px;
    }    
}
@media(min-width: 1280px){
    section#gallery h1{
    font-size: 48px;
    }
    section#gallery .background-image{
    height: 300px;
    }
    section#gallery .overlay .content{
    font-size: 28px;
    }
}