/*------------------------------------------
----------------- PICTURE ------------------
------------------------------------------*/
div.home-picture {
	height: 90vh;
	width: 100%;
	padding: 0 100px;
	background-image: url("../img/jpg/home.jpg");
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

div.home-picture-title {
	height: auto;
	width: 100%;
	margin-bottom: 10px;
}

div.home-picture-title > span {
	font-family: 'ProximaNovaBold';
    font-size: 40px;
    color: #8DE600!important;
}

div.home-picture-subtitle {
	height: auto;
	width: 100%;
}

div.home-picture-subtitle > span {
	font-family: 'ProximaNovaBold';
    font-size: 30px;
    color: white!important;
}

span.home-picture-arrow {
	bottom: 20vh;
	color: white!important;
}

@media only screen and (max-width: 960px) {
	div.home-picture {
		padding: 20px;
	}

	div.home-picture-title > span {
	    font-size: 20px;
	}

	div.home-picture-subtitle > span {
	    font-size: 15px;
	}

	span.home-picture-arrow {
		bottom: 10vh;
	}
}


/*------------------------------------------
---------------- INDUSTRIES ----------------
------------------------------------------*/
div.home-industries-box {
	height: 250px;
	width: 200px;
	border-radius: 10px;
	background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

div.home-industries-box span {
	font-family: 'ProximaNovaBold';
    font-size: 20px;
    color: white!important;
}

@media only screen and (max-width: 960px) {
	div.home-industries-box {
		height: 200px;
		width: auto;
	}

	div.home-industries-box span {
	    font-size: 16px;
	}
}

/*------------------------------------------
------------------ BRANDS ------------------
------------------------------------------*/
div.home-brands {
	height: auto;
    width: 100%;
	margin: 100px 0;
	padding: 0 10%;;
}

div.home-brands-logo {
	height: 100px;
	width: auto;
}


div.home-brands-logo > img {
	height: auto;
	max-height: 70px;
	width: auto;
	max-width: 180px;
}

@media only screen and (max-width: 960px) {
	div.home-brands {
		margin: 50px 0;
		padding: 0;
	}

	div.home-brands-logo {
		margin: 0 20px;
	}

	div.home-brands-logo > img {
		max-height: 50px;
		max-width: 120px;
	}
}












