@import url("https://use.typekit.net/cah3hqe.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  --dark: #111;
  --brown: #BD6D28;
  --brown-dark: #93531B;
  --brown-darker: #693a11;
  --maroon: #650915;
  --red: #AC2223;
  --red-orange: #D24127;
  --orange: #ED6E23;
  --orange-dark: #C46B28;
  --gold: #FDB82D;
  --gold-dark: #CE962B;
  --cream: #FEC871;
  --green: #B7A732;
  --grey: #EDE3D6;
  --white: #FFF;
  --font-family: "acumin-pro", sans-serif;
  --font-family-serif: "acumin-pro", sans-serif;
  --font-awesome: "Font Awesome 6 Pro", "Font Awesome 6 Free", "Font Awesome 6 Brands", "Font Awesome 6 Solid", "Font Awesome 6 Regular", sans-serif;
  --max-width: 1100px;
  --transition-duration: 0.2s;
}
:root {
  --shadow-color: 210deg 2% 42%;
  --shadow-elevation-low: 0px 0.6px 0.7px hsl(var(--shadow-color) / 0.24), 0px 1px 1.1px -1.2px hsl(var(--shadow-color) / 0.24), 0px 2.2px 2.5px -2.5px hsl(var(--shadow-color) / 0.24);
  --shadow-elevation-medium: 0px 0.6px 0.7px hsl(var(--shadow-color) / 0.25), 0px 1.9px 2.1px -0.8px hsl(var(--shadow-color) / 0.25), -0.1px 4.5px 5.1px -1.7px hsl(var(--shadow-color) / 0.25), -0.1px 10.8px 12.2px -2.5px hsl(var(--shadow-color) / 0.25);
  --shadow-elevation-high: 0px 0.6px 0.7px hsl(var(--shadow-color) / 0.069), 0px 2.8px 3.1px -0.4px hsl(var(--shadow-color) / 0.069), -0.1px 5px 5.6px -0.7px hsl(var(--shadow-color) / 0.069), -0.1px 8.1px 9.1px -1.1px hsl(var(--shadow-color) / 0.069), -0.1px 12.8px 14.4px -1.4px hsl(var(--shadow-color) / 0.069), -0.2px 19.9px 22.4px -1.8px hsl(var(--shadow-color) / 0.069), -0.3px 30.2px 34px -2.1px hsl(var(--shadow-color) / 0.069), -0.5px 44.4px 50px -2.5px hsl(var(--shadow-color) / 0.069);
}
body {
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1.5;
  color: #111;
}
html,
body {
  height: 100%;
}
.inset {
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  width: 100%;
}
h1,
h2,
h3 {
  font-family: var(--font-family);
  font-weight: 500;
}
h1 {
  font-size: 3.2em;
}
h2 {
  font-size: 2.4em;
}
h3 {
  font-size: 1.8em;
}
ul,
ol {
  list-style: square;
  padding-left: 40px;
}
p + p,
ul + p,
ol + p,
ul + ul,
ol + ol,
ul + ol,
ol + ul,
p + ul,
p + ol {
  margin-top: 20px;
}
header#header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 10000;
}
header#header .branding {
  display: none;
}
header#header nav ul {
  align-items: center;
  background-color: #FFFFFFCC;
  border: 2px solid var(--grey);
  border-radius: 40px;
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 10px auto;
  padding: 10px 30px;
  width: fit-content;
}
header#header nav ul li {
  margin: 0 20px;
}
header#header nav ul li a {
  color: var(--brown-darker);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--transition-duration);
  text-transform: uppercase;
}
header#header nav ul li a:hover {
  color: var(--red);
}
#wrapper {
  overflow-x: hidden;
  overflow-y: auto;
  --view-width: 1460px;
}
#wrapper .side {
  background-color: var(--white);
  border-left: 5px solid var(--brown-dark);
  height: 100%;
  left: calc(50% + var(--view-width) / 2);
  pointer-events: none;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 200;
}
#wrapper .side--right {
  border-left: none;
  border-right: 5px solid var(--brown-dark);
  left: auto;
  right: calc(50% + var(--view-width) / 2);
}
#container {
  background-color: var(--grey);
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  width: 100%;
}
#container section {
  border-top: 5px solid var(--brown-dark);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 1.2em;
  padding: 60px 20px;
  position: relative;
  width: 100%;
  z-index: 100;
}
#container section h2 {
  color: var(--brown-dark);
  font-size: 14vw;
  font-weight: 900;
  left: 50%;
  letter-spacing: -1vw;
  line-height: 1;
  text-transform: uppercase;
  top: calc(-5.5vw);
  position: absolute;
  transform: translateX(-50%) translateY(-50%);
  z-index: -1;
}
#container section .inset {
  font-size: 1.3em;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-bottom: 13vw;
  text-align: center;
  width: 100%;
  z-index: 20;
}
#container section .inset p,
#container section .inset ul,
#container section .inset ol {
  font-weight: 400;
  margin-bottom: 40px;
  text-wrap: pretty;
}
#container section.splash {
  --screens-high: 4;
  border-top: none;
  height: calc(100vh * var(--screens-high));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  z-index: 10;
  --mask-start-range: 10%;
  --mask-end-range: 40%;
  --mask-bezier: cubic-bezier(0.69, 0, 1, 0.69);
  --sun-bezier: cubic-bezier(0.69, 0, 0.5, 0.99);
}
#container section.splash h1#tagline {
  top: calc(50vh);
  color: var(--brown-dark);
  display: block;
  font-size: min(80px, 10vw);
  font-weight: 900;
  left: calc(50vw + 1px);
  letter-spacing: -2px;
  line-height: 0.9;
  margin-bottom: 20px;
  position: fixed;
  scale: 0.1;
  text-transform: uppercase;
  transform-origin: left bottom;
  z-index: 90;
}
#container section.splash .mask {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--white);
  z-index: 1000;
  mask-image: var(--mask-image);
  mask-size: 2000px;
  mask-repeat: no-repeat;
  mask-position: center calc(50% - 50px);
  will-change: mask-size;
}
#container section.splash .mask:before {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 100%;
  height: 100%;
  background-color: var(--white);
  z-index: -1;
}
#container section.splash .mask .box {
  background-color: var(--brown);
  height: 210px;
  left: 50%;
  position: absolute;
  top: calc(50% - 50px);
  transform: translate(-50%, -50%);
  width: 210px;
  z-index: 100;
  will-change: height, width;
}
#container section.splash .mask .logo {
  height: auto;
  left: 50%;
  position: fixed;
  top: calc(50vh + 80px);
  transform: translateX(-50%);
  width: 260px;
  z-index: 50;
}
#container section.splash #mountain-group {
  aspect-ratio: 4;
  display: block;
  height: auto;
  left: calc(50vw - 15px);
  position: fixed;
  top: calc(50vh - 40px);
  transform: translateX(-50%) translateY(-50%);
  width: 1500px;
  z-index: 91;
}
#container section.splash #mountain-group path {
  stroke-width: 1.8;
}
#container section.splash #mountain-group #mountain-1 {
  will-change: transform;
}
#container section.splash #mountain-group #mountain-2 {
  will-change: transform;
}
#container section.splash #mountain-group #mountain-3 {
  will-change: transform;
}
#container section.splash #mountain-4 {
  aspect-ratio: 1;
  display: block;
  position: fixed;
  top: calc(50vh - 130px);
  left: 50vw;
  transform: translateX(-50%) translateY(0);
  width: 1500px;
  height: auto;
  z-index: 92;
  will-change: transform;
}
#container section.splash #mountain-4 path {
  stroke-width: 1.8;
}
#container section.splash #mountain-5 {
  aspect-ratio: 1;
  display: block;
  position: fixed;
  top: calc(50vh - 130px);
  left: 50vw;
  transform: translateX(-50%) translateY(0);
  width: 1500px;
  height: auto;
  z-index: 93;
  will-change: transform;
}
#container section.splash #mountain-5 path {
  stroke-width: 1.8;
}
#container section.splash #mountain-6 {
  aspect-ratio: 1;
  display: block;
  position: fixed;
  top: calc(50vh - 130px);
  left: 50vw;
  transform: translateX(-50%) translateY(0);
  width: 1500px;
  height: auto;
  z-index: 94;
  will-change: transform;
}
#container section.splash #mountain-6 path {
  stroke-width: 1.8;
}
#container section.splash #green-bottom {
  background-color: var(--green);
  border-top: 3px solid var(--brown);
  position: fixed;
  top: calc(50vh + 35px);
  left: 0;
  width: 100%;
  height: 1500px;
  z-index: 95;
}
#container section.splash #sun {
  --sun-size: 4800px;
  aspect-ratio: 1;
  display: block;
  position: fixed;
  top: calc((var(--sun-size) / -2) + 50vh - 160px);
  right: calc((var(--sun-size) / -2) + 50% + 10px);
  width: var(--sun-size);
  height: var(--sun-size);
  z-index: 89;
  will-change: transform, top, right;
}
@keyframes rotate-sun {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
  }
}
@keyframes move-sun {
  to {
    top: calc((var(--sun-size) / -2) + 5%);
    right: calc((var(--sun-size) / -2) + 10%);
  }
}
#container section.about {
  background-color: var(--orange);
  color: var(--white);
  min-height: 0;
  padding: 100px 20px;
}
#container section.about:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--orange);
  z-index: 2;
}
#container section.about svg {
  aspect-ratio: 20;
  display: none;
  height: auto;
  position: absolute;
  bottom: calc(100% - 10px);
  left: 50%;
  transform: translateX(-50%);
  width: 1500px;
  z-index: 1;
}
#container section.about svg path {
  stroke: var(--brown-dark);
  stroke-width: 1.8;
}
#container section.about .inset {
  position: relative;
}
#container section.about .inset p,
#container section.about .inset ul,
#container section.about .inset ol {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
}
#container section.about .inset.watched.seen p,
#container section.about .inset.watched.seen ul,
#container section.about .inset.watched.seen ol {
  opacity: 1;
  transform: translateY(0);
}
#container section.brands {
  background-color: var(--gold);
  padding: 100px 20px;
}
#container section.brands:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--gold);
  z-index: 2;
}
#container section.brands p {
  margin-bottom: 30px;
  text-wrap: balance;
}
#container section.brands .brands-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 60px;
  max-width: var(--max-width);
  margin: 40px auto;
  padding: 20px;
}
#container section.brands .brands-list .brand {
  align-items: center;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 240px;
  opacity: 0;
  position: relative;
  transform: translateY(20px);
  width: 100%;
}
#container section.brands .brands-list .brand img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  width: auto;
  height: auto;
}
#container section.brands .brands-list .brand h3 {
  display: none;
}
#container section.brands .brands-list .brand.watched.seen {
  opacity: 1;
  transform: translateY(0);
  transition: all 0.25s ease-in-out;
}
#container section.brands .brands-list .brand.watched.seen:hover {
  scale: 1.025;
}
#container section.contact {
  background-color: var(--cream);
  padding: 100px 20px;
}
#container section.contact .inset {
  padding-bottom: 0;
}
#container section.contact .inset form {
  opacity: 0;
  position: relative;
  transform: translateY(20px);
  transition: all 0.5s ease-in-out;
}
#container section.contact .inset.watched.seen form {
  opacity: 1;
  transform: translateY(0);
}
#container section.contact:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--cream);
  z-index: 2;
}
.form {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 20px;
  row-gap: 0;
  margin: 30px auto;
  max-width: 800px;
}
.form .alert {
  background-color: var(--red);
  border-radius: 10px;
  color: var(--white);
  font-size: 1em;
  font-weight: 500;
  padding: 15px 20px;
  text-align: center;
  width: 100%;
  margin-bottom: 20px;
}
.form .alert--success {
  background-color: var(--green);
  border: 2px solid var(--brown);
  color: var(--brown-dark);
}
.form .alert--error {
  background-color: var(--red);
  color: var(--white);
}
.form .field {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  width: 100%;
}
.form .field--half {
  width: calc(50% - 10px);
}
.form .field label {
  color: var(--brown);
  font-size: 1.11em;
  font-weight: 700;
  line-height: 1.1;
  padding: 0 10px;
  position: relative;
  text-transform: uppercase;
  top: 0.55em;
  text-wrap: nowrap;
}
.form .field input,
.form .field textarea {
  background-color: var(--grey);
  border-radius: 10px;
  border: 2px solid var(--brown);
  color: var(--charcoal);
  font-family: var(--font-family);
  font-size: 1.2em;
  font-weight: 400;
  padding: 12px 15px;
  width: 100%;
}
.form .field input:focus,
.form .field textarea:focus {
  background-color: var(--white);
  border-color: var(--brown-dark);
  outline: none;
}
.form .field:has(input:focus) label,
.form .field:has(textarea:focus) label {
  color: var(--brown-dark);
}
.form .field--checkbox {
  align-items: center;
  display: flex;
  gap: 10px;
  padding: 0;
}
.form .field--checkbox label {
  text-align: left;
  /*font-size: 1.1em;
                line-height: 1.3;
                text-wrap: pretty;*/
}
.form .field input[type="checkbox"] {
  display: none;
}
.form .field input[type="checkbox"] + label {
  cursor: pointer;
  display: block;
  font-family: var(--montserrat);
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.2;
  padding: 2px 0 0 40px;
  position: relative;
  transition: background 0.1s, color 0.1s;
  text-wrap: balance;
}
.form .field input[type="checkbox"] + label:before {
  border: 2px solid var(--white);
  border-radius: 4px;
  content: '';
  display: block;
  font-family: var(--font-awesome);
  font-size: 1rem;
  font-weight: 700;
  height: 20px;
  line-height: 20px;
  margin-right: 10px;
  position: absolute;
  left: 0;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
.form .field input[type="checkbox"]:checked + label:before {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--blue);
  content: '\f00c';
}
.form .field textarea {
  height: 200px;
  resize: none;
}
.form .field button {
  background-color: var(--brown);
  border: none;
  border-radius: 40px;
  color: var(--white);
  cursor: pointer;
  font-family: var(--font-family);
  font-size: 1.6em;
  font-weight: 500;
  margin-top: 10px;
  padding: 8px 24px;
  transition: background-color var(--transition-duration);
  text-transform: uppercase;
  width: 100%;
}
.form .field button:hover {
  background-color: var(--brown-dark);
  color: var(--white);
}
footer#footer {
  background-color: var(--green);
  border-top: 5px solid var(--brown);
  color: var(--brown-dark);
  font-size: 0.9em;
  padding: 20px 0 300px;
  position: relative;
  text-align: center;
  z-index: 300;
}
footer#footer .armadillo {
  aspect-ratio: 500/350;
  bottom: -15px;
  left: 50%;
  display: block;
  height: auto;
  margin: 0 auto;
  position: absolute;
  width: 140px;
  z-index: 200;
  mix-blend-mode: darken;
}
footer#footer .armadillo .walk {
  background-image: var(--armadillo-walking-image);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
