@charset "utf-8";
/* CSS Document */

/*----------------------------------------------------------------- general settings ------*/


html, body, h1, h2, h3, p, ul, ol, a, div, section {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;
}
a, input:focus {
	outline: 0;
	border: 0px none;
}
.clear {
	clear: both;
}
.nolist {
	list-style-type: none;
}
h1 {
	color: #5c6f70;
	text-transform: uppercase;
	font-size: 1.6em;
	margin:  0 0 0.5em 0;
	font-weight: 700;
}
p {
	line-height: 180%;
	color: #383838;
	font-weight: 300;
	font-size: 1.1em;
	margin: 0 0 0.5em 0;
}
a {
	color: #383838;	
}
input, textarea, select {
	appearance:none;
	-moz-appearance:none; 
	-webkit-appearance:none; 
 }

/*----------------------------------------------------------------- background settings ------*/

body:before {
	content: "";
	display: block;
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	z-index: -10;
	background: url(img/service-background.jpg) no-repeat top center;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
#container {
	max-width: 1400px;
	margin: 120px auto 0 auto;
	padding: 2% 2%;
	box-sizing:border-box;
}
.company {
	background: #fff;
	position: relative;
	border-radius: 0 10px 10px 10px;
	width: 32%;
	float: left;
	min-width: 210px;
	height: auto;
	display: inline;
	outline: 1px solid rgba(0, 0, 0, 0);
	padding: 20px 0 10px 0;
}
.company:before {
	content: '';
	position: absolute;
	left: 0;
	top: -36px;
	width: 100%;
	min-height: 80px;
	max-height: 1000px;
	background: #fff;
	-webkit-transform: skewY(-2.5deg);
	-moz-transform: skewY(-2.5deg);
	-ms-transform: skewY(-2.5deg);
	-o-transform: skewY(-2.5deg);
	transform: skewY(-2.5deg);
	-webkit-backface-visibility: hidden;
	border-radius: 10px 10px 0 0;
	outline: 1px solid rgba(0, 0, 0, 0);
}
section {
	margin: 10px auto;
	padding: 0 20px;
	padding-bottom: 10px;
	position: relative;
	max-width: 100000px;
}
.company img {
	margin: 20px auto 50px auto;
	display: block;
	max-width: 80%;
	height: auto;
}
#container .company+.company {
    margin-left: 2%;
}
.footer {
	background: #5c6f70;
	position: absolute;
	bottom: -15px;
	right: 25px;
	border-radius: 0 10px 10px 10px;
	width: 80%;
	float: left;
	min-height: 20px;
	display: inline;
	outline: 1px solid rgba(0, 0, 0, 0);
	padding-top: 10px;
	max-width: 250px;
}
.footer:before {
	content: '';
	position: absolute;
	left: 0;
	top: -31px;
	width: 100%;
	min-height: 54px;
	max-height: 1000px;
	background: #5c6f70;
	-webkit-transform: skewY(-2.5deg);
	-moz-transform: skewY(-2.5deg);
	-ms-transform: skewY(-2.5deg);
	-o-transform: skewY(-2.5deg);
	transform: skewY(-2.5deg);
	-webkit-backface-visibility: hidden;
	border-radius: 10px 10px 10px 10px;
	outline: 1px solid rgba(0, 0, 0, 0);
}
.footer h2 {
	position: absolute;
	z-index: 500;
	right: 15px;
	bottom: 15px;
	font-size: 1.2em;
	font-weight: 400;
}
.footer h2 a {
	color: #fff;
	text-decoration: none;
}
@media only screen and (max-width: 1000px) {
	* {
	font-size: 95%;
	}
}
@media only screen and (max-width: 750px) {
	#container {
	padding: 4% 4%;
	box-sizing:border-box;
	}
	#container .company+.company {
    margin-left: 0;
	}
	.company {
		float: none;
		display: block;
		width: 100%;
		margin-bottom: 90px;
	}
}

