article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -webkit-overflow-scrolling: touch
}

*, :before, :after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit
}

body {
  font-size: 1.2em;
  line-height: 1.2;
  word-wrap: break-word
}
 
h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
  line-height: 1.2
}

a {
  text-decoration: none
}

strong {
  font-weight: 700
}

em {
  font-style: italic
}

dl, dd {
  margin: 0
}

table {
  border-collapse: collapse;
  border-spacing: 0
}
 
address {
  font-style: normal
} 

fieldset {
  padding: 0;
  margin: 0;
  border: 0
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border: 0
}

body:before {
  content: "small";
  display: none
}

@media(min-width: 48em) {
    body:before {
        content:"medium"
    }
}

@media(min-width: 64em) {
    body:before {
        content:"large"
    }
}

.button {
    background:#00214f;
    color:#fff;
    border:3px solid #00214f;
    display:inline-block;
    line-height:1.3;
    text-align:center;
    padding:.3em 1em;
    text-decoration:none;
    font-size:.9em;
    font-weight:700;
    margin-bottom:.3em;
    -webkit-appearance:none;
    -moz-appearance:none;
    appearance:none;
    cursor:pointer;
    text-transform:uppercase
}

.button:focus, .button:hover {
  background: #fff;
  color: #00214f
}

.button:active, .button:visited {
  background: #00214f;
  color: #fff
}

.button--reverse {
  background: #fff;
  color: #00214f
}

.button--reverse:hover, .button--reverse:focus {
  background: #00214f;
  color: #fff
}

.button--reverse:active, .button--reverse:visited {
  background: #fff;
  color: #00214f
}

.button-wrapper {
  margin: 2em 0 5em
}

.button-wrapper .button {
  margin-right: 1em
}

.controller-group {
  display: block;
  position: relative;
  padding-left: 1.5em;
  margin-bottom: 15px;
}

/* .controller-group input {
  display: none
} */

.controller-group input[type="checkbox"] {
    /* Add if not using autoprefixer */
    -webkit-appearance: none;
    /* Remove most all native input styles */
    appearance: none;
    /* For iOS < 15 */
    background-color: var(--form-background);
    /* Not removed via appearance */
    margin: 0;

    font: inherit;
    color: currentColor;
    width: 1.15em;
    height: 1.15em;
    border: 0.15em solid currentColor;
    border-radius: 0.15em;
    transform: translateY(-0.075em);

    display: grid;
    place-content: center;
    margin-right: 10px;
}

.controller-group input[type="checkbox"]:before {
    content: "";
    width: 0.65em;
    height: 0.65em;
    clip-path: polygon(14% 44%, 0 65%, 50% 100%, 100% 16%, 80% 0%, 43% 62%);
    transform: scale(0);
    transform-origin: bottom left;
    transition: 120ms transform ease-in-out;
    box-shadow: inset 1em 1em var(--form-control-color);
    /* Windows High Contrast Mode */
    background-color: CanvasText;
}

.controller-group input[type="checkbox"]:checked::before {
    transform: scale(1);
}

/* .controller-group .controller-label {
  cursor: pointer
}

.controller-group .controller-label:before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 21px;
  background-image: url(//image.s4.exct.net/lib/fe8d1574706c0d7c73/m/1/checkbox.gif);
  background-position: left bottom;
  position: absolute;
  left: 0;
  top: 0
} */

.controller-label-intro {
  display: block
}

/* .controller-group input:checked+.controller-label:before {
  display: none
}

.controller-group input:checked+.controller-label:after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 21px;
  background-image: url(//image.s4.exct.net/lib/fe8d1574706c0d7c73/m/1/checkbox.gif);
  background-position: left top;
  position: absolute;
  left: 0;
  top: 0
} */

#location-preference {
  width: 100%
}

@media(min-width: 48em) {
    #location-preference {
        width:auto
    }
    
    .controller-group {
        display:-webkit-box;
        display:-ms-flexbox;
        display:flex
    }
    
    .controller-group .controller-label {
        width: 6em;
        padding-right: 1em;
        -webkit-box-sizing: content-box;
        box-sizing: content-box
    }

    .controller-group .controller-label--full-width {
    width: 100%
    }

    .controller-label-intro {
    display: inline
    }
}

hr {
  border:0;
  height:1px;
  background:#c4c4c4;
  margin-bottom:3em
}

.align-left, .align-right, .align-center {
  margin:0 auto 1.5em
}

@media only screen and (min-width: 40em) {
  .align-left {
    float:left;
    margin:0 1.5em 1.5em 0
  }
  .align-right {
    float: right;
    margin: 0 0 1.5em 1.5em
  }
}

.input-field {
  border:1px solid #c4c4c4;
  padding:.4em;
  font-size:1em;
  font-weight:300
}

.input-title {
  margin-bottom:.3em;
  display:block;
  -webkit-box-sizing:border-box;
  box-sizing:border-box
}

.required {
  color:#ff0707
}

.logo {
  margin:0 auto
}

body {
  color: #00214f;
  font-family: Arial, Helvetica Neue, Helvetica, sans-serif;
  font-size: 1.2em;
  font-weight: 400
}

p {
  margin:0 0 1.5rem
}

.video__wrapper {
  position:relative;
  padding-bottom:56.25%;
  padding-top:1.5625rem;
  height:0
}

.video__wrapper .video, .video__wrapper iframe {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%
}

.is-vishidden {
  position:absolute;
  overflow:hidden;
  clip:rect(0 0 0 0);
  height:1px;
  width:1px;
  margin:-1px;
  padding:0;
  border:0
}

.field-set {
  margin-bottom:2em
}

.legend-wrapper {
  max-width:34em;
  border-top:1px solid #00214f;
  border-bottom:1px solid #00214f;
  padding:1em 0;
  margin:0 auto 2em;
  text-align:center;
  line-height:1
}

.bold-title {
  font-size:1em;
  font-weight:700;
  color:#00214f;
  margin-bottom:1em
}

.legend-title {
  font-size:1.62em;
  color:#00214f;
  font-weight:700;
  text-transform:uppercase;
  display:block;
  width:100%;
  text-align:center;
}

.legend-intro {
  font-family:Times New Roman, Times, serif;
  font-size:1em;
  color:#00214f;
  margin-bottom:0
}

.legend-intro i {
  font-style:italic
}

.field-set--special {
  margin-bottom:.5em
}

.field-set--special legend {
  margin-bottom:.5em
}

.field-group {
  margin-bottom:1em
}

.field-group .input-field {
  width:100%
}

@media(min-width: 48em) {
    .field-group {
        display:-webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
        flex: 1 1 auto
}

.field-group .input-label {
  padding:0 1em;
  white-space:nowrap;
  -ms-flex-item-align:center;
  align-self:center
}

.field-group:first-child .input-label {
  min-width:9em;
  padding-left:0
}

.field-group .input-field {
  -ms-flex-negative:1;
  flex-shrink:1
}

.field-items {
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex
}
}

.site-header {
  border-top:25px solid;
  border-color:#00214f;
  padding:1em 0
}

.page-width {
  max-width:50em;
  margin:0 auto;
  padding:0 1em
}

.state-width {
    min-width: 3.75em;
}