/* LESS Document */
@media (min-width: 768px) {
    /*da fare per desktop*/
	#brand {
		height:160px;
		background-size: 70%;
	}
	
		#brand1 {
		height:150px;
		background-size: 40%;
	}
	
		#brand2 {
		height:150px;
		background-size: 40%;
	}
	
		#brand3 {
		height:150px;
		background-size: 40%;
	}
}
@media (max-width: 768px) {
	/*da fare per mobile*/
	#brand {
	   height: 50px;
	   background-size: contain;
	   margin-top:10px;
	   margin-bottom:10px;          
	}
	
		#brand1 {
	   height: 50px;
	   background-size: contain;
	       
	}
		#brand2 {
	   height: 50px;
	   background-size: contain;
        
	}
		#brand3 {
	   height: 50px;
	   background-size: contain;
	           
	}
}

#brand {
                display: block;
                background-repeat: no-repeat;
                background-image: url(../images/logo.png);
				background-position:center;
}

#brand1 {
                display: block;
                background-repeat: no-repeat;
                background-image: url(../images/logo1.png);
				background-position:center;
}



#brand2 {
                display: block;
                background-repeat: no-repeat;
                background-image: url(../images/logo2.png);
				background-position:center;
}



#brand3 {
                display: block;
                background-repeat: no-repeat;
                background-image: url(../images/logo3.png);
				background-position:center;
}



