:root {
  --color-primary: #085fac;
  --primary-dark: #075198;
  --primary-light: #2aabe2;
  --light: #fefefe;
  --dark: #373737;
  --bg-color: #fbfffe;
  --bg-secondary-color: #f3f3f6;
  --color-lightGrey: #d2d6dd;
  --color-grey: #747681;
  --color-darkGrey: #3f4144;
  --color-error: #d43939;
  --color-success: #28bd14;
  --grid-maxWidth: 120rem;
  --grid-gutter: 2rem;
  --font-size: 1.6rem;
  --font-color: #333333;
}

body {
  display: flex;
  flex-direction: column;
  height: 100vh;
  width: 100vw;
}

body > header {
  background: var(--primary-dark);
  color: var(--light);
}

body > main {
  flex-grow: 1;
}

@media screen and (max-width: 640px) {
  .nav.container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  .nav-right.text-light {
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (min-width: 641px) {
  .nav.container {
    justify-content: center;
  }

  .nav-right.text-light {
    width: 100%;
    flex-shrink: 0;
    flex-grow: 1;
    min-width: 100%;
    justify-content: center;
  }

  .nav.container.text-light {
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1024px) {
  .nav-right.text-light {
    min-width: 0;
    justify-content: flex-end;
  }
}
.nav img.main-logo {
  width: 220px;
  height: auto;
  max-height: none;
  min-width: 200px;
}

.nav.container a {
  color: var(--light);
  font-size: 1.5rem;
  line-height: 1;
  flex-shrink: 0;
}

#banner {
  background: #FFD100;
  margin: 0;
  padding: 1rem;
}

/*# sourceMappingURL=style.css.map */
