body{
	background: #151419;
}
.container-fluid {
	display: flex;
	height: 600%;

	justify-content: center;
	align-items: center;
}
.container-images {
	min-width: 1400px;
	height: 1000px;
	display: flex;
	margin-bottom: 0%;
	
}
.img-box {
	flex-grow: 1;
	background-size: 750px 500px;
	background-position: center;
	background-repeat: no-repeat;
	transition: 1s;
	
	opacity: 0.8;
	position: relative;
	overflow: hidden;
}
.img-box:hover {
	background-size: 900px 600px;
	flex-grow: 5;
	filter: grayscale(0);
	opacity: 1;
}

.content {
	color: #ffffff;
	background-color: #000;
	opacity: .7;s
	font-size: 14px;
	
	width: 70%;
	position: absolute;
	bottom: 240px;
	right: 10px;
	padding: 15px;
	box-sizing: border-box;
	-webkit-transform: translateY(120%);
	-moz-transform: translateY(120%);
	-ms-transform: translateY(120%);
	-o-transform: translateY(120%);
	transform: translateY(120%);
	transition: 0.5s;
}
.img-box:hover .content {
	transform: translateY(0);
	transition-delay: 0.5s;
}
.content h2 {
	margin: 0 0 5px;
	padding: 0;
	text-transform: uppercase;
	font-size: 26px;
	color: #c00d0d;
}
.content p {
	margin: 0;
	padding: 0;
}
@media only screen and (max-width: 1200px) {
	.container-images {
		min-width: 187%;
	}
}
 /* Extra Small Devices, Phones */
 @media only screen and (max-width: 480px) {
	.container-images {
		height: 250px;
	}
	.img-box {
		background-size: 450px 300px;
	}
	.img-box:hover {
		background-size: 525px 350px;
	}
	.bor-left-right::before {
		left: 5px;
	}
	.bor-left-right::after {
		right: 5px;
	}
	.bor-top-bottom::before {
		top: 5px;
	}
	.bor-top-bottom::after {
		bottom: 0px;
	}
	.content {
		width: 93%;
		padding: 10px;
	}
	.content h2 {
		font-size: 16px;
	}
	.content p {
		font-size: 12px;
	}
}