html {
    background: #e4e5e4;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Trade Gothic LT Std', Arial, sans-serif;
    width: 100%;
    max-width: 920px;
    margin: 0 auto;
}

.logo {
    background: #002f6c;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.container {
    width: 90%;
    max-width: 920px;
    margin: 0 auto;
    border-bottom: 3px solid #3d87cb;
}

.intro-block {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
    text-align: center;
    background: #ffffff;
}

.intro-block .headline {
    font-size: 36px;
    line-height: 45px;
    color: #002f6c;
    font-weight: 600;
}

.intro-block .subcopy {
    font-size: 28px;
    line-height: 34px;
    color: #000;
    padding-top: 25px;
    padding-bottom: 40px;
}

.intro-block .form-fields {
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}

input[type="text"] {
    border: 2px solid #002f6c;
    width: 425px;
    height: 55px;
    text-indent: 15px;
    font-size: 22px;
    color: #000;
    box-sizing: border-box;
    
}

.error {
    color: #fff;
    padding-top: 3px;
}

textarea,
input.text,
input[type="text"],
input[type="button"],
.input-checkbox {
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

::-webkit-input-placeholder {
    color: #000;
    font-size: 22px;
}
  
:-ms-input-placeholder {
    color: #000;
    font-size: 22px;
}
  
::placeholder {
    color: #000;
    font-size: 22px;
}

input:focus,
select:focus,
textarea:focus,
button:focus {
      outline: none;
}

.preference-section {
    
    padding-bottom: 30px;
    border-bottom: 3px solid #3d87cb;
}

.preference-section .subcopy {
    font-size: 28px;
    line-height: 33px;
    color: #000;
    padding-bottom: 40px;
    width: 98%;
    margin: 0 auto;
}

/*** Checkbox/Radio ***/

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked, [type="radio"]:not(:checked),
[type="radio"]:checked {
    position: absolute;
    left: -9999px;
}

[type="checkbox"]:not(:checked)+label,
[type="checkbox"]:checked+label, [type="radio"]:not(:checked)+label,
[type="radio"]:checked+label {
    position: relative;
    cursor: pointer;
}

/* checkbox aspect */
[type="checkbox"]:not(:checked)+label:before,
[type="checkbox"]:checked+label:before, [type="radio"]:not(:checked)+label:before,
[type="radio"]:checked+label:before {
    width: 23px;
    height: 23px;
    top: 2px;
    left: 0px;
    position: relative;
    background-color: #FFFFFF;
    content: "";
    display: inline-block;
    visibility: visible;
    border: 2px solid #002f6c;
}

/* checked mark aspect */
[type="checkbox"]:not(:checked)+label:after,
[type="checkbox"]:checked+label:after, [type="radio"]:not(:checked)+label:after,
[type="radio"]:checked+label:after {
    content: '\2713';
    font-size: 25px;
    color: #000;
    width: 23px;
    height: 23px;
    top: -30px;
    left: 4px;
    position: relative;
    display: inline-block;
    visibility: visible;
}

/* checked mark aspect changes */
[type="checkbox"]:not(:checked)+label:after, [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    transform: scale(0);
}

[type="checkbox"]:checked+label:after, [type="radio"]:checked+label:after {
    opacity: 1;
    transform: scale(1);
}

.radio-labels {
    color: #002f6c;
    font-weight: 700;
    font-size: 30px;
    padding-left: 5px;
    width: 100%;
}

.sub-label {
    font-size: 24px;
    line-height: 29px;
    color: #000;
    font-weight: 400;
}

input.submit {
    cursor: pointer;
    background-color: #135ac3;
    margin: 0 auto;
    color: #fff;
    width: 90%;
    max-width: 400px;
    height: 65px;
    line-height: 48px;
    font-weight: 700;
    font-size: 27px;
    margin-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-appearance: none;
    border: none;
    display: block;
}

.footer {
    background: #ffffff;
    padding-top: 100px;
    border-bottom: 40px solid #002f6c;
}

.footer-container {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-flow: row wrap;
}

@media only screen and (max-width: 820px) {
    .intro-block .form-fields {
        display: block;
    }
}

@media only screen and (max-width: 500px) {
    
    .intro-block .headline {
        font-size: 28px;
        line-height: 34px;
    }

    input[type="text"] {
        width: 90%;
    }

    .full-width {
        width: 90% !important;
    }

    input.submit {
        font-size: 24px;
    }

    .top-padding {
        padding-top: 20px;
    }
}