/* .ws-gallery-wrap img {
	max-width: 100%;
	height: auto;
	width: auto;
} */
.ws-gallery-wrapper {
	padding: 3rem 0;
}

.ws-gal-heading-wrap {
	margin-bottom: 20px;
}

.ws-gallery-img-wrap img {
	max-width: 100%;
	width: 100%;
	display: block;
	transition: .5s ease-in-out;
	cursor: pointer;
	height: auto;
	object-fit: cover;
}

.ws-gallery-img-wrap img:hover {
	transform: scale(1.1);
}

.ws-gallery-img-wrap {
	margin: 0;
	display: grid;
	grid-template-rows: 1fr auto;
	break-inside: avoid;
	overflow: hidden;
	border-radius: 0;
}

.ws-gallery-img-wrap>img {
	grid-row: 1 / -1;
	grid-column: 1;
}

@media(max-width:768px) {
	.ws-gallery-wrap {
		column-count: 3 !important;
	}
}

@media only screen and (min-width:560px) and (max-width:768px) {
	.ws-gallery-wrap {
		column-count: 2 !important;
	}
}

@media(max-width:425px) {
	.ws-gallery-wrap {
		column-count: 1 !important;
	}
}

@media only screen and (min-width:425px) and (max-width:560px) {
	.ws-gallery-wrap {
		column-count: 1 !important;
	}
}

@media(max-width:575px) {
	.ws-gallery-wrap {
		padding: 0 20px;
	}
}