/* -------------------------------------------
                Photo Gallery
---------------------------------------------*/

.container .gallery-container {
	background-color: #fff;
	color: #35373a;
	min-height: 100vh;
	border-radius: 20px;
	margin-bottom: 40px;
	box-shadow: 0 18px 15px rgba(0, 0, 0, 0.06);
}

.gallery-container h4 {
	text-align: left;
	font-family: 'db_heaventbold', sans-serif;
}

.photo-gallery {
	padding: 10px 0 10px 0;
}
.photo-gallery .lightbox img {
	width: 100%;
	/* margin-bottom: 40px; */
	transition: 0.2s ease-in-out;
	box-shadow: 0 2px 3px rgba(0, 0, 0, 0.2);
}
.photo-gallery .lightbox img:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}
.photo-gallery img {
	border-radius: 5px;
}
.baguetteBox-button {
	background-color: transparent !important;
}

@media (max-width: 768px) {
	body {
		padding: 0;
	}
	.container.gallery-container {
		border-radius: 0;
	}
	.gallery-container h4 {
		font-size: 1.5rem;
	}
	.photo-gallery {
		padding: 5px 0 5px 0;
	}
}