footer#footer .armadillo .hide {
  border-radius: 50%;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: var(--brown);
  top: 0;
  left: 0;
}
footer#footer .armadillo .exclamation {
  align-items: center;
  bottom: 100%;
  color: var(--brown);
  display: flex;
  font-size: 1.3rem;
  height: auto;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: absolute;
  width: 100%;
}
footer#footer .armadillo.exclaim .exclamation {
  animation: exclaim 2s ease-in-out forwards;
}
footer#footer .armadillo.walking .walk {
  display: block;
}
footer#footer .armadillo.walking .walk #rear-right,
footer#footer .armadillo.walking .walk #front-left {
  animation: walk-1 calc(var(--duration) * 2s) infinite;
  transform-origin: center center;
}
footer#footer .armadillo.walking .walk #rear-left,
footer#footer .armadillo.walking .walk #front-right {
  animation: walk-2 calc(var(--duration) * 2s) infinite;
  transform-origin: center center;
}
footer#footer .armadillo.walking .hide {
  display: none;
}
footer#footer .armadillo.hiding {
  bottom: -15px;
}
footer#footer .armadillo.hiding .walk #rear-left,
footer#footer .armadillo.hiding .walk #rear-right,
footer#footer .armadillo.hiding .walk #front-left,
footer#footer .armadillo.hiding .walk #front-right {
  animation: none;
  display: none;
}
footer#footer .armadillo.hiding .walk #tail,
footer#footer .armadillo.hiding .walk #head {
  display: none;
}
footer#footer .armadillo.peeking {
  bottom: -15px;
}
footer#footer .armadillo.peeking .walk #head {
  display: block;
}
footer#footer .armadillo.walk-left .walk {
  transform: scaleX(-1);
}
@keyframes walk-1 {
  0% {
    transform: translateX(2px) translateY(-2px) rotate(10deg);
  }
  25% {
    transform: translateX(0) translateY(-2px) rotate(0deg);
  }
  50% {
    transform: translateX(2px) translateY(-6px) rotate(-10deg);
  }
  75% {
    transform: translateX(0) translateY(-2px) rotate(0deg);
  }
  100% {
    transform: translateX(-2px) translateY(-6px) rotate(10deg);
  }
}
@keyframes walk-2 {
  0% {
    transform: translateX(2px) translateY(-2px) rotate(-10deg);
  }
  25% {
    transform: translateX(0) translateY(-2px) rotate(0deg);
  }
  50% {
    transform: translateX(-2px) translateY(-6px) rotate(10deg);
  }
  75% {
    transform: translateX(0) translateY(-2px) rotate(0deg);
  }
  100% {
    transform: translateX(2px) translateY(-6px) rotate(-10deg);
  }
}
@keyframes exclaim {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }
  25% {
    opacity: 1;
    transform: translateY(-10px);
  }
  75% {
    opacity: 1;
    transform: translateY(-10px);
  }
  100% {
    opacity: 0;
    transform: translateY(-10px);
  }
}
footer#footer #owl {
  position: absolute;
  bottom: -30px;
  left: -65px;
  width: 160px;
  height: auto;
}
footer#footer #owl path {
  fill: var(--brown-dark);
}
footer#footer #owl path.eye-lashes {
  fill: var(--brown-dark);
  stroke: var(--brown-dark);
  stroke-width: 4px;
}
footer#footer #owl path.eye-outer {
  fill: var(--green);
}
footer#footer #owl circle.eye-inner {
  fill: var(--brown-dark);
}
footer#footer .social-links {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}
footer#footer .social-links ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
footer#footer .social-links a {
  font-size: 1.2em;
  text-decoration: none;
  transition: color var(--transition-duration);
}
footer#footer .social-links a svg {
  width: 40px;
  height: 40px;
  fill: var(--brown-dark);
  transition: fill var(--transition-duration);
}
footer#footer .social-links a:hover {
  color: var(--brown-dark);
}
footer#footer .social-links a:hover svg {
  fill: var(--brown-darker);
}
.bottom {
  background-color: #ab9c2f;
  position: relative;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40px;
  z-index: 1000;
}
.back-to-top {
  align-items: center;
  bottom: 30px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 5px;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  right: 20px;
  text-align: right;
  text-decoration: none;
  transform: translateX(100px);
  transition: all 0.2s ease-in-out;
  z-index: 10000;
}
.back-to-top a {
  background-color: var(--grey);
  border: 3px solid var(--brown);
  color: var(--brown);
  display: block;
  font-size: 28px;
  font-weight: 700;
  height: 50px;
  line-height: 50px;
  text-decoration: none;
  transition: all 0.1s ease-in-out;
}
.back-to-top a:hover {
  background-color: var(--white);
}
.back-to-top .up {
  display: block;
  font-family: var(--font-awesome);
  line-height: 44px;
  text-align: center;
  width: 50px;
}
.back-to-top .up:before {
  content: '\f062';
}
.back-to-top .next {
  font-family: var(--font-family);
  font-size: 0.95rem;
  font-weight: 450;
  height: auto;
  line-height: 1;
  max-width: 320px;
  opacity: 1;
  padding: 10px 20px;
  text-wrap: balance;
  transform: translateX(0);
  transition: all 0.2s ease-in-out;
}
.back-to-top .next:before {
  content: 'Next: ';
  font-weight: 300;
}
.back-to-top .next--none-left {
  opacity: 0;
  transform: translateX(-10px);
  pointer-events: none;
}
.back-to-top.active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
.scroll-hint {
  background-color: var(--white);
  border: 2px solid var(--grey);
  border-radius: 30px;
  bottom: 20px;
  color: var(--brown-dark);
  cursor: pointer;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  font-weight: 400;
  left: 50%;
  padding: 10px 20px 10px 30px;
  position: fixed;
  text-wrap: nowrap;
  transform: translateX(-50%);
  transition: all var(--transition-duration);
  z-index: 10000;
}
.scroll-hint:hover {
  border-color: var(--gold);
  color: var(--red);
}
.scroll-hint:after {
  content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 384 512"><path fill="%23BD6D28" d="M192 224L32 224l0 128c0 70.7 57.3 128 128 128l64 0c70.7 0 128-57.3 128-128l0-128-160 0zm192-32l0 16 0 16 0 128c0 88.4-71.6 160-160 160l-64 0C71.6 512 0 440.4 0 352L0 224l0-16 0-16 0-32C0 71.6 71.6 0 160 0l16 0 16 0 16 0 16 0c88.4 0 160 71.6 160 160l0 32zM208 32l0 160 144 0 0-32c0-70.7-57.3-128-128-128l-16 0zm-32 0l-16 0C89.3 32 32 89.3 32 160l0 32 144 0 0-160z"/></svg>');
  display: inline-block;
  height: 24px;
  width: 18px;
  padding: 2px;
  margin-left: 10px;
}
.scroll-hint.clicked {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(10px);
}
body.really-scrolling .back-to-top {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
body.really-scrolling .scroll-hint {
  opacity: 0;
  pointer-events: none;
}
@keyframes scroll-hint-bounce {
  0%,
  68%,
  80%,
  92%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  76% {
    transform: translateX(-50%) translateY(-10px);
  }
  84% {
    transform: translateX(-50%) translateY(-5px);
  }
}
@media only screen and (max-width: 940px) {
  #container .splash {
    --screens-high: 4;
  }
  #container section h2 {
    font-size: 20vw;
    top: -8vw;
  }
  #container section.splash h1#tagline {
    width: 90vw;
  }
  .form .field--half {
    width: 100%;
  }
  .scroll-hint:after {
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 448 512"><path fill="%23BD6D28" d="M136 0C105.1 0 80 25.1 80 56l0 200.6c-3.2 2-6.4 4.2-9.5 6.5L48 280c-20.1 15.1-32 38.8-32 64l0 19.5c0 53 29.1 101.7 75.7 126.8l8.3 4.5c21 11.3 44.4 17.2 68.3 17.2L304 512c61.9 0 112-50.1 112-112l0-8 0-88c0-35.3-28.7-64-64-64c-2.8 0-5.6 .2-8.3 .5c-11-19.4-31.8-32.5-55.7-32.5c-5.3 0-10.5 .7-15.5 1.9c-10.8-20.2-32-33.9-56.5-33.9c-8.5 0-16.6 1.7-24 4.7L192 56c0-30.9-25.1-56-56-56zM112 56c0-13.3 10.7-24 24-24s24 10.7 24 24l0 157.5c0 7.1 4.6 13.3 11.4 15.3s14-.6 18-6.5c5.8-8.7 15.6-14.3 26.7-14.3c15.6 0 28.6 11.2 31.4 25.9c1 5.1 4.4 9.5 9.2 11.6s10.3 1.8 14.8-.9c4.8-2.9 10.5-4.6 16.6-4.6c14.7 0 27.2 10 30.9 23.6c1.2 4.4 4.2 8.1 8.3 10.1s8.8 2.2 13.1 .6c3.6-1.4 7.6-2.2 11.8-2.2c17.7 0 32 14.3 32 32l0 88 0 8c0 44.2-35.8 80-80 80l-135.7 0c-18.5 0-36.8-4.6-53.1-13.4l-7.6 14.1 7.6-14.1-8.3-4.5C70.6 442.6 48 404.7 48 363.5L48 344c0-15.1 7.1-29.3 19.2-38.4L80 296l0 48c0 8.8 7.2 16 16 16s16-7.2 16-16l0-78.3 0-1.7 0-208z"/></svg>');
    width: 21px;
  }
}
/*# sourceMappingURL=style.less.css.map */