/*RESET*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,800');

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none;
	outline: none;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
}

.full {
	width: 100%;
}

.clear {
	clear: both;
}

a:link,
a:hover,
a:visited,
a:active {
	text-decoration: none;
	color: inherit;
}

body {
	width: 100%;
	height: 100%;
	position: relative;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
}

.main {
    background: url(../images/backgrounds/truck-2000.jpg) no-repeat center fixed;
    background-size: 100% auto;
    text-align: center;
    padding: 100px 0 200px;
}
.main .logo {
    width: 80%;
    max-width: 768px;
}
.main hr.short {
    width: 200px;
    margin: 25px auto;
}
.main h1 {
    font-weight: 800;
    color: white;
    font-size: 3vw;
    letter-spacing: 3px;
    font-style: italic;
    text-shadow: 0 3px 10px rgba(0,0,0,0.5);
}

section {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    
}

form {
    background: white;
    border-radius: 15px;
    margin: -100px auto 0;
    padding: 0 100px 50px;
    border: 1px solid #0071bc;
    box-shadow: 0 3px 15px rgba(0,113,188,0.25);
}
form h2 {
    font-weight: 800;
    font-style: italic;
    display: inline-block;
    padding: 20px;
    color: #0071bc;
    font-size: 3vw;
}
form p,h3 {
    font-size: 18px;
    color: #333;
    font-style: italic;
    font-weight: 400;
    margin-bottom: 25px;
}
form h3 {
    margin: 25px auto 0;
    font-size: 21px;
}
form label {
    display: none;
}
form input,
form textarea {
    width: 100%;
    padding: 20px 10px;
    margin: 10px 0;
    font-size: 21px;
    font-family: 'Open Sans', sans-serif;
    border-radius: 10px;
    border: 1px solid #0071bc;
    -webkit-appearance: none;
}
form textarea {
    height: 200px;
}
form input:hover,
form textarea:hover {
    box-shadow: 0 3px 10px rgba(0,113,188,0.25);
}
form button {
    width: 100%;
    padding: 20px 10px;
    border-radius: 10px;
    border: none;
    background: #0071bc;
    color: white;
    font-family: 'Open Sans', sans-serif;
    font-size: 21px;
    cursor: pointer;
}
form button:hover {
    background: #333;
}
form .grecaptcha-badge {
    display:none !important;
    opacity: 0 !important;
}

.center {
    text-align: center;
    padding: 50px 0;
    width: 100%;
}
.center p {
    font-style: italic;
    font-size: 18px;
}
.center .map {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    height: 400px;
    margin: 25px 0;
    border-radius: 10px;
    border: 1px solid #0071bc;
    box-shadow: 0 3px 15px rgba(0,0,0,0.25);
}
.center .beard {
    width: 40px;
    background: #0071bc;
    border-radius: 40px;
    padding: 5px;
    margin: 50px auto;
}
.center .beard:hover {
    background: #333;
}

.affilate {
    width: calc(25% - 40px);
    margin: 50px 20px;
    display: inline-block;
    vertical-align: middle;
}

@media(max-width:768px) {
    .main {
        padding: 150px 0 100px;
        background: url(../images/backgrounds/truck-768.jpg) no-repeat center;
        background-size: cover;
    }
    .main h1 {
        font-size: 5vw;
    }
    
    form {
        margin-top: -75px;
        padding: 10px 50px;
    }
    form h2 {
        font-size: 5vw;
    }
    form input,
    form textarea,
    form button {
        padding: 10px;
        margin: 5px 0;
        font-size: 18px;
    }
    form textarea {
        height: 125px;
    }
    
    .affilate {
        width: calc(33% - 20px);
        margin: 50px 0;
    }
}

@media (max-width:414px) {
    .main {
        background: url(../images/backgrounds/truck-414.jpg) no-repeat center;
        background-size: cover;
        padding: 100px 0;
    }
    
    form {
        padding: 0 20px 20px;
    }
    form h2 {
        font-size: 5vw;
    }
    
    .center .map {
        height: 300px;
    }
    .center .beard {;
        margin: 20px auto 0;
    }
}