.venues-block {
	position: relative;
}
.venues-wrapper {
	clear: both;
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
}
.venues-wrap {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    margin: 0;
    width: 104%;
    margin-left: -2%;
}
.venue-pod {
	width: 21%;
	cursor: pointer;
	margin: 2%;
	transition: .35s all;
	background: transparent;
	display: flex;
	flex-direction: column;
}
.venue-pod figure {
	position: relative;
	margin: 0;
	padding: 0;
	line-height: 0;
	height: 200px;
	overflow: hidden;
}
.venue-pod figure img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: .35s all;
}
.home .venue-pod figure img {
	filter: grayscale(100%);
}
.venue-pod h3 {
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
	padding:  0;
	margin:  0;
	display: flex;
	flex-grow: 1;
}
.venue-pod a.button {
	display: flex;
	text-align: center;
	margin: 0;
	padding: 15px 20px;
	line-height: 20px;
	flex-grow: 1;
	align-content: center;
	justify-content: center;
	flex-wrap: wrap;
}
.venue-pod a.button:hover {
	background: #b8a399!important;
}
.venue-pod a::after,
.venue-pod a.button::after {
	display: none;
}
/* NEW HOVERS ON WHOLE POD */
.home .venue-pod:hover figure img {
	filter: grayscale(0);	
}
.venue-pod:hover a.button {
    background: #b8a399;
    color: #fff;
}

/* RESPONSIVE */

@media (max-width: 1200px) {
	.venue-pod {
		width: 29.33%;
	}
}
@media (max-width: 900px) {
	.venue-pod {
		width: 46%;
	}
	.content .wrap .buttons .button {
		width: 49%;
	}
}
@media (max-width: 500px) {
	.venue-pod {
		width: 96%;
	}
	.content .wrap .buttons .button {
		width: 100%;
	}
}