@charset "UTF-8";
@keyframes rainbow {
  0% {
    color: #cc3333;
  }
  16.7% {
    color: #cccc33;
  }
  33.3% {
    color: #33cc33;
  }
  50% {
    color: #33cccc;
  }
  66.7% {
    color: #3333cc;
  }
  83.3% {
    color: #cc33cc;
  }
  100% {
    color: #cc3333;
  }
}
@keyframes highlight {
  0% {
    background: hsl(204, 99%, 22%);
  }
  50% {
    background: hsl(196, 93%, 42%);
  }
  100% {
    background: hsl(204, 99%, 22%);
  }
}
* {
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  font-weight: 300;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
li {
  font-size: 1em;
  line-height: 1.5;
}

p,
li {
  margin: 8pt 0;
}

ul > li {
  list-style: "▸ ";
}

li {
  margin-left: 16pt;
}

h1 {
  font-family: "Funnel Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.5em;
  font-weight: 600;
}
h1.title {
  font-size: 3em;
  font-weight: 300;
}

h2 {
  font-family: "Funnel Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1.25em;
  font-weight: 600;
}

h3 {
  font-family: "Funnel Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 600;
}

a {
  text-decoration: none;
}

b {
  font-weight: 700;
}

select {
  cursor: pointer;
  border-radius: 2pt;
  border-bottom: 2pt solid hsl(200, 96%, 32%);
}
select:hover {
  background: hsl(0, 0%, 96%);
}

input,
textarea,
select {
  padding: 8pt 16pt;
  font: inherit;
  background: hsl(0, 0%, 98%);
}
input[type=file],
textarea[type=file],
select[type=file] {
  background: initial;
  padding: 8pt 0;
}

span {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
}
span.rainbow {
  -webkit-animation: rainbow linear 4s infinite;
  -o-animation: rainbow linear 4s infinite;
  animation: rainbow linear 4s infinite;
}
span.highlight {
  color: hsl(196, 93%, 42%);
}
span.accent {
  color: hsl(31, 95%, 56%);
}

img {
  width: 100%;
  height: 100%;
}

.button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8pt 16pt;
  font-size: 0.8em;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  border-radius: 16pt/50%;
  transition: 0.2s;
  cursor: pointer;
}

.fixed-aspect-21-9 {
  height: 0;
  padding-top: 42.8571428571%;
}
.fixed-aspect-21-9 > * {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fixed-aspect-16-9 {
  height: 0;
  padding-top: 56.25%;
}
.fixed-aspect-16-9 > * {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fixed-aspect-square {
  height: 0;
  padding-top: 100%;
}
.fixed-aspect-square > * {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hidden {
  display: none;
}

.br {
  margin: 1em 0;
  width: 100%;
}

html {
  font-size: 12pt;
}
@media screen and (max-width: 1200px) {
  html {
    font-size: 12pt;
  }
}
@media screen and (max-width: 900px) {
  html {
    font-size: 11pt;
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: 10pt;
  }
}

body {
  font-family: "Funnel Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  min-width: 360px;
}

.banner {
  width: 100%;
  max-width: none;
  height: clamp(600px, 33.3333333333vw, 90vh);
  padding-top: 0;
  padding-bottom: 0;
  margin: 0;
  overflow: hidden;
  color: hsl(0, 0%, 100%);
  background: hsl(210, 43%, 7%);
}
.banner .banner-images {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.banner .banner-images img {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(600px, 33.3333333333vw, 90vh);
  min-height: 600px;
  max-height: 100vh;
  object-position: 50% 25%;
  object-fit: cover;
}
.banner .banner-content {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: hsla(210, 43%, 7%, 0.75);
  padding: 32pt 0;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}
.banner .banner-content h1,
.banner .banner-content h2 {
  color: hsl(0, 0%, 100%);
  text-transform: uppercase;
}
