/* 
0 - 720px:      xs (Phone)
721 - 1000px:    sm (Tablet Portrait)
1001 - 1200px:   md (Tablet Landscape)
[1201 - 1800px] - Where our normal styles apply
1800px +:       xl (Big Desktop)

1em = 16px * 
Max Width(ems) = Desired Max Width * 16px
*/
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit; }

html {
  font-size: 62.5%;
  letter-spacing: .3px;
  scroll-behavior: smooth; }

body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "open-sans", sans-serif !important;
  font-weight: 400;
  line-height: 1.5;
  font-size: 1.4rem; }

.wrapper {
  padding-top: 60px; }

.main {
  max-width: 128rem;
  margin: 0 auto;
  padding: 4rem 0; }
  .main__center {
    text-align: center;
    width: calc(2 * ((100% - (2rem * 2)) / 3) + 2rem);
    margin: 0 auto; }
    .main__center > *:not(:last-child) {
      margin-bottom: 2rem; }

p a {
  font-weight: 700;
  text-decoration: none !important;
  color: #004990;
  transition: color 0.3s ease; }
  p a:hover, p a:active, p a:focus {
    color: #326da6; }

p:not(:last-child) {
  margin-bottom: 2rem; }

.heading {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 2rem; }

.u-bold-text {
  font-weight: 700; }

.u-style-italic {
  font-style: italic; }

.bgvideo {
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden; }
  .bgvideo__video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -100;
    opacity: .4; }
    @media (min-aspect-ratio: 16 / 9) {
      .bgvideo__video {
        width: 100%;
        height: 300%;
        top: -100%; } }
    @media (max-aspect-ratio: 16 / 9) {
      .bgvideo__video {
        height: 100%;
        width: 300%;
        left: -100%; } }

