.photo-gallery-lite-body.gallery {
	margin-top: 50px;
	width: 100%;
	margin: 50px auto;
	text-align: center;
}

.photo-gallery-lite-body .image-gallery {
	position: relative;
	display: inline-block;
	width: 350px;
	height: 250px;
	margin:0 auto 2rem;
	background-size: cover;
	background-position: center;
	border-radius: 10px;
	box-shadow: 0px 25px 50px rgba(0,0,0,.5);
	overflow: hidden;
	transition: 0.4s ease;
	border: 3px solid white;
	margin-right: 27px;
}

.photo-gallery-lite-body #overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: rgba(110, 110, 110, 0.17);
    z-index: 10;
	transition: 0.3s ease;
 }
  
.photo-gallery-lite-body .image-gallery:hover #overlay {
	box-shadow: inset 0px 0px 0 4625px rgba(109, 109, 109, 0.32);
}
  
.photo-gallery-lite-body .image-gallery__link {
	position: absolute;
    width: 60%;
    top: 150%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 10px;
    font-family: 'Oswald';
    letter-spacing: 3px;
    text-align: center;
    text-decoration: none;
    border-radius: 3px;
    font-size: 18px;
    transition: 0.3s ease;
    cursor: pointer;
}

.photo-gallery-lite-body .image-gallery:hover .image-gallery__link{
    opacity: 0.7;
    top: 50%;
	background-color: white;
    color: #202020;
	border: 2px solid white;
}

.photo-gallery-lite-body #overlay:after{
    opacity:0.75;
} 

.fancy-gallery-lite .fancybox-button, 
.fancy-gallery-lite .fancybox-button:visited, 
.fancy-gallery-lite .fancybox-button:link {
    color: #ccc !important;
    border: 0 !important;
    border-radius: 0 !important;
    background-color: rgba(30, 30, 30, 0.6) !important;
}
	
@media screen and (min-width:37.5em){
	.photo-gallery-lite-body .title{
		height: 300px;
		font-size: 4.75rem;
	 }
  }
@media screen and (min-width:45em) {
	.photo-gallery-lite-body .title{
		display:inline-block;
		width: 45%;
		margin-left: 25px;
	}
}
  
@media (max-width: 400px) {

    .photo-gallery-lite-body .image-gallery {
        width: 100% !important;
    }

}