@charset "UTF-8";
html {
  font-size: 14px;
}

label {
  cursor: pointer;
}

input,
textarea,
select {
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  padding: 0.5rem;
  width: 100%;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
  border: 1px solid rgba(0, 150, 220, 0.8);
  box-shadow: 0px 0px 1px 2px rgba(0, 150, 220, 0.8);
}

input[type=radio], input[type=checkbox] {
  opacity: 0;
  display: inline;
  width: 0;
  margin: 0;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
}
input[type=radio] + .marker, input[type=checkbox] + .marker {
  width: 1em;
  height: 1em;
  position: relative;
  margin-right: 0.5em;
  display: inline-block;
  vertical-align: text-top;
}
input[type=radio] + .marker:before, input[type=radio] + .marker:after, input[type=checkbox] + .marker:before, input[type=checkbox] + .marker:after {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  border-radius: 5px;
}
input[type=radio] + .marker:before, input[type=checkbox] + .marker:before {
  background: #fff;
  border: 2px solid rgba(0, 150, 220, 0.8);
}
input[type=radio] + .marker:after, input[type=checkbox] + .marker:after {
  transition: all 0.2s;
  font-size: 0.8em;
  text-align: center;
}

input[type=radio] + .marker:before, input[type=radio] + .marker:after {
  border-radius: 50%;
}
input[type=radio]:checked + .marker:after {
  content: " ";
  background: #333;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
}

input[type=checkbox]:checked + .marker:after {
  content: "✓";
}

section.main-content-section {
  padding: 0;
}
section > .inner-width {
  padding: 4rem 2rem;
}

.inner-width {
  max-width: 90rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

main {
  display: block;
}

nav, .nav {
  position: relative;
}
nav ul, nav li, .nav ul, .nav li {
  padding: 0;
  margin: 0;
  list-style: none;
  display: inline-block;
  vertical-align: top;
}

@media screen {
  #menu-toggle {
    display: none;
  }
  label[for=menu-toggle] {
    line-height: 0;
  }
  .menu-toggle-button {
    color: #555;
    display: block;
  }
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.group {
  display: flex;
  flex-wrap: wrap;
}
.group:after {
  content: " ";
  display: table;
  clear: both;
}
.group > .col {
  display: flex;
  letter-spacing: normal;
  word-spacing: normal;
  flex-wrap: wrap;
}
.group > .col img {
  max-width: 100%;
  height: auto;
}

.content, .col {
  width: 100%;
}

.col.auto {
  width: auto;
}

video {
  max-width: 100%;
  min-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

video + .content {
  z-index: 2;
}

.background-image {
  background-size: cover;
  background-position: center center;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.black {
  background-color: #000;
  color: #fff;
}

.white {
  background-color: #fff;
  color: #000;
}

.vertical-nav li {
  display: block;
}

.prefered-dim {
  position: relative;
  overflow: hidden;
  display: flex;
}
.prefered-dim:before {
  content: "";
}
.prefered-dim .content, .prefered-dim .inner-width .content {
  z-index: 1;
  position: relative;
}

.v-align-top {
  align-items: flex-start;
}
.v-align-top .col {
  vertical-align: top;
}

.v-align-bottom {
  align-items: flex-end;
}
.v-align-bottom .col {
  vertical-align: bottom;
}

.v-align-center {
  align-items: center;
}
.v-align-center .col {
  vertical-align: middle;
}

._16by9:before {
  padding-top: 56.25%;
}

._4by3:before {
  padding-top: 75%;
}

.square:before {
  padding-top: 100%;
}

._full-height:before {
  padding-top: 100vh;
}

.parallax {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  background-size: cover;
  z-index: 0;
}

.background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: -1px;
  bottom: 0;
  background-color: inherit;
  opacity: 0.5;
}
.background-overlay + .content {
  position: relative;
}