.button {
  font-style: normal !important; }
  .button, .button:link, .button:visited {
    text-decoration: none;
    padding: 1.5rem 2rem;
    display: inline-block;
    border-radius: 3px;
    font-size: 1.4rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    color: #ffffff; }
  .button--blue {
    background-color: #326da6;
    background-image: linear-gradient(120deg, #004990 0%, #004990 50%, transparent 50%);
    background-size: 300%;
    background-position: 99%;
    transition-property: background-position, color, padding !important;
    transition-duration: .5s, .2s, .5s !important; }
    @media only screen and (max-width: 62.5em) {
      .button--blue {
        transition-duration: .2s, .2s, .2s !important; } }
    .button--blue:hover, .button--blue:active, .button--blue:focus {
      background-position: 0;
      color: #ffffff !important;
      outline-width: 0 !important;
      outline: none !important; }
  .button--green {
    background-color: #82c2a7;
    background-image: linear-gradient(120deg, #4c9977 0%, #4c9977 50%, transparent 50%);
    background-size: 300%;
    background-position: 99%;
    transition-property: background-position, color, padding !important;
    transition-duration: .5s, .2s, .5s !important; }
    @media only screen and (max-width: 62.5em) {
      .button--green {
        transition-duration: .2s, .2s, .2s !important; } }
    .button--green:hover, .button--green:active, .button--green:focus {
      background-position: 0;
      color: #ffffff !important;
      outline-width: 0 !important;
      outline: none !important; }
  .button--red {
    background-color: #ee3124 !important;
    background-image: linear-gradient(120deg, #cd3727 0%, #cd3727 50%, transparent 50%);
    background-size: 300%;
    background-position: 99%;
    transition-property: background-position, color, padding !important;
    transition-duration: .5s, .2s, .5s !important; }
    @media only screen and (max-width: 62.5em) {
      .button--red {
        transition-duration: .2s, .2s, .2s !important; } }
    .button--red:hover, .button--red:active, .button--red:focus {
      background-position: 0;
      color: #ffffff !important;
      outline-width: 0 !important;
      outline: none !important; }
 .capture__camera-takebutton {
    background-image: linear-gradient(120deg, #4c9977 0%, #4c9977 50%, transparent 50%);
    background-size: 300%;
    background-position: 99%;
    transition-property: background-position, color, padding !important;
    transition-duration: .5s, .2s, .5s !important; }
    @media only screen and (max-width: 62.5em) {
      .capture__camera-takebutton {
        transition-duration: .2s, .2s, .2s !important; } }
    .capture__camera-takebutton:hover, .capture__camera-takebutton:active, .capture__camera-takebutton:focus {
      background-position: 0;
      color: #ffffff !important;
      outline-width: 0 !important;
      outline: none !important; }
  .capture__camera-savebutton {
    background-image: linear-gradient(120deg, #002c56 0%, #002c56 50%, transparent 50%);
    background-size: 300%;
    background-position: 99%;
    transition-property: background-position, color, padding !important;
    transition-duration: .5s, .2s, .5s !important; }
    @media only screen and (max-width: 62.5em) {
      .capture__camera-savebutton {
        transition-duration: .2s, .2s, .2s !important; } }
    .capture__camera-savebutton:hover, .capture__camera-savebutton:active, .capture__camera-savebutton:focus {
      background-position: 0;
      color: #ffffff !important;
      outline-width: 0 !important;
      outline: none !important; }
    .capture__camera-savebutton a {
      color: #ffffff !important; }

.form p {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center; }
  .form p label {
    width: calc((100% - (2rem * 2)) / 3);
    margin-right: 2rem;
    text-align: right; }
  .form p input {
    width: calc(2 * ((100% - (2rem * 2)) / 3) + 2rem);
    padding: 1rem;
    font-family: "open-sans", sans-serif;
    border-radius: 3px;
    border: 1px solid #cccccc; }
    .form p input:focus {
      outline: none; }

.form-login {
  width: calc(2 * ((100% - (2rem * 2)) / 3) + 2rem);
  margin: 0 auto; }

.content {
  min-height: 50vh; }

.navigation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 60px;
  box-shadow: 0px 0px 20px #222;
  background-color: #4c4c4c;
  z-index: 2000; }
  .navigation__list {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    margin: 0 auto;
    align-items: stretch;
    justify-content: center; }
    .navigation__list-item {
      display: flex;
      align-items: stretch; }
      .navigation__list-item--nolink {
        display: flex;
        align-items: center;
        color: #ffffff;
        padding: 0 2rem; }
      .navigation__list-item a {
        display: flex;
        align-items: center;
        color: #ffffff;
        text-decoration: none !important;
        height: 60px;
        padding: 0 2rem;
        background-color: #4c4c4c;
        transition: all 0.3s ease; }
        .navigation__list-item a:hover {
          background-color: #323232; }

.header {
  display: block;
  text-align: center;
  background-color: #004990;
  padding: 4rem 0; }
  @media only screen and (max-width: 45em) {
    .header {
      margin-bottom: 1rem; } }
  .header a {
    display: inline-block; }
  .header__logo {
    width: 100%;
    min-width: 20rem;
    max-width: 40rem;
    height: auto;
    margin: 0 auto;
    max-height: 9rem;
    display: inline-block; }
    @media only screen and (max-width: 62.5em) {
      .header__logo {
        max-width: 70%; } }

.row {
  max-width: 128rem;
  margin: 0 auto;
  padding-bottom: 4rem; }
  .row:not(:last-child) {
    border-bottom: 1px solid #cccccc;
    margin: 0 auto 4rem auto; }
  .row > div:not(:last-child) {
    margin-bottom: 4rem; }
  .row--flex-hack {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap; }
    .row--flex-hack > div {
      margin-bottom: 0; }
  .row--border-hack {
    margin-bottom: 0 !important;
    border-bottom: none !important; }
    @media only screen and (max-width: 45em) {
      .row--border-hack {
        margin-bottom: 4rem !important;
        border-bottom: 1px solid #cccccc !important; } }
  .row > .aside {
    border-bottom: none !important;
    padding-bottom: 0 !important; }
  .row--no-border {
    border-bottom: none !important;
    padding-bottom: 0 !important; }

[class^="col-"] {
  float: left; }
  [class^="col-"]:not(:last-child) {
    margin-right: 2rem; }
    @media only screen and (max-width: 45em) {
      [class^="col-"]:not(:last-child) {
        margin-right: 0;
        margin-bottom: 4rem; } }
  @media only screen and (max-width: 45em) {
    [class^="col-"] {
      width: 100% !important;
      float: none;
      margin-right: 0; } }

.col-1-of-2 {
  width: calc((100% - 2rem) / 2); }

.col-1-of-3 {
  width: calc((100% - (2rem * 2)) / 3); }

.col-2-of-3 {
  width: calc(2 * ((100% - (2rem * 2)) / 3) + 2rem); }

.col-1-of-4 {
  width: calc((100% - (2rem * 3)) / 4); }

.col-2-of-4 {
  width: calc(2 * ((100% - (2rem * 3)) / 4) + 2rem); }

.col-3-of-4 {
  width: calc(3 * ((100% - (2rem * 3)) / 4) + (2 * 2rem)); }

.col-1-of-5 {
  width: calc((100% - (2rem * 4)) / 5); }

.col-2-of-5 {
  width: calc(2 * ((100% - (2rem * 4)) / 5) + 2rem); }

.col-3-of-5 {
  width: calc(3 * ((100% - (2rem * 4)) / 5) + (2 * 2rem)); }

.col-4-of-5 {
  width: calc(4 * ((100% - (2rem * 4)) / 5) + (3 * 2rem)); }

main {
  display: block;
  padding: 0 1rem; }

.section {
  margin-bottom: 6rem; }

.divider {
  padding-bottom: 4rem;
  border-bottom: 1px solid #cccccc; }

.footer {
  background-color: #323232;
  color: #7f7f7f;
  padding: 0; }
  .footer > *:last-child {
    margin-bottom: 0 !important;
    padding: 0; }
  .footer .row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0 !important;
    border-bottom: none !important;
    padding: 4rem 2rem 6rem 2rem; }
    .footer .row .col-1-of-3 {
      width: calc((100% - (2rem * 2)) / 3);
      margin-bottom: 0 !important; }
      .footer .row .col-1-of-3:nth-child(3n) {
        margin-right: 0; }
      @media only screen and (min-width: 112.5em) {
        .footer .row .col-1-of-3:nth-child(3n) {
          margin-right: 0 !important; } }
      @media only screen and (max-width: 62.5em) {
        .footer .row .col-1-of-3 {
          width: calc((100% - 2rem) / 2); }
          .footer .row .col-1-of-3:nth-child(2) {
            margin-right: 0; }
          .footer .row .col-1-of-3:last-child {
            width: 100%;
            margin-top: 4rem;
            display: flex;
            flex-direction: row;
            flex-wrap: nowrap;
            justify-content: space-between; }
            .footer .row .col-1-of-3:last-child > .footer__block {
              width: calc((100% - 2rem) / 2); } }
      @media only screen and (max-width: 62.5em) and (max-width: 45em) {
        .footer .row .col-1-of-3:last-child > .footer__block {
          width: 100%; } }
    @media only screen and (max-width: 62.5em) and (max-width: 45em) {
      .footer .row .col-1-of-3:last-child {
        display: block; } }
      @media only screen and (max-width: 45em) {
        .footer .row .col-1-of-3 {
          width: 100%; }
          .footer .row .col-1-of-3:not(:last-child) {
            margin: 0 auto 4rem auto !important; }
          .footer .row .col-1-of-3:last-child {
            margin-top: 0; } }
      @media only screen and (max-width: 45em) {
        .footer .row .col-1-of-3:first-child {
          margin-bottom: 2rem !important; } }
  .footer__block:not(:last-child) {
    margin-bottom: 4rem; }
  .footer__block:last-child {
    margin-bottom: 0 !important; }
  .footer__heading {
    display: block;
    font-weight: 800;
    font-size: 1.8rem;
    color: #7f7f7f;
    margin-bottom: 1rem;
    text-transform: uppercase; }
  .footer__list {
    list-style-type: none;
    padding: 0;
    margin: 0; }
  .footer__item {
    width: 100%;
    padding-left: 2rem; }
    .footer__item:not(:last-child) {
      margin-bottom: 5px; }
  .footer__link {
    color: #7f7f7f;
    transition: color 0.3s ease; }
    .footer__link i {
      margin-right: 2rem; }
    .footer__link:hover, .footer__link:active, .footer__link:focus {
      color: #ffffff; }
  .footer__locations > li:not(:last-child) {
    margin-bottom: 2rem !important; }
  .footer__misc {
    width: 100%;
    background-color: #4c4c4c;
    padding: 2rem !important;
    margin-bottom: 0 !important;
    text-align: center !important; }
    .footer__misc > * {
      display: inline-block; }
      @media only screen and (max-width: 45em) {
        .footer__misc > * {
          display: block; } }
  .footer__social {
    width: 100%;
    padding: 2rem;
    margin-bottom: 0;
    text-align: center; }
    .footer__social a {
      display: inline-block;
      text-align: center; }
      .footer__social a:not(:last-child) {
        margin-right: 2rem; }
        @media only screen and (max-width: 45em) {
          .footer__social a:not(:last-child) {
            margin-right: 3rem; } }
    .footer__social-icon {
      font-size: 2.6rem;
      margin-right: 0 !important; }

.home {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 4rem 0;
  text-align: center; }
  .home > * {
    width: 100%; }
  .home__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; }
  .home__buttons {
    display: flex;
    justify-content: center;
    align-items: stretch; }
    .home__buttons > a {
      width: calc((100% - (2rem * 4)) / 5); }
      .home__buttons > a:not(:last-child) {
        margin-right: 2rem; }
      @media only screen and (max-width: 62.5em) {
        .home__buttons > a {
          width: calc((100% - (2rem * 2)) / 3); } }
      @media only screen and (max-width: 45em) {
        .home__buttons > a {
          width: calc((100% - 2rem) / 2); } }
