.bookable-container{	
	display: grid;
  	grid-template-columns: repeat(auto-fill, 24%); 
  	justify-content: space-between;
	row-gap:30px;
	width:100%;
}
.single-bookable{
	position:relative;
	height: 44rem;
}
.single-bookable::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #28364B;
	opacity: 0.5;
	transition: opacity .3s ease;
	z-index: 1;
	pointer-events: none;
}
.single-bookable:hover::after {
	opacity: 0.9;
}
.single-bookable img {
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	object-fit: cover;
}
.product-button-cont{
	position: relative;
	display:flex;
	height: 100%;
	width: 100%;
	flex-direction:column;
	justify-content:flex-end;
	align-items:center;
	padding: 0 2rem 15rem;
	z-index: 2;
}
.product-button-cont button{
	padding:1.5rem 4rem;
	background:var(--brown);
	color:#fff;
	outline: 0.2rem solid var(--brown);
	outline-offset: 0.2rem;
	white-space:nowrap;
	font-size: 1.8rem;
	transition: .3s ease;
}
.product-button-cont button:hover {
	background-color: var(--darkblue);
}

.product-button-cont h4{
	margin-bottom:20px;
	text-align:center;
	color:#fff;
	font-size: 3rem;
}

.products .repeater-item:hover::before {
	background-color: #F1F0E8;
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 108%;
	height: 108%;
	z-index: -1;
}
@media only screen and (max-width: 991px) {
  .bookable-container{
	grid-template-columns: repeat(auto-fill, 48%);
}
@media only screen and (max-width: 600px) {
  .single-bookable {
	height: 35rem;
	}
	.product-button-cont {
		padding-bottom: 10rem;
	}
}
@media only screen and (max-width: 477px) {
  .bookable-container{
	grid-template-columns: repeat(auto-fill, 98%);
}
}