.media-gallery {
    padding: 20px;
}
.media-filters{
	    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}
.media-filters span{
	font-weight:bold;
}
.gallery-item{
	max-height: 250px;
    overflow: hidden;
    border-radius: 15px 15px 15px 15px;
    box-shadow: 0px 37px 37px 0px rgba(0, 0, 0, 0.25);
    transition: 0.3s;
}
.media-filters {
    margin-bottom: 20px;
    text-align: center;
}

.media-gallery .filter-btn {
    background: #52a078;
    border: none;
    padding: 10px 20px;
    color: #fff;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 5px;
	transition:0.3s
}

.media-gallery .filter-btn.active, .media-gallery .filter-btn:hover {
    background: #181e2e;
    color: white;
	transition:0.3s
}

.media-gallery .gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.media-gallery .gallery-item img {
 border: none;
      border: none;
    width: 130%;
    object-fit: cover;
    height: 100%;
}
.media-gallery .gallery-item:hover{
	box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.60);
	transition:0.3s;
}
#load-more{
	margin: 50px auto 0 auto;
    text-align: center;
    background-color: #52a078;
    font-family: "Questrial", Serif;
    font-size: 19px;
    font-weight: 400;
    border: 0;
    border-radius: 30px;
    color: #fff;
    padding: 9px 30px;
}
.text-center{
	text-align:center
}
/* Lightbox styles */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    z-index: 9999;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    margin: 2% auto;
}

.lightbox-content img {
    width: 100%;
    height: auto;
}
#media-category-filter{
 background-color: #52a078;
    color: #fff;
    font-weight: bold;
	  max-width: 500px;
}
@media only screen and (max-width: 1000px) {
.media-gallery .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}
}
@media only screen and (max-width: 800px) {
.media-gallery .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
}
@media only screen and (max-width: 600px) {
.media-gallery .gallery-grid {
    grid-template-columns: repeat(1, 1fr);
    gap: 15px;
}
	.media-gallery .gallery-item img{
		max-width: 130%;
	}
	.media-filters{
		    display: block;
	}
	.media-filters span{
		margin-bottom:15px;
	}
}