* {
    padding: 0px;
    margin: 0px;
    outline: none;
    background: none;
    border-radius: 0px;
    -webkit-border-radius: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -webkit-text-size-adjust: none;
}

body {
    font-family: sans-serif;
    font-size: 14px;
    color: #333;
    line-height: 1.5;
}

p,
h1,
h2,
h3 {
    margin: 0px 0px 25px 0px;
}

a {
    color: #069;
}

a img {
    border: none;
}

.clear {
    clear: both;
}

.right {
    float: right;
}

.left {
    float: left;
}

.center-text {
    text-align: center;
}

.v-margin {
    height: 25px;
}

.wrapper {
    max-width: 960px;
    margin: auto;
}

.banner {
    background: url("../images/hero.jpg") no-repeat center top;
    background-size: cover;
    height: 380px;
    padding: 35px;
    border-radius: 12px;
}

.logo {
    margin-bottom: 35px;
}

.logo img {
    display: block;
    max-width: 100%;
    margin: auto;
}

.content {
    background: #dfe3e4;
    color: #333;
    padding: 35px;
}

.title {
    font-family: 'Oswald', sans-serif;
    font-size: 24px;
    text-transform: uppercase;
    text-align: center;
}

.form {
    margin-top: 25px;
    max-width: 620px;
}

.intro {
    margin-bottom: 25px;
    text-align: center;
}

.message {
    background: url("../images/tick.png") no-repeat center 25px;
    background-color: #fff;
    padding: 100px 15px 15px 15px;
    border-radius: 2px;
    margin-bottom: 25px;
    font-size: 12px;
    color: #333;
    text-align: center;
}

.instructions {
    margin-bottom: 25px;
}

input[type="text"],
input[type="email"],
input[type="number"],
input[type="tel"] {
    display: block;
    border: solid 1px #ccc;
    padding: 10px;
    margin-bottom: 12px;
    font-size: 12px;
    line-height: 12px;
    font-family: sans-serif;
    background: #fff;
    width: 100%;
    border-radius: 4px;
}

input[type="checkbox"] {
    border: solid 1px #e6e3e3;
    float: left;
    width: 15px;
    display: block;
}

.legal {
    float: left;
    margin: -20px 0px 0px 30px;
    font-size: 12px;
}

.legal a {
    color: #069;
}

input[type="submit"] {
    background: #069;
    display: block;
    margin-top: 25px;
    border-radius: 2px;
    color: #fff;
    font-weight: 700;
    border: none;
    padding: 12px 35px;
    cursor: pointer;
    font-size: 12px;
}

input[type="submit"]:hover {
    transition-duration: 0.5s;
    opacity: 0.9;
}

.half {
    width: 49% !important;
}

.privacy {
    max-width: 720px;
    margin: auto;
    padding: 35px;
    background: #eee;
    margin-top: 25px;
    margin-bottom: 25px;
    border-radius: 4px;
    font-size: 12px;
}

.footer {
    font-size: 12px;
    margin: 25px 0px;
    text-align: center;
    padding: 25px;
    color: #999;
}

@media only screen and (max-width: 990px) {
    body {
        font-size: 14px;
    }

    .banner {
        height: 300px;
    }



    .privacy {
        margin: 25px;
        padding: 25px;
    }
}

@media only screen and (max-width: 520px) {
    .content {
        width: 100%;
        max-width: inherit;
    }
}

::-webkit-scrollbar {
    width: 10px;
    height: 0px;
}

::-webkit-scrollbar-button:start:decrement,
::-webkit-scrollbar-button:end:increment {
    height: 0px;
    background-color: transparent;
}

::-webkit-scrollbar-track-piece {
    background-color: #ccc;
}

::-webkit-scrollbar-thumb:vertical {
    height: 0px;
    background-color: #999;
}