@font-face {
  font-family: 'HelveticaNeue';
  src:  url('/fonts/HelveticaNeue.eot') format('embedded-opentype');
  src:  url('/fonts/HelveticaNeue.woff') format('woff'),
        url('/fonts/HelveticaNeue.ttf') format('truetype'),
        url('/fonts/HelveticaNeue.svg#HelveticaNeue') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'HelveticaNeueLTStd-Bd';
  src:  url('/fonts/HelveticaNeueLTStd-Bd.eot') format('embedded-opentype');
  src:  url('/fonts/HelveticaNeueLTStd-Bd.otf') format('opentype'),
	    url('/fonts/HelveticaNeueLTStd-Bd.woff') format('woff'),
        url('/fonts/HelveticaNeueLTStd-Bd.ttf') format('truetype'),
        url('/fonts/HelveticaNeueLTStd-Bd.svg#HelveticaNeueLTStd-Bd') format('svg');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'HelveticaNeueLTStd-Lt';
  src:  url('/fonts/HelveticaNeueLTStd-Lt.eot') format('embedded-opentype');
  src:  url('/fonts/HelveticaNeueLTStd-Lt.otf') format('opentype'),
	    url('/fonts/HelveticaNeueLTStd-Lt.woff') format('woff'),
        url('/fonts/HelveticaNeueLTStd-Lt.ttf') format('truetype'),
        url('/fonts/HelveticaNeueLTStd-Lt.svg#HelveticaNeueLTStd-Lt') format('svg');
  font-weight: normal;
  font-style: normal;
}

*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html, body{
	width: 100%;
	height: 100%;
    position: relative;
    margin: 0;
    padding: 0;
	font-size: 16px;
	font-family: 'HelveticaNeue';
}

.wrapper {
    min-height: calc(100% - 160px);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
    background: rgba(224,42,42,1);
    background: -moz-linear-gradient(-45deg, rgba(224,42,42,1) 0%, rgba(181,36,36,1) 100%);
    background: -webkit-gradient(left top, right bottom, color-stop(0%, rgba(224,42,42,1)), color-stop(100%, rgba(181,36,36,1)));
    background: -webkit-linear-gradient(-45deg, rgba(224,42,42,1) 0%, rgba(181,36,36,1) 100%);
    background: -o-linear-gradient(-45deg, rgba(224,42,42,1) 0%, rgba(181,36,36,1) 100%);
    background: -ms-linear-gradient(-45deg, rgba(224,42,42,1) 0%, rgba(181,36,36,1) 100%);
    background: linear-gradient(135deg, rgba(224,42,42,1) 0%, rgba(181,36,36,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#e02a2a', endColorstr='#b52424', GradientType=1 );
}

.content{
    text-align: center;
    padding: 50px;
	margin: auto;
	width: 1200px;
}

.crane{
	background-image: url(/images/crane.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: contain;
	width: 100%;
	height: 400px;
}

h1{
	opacity: 0;
	position: relative;
	z-index: -1;
}

h2{
    color: white;
    font-family: sans-serif;
    font-size: 55px;
    margin-bottom: 5px;
}

h3{
	font-family: 'HelveticaNeueLTStd-Bd';
	margin-bottom: 5px;
	font-size: 25px;
}

p{
	color: white;
	font-family: 'HelveticaNeueLTStd-Lt';
	font-size: 17.5px;
	margin-bottom: 10px;
}

.container{
	max-width: 900px;
	margin: auto;
	padding: 30px 0;
}

form{
	position: relative;
}

input.mail{
	border: 1px solid #707070;
	border-radius: 20px;
	appearance: none;
	padding: 8px 20px;
	font-size: 1em;
	width: calc(100% - 170px);
	float: left;
	outline: none;
}

input.send{
	border: 1px solid #E02A2A;
	background: #E02A2A;
	color: white;
	border-radius: 20px;
	appearance: none;
	padding: 8px 20px;
	font-size: 1em;
	width: 200px;
	position: absolute;
	right: 0;
	top: 0;
	cursor: pointer;
	z-index: 100;
	transition: 0.3s all;
	outline: none;
}

input.send:hover{
	background: #b72e37;
	border: 1px solid #b72e37;
}

.clear{
	clear: both;
	display: block;
}

footer p{
	color: black;
	font-size: 1em;
}

.succes{
    color: #25A148;
}

.error{
    color: #D05B62;
}

@media screen and (max-width: 991px){
	.crane{
		height: 300px;
	}

	h2{
	    font-size: 45px;
	}

	h3{
		font-size: 20px;
	}

	p{
		font-size: 1em;
	}

	.container{
		max-width: 95%;
	}
}

@media screen and (max-width: 650px){
	.content{
		padding: 50px 15px;
	}
	.crane{
		height: 200px;
	}

	h2{
	    font-size: 40px;
	}
}

@media screen and (max-width: 450px){
	.wrapper {
		min-height: calc(100% - 219px);
	}

	input.mail{
		width: 100%;
		float: none;
	}

	input.send{
		position: relative;
		margin-top: 10px;
		float: right;
	}
}
