/*
    imgline.css
    web-communication.eu | 14/04/2016
    Copyright 2016 web-communication.eu
*/



.imgline {
	position:					relative;
	margin: 					0 auto;
	width:						100%;
	background:					#FFFFFF;
	padding: 					40px 0 20px 0;
	text-align: 				center;
	overflow: 					hidden;
}

.imgline .container {
	width: 100%;
	display: 					inline-block;
}

.imgline .column {
	float: 						left;
	text-align: 				center;
	width:						23.75%;
	margin-left: 				1%;
	padding: 					0;
	overflow: 					hidden;
}

.imgline .column a {
	display:					block;
	text-decoration:			none;
}



.imgline img {
	width: 100%;
	display: 					block;
}

.imgline img { 
	transition: all .4s ease-in-out; 
	-webkit-transition: all .4s ease-in-out;
	-moz-transition: all .4s ease-in-out;
	-o-transition: all .4s ease-in-out;
	-ms-transition: all .4s ease-in-out;
}
.imgline img:hover { 
	-webkit-transform: scale(1.1); 
    -moz-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
}


/* responsive */

@media only screen and (max-width: 1135px) {
	
	.imgline {
	    width: 						1135px;
	}		

}


@media only screen and (min-width: 1441px) {
	/*
	.news .container {
		width:						1440px;
	}
	*/
}