



/* ---------------------------------
    LAYOUT
--------------------------------- */

body {
    font-family: 'Jost', Arial, sans-serif;
    background: #3C3C3B;
    margin: 0;
    display: flex;
    /* align-items: center;
    justify-content: center;
    height: 100vh;*/
}

.contentWrap {
    max-width: 1250px;
    margin: auto;
    width: 90%;
}

a {
    color: #1389ca;
    text-decoration: underline;
}

a:hover
{
    color: #147db8;
}

.hexagons {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 250px;
        height: auto;
        z-index: -1;
}


/* -------- Text Col -------- */

.content-column {
    /*  height: 100vh;
    place-content: center;
    display: grid;*/
}


.textCol {
    float: left;
    width: 49.119718309859%; /* 558 / 1136 */
    text-align: left;
}

.textCol img {
    max-width: 100%;
    height: auto;
}

h1 {
    color: #fff;
    font-size: 3.4em;
    line-height: 1.2;
    font-family: 'Jost';
    font-weight: 600;
}

h2 {
    color: #fff;
    font-size: 3.4em;
    margin: 0.8em 0;
    margin-bottom: 0.2em;
    line-height: 1.2;
    font-family: 'Jost';
}


.textCol p {
    font-family: 'Montserrat';
    font-size: 2.2em;
    line-height: 1.36;
    color: #fff;
    margin-bottom: 2.5em;
    text-align: left;
}

.logo {
    margin: 7em 0 2em 0;
    width: 240px;
}


/* -------- Form Col -------- */

h3 {
    text-align: center;
    color: #fff;
    font-size: 3.4em;    
    line-height: 1.2;
    font-family: 'Jost';
    font-weight: 600;
}

.formCol {
    float: right;
    width: 40.669014084507%; /* 462 / 1136 */
}

.hidden {
    display: none;
}

form {
    background: #80BB41;
    padding: 4em 6em;
    /* height: 100vh;
    place-content: center;
    display: grid; */
}

label {
    display: block;
    font-family: 'Montserrat';
    font-size: 1.5em;
    margin-bottom: 0.3em;
    margin-top: 0.6em;
    color:#fff;
}

label.error {
    font-family: 'Montserrat';
    margin: 0;
    background: #cf2818;
    padding: 0.2em;
    color: white;
    margin-top: -2em;
    margin-bottom: 0.2em;
}

.textField,
.dropdown {
    display: block;
    width: 100%;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    padding: 0.4em 0.5em 0.5em;
    margin-bottom: 1.2em;
    border: solid 1px #86b726;
    font-family: 'Montserrat';
}

.textField {
    font-size: 1.8em;
}

.dropdown{
    font-size: 1.6em;
}

.dropdown + .error {
    margin-top: -0.8em;
    margin-bottom: 2em;
}

.single-checkbox
{
    position: relative;
}
.single-checkbox input 
{
    position: absolute;
}

.single-checkbox .confirmation-note
{
    padding-left: 25px;
    display: inline-block;
    font-size: 14px;
    font-family: 'Montserrat';
}

.buttonWrap {
    text-align: center;
}

.button {
    background: #74A741;
    border-radius: 4px;
    font-size: 2em;
    font-family: 'Jost';
    text-transform: uppercase;
    font-weight: 600;
    color: #fff;
    padding: 0.5em 1.2em;
    cursor: pointer;
    margin-bottom: 1em;
    margin-top: 0.5em;
    width: 100%;
    border: none;
}

.button:hover
{
    background: #fff;
    cursor: pointer;
    color:#80BB41;
}

.formCol p {
    font-family: 'ProximaNW01-AltLightReg';
    font-size: 2.2em;
    line-height: 1.36;
    color: #333333;
    margin-bottom: 2.5em;
}

p.single-checkbox
{
    font-size: 1em;
    color:#fff
}

p.footer-link {
        text-align: center;
        font-size: 18px;
        color: #fff;
        margin-top: 2em;
}

p.footer-link a{
    color: #fff;
    font-weight: bold;
}

/* ---------------------------------
    RESPONSIVE STYLES
--------------------------------- */

@media only screen and (max-width: 1240px) {
    .contentWrap {
        width: 90%;
    }
}

@media only screen and (max-width: 1100px) {
    form {
        padding: 3em 4em;
    }

    .textCol,
    .formCol {
        float: none;
        width: 100%;
    }

}


@media only screen and (max-width: 840px) {
    .contentWrap {
        width: 90%;
        padding-top: 2em;
    }
    
    .textCol,
    .formCol {
        float: none;
        width: 100%;
    }
    
    .logo {
        width: 30%;
    }
    .devices {
        width: 60%;
    }
    
    .textCol p {
        margin-bottom: 1.5em;
    }
    
    .formCol {
        margin: 4em 0;
    }

    form {
        background: #80BB41;
        padding: 3em 4em;
        height:100%;
    }

}

.g-recaptcha
{
    margin: 10px 0;
}

@media only screen and (max-width: 660px) {
    .contentWrap {
        width: 90%;
    }   
    
    .textField {
        font-size: 1.8em;
    }

}



@media only screen and (max-width: 500px) {
    h1 {
        font-size: 2.6em;
    }
    h2 {
        font-size: 2.6em;
    }
    .textCol p,
    .button {
        font-size: 1.8em;
    }
    form {
        padding: 2em 1.5em 1em;
    }
}
