.imgBox{
	text-align: center;
}

h4{
	text-align: center;
}

.container .thumbnail .imgBox{
	position: relative;
	overflow: hidden;
}

.container .thumbnail .imgBox img{
	max-width: 100%;
	transition: transform 2s;
}

.container .thumbnail .details {
	max-width: 100%;
	position: absolute;
	top: 2px;
    left: 15px;
    bottom: 20px;
    right: 17px;
	background: rgba(149,70,19,0.7);
	transform: scaleY(0);
	transition: transform .5s;
	text-align: center;
	border-radius: 5px;
}
@media(max-width: 800px){
	.container .thumbnail .details {
		max-width: 100%;
		position: absolute;
		top: 2px;
	    left: 15px;
	    bottom: 1px;
	    right: 17px;
		background: rgba(149,70,19,0.7);
		transform: scaleY(0);
		transition: transform .5s;
		text-align: center;
		border-radius: 5px;
	}
}
.container .thumbnail .details .content{
		position: absolute;
		top:50%;
		transform: translateY(-50%);
		text-align: center;
		padding: 15px;
		color:#fff;
	}
@media(min-width: 0px) and (max-width: 320px){
	.container .thumbnail .details .content h4{
	
		margin:0;
		padding: 0;
		padding-left: 10px;
		color: #FFF;
		font-weight: bold;

	}
}
@media(min-width: 321px) and (max-width: 425px){
	.container .thumbnail .details .content h4{
	
		margin:0;
		padding: 0;
		padding-left: 40px;
		color: #FFF;
		font-weight: bold;

	}
}
@media(min-width: 426px) and (max-width: 800px){
	.container .thumbnail .details .content h4{
		margin:0;
		padding: 0;
		padding-left: 220px;
		color: #FFF;
		font-weight: bold;
	}
}
@media(min-width: 801px) and (max-width: 991px){
	.container .thumbnail .details .content h4{
		margin:0;
		padding: 0;
		padding-left: 220px;
		color: #FFF;
		font-weight: bold;
	}
}
@media(min-width: 992px) and (max-width: 1444px){
	.container .thumbnail .details .content h4{
		margin:0;
		padding: 0;
		padding-left: 30px;
		color: #FFF;
		font-weight: bold;
	}
}

@media(min-width: 1440px){
	.container .thumbnail .details .content h4{
	
		margin:0;
		padding: 0;
		padding-left: 40px;
		color: #FFF;
		font-weight: bold;

	}
}

.container .thumbnail:hover .details{
	transform: scaleY(1);
}
.container .thumbnail .details .content{
	
}