
.image-box {
	border-radius: 15px;
	overflow: hidden;
	position: relative;
	margin-bottom: 20px;
	box-shadow: 0 4px 8px rgba(0,0,0,0.3);
	background-size: cover;
	background-position: center;
	height: 300px;
	transition: all 0.5s;
	cursor: pointer;
}
.image-box:hover {
	box-shadow: 0 4px 8px rgba(0,0,0,0.7);
}

.image-box:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: rgba(0, 0, 0, 0.7);
	z-index: 1;
	transition: all 0.5s;
}
.image-box:hover:before {
	background: rgba(0, 0, 0, 0.5);
}

.image-box .titulo {
	color: white;
	position: absolute;
	bottom: 20%;
	left: 10%;
	z-index: 2;
	padding-right: 10px;
	background-repeat: no-repeat;
	background-position: center center;
	text-align: center;
	left: 50%;
	width: 90%;
	transform: translate(-50%, 0);
}
.image-box .date {
	position: absolute;
	top: 10px;
	left: 10px;
	background-color: rgba(0,0,0,0.7);
	padding: 5px;
	z-index: 999;
	border-radius: 5px;
	color: white;
	text-align: left;
}
.image-box .date .day {
	font-size: 26px;
	line-height: 1;
	font-weight: 500;
}
.image-box .date .time {
	font-size: 16px;
	font-weight: 200;
}
.image-box img {
	width: 100%;
	height: auto;
	min-height: 300px;
	display: block;
	transition: transform 0.5s ease;
}
.image-box:hover img {
	transform: scale(1.05);
}
.btn-access {
	position: absolute;
	bottom: 10px;
	left: 10%;
	z-index: 2;
	font-size: 11px;
	left: 50%;
	transform: translate(-50%, 0);
	font-weight: 700;
}

.image-box.sin-plazas .titulo {
	color: #ccc;
}

.image-box .badge {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 999;
}
.image-box .badge + .badge {
	top: 35px;
}

@media (min-width: 1200px) {
	.image-box h3 {
		font-size: 22px;
	}
}

@media (min-width: 900px) {
	.image-box h3 {
		font-size: 22px;
	}
	.image-box .date .day {
		font-size: 24px;
	}
	.image-box .date .time {
		font-size: 15px;
	}
}

@media (max-width: 899px) {
	.image-box h3 {
		font-size: 18px;
	}
	.image-box .date .day {
		font-size: 22px;
	}
	.image-box .date .time {
		font-size: 14px;
	}
	.image-box {
		height: 200px;
	}
}