@media only screen and (max-width: 768px) {
	.ho0 {
		height: 50vh;
	}
	
	.ho1:hover .ho3 {

		opacity: 1;
	}
	
	.ho2 {
		transform: translate(-50%, -50%);
		height: 135px;
	}
	
	section {
		min-height: auto;
	}
}


@media only screen and (min-width: 768px) {
	.ho0 {
		height: 50vh;
	}
	
	.ho1:hover .ho3 {
		opacity: 1;
	}
	
	.ho2 {
		transform: translate(-50%, -50%);
		height: 150px;
	}
	
	section {
		min-height: auto;
	}
}


@media only screen and (min-width: 1024px) {
	.ho0 {
		height: 100vh;
	}
	
	.ho1:hover .ho3 {
		opacity: 1;
	}
	
	.ho2 {
		transform: translate(-50%, -20%);
		height: 150px;
	}
	
	section {
		min-height: 400px;
	}
}


@media only screen and (min-width: 1250px) {
	.ho0 {
		height: 100vh;
	}
	
	.ho1:hover .ho3 {
		opacity: 0;
	}
	
	.ho2 {
		transform: translate(-50%, -20%);
		height: 150px;
	}
	
	section {
		min-height: 400px;
	}
}


@media only screen and (min-width: 1400px) {
	.ho0 {
		height: 100vh;
	}
	
	.ho1:hover .ho3 {
		opacity: 0;
	}
	
	.ho2 {
		transform: translate(-50%, -20%);
		height: 150px;
	}
	
	section {
		min-height: 400px;
	}
}

.ho0 {
	transition: all 0.2s ease-in-out;
	display: block;
	position: relative;
	z-index: 5;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
}

.ho1 {
	position: relative;
}

.ho2 {
	display: block;
	position: absolute;
	z-index: 10;
	top: 50%;
	left: 50%;
}

.ho3 {
	background-color: rgba(0,0,0,0.5);
	transition: all 0.3s ease-in-out;
	position: absolute;
	z-index: 8;
	opacity: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

section {
	padding-bottom: 0;
}