@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");
/* COLORS */
.green, .color--green {
  color: #1ce180;
}

.color--alt_green {
  color: #1CDA80;
}

.blue, .color--blue {
  color: #2a3e4a;
}

.color--coolgray {
  color: #7C889C;
}

.color--darkgray {
  color: #505050;
}

.gray, .color--gray {
  color: #ADAEB1;
}

.lightgray, .color--lightgray {
  color: #E6E8EE;
}

.lightestgray, .color--lightestgray {
  color: #F3F3F5;
}

.white, .color--white {
  color: #ffffff;
}

.color--black {
  color: #000000;
}

.bg-green, .bg--green {
  background-color: #1ce180;
}

.bg--alt_green {
  background-color: #1CDA80;
}

.bg-blue, .bg--blue {
  background-color: #2a3e4a;
}

.bg--black {
  background-color: #000000;
}

.bg--darkgray {
  background-color: #505050;
}

.bg-gray, .bg--gray {
  background-color: #ADAEB1;
}

.bg-lightgray, .bg--lightgray {
  background-color: #E6E8EE;
}

.bg-lightestgray, .bg--lightestgray {
  background-color: #F3F3F5;
}

* {
  box-sizing: border-box;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-size: 62.5%;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-weight: normal;
  font-feature-settings: "salt" 0;
  font-variant-ligatures: none;
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
p,
blockquote,
figure {
  margin: 0;
  padding: 0;
}

section,
main {
  display: block;
}

section {
  position: relative;
}
section .container {
  position: relative;
}
@media (min-width: 1024px) {
  section .container {
    max-width: 1024px;
    margin-left: auto;
    margin-right: auto;
  }
}

h1,
h2,
h3,
h4 {
  font-size: inherit;
  font-weight: normal;
}

p {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 1.35rem;
  line-height: 1.5;
}
p.small {
  font-size: 1.15rem;
}
p.subhead {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 2.1rem;
  font-size: clamp(1.8rem, 6vw, 2.1rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  font-feature-settings: "salt" 1;
}

ul.list {
  margin-left: 2rem;
  margin-bottom: 4rem;
}
ul.list li {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.2;
  margin-bottom: 0.8em;
  color: #2a3e4a;
}
ul.list li:before {
  content: "•";
  color: #2a3e4a;
  display: inline-block;
  width: 1.25em;
  margin-left: -1.25em;
  font-size: 1em;
}
ul.list.list--white li {
  color: white;
}
ul.list.list--white li::before {
  color: #1ce180;
}
ul.large li {
  font-size: 1.9rem;
}
ul.large li:before {
  width: 0.75em;
  margin-left: -0.75em;
  font-size: 1.5em;
}

strong, b {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-style: normal;
}

a {
  text-decoration: none;
}
a:hover, a:focus {
  text-decoration: none;
}

button {
  overflow: visible;
  border: 0;
  font: inherit;
  -webkit-font-smoothing: inherit;
  letter-spacing: inherit;
  background: none;
  cursor: pointer;
}

th {
  font-weight: normal;
  font-style: normal;
}

::-moz-focus-inner {
  padding: 0;
  border: 0;
}

:focus {
  outline: 0;
}

img {
  max-width: 100%;
  height: auto;
  border: 0;
}

.label {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 2.083em;
  text-transform: uppercase;
}
.label.label--large {
  font-size: 1.83rem;
  letter-spacing: 0.14em;
  margin-bottom: 1em;
}

.fixed {
  position: fixed;
  overflow: hidden;
}

.fill, section.mast::after {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.cover {
  -o-object-fit: cover;
     object-fit: cover;
  max-width: none;
  display: -webkit-flex;
  display: flex;
  height: 100%;
  width: 100%;
}

.ampersand {
  font-feature-settings: "salt" 1;
  font-variant-ligatures: none;
  padding: 0;
  display: inline !important;
}

.btn {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  display: inline-block;
  transition: all 0.25s ease-in-out;
  padding: 1.4rem 2.4rem 1.3rem;
  font-size: 1.232rem;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .btn {
    white-space: nowrap;
  }
}
.btn:hover {
  transition: 0.2s ease-in-out;
}
.btn.blue, .btn.btn--blue {
  background: #2a3e4a;
  color: white;
}
.btn.blue:hover, .btn.btn--blue:hover {
  box-shadow: 0 1px 2px rgba(42, 62, 74, 0.16), 0 2px 4px rgba(42, 62, 74, 0.14), 0 4px 8px rgba(42, 62, 74, 0.12), 0 8px 16px rgba(42, 62, 74, 0.1), 0 16px 32px rgba(42, 62, 74, 0.08), 0 32px 64px rgba(42, 62, 74, 0.06);
}
.btn.green, .btn.btn--green {
  background: #1ce180;
  color: #2a3e4a;
}
.btn.green:hover, .btn.btn--green:hover {
  box-shadow: 0 32px 64px 0 rgba(28, 225, 128, 0.1), 0 16px 32px 0 rgba(28, 225, 128, 0.12), 0 8px 16px 0 rgba(28, 225, 128, 0.14), 0 4px 8px 0 rgba(28, 225, 128, 0.16), 0 2px 4px 0 rgba(22, 194, 109, 0.5), 0 1px 2px 0 rgba(24, 185, 106, 0.6);
}
.btn.green.hover-on-blue:hover, .btn.btn--green.hover-on-blue:hover {
  box-shadow: 0 32px 64px 0 rgba(28, 225, 128, 0.1), 0 16px 32px 0 rgba(28, 225, 128, 0.12), 0 8px 16px 0 rgba(28, 225, 128, 0.14), 0 4px 8px 0 rgba(18, 45, 54, 0.16), 0 2px 4px 0 rgba(20, 48, 56, 0.5), 0 1px 2px 0 rgba(17, 46, 54, 0.6);
}
.btn.white, .btn.btn--white {
  background-color: white;
  color: #2a3e4a;
}
.btn.large {
  font-size: 2.3rem;
  padding: 1.4rem 4.8rem;
}
.btn.btn--ghost {
  border: 1px solid;
}
.btn.btn--ghost.btn--blue {
  border-color: #2a3e4a;
}
.btn.btn--ghost.btn--green {
  border-color: #1ce180;
}
.btn.btn--ghost.btn--white {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}

.link {
  position: relative;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 1.232rem;
  transition: 0.6s;
  text-transform: uppercase;
}
.link:hover {
  transition: 0.6s;
}
.link:hover:after {
  width: 90%;
  opacity: 1;
  transition: 0.6s;
}
.link:after {
  position: absolute;
  top: 100%;
  left: 0;
  content: "";
  width: 0%;
  height: 2px;
  background: #1ce180;
  opacity: 0;
  transition: 0.6s;
}
.link.link--small {
  font-size: 1.3rem;
}
.link.color--white, .link.link--white {
  color: #ffffff;
}
.link.color--darkgray, .link.link--darkgray {
  color: #505050;
}
.link.color--green, .link.link--green {
  color: #1ce180;
}

.hide-overflow {
  overflow: hidden;
  display: block;
}

.appear {
  transition: 0.6s;
  display: block;
}
.appear.down {
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.appear.up {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}
.appear.in-view {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

@media (min-width: 641px) {
  .delay-25 {
    transition-delay: 0.25s;
  }
}

@media (min-width: 641px) {
  .delay-50 {
    transition-delay: 0.5s;
  }
}

@media (min-width: 641px) {
  .delay-75 {
    transition-delay: 0.75s;
  }
}

@media (min-width: 641px) {
  .delay-100 {
    transition-delay: 1s;
  }
}

.fadein {
  opacity: 0;
  transition-duration: 1s;
}
.fadein.in-view {
  transition-timing-function: linear;
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.fadeup {
  opacity: 0;
  transition-duration: 1s;
  -webkit-transform: translate3d(0, 8%, 0);
          transform: translate3d(0, 8%, 0);
}
.fadeup.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.fadeup-cascade > *:nth-child(1) {
  transition-delay: calc(1 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(2) {
  transition-delay: calc(2 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(3) {
  transition-delay: calc(3 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(4) {
  transition-delay: calc(4 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(5) {
  transition-delay: calc(5 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(6) {
  transition-delay: calc(6 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(7) {
  transition-delay: calc(7 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(8) {
  transition-delay: calc(8 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(9) {
  transition-delay: calc(9 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(10) {
  transition-delay: calc(10 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(11) {
  transition-delay: calc(11 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(12) {
  transition-delay: calc(12 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(13) {
  transition-delay: calc(13 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(14) {
  transition-delay: calc(14 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(15) {
  transition-delay: calc(15 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(16) {
  transition-delay: calc(16 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(17) {
  transition-delay: calc(17 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(18) {
  transition-delay: calc(18 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(19) {
  transition-delay: calc(19 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(20) {
  transition-delay: calc(20 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(21) {
  transition-delay: calc(21 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(22) {
  transition-delay: calc(22 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(23) {
  transition-delay: calc(23 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *:nth-child(24) {
  transition-delay: calc(24 * .15s);
  -webkit-transform: translate3d(0, 20px, 0);
          transform: translate3d(0, 20px, 0);
  opacity: 0;
  transition-duration: 1s;
}
.fadeup-cascade > *.in-view:nth-child(1) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(2) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(3) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(4) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(5) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(6) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(7) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(8) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(9) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(10) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(11) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(12) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(13) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(14) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(15) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(16) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(17) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(18) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(19) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(20) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(21) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(22) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(23) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade > *.in-view:nth-child(24) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(1) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(2) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(3) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(4) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(5) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(6) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(7) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(8) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(9) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(10) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(11) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(12) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(13) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(14) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(15) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(16) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(17) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(18) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(19) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(20) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(21) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(22) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(23) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.fadeup-cascade.in-view > *:nth-child(24) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slideleft {
  opacity: 0;
  transition-duration: 1s;
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
}
.slideleft.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slideleft-cascade > *:nth-child(1) {
  transition-delay: calc(1 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(2) {
  transition-delay: calc(2 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(3) {
  transition-delay: calc(3 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(4) {
  transition-delay: calc(4 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(5) {
  transition-delay: calc(5 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(6) {
  transition-delay: calc(6 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(7) {
  transition-delay: calc(7 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(8) {
  transition-delay: calc(8 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(9) {
  transition-delay: calc(9 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(10) {
  transition-delay: calc(10 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(11) {
  transition-delay: calc(11 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(12) {
  transition-delay: calc(12 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(13) {
  transition-delay: calc(13 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(14) {
  transition-delay: calc(14 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(15) {
  transition-delay: calc(15 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(16) {
  transition-delay: calc(16 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(17) {
  transition-delay: calc(17 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(18) {
  transition-delay: calc(18 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(19) {
  transition-delay: calc(19 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(20) {
  transition-delay: calc(20 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(21) {
  transition-delay: calc(21 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(22) {
  transition-delay: calc(22 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(23) {
  transition-delay: calc(23 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *:nth-child(24) {
  transition-delay: calc(24 * .15s);
  -webkit-transform: translate3d(20px, 0, 0);
          transform: translate3d(20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideleft-cascade > *.in-view:nth-child(1) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(2) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(3) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(4) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(5) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(6) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(7) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(8) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(9) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(10) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(11) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(12) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(13) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(14) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(15) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(16) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(17) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(18) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(19) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(20) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(21) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(22) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(23) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade > *.in-view:nth-child(24) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(1) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(2) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(3) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(4) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(5) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(6) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(7) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(8) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(9) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(10) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(11) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(12) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(13) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(14) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(15) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(16) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(17) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(18) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(19) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(20) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(21) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(22) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(23) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideleft-cascade.in-view > *:nth-child(24) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slideright {
  opacity: 0;
  transition-duration: 1s;
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
}
.slideright.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slideright-cascade > *:nth-child(1) {
  transition-delay: calc(1 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(2) {
  transition-delay: calc(2 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(3) {
  transition-delay: calc(3 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(4) {
  transition-delay: calc(4 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(5) {
  transition-delay: calc(5 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(6) {
  transition-delay: calc(6 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(7) {
  transition-delay: calc(7 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(8) {
  transition-delay: calc(8 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(9) {
  transition-delay: calc(9 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(10) {
  transition-delay: calc(10 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(11) {
  transition-delay: calc(11 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(12) {
  transition-delay: calc(12 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(13) {
  transition-delay: calc(13 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(14) {
  transition-delay: calc(14 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(15) {
  transition-delay: calc(15 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(16) {
  transition-delay: calc(16 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(17) {
  transition-delay: calc(17 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(18) {
  transition-delay: calc(18 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(19) {
  transition-delay: calc(19 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(20) {
  transition-delay: calc(20 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(21) {
  transition-delay: calc(21 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(22) {
  transition-delay: calc(22 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(23) {
  transition-delay: calc(23 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *:nth-child(24) {
  transition-delay: calc(24 * .15s);
  -webkit-transform: translate3d(-20px, 0, 0);
          transform: translate3d(-20px, 0, 0);
  opacity: 0;
  transition-duration: 1s;
}
.slideright-cascade > *.in-view:nth-child(1) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(2) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(3) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(4) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(5) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(6) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(7) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(8) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(9) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(10) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(11) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(12) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(13) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(14) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(15) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(16) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(17) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(18) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(19) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(20) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(21) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(22) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(23) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade > *.in-view:nth-child(24) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(1) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(2) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(3) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(4) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(5) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(6) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(7) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(8) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(9) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(10) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(11) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(12) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(13) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(14) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(15) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(16) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(17) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(18) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(19) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(20) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(21) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(22) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(23) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.slideright-cascade.in-view > *:nth-child(24) {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

.slidedown {
  opacity: 0;
  transition-duration: 1s;
  -webkit-transform: translate3d(0, -8%, 0);
          transform: translate3d(0, -8%, 0);
}
.slidedown.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  opacity: 1;
  -webkit-transform: none;
          transform: none;
}

.flipup {
  opacity: 0;
  -webkit-transform: perspective(500) rotateX(7deg) translate3d(0, 8%, 0);
}
.flipup.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  transition-duration: 1s;
  opacity: 1;
  -webkit-transform: perspective(0) rotateX(0deg) translate3d(0, 0, 0);
}

.flipleft {
  opacity: 0;
  -webkit-transform: perspective(500) rotateY(7deg) translate3d(20px, 0, 0);
}
.flipleft.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  transition-duration: 1s;
  opacity: 1;
  -webkit-transform: perspective(0) rotateX(0deg) translate3d(0, 0, 0);
}

.flipright {
  opacity: 0;
  -webkit-transform: perspective(500) rotateY(-7deg) translate3d(-20px, 0, 0);
}
.flipright.in-view {
  transition-timing-function: cubic-bezier(0, 0, 0.37, 1);
  transition-duration: 1s;
  opacity: 1;
  -webkit-transform: perspective(0) rotateX(0deg) translate3d(0, 0, 0);
}

.hbspt-form label:not(.hs-error-msg) {
  display: none;
}
.hbspt-form .hs-error-msg {
  position: relative;
  color: #e2053f;
  margin-bottom: 1rem;
  display: block;
  top: -0.5rem;
}
.hbspt-form legend {
  font-size: 1.4rem;
  color: #ADAEB1;
  display: block;
  margin-top: 2.5rem;
}
.hbspt-form input, .hbspt-form select {
  width: 100%;
  background: #eeeef2;
  border: 0;
  border-radius: 0.4rem;
  min-height: 5.5rem;
  margin-bottom: 1rem;
  padding: 2rem;
  color: #2a3e4a;
  font-size: 1.4rem;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  display: block;
  max-width: 100%;
}
.hbspt-form input::-webkit-input-placeholder, .hbspt-form select::-webkit-input-placeholder {
  color: #ADAEB1;
  opacity: 1;
}
.hbspt-form input::-moz-placeholder, .hbspt-form select::-moz-placeholder {
  color: #ADAEB1;
  opacity: 1;
}
.hbspt-form input:-ms-input-placeholder, .hbspt-form select:-ms-input-placeholder {
  color: #ADAEB1;
  opacity: 1;
}
.hbspt-form input::placeholder, .hbspt-form select::placeholder {
  color: #ADAEB1;
  opacity: 1;
}
.hbspt-form input:-ms-input-placeholder, .hbspt-form select:-ms-input-placeholder {
  color: #ADAEB1;
  opacity: 1;
}
.hbspt-form input::-ms-input-placeholder, .hbspt-form select::-ms-input-placeholder {
  color: #ADAEB1;
  opacity: 1;
}
.hbspt-form input[type=submit] {
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0;
  white-space: nowrap;
  margin-top: 2rem;
}
.hbspt-form select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%2370747D%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: right 1.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
  color: #2a3e4a;
}
.hbspt-form select::-ms-expand {
  display: none;
}
.hbspt-form select:hover {
  border-color: #888;
}
.hbspt-form select:focus {
  border-color: #aaa;
  box-shadow: 0 0 1px 3px rgba(28, 225, 128, 0.7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #222;
  outline: none;
}
.hbspt-form select option {
  font-weight: normal;
  color: #2a3e4a;
}
.hbspt-form textarea {
  display: block;
  width: 100%;
  border: 1px solid #b8becf;
  border-radius: 0.4rem;
  padding: 2rem;
  margin-top: 1rem;
  color: #2a3e4a;
}
.hbspt-form .actions {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
}
.hbspt-form .hs-button {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  display: inline-block;
  transition: all 0.25s ease-in-out;
  padding: 1.4rem 2.4rem 1.3rem;
  font-size: 1.232rem;
  text-align: center;
  text-transform: uppercase;
  background: #1ce180;
  color: #2a3e4a;
  width: auto;
  border-radius: 0;
}
@media (max-width: 640px) {
  .hbspt-form .hs-button {
    white-space: nowrap;
  }
}
.hbspt-form .hs-button:hover {
  transition: 0.2s ease-in-out;
}
.hbspt-form .hs-button:hover {
  box-shadow: 0 32px 64px 0 rgba(28, 225, 128, 0.1), 0 16px 32px 0 rgba(28, 225, 128, 0.12), 0 8px 16px 0 rgba(28, 225, 128, 0.14), 0 4px 8px 0 rgba(28, 225, 128, 0.16), 0 2px 4px 0 rgba(22, 194, 109, 0.5), 0 1px 2px 0 rgba(24, 185, 106, 0.6);
}

.cta-contain {
  position: relative;
}

.form-cta {
  position: relative;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  background: #ffffff;
  box-shadow: 0 0 5rem rgba(0, 0, 0, 0.2);
  padding: 7rem 10% 4rem 10%;
}
@media (min-width: 641px) {
  .form-cta {
    padding: 7rem 5% 4rem 5%;
    border-radius: 2rem;
  }
}
@media (min-width: 768px) {
  .form-cta {
    border-radius: 1rem;
  }
}
.form-cta h4 {
  font-size: 4rem;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  letter-spacing: -0.15rem;
  margin-top: 0rem;
  margin-bottom: 1rem;
}
@media (min-width: 641px) {
  .form-cta h4 {
    font-size: 6rem;
    margin-top: 5rem;
    margin-bottom: 0rem;
  }
}
.form-cta .product-logo {
  max-width: 12rem;
}
@media (min-width: 641px) {
  .form-cta .product-logo {
    max-width: 100%;
  }
}
.form-cta .form-cta-contain {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 641px) {
  .form-cta .form-cta-contain {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 768px) {
  .form-cta .form-cta-contain {
    -webkit-flex-direction: row;
            flex-direction: row;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
.form-cta .form-info {
  max-width: 50rem;
}
@media (min-width: 641px) {
  .form-cta .form-info {
    padding-right: 3rem;
  }
}
@media (min-width: 1024px) {
  .form-cta .form-info {
    max-width: 44rem;
    margin-right: 10%;
  }
}
.form-cta .form-info p {
  line-height: 1.6;
}
.form-cta .contact-info {
  margin-top: 5rem;
}
.form-cta .contact-info p {
  font-size: 2rem;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  margin-bottom: 2rem;
}
.form-cta .contact-info p span {
  font-size: 1.3rem;
  display: block;
}
.form-cta .form-contain {
  border-top: 1px solid #E6E8EE;
  padding-top: 5rem;
}
@media (min-width: 1024px) {
  .form-cta .form-contain {
    border: 0;
    padding-top: 0.8rem;
  }
}
.form-cta .form-contain p {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 2rem;
}
@media (min-width: 641px) {
  .form-cta .form-contain p {
    font-size: 2rem;
  }
}

:root {
  --subnav-height: 0px;
}

.icon-arrow path {
  fill: transparent;
  stroke: #6F747E;
  stroke-width: 1px;
}

.no-scroll {
  overflow: hidden;
}

.sticky-wrapper {
  position: absolute;
  width: 100%;
  z-index: 100;
  height: 80px;
}

.announcement-cta {
  position: relative;
  background-color: #102734;
  height: 94px;
  display: none;
  -webkit-align-items: center;
          align-items: center;
  background: linear-gradient(90deg, #102734 40%, #25363F 60%);
  z-index: 101;
  display: none;
}
@media (min-width: 768px) {
  .show-announcement-banner .announcement-cta {
    display: -webkit-flex;
    display: flex;
  }
}
.announcement-cta .container {
  position: relative;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 94px;
}
.announcement-cta .container::before, .announcement-cta .container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.announcement-cta .container::before {
  z-index: 1;
  background: linear-gradient(90deg, #171a19 0%, #171a19 56.87%, rgba(23, 26, 25, 0) 67.22%, rgba(23, 26, 25, 0) 80%, #171a19 85%, #171a19 100%);
}
.announcement-cta .container::after {
  z-index: 1;
  background: linear-gradient(90deg, #102734 0%, #2a3e4a 34.26%, rgba(42, 62, 74, 0.83) 44.51%, rgba(42, 62, 74, 0.38) 63.24%, rgba(42, 62, 74, 0.1) 73.5%, rgba(42, 62, 74, 0.59) 80%, #2a3e4a 90.16%);
  opacity: 0.8;
}
.announcement-cta .content {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  height: 100%;
  width: 100%;
}
.announcement-cta .call, .announcement-cta .action {
  position: relative;
  z-index: 2;
}
.announcement-cta .call {
  max-width: calc(100% - 30rem);
}
.announcement-cta .action {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.announcement-cta .link {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  line-height: 1.15;
}
.announcement-cta .link.link--large {
  font-size: 17px;
  letter-spacing: 0.04em;
}
@media (min-width: 1100px) {
  .announcement-cta .link.link--large {
    font-size: 20px;
  }
}
.announcement-cta .link.link--green {
  color: #1ce180;
}
.announcement-cta .overline {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #1ce180;
  text-transform: uppercase;
  margin-bottom: 0.15em;
}
.announcement-cta .heading {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 24px;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.1;
  color: #ffffff;
}
.announcement-cta video {
  z-index: 0;
  position: absolute;
  top: 0;
  right: 14.75%;
  height: 100%;
}
.announcement-cta .close {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-left: 40px;
  padding: 5px;
  transition: 0.2s ease-in-out;
}
.announcement-cta .close:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.announcement-cta .close:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.cd-morph-dropdown {
  position: relative;
  top: 0;
  height: 60px;
  width: 100vw;
  z-index: 100;
  background-color: transparent;
  transition: 0.3s;
}
.cd-morph-dropdown.stuck:not(.at_top) {
  position: fixed;
  top: 0;
  background-color: #ffffff;
}
.cd-morph-dropdown.stuck:not(.at_top):not(.transparent) {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.04), 0 4px 4px rgba(0, 0, 0, 0.04), 0 8px 8px rgba(0, 0, 0, 0.04), 0 16px 16px rgba(0, 0, 0, 0.04), 0 32px 32px rgba(0, 0, 0, 0.04);
}
@media (max-width: 1023px) {
  .cd-morph-dropdown .main-nav {
    background-color: #ffffff !important;
  }
  .cd-morph-dropdown .buxton-logo path {
    fill: #2a3e4a !important;
  }
}
.cd-morph-dropdown.nav-open:not(.transparent) .main-nav {
  background-color: #ffffff;
}
@media (max-width: 767px) {
  .cd-morph-dropdown.transparent:not(.nav-open) .buxton-logo path {
    fill: #ffffff;
  }
}
.cd-morph-dropdown.show-shadow {
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.04), 0 4px 4px rgba(0, 0, 0, 0.04), 0 8px 8px rgba(0, 0, 0, 0.04), 0 16px 16px rgba(0, 0, 0, 0.04), 0 32px 32px rgba(0, 0, 0, 0.04);
}
.cd-morph-dropdown.white-bg {
  background-color: #ffffff !important;
}
.cd-morph-dropdown::before {
  /* never visible - used in JS to check mq */
  content: "mobile";
  display: none;
}
.cd-morph-dropdown .nav-trigger {
  /* menu icon - visible on small screens only */
  position: relative;
  top: -2px;
  height: 18px;
  width: 26px;
  /* replace text with icon */
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  color: transparent !important;
  display: block;
}
.cd-morph-dropdown .nav-trigger span, .cd-morph-dropdown .nav-trigger span::after, .cd-morph-dropdown .nav-trigger span::before {
  /* these are the 3 lines of the menu icon */
  position: absolute;
  background-color: #2a3e4a;
  height: 0.15rem;
  width: 26px;
}
.cd-morph-dropdown .nav-trigger span {
  left: 50%;
  top: 50%;
  bottom: auto;
  right: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  transition: background-color 0.3s;
}
.cd-morph-dropdown .nav-trigger span::after, .cd-morph-dropdown .nav-trigger span::before {
  content: "";
  left: 0;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
.cd-morph-dropdown .nav-trigger span::before {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}
.cd-morph-dropdown .nav-trigger span::after {
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
}
.cd-morph-dropdown .buxton-logo {
  width: 12rem;
  max-width: none;
}
@media (max-width: 640px) {
  .cd-morph-dropdown.all-white.at_top:not(.nav-open) .buxton-logo path {
    fill: #ffffff;
  }
}
.cd-morph-dropdown.nav-open .nav-trigger span {
  background-color: transparent;
}
.cd-morph-dropdown.nav-open .nav-trigger span::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.cd-morph-dropdown.nav-open .nav-trigger span::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.cd-morph-dropdown .main-nav {
  position: relative;
  z-index: 2;
}
.cd-morph-dropdown .main-nav ul {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  height: 60px;
  padding: 0 5%;
}
.cd-morph-dropdown .main-nav li {
  display: none;
}
.cd-morph-dropdown .main-nav li:first-child, .cd-morph-dropdown .main-nav li:last-child {
  display: block;
}
.cd-morph-dropdown .morph-dropdown-wrapper {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100vh - 60px);
  height: calc((var(--vh, 1vh) * 100) - 60px);
  -webkit-transform: translateY(calc(-100% - 60px));
          transform: translateY(calc(-100% - 60px));
  box-shadow: inset 0 1px 0 #e6e6e6;
  background-color: white;
  z-index: 1;
  transition: 0.5s ease;
}
@media (min-width: 768px) {
  .cd-morph-dropdown .morph-dropdown-wrapper {
    height: calc(100vh - 154px);
    height: calc((var(--vh, 1vh) * 100) - 154px);
    -webkit-transform: translateY(calc(-100% - 154px));
            transform: translateY(calc(-100% - 154px));
  }
}
@media (min-width: 1024px) {
  .cd-morph-dropdown .morph-dropdown-wrapper {
    height: calc(100vh - 60px);
    height: calc((var(--vh, 1vh) * 100) - 60px);
    -webkit-transform: translateY(calc(-100% - 60px));
            transform: translateY(calc(-100% - 60px));
  }
}
.cd-morph-dropdown .dropdown-list {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  overflow: auto;
  padding-top: 2rem;
}
.cd-morph-dropdown .dropdown-list > ul {
  -webkit-flex: 1;
          flex: 1;
  padding-bottom: 15rem;
}
@media (min-width: 1024px) {
  .cd-morph-dropdown .dropdown-list > ul {
    padding-bottom: 0;
  }
}
.cd-morph-dropdown .dropdown-list > .nav-label {
  background-color: #ffffff;
}
@media (max-width: 640px) {
  .cd-morph-dropdown .dropdown-list > .nav-label {
    padding-bottom: 1rem;
  }
}
.cd-morph-dropdown.nav-open .morph-dropdown-wrapper {
  display: block;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.cd-morph-dropdown .dropdown.open-content .content {
  margin-top: 0;
}
.cd-morph-dropdown .dropdown.open-content .toggle {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.cd-morph-dropdown .nav-label {
  display: block;
  font-size: 2rem;
  color: #2a3e4a;
  margin-top: 0.8em;
  margin-bottom: 0.8em;
  padding-left: 5%;
  padding-right: 5%;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  cursor: pointer;
}
.cd-morph-dropdown .nav-label a:not(.btn) {
  color: #2a3e4a;
}
.cd-morph-dropdown .nav-label p {
  font-size: 2rem;
}
.cd-morph-dropdown .nav-label p a {
  color: #1ce180;
}
.cd-morph-dropdown .nav-label.stick-bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #E6E8EE;
  margin: 0;
  padding: 16px 5%;
  z-index: 10;
}
.cd-morph-dropdown .nav-label.stick-bottom .actions {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
}
.cd-morph-dropdown .nav-label.stick-bottom .btn:first-child {
  width: calc(75% - 5px);
}
.cd-morph-dropdown .nav-label.stick-bottom .btn:last-child {
  width: calc(25% - 5px);
}
.cd-morph-dropdown .dropdown .nav-label {
  display: -webkit-flex;
  display: flex;
}
.cd-morph-dropdown .dropdown .toggle {
  margin-left: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  -webkit-transform-origin: center center;
          transform-origin: center center;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  transition: 0.3s ease-in-out;
}
.cd-morph-dropdown .dropdown .toggle > span {
  height: 24px;
  width: 24px;
  border-radius: 12px;
  background-color: #E6E8EE;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}
.cd-morph-dropdown .content {
  background: #F3F3F5;
  transition: 0.5s ease;
  margin-top: -15px;
  padding: 0;
}
.cd-morph-dropdown .gallery.open-content .content {
  padding: 8px;
}
.cd-morph-dropdown .gallery .content {
  /* you need to set a width for the .content elements because they have a position absolute */
  width: 100%;
  display: -webkit-flex;
  display: flex;
}
@media (min-width: 1024px) {
  .cd-morph-dropdown .gallery .content {
    padding: 8px;
  }
}
.cd-morph-dropdown .gallery .content.show {
  display: -webkit-flex;
  display: flex;
}
.cd-morph-dropdown .gallery .content.industries .content-container .groups {
  -ms-grid-rows: (1fr)[3] 0.75fr;
  grid-template-rows: repeat(3, 1fr) 0.75fr;
}
.cd-morph-dropdown .gallery .content.company .content-container .groups {
  padding: 30px 24px;
  display: block;
}
.cd-morph-dropdown .gallery .content.company .content-container .groups .group:not(:last-child) {
  margin-bottom: 30px;
}
@media (min-width: 641px) {
  .cd-morph-dropdown .gallery .content.company .content-container .groups {
    display: -ms-grid;
    display: grid;
    -ms-grid-rows: (1fr)[2];
    grid-template-rows: repeat(2, 1fr);
    -ms-grid-columns: 1fr 0.65fr;
    grid-template-columns: 1fr 0.65fr;
  }
  .cd-morph-dropdown .gallery .content.company .content-container .groups .group:not(:last-child) {
    margin-bottom: 0;
  }
}
.cd-morph-dropdown .gallery .content.media .content-container .groups {
  display: block;
}
@media (min-width: 1024px) {
  .cd-morph-dropdown .gallery .content.industries {
    width: 850px;
  }
  .cd-morph-dropdown .gallery .content.company {
    width: 930px;
  }
  .cd-morph-dropdown .gallery .content.media {
    width: 590px;
    min-height: 385px;
  }
}
.cd-morph-dropdown .gallery .content .promo {
  position: relative;
  width: 310px;
  background-color: #2a3e4a;
  border-radius: 4px;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  -webkit-align-items: flex-end;
          align-items: flex-end;
  overflow: hidden;
  display: none;
}
@media (min-width: 768px) {
  .cd-morph-dropdown .gallery .content .promo {
    display: -webkit-flex;
    display: flex;
  }
}
.cd-morph-dropdown .gallery .content .promo figure {
  z-index: 0;
}
.cd-morph-dropdown .gallery .content .promo figure::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0.5) 100%);
  opacity: 0.5;
  z-index: 1;
}
.cd-morph-dropdown .gallery .content .promo figure img, .cd-morph-dropdown .gallery .content .promo figure video {
  position: relative;
  z-index: 0;
}
.cd-morph-dropdown .gallery .content .promo .promo-content {
  position: relative;
  z-index: 1;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: flex-end;
          justify-content: flex-end;
  padding: 30px 40px 40px 55px;
}
.cd-morph-dropdown .gallery .content .promo .label {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 1.5em;
  padding-left: 0;
}
.cd-morph-dropdown .gallery .content .promo .heading {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 26px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 0.5em;
}
.cd-morph-dropdown .gallery .content .promo .copy {
  margin-bottom: 20px;
}
.cd-morph-dropdown .gallery .content .promo .copy p {
  color: #ffffff;
  margin-bottom: 0.55em;
}
.cd-morph-dropdown .gallery .content .content-container {
  width: 100%;
}
@media (min-width: 768px) {
  .cd-morph-dropdown .gallery .content .content-container {
    width: calc(100% - 310px);
  }
}
.cd-morph-dropdown .gallery .content .groups {
  width: 100%;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (1fr)[2];
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  padding: 30px 24px 16px;
}
.cd-morph-dropdown .gallery .content .group:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
}
.cd-morph-dropdown .gallery .content .group:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 1/2/2/3;
}
.cd-morph-dropdown .gallery .content .group:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 2/1/3/2;
}
.cd-morph-dropdown .gallery .content .group:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 2/2/3/3;
}
.cd-morph-dropdown .gallery .content .group:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 3/1/4/2;
}
.cd-morph-dropdown .gallery .content .group:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 3/2/4/3;
}
.cd-morph-dropdown .gallery .content .group:nth-child(7) {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 4/1/5/2;
}
.cd-morph-dropdown .gallery .content .group:nth-child(8) {
  -ms-grid-row: 4;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-area: 4/2/5/3;
}
.cd-morph-dropdown .gallery .content .group:nth-last-child(2) a.subnav-link, .cd-morph-dropdown .gallery .content .group:last-child a.subnav-link {
  margin-bottom: 0;
}
.cd-morph-dropdown .gallery .content .group.careers .jobs {
  margin-bottom: 14px;
}
.cd-morph-dropdown .gallery .content .group.address .buxton-logo {
  height: 14px;
  width: auto;
  padding-bottom: 0;
}
.cd-morph-dropdown .gallery .content .group.address .buxton-logo path {
  fill: #7C889C;
}
.cd-morph-dropdown .gallery .content .group.address li {
  margin-bottom: 5px;
}
.cd-morph-dropdown .gallery .content .group.address li a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: baseline;
          align-items: baseline;
  line-height: 1.15;
}
.cd-morph-dropdown .gallery .content .group.address .icon {
  padding-right: 14px;
}
.cd-morph-dropdown .gallery .content .group.address .ic_map_pin {
  width: 15px;
  fill: #1ce180;
  position: relative;
  top: 5px;
}
.cd-morph-dropdown .gallery .content .group.address .ic_phone {
  width: 17px;
  fill: #1ce180;
}
.cd-morph-dropdown .gallery .content .group.address .ic_email {
  width: 16px;
  fill: #1ce180;
}
.cd-morph-dropdown .gallery .content .group .content {
  padding: 24px;
}
@media (min-width: 641px) {
  .cd-morph-dropdown .gallery .content .group p, .cd-morph-dropdown .gallery .content .group a.link {
    margin-left: 16px;
  }
}
.cd-morph-dropdown .gallery .content .group p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #2a3e4a;
}
.cd-morph-dropdown .gallery .content .group a.subnav-link {
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  color: #2a3e4a;
  padding: 6px 0;
  border-radius: 3px;
  transition: 0.15s ease-in-out;
}
@media (min-width: 641px) {
  .cd-morph-dropdown .gallery .content .group a.subnav-link {
    padding-left: 16px;
  }
}
.cd-morph-dropdown .gallery .content .group a.subnav-link:hover {
  background-color: #F3F3F5;
}
.cd-morph-dropdown .label {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  line-height: 1.1;
  color: #7C889C;
  text-transform: uppercase;
  margin-bottom: 0.75em;
  margin-top: 0.75em;
}
@media (min-width: 641px) {
  .cd-morph-dropdown .label {
    padding-left: 16px;
  }
}
.cd-morph-dropdown .btn {
  display: block;
}
@media (min-width: 1024px) {
  .cd-morph-dropdown {
    height: 80px;
    width: 100%;
    padding: 0;
    text-align: center;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
  }
  .cd-morph-dropdown::before {
    content: "desktop";
  }
  .cd-morph-dropdown .nav-trigger {
    display: none;
  }
  .cd-morph-dropdown .buxton-logo {
    padding-bottom: 7px;
    margin-right: 2rem;
  }
  .cd-morph-dropdown .buxton-logo path {
    fill: #2a3e4a;
  }
  .cd-morph-dropdown.all-white.at_top .buxton-logo path {
    fill: #2a3e4a;
  }
  .cd-morph-dropdown.show-nav:not(.nav-open) .buxton-logo path, .cd-morph-dropdown.stuck:not(.nav-open) .buxton-logo path {
    fill: #2a3e4a;
  }
  .cd-morph-dropdown .has-dropdown {
    cursor: context-menu;
  }
  .cd-morph-dropdown .has-dropdown > a::after, .cd-morph-dropdown .has-dropdown > span::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 3px 0 3px;
    border-color: #2a3e4a transparent transparent transparent;
    margin-left: 6px;
    position: relative;
    top: 1px;
  }
  .cd-morph-dropdown.show-nav .has-dropdown > a, .cd-morph-dropdown.show-nav .has-dropdown > span::after, .cd-morph-dropdown.stuck .has-dropdown > a, .cd-morph-dropdown.stuck .has-dropdown > span::after {
    border-color: #2a3e4a transparent transparent transparent;
  }
  .cd-morph-dropdown.transparent .has-dropdown > a, .cd-morph-dropdown.transparent .has-dropdown > span::after {
    border-color: #2a3e4a transparent transparent transparent;
  }
  .cd-morph-dropdown .main-nav {
    display: inline-block;
    max-width: calc(1280px + 10%);
    margin-left: auto;
    margin-right: auto;
    padding: 0 5%;
    width: 100%;
    background-color: transparent;
  }
  .cd-morph-dropdown .main-nav ul {
    display: -webkit-flex;
    display: flex;
    padding: 0;
  }
  .cd-morph-dropdown .main-nav li {
    display: block;
  }
  .cd-morph-dropdown .main-nav li:first-child a {
    padding-left: 0;
  }
  .cd-morph-dropdown .main-nav li:last-child {
    display: none;
  }
  .cd-morph-dropdown .main-nav li.push-right {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    margin-left: auto;
  }
  .cd-morph-dropdown .main-nav li.push-right .btn {
    margin-top: 0;
    background-color: #2a3e4a;
    color: #ffffff;
  }
  .cd-morph-dropdown .main-nav li.push-right .link {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    margin: 0 3.2em;
    color: #2a3e4a;
    font-size: 1.6rem;
    transition: opacity 0.2s;
  }
  .cd-morph-dropdown .main-nav li.push-right .link.link--small {
    font-size: 1.3rem;
  }
  .cd-morph-dropdown .main-nav li.push-right .no-mr {
    margin-right: 0;
  }
  .cd-morph-dropdown .main-nav li.push-right *:last-child {
    margin-right: 0;
  }
  .cd-morph-dropdown.all-white.at_top .main-nav li.push-right .link {
    color: #ffffff;
  }
  .cd-morph-dropdown.all-white.at_top .main-nav li.push-right .btn {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
  }
  .cd-morph-dropdown.show-nav.all-white.at_top .main-nav li.push-right .link, .cd-morph-dropdown.stuck.all-white.at_top .main-nav li.push-right .link {
    color: #ffffff;
  }
  .cd-morph-dropdown.show-nav.all-white.at_top .main-nav li.push-right .btn, .cd-morph-dropdown.stuck.all-white.at_top .main-nav li.push-right .btn {
    background-color: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
  }
  .cd-morph-dropdown.show-nav .main-nav li.push-right .link, .cd-morph-dropdown.stuck .main-nav li.push-right .link {
    color: #2a3e4a;
  }
  .cd-morph-dropdown.show-nav .main-nav li.push-right .btn, .cd-morph-dropdown.stuck .main-nav li.push-right .btn {
    background-color: #2a3e4a;
    color: #ffffff;
    border: 0;
  }
  .cd-morph-dropdown.show-nav .main-nav li.push-right .btn:hover, .cd-morph-dropdown.stuck .main-nav li.push-right .btn:hover {
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
    box-shadow: 0 2px 2px rgba(42, 62, 74, 0.04), 0 4px 4px rgba(42, 62, 74, 0.04), 0 8px 8px rgba(42, 62, 74, 0.04), 0 16px 16px rgba(42, 62, 74, 0.04), 0 32px 32px rgba(42, 62, 74, 0.04);
  }
  .cd-morph-dropdown .main-nav > ul > li > .parent-link {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    padding: 0 1em;
    height: 70px;
    line-height: 80px;
    font-size: 1.4rem;
    transition: opacity 0.2s;
  }
  .cd-morph-dropdown.show-nav .main-nav > ul > li > .parent-link, .cd-morph-dropdown.show-nav .main-nav > ul > li > .parent-link:visited, .cd-morph-dropdown.stuck .main-nav > ul > li > .parent-link, .cd-morph-dropdown.stuck .main-nav > ul > li > .parent-link:visited {
    color: #2a3e4a;
  }
  .cd-morph-dropdown.transparent .main-nav > ul > li > .parent-link, .cd-morph-dropdown.transparent .main-nav > ul > li > .parent-link:visited {
    color: #2a3e4a;
  }
  .cd-morph-dropdown.is-dropdown-visible .main-nav > ul > li > .parent-link {
    /* main navigation hover effect - on hover, reduce opacity of elements not hovered over */
    opacity: 0.6;
  }
  .cd-morph-dropdown.is-dropdown-visible .main-nav > ul > li.active > .parent-link {
    opacity: 1;
  }
  .cd-morph-dropdown .morph-dropdown-wrapper {
    /* dropdown wrapper - used to create the slide up/slide down effect when dropdown is revealed/hidden */
    display: block;
    position: absolute;
    top: 58px;
    /* overwrite mobile style */
    width: auto;
    padding: 0;
    box-shadow: none;
    background-color: transparent;
    /* Force Hardware acceleration */
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    will-change: transform;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  .cd-morph-dropdown.is-dropdown-visible .morph-dropdown-wrapper {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .cd-morph-dropdown .dropdown-list {
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    overflow: visible;
    padding-top: 0;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    will-change: transform, width, height;
    transition: visibility 0.3s;
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.05), 0 2px 2px rgba(0, 0, 0, 0.05), 0 4px 4px rgba(0, 0, 0, 0.05), 0 8px 8px rgba(0, 0, 0, 0.05), 0 16px 16px rgba(0, 0, 0, 0.05), 0 32px 32px rgba(0, 0, 0, 0.05);
    border-radius: 6px;
  }
  .no-csstransitions .cd-morph-dropdown .dropdown-list {
    display: none;
  }
  .cd-morph-dropdown .dropdown-list .menu-indicator {
    position: absolute;
    top: -8px;
    left: 50%;
    right: auto;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 8px;
    width: 30px;
    opacity: 0;
    transition: 0.3s;
  }
  .cd-morph-dropdown .dropdown-list > ul {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    overflow: hidden;
  }
  .cd-morph-dropdown.is-dropdown-visible .dropdown-list {
    visibility: visible;
    transition: width 0.3s, height 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, width 0.3s, height 0.3s;
    transition: transform 0.3s, width 0.3s, height 0.3s, -webkit-transform 0.3s;
  }
  .cd-morph-dropdown.is-dropdown-visible .dropdown-list .menu-indicator {
    opacity: 1;
  }
  .cd-morph-dropdown .dropdown {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    visibility: hidden;
    width: 100%;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .cd-morph-dropdown .dropdown.active {
    opacity: 1;
    visibility: visible;
  }
  .cd-morph-dropdown .dropdown .nav-label {
    display: none;
  }
  .cd-morph-dropdown .nav-label {
    /* hide the nav-label on bigger devices */
    display: none;
  }
  .cd-morph-dropdown .nav-label a {
    color: #2a3e4a;
  }
  .cd-morph-dropdown .nav-label.stick-bottom {
    display: none;
  }
  .cd-morph-dropdown .content {
    margin-top: 0;
    max-height: 100%;
    overflow: visible;
    background-color: white;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
    text-align: left;
  }
  .cd-morph-dropdown .content > ul > li {
    margin-top: 0;
  }
  .cd-morph-dropdown .content > ul > li:nth-of-type(2n) {
    margin-right: 0;
  }
  .cd-morph-dropdown .links .content {
    padding: 2.8rem 3rem;
  }
  .cd-morph-dropdown .links .content > ul > li {
    margin-top: 0;
    margin-bottom: 0;
  }
  .cd-morph-dropdown .links .content,
.cd-morph-dropdown .button .content {
    width: 270px;
  }
  .cd-morph-dropdown .links-list {
    padding: 0;
  }
  .cd-morph-dropdown .links-list a {
    font-size: 1.6rem;
    margin-left: 0;
    padding: 1rem 0.6rem;
    transition: 0.25s ease;
  }
  .cd-morph-dropdown .links-list a:hover {
    color: #1ce180;
  }
  .cd-morph-dropdown .btn {
    display: block;
    width: auto;
    margin: 1.5em 0 0;
  }
  .cd-morph-dropdown .btn:hover {
    background: #2a3e4a;
    color: white;
  }
  .cd-morph-dropdown .content h2 {
    font-size: 1.8rem;
    text-transform: none;
    font-weight: normal;
    color: #2a3e4a;
    margin: 0 0 0.6em;
  }
  .cd-morph-dropdown .bg-layer {
    /* morph dropdown background */
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 1px;
    background: white;
    opacity: 0;
    transition: opacity 0.3s;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
    will-change: transform;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    border-radius: 6px;
  }
  .cd-morph-dropdown.is-dropdown-visible .bg-layer {
    opacity: 1;
    transition: opacity 0.3s, -webkit-transform 0.3s;
    transition: transform 0.3s, opacity 0.3s;
    transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  }
}
@media (min-width: 1100px) {
  .cd-morph-dropdown .main-nav > ul > li > .parent-link {
    font-size: 1.6rem;
  }
}
@media (min-width: 1280px) {
  .cd-morph-dropdown .main-nav > ul > li > .parent-link {
    padding: 0 1.8rem;
  }
}

footer {
  background-color: #2a3e4a;
  padding: 6rem 10% 5rem;
}
@media (min-width: 768px) {
  footer {
    padding: 6rem 5% 5rem;
  }
}
footer .contain {
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
footer .buxton-logo {
  width: 100%;
  margin-bottom: 3rem;
  padding-right: 2rem;
}
@media (min-width: 641px) {
  footer .buxton-logo {
    margin-right: auto;
    width: 14rem;
  }
}
footer .buxton-logo svg {
  width: 14rem;
}
footer .buxton-logo svg path {
  fill: #1ce180;
}
footer .buxton-logo img {
  width: 14rem;
}
footer .links-contain {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 641px) {
  footer .links-contain {
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
}
footer .links-contain ul {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  list-style-type: none;
}
footer .links-contain ul a {
  color: #ADAEB1;
}
footer .links-contain lh {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: -0.02em;
  color: #1ce180;
  margin-bottom: 1.5rem;
  display: block;
}
footer .links-contain li {
  margin-bottom: 1rem;
}
footer .links-contain li a {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1em;
  color: #ffffff;
}
footer .links {
  margin-top: 2rem;
}
@media (min-width: 641px) {
  footer .links {
    margin-top: 0;
    margin-left: 5rem;
  }
}
footer .links:first-child {
  margin-left: 0;
}
footer .copyright-social {
  margin-top: 7rem;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
@media (min-width: 750px) {
  footer .copyright-social {
    margin-top: 20rem;
  }
}
@media (min-width: 1024px) {
  footer .copyright-social {
    -webkit-flex-direction: row;
            flex-direction: row;
  }
}
footer .copyright a, footer .copyright span, footer .copyright address {
  font-size: 1.3rem;
  line-height: 1.5;
  color: #A8A8AC;
  display: block;
}
@media (min-width: 750px) {
  footer .copyright a, footer .copyright span, footer .copyright address {
    display: inline;
    line-height: 1;
  }
}
footer .copyright .pipe {
  padding: 0 1rem;
  display: none;
}
@media (min-width: 750px) {
  footer .copyright .pipe {
    display: inline;
  }
}
footer .copyright address {
  display: block;
  font-style: normal;
  padding-top: 0.5em;
}
footer .terms-links {
  margin-top: 1rem;
}
footer .social {
  margin-top: 3rem;
}
@media (min-width: 1024px) {
  footer .social {
    margin-top: 0;
    margin-left: auto;
  }
}
footer .social a {
  margin-right: 3rem;
}
footer.light {
  background-color: #F3F3F5;
}
footer.light .buxton-logo svg path {
  fill: #2a3e4a;
}
footer.light .links-contain lh {
  color: #333;
}
footer.light .links-contain li a {
  color: #505050;
}
footer.light .copyright a, footer.light .copyright span, footer.light .copyright address {
  color: #505050;
}

section.bloq--clients {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
@media (min-width: 641px) {
  section.bloq--clients {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
}
section.bloq--clients h2 {
  font-size: 4.5rem;
  font-size: clamp(3.6rem, 8vw, 4.5rem);
  line-height: 1.1;
}
section.bloq--clients .logos {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
          justify-content: center;
  max-width: 1084px;
  margin-bottom: 3.6rem;
}
@media (min-width: 768px) {
  section.bloq--clients .logos {
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
}
section.bloq--clients .logos .logo {
  margin: 3rem 0;
  width: 50%;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
}
@media (min-width: 600px) {
  section.bloq--clients .logos .logo {
    width: 33%;
  }
}
@media (min-width: 768px) {
  section.bloq--clients .logos .logo {
    width: 25%;
  }
}
section.bloq--clients .logos .logo img {
  max-width: 80%;
  max-height: 80%;
}
section.bloq--clients .logos .logo img.bed-bath-and-beyond {
  max-width: 14rem;
}
section.bloq--clients .logos .logo img.restoration-hardware {
  max-width: 9rem;
}
@media (min-width: 600px) {
  section.bloq--clients .logos .logo img.mercy {
    max-width: 14.2rem;
  }
  section.bloq--clients .logos .logo img.restoration-hardware {
    max-width: 11rem;
  }
  section.bloq--clients .logos .logo img.quest-diagnostics {
    max-width: 18rem;
  }
  section.bloq--clients .logos .logo img.jersey-mikes-subs {
    min-width: 11rem;
  }
  section.bloq--clients .logos .logo img.red-wing-shoes {
    max-width: 11.1rem;
  }
  section.bloq--clients .logos .logo img.urban-outfitters {
    max-width: 18.2rem;
  }
  section.bloq--clients .logos .logo img.potential-fitness {
    max-width: 15.4rem;
  }
}
section.bloq--clients .case-study {
  max-width: 945px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  margin-top: 2rem;
}
@media (min-width: 641px) {
  section.bloq--clients .case-study {
    display: -webkit-flex;
    display: flex;
  }
}
section.bloq--clients .case-study figure {
  position: relative;
  background-color: #ADAEB1;
  width: 100%;
  height: 250px;
  -webkit-flex-grow: 1;
          flex-grow: 1;
}
@media (min-width: 641px) {
  section.bloq--clients .case-study figure {
    height: auto;
    width: 200px;
  }
}
@media (min-width: 768px) {
  section.bloq--clients .case-study figure {
    width: 250px;
  }
  section.bloq--clients .case-study figure:hover .icon-play {
    -webkit-transform: translate(-50%, -50%) scale(1.05);
            transform: translate(-50%, -50%) scale(1.05);
  }
  section.bloq--clients .case-study figure:hover .icon-play .triangle {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
section.bloq--clients .case-study figure .icon-play {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  height: 67px;
  width: 67px;
  transform-box: fill-box;
  -webkit-transform-origin: center;
          transform-origin: center;
  transition: 0.5s ease-in-out;
}
section.bloq--clients .case-study figure .icon-play .background, section.bloq--clients .case-study figure .icon-play .triangle {
  transform-box: fill-box;
  -webkit-transform-origin: center;
          transform-origin: center;
  transition: 0.5s ease-in-out;
}
section.bloq--clients .case-study .content {
  padding: 3.5rem 2.8rem 2.8rem;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: flex-start;
          align-items: flex-start;
}
@media (min-width: 641px) {
  section.bloq--clients .case-study .content {
    width: calc(100% - 200px);
    padding: 3.5rem 5rem 2.8rem;
  }
}
@media (min-width: 768px) {
  section.bloq--clients .case-study .content {
    width: calc(100% - 285px);
  }
}
section.bloq--clients .case-study .content p {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  line-height: 1.425;
  color: #2a3e4a;
  width: 100%;
}
@media (min-width: 641px) {
  section.bloq--clients .case-study .content p {
    font-size: 2rem;
  }
}
section.bloq--clients .case-study .content a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  margin-top: 1.6rem;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: -0.02em;
  line-height: 1;
}
section.bloq--clients .case-study .content a svg {
  width: 4px;
  height: 10px;
  margin-left: 1rem;
  transition: 0.25s ease-in-out;
}
section.bloq--clients .case-study .content a svg path {
  stroke: #1ce180;
}
section.bloq--clients .case-study .content a:hover svg {
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}
section.bloq--clients .view-more {
  margin-top: 4rem;
  text-align: center;
}

.heading-line {
  position: relative;
}
.heading-line::before {
  content: "";
  display: block;
  margin-bottom: 2.25rem;
  height: 1px;
  width: 0;
  background-color: #1CDA80;
  will-change: width;
  transition: 0.5s ease-out;
}
.heading-line.in-view::before {
  width: 90px;
}

.padding {
  padding-left: 10%;
  padding-right: 10%;
}
@media (min-width: 641px) {
  .padding {
    padding-left: 5%;
    padding-right: 5%;
  }
}

.mast h1 {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 7vw;
}
@media (min-width: 641px) {
  .mast h1 {
    font-size: 4.6rem;
    line-height: 1.1;
  }
}

h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 6.5vw;
  line-height: 8vw;
  color: #2a3e4a;
}
@media (min-width: 630px) {
  h2 {
    font-size: 3.6rem;
    line-height: 1.1;
  }
}
h2 .hide-overflow {
  padding: 10px 0;
}
.section-with-cta h2 {
  max-width: 400px;
  margin: 40px 0 30px 0;
}
.model-definition h2 {
  font-size: 1.6rem;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #2a3e4a;
}
.scout h2 {
  font-size: 8vw;
  line-height: 9vw;
  text-align: center;
  color: white;
  width: 100%;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 800px) {
  .scout h2 {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 630px) {
  .scout h2 {
    font-size: 3.6rem;
    line-height: 1.25;
  }
}
.mobile-insights h2 {
  font-size: 6vw;
  line-height: 7vw;
  text-align: center;
  color: white;
  margin-bottom: 30px;
  width: 100%;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 800px) {
  .mobile-insights h2 {
    max-width: 770px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 630px) {
  .mobile-insights h2 {
    font-size: 3.6rem;
    line-height: 1.25;
  }
}
.advanced-analysis h2 {
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 800px) {
  .advanced-analysis h2 {
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }
}
.demo-request h2 {
  position: relative;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 8vw;
  line-height: 9vw;
  color: #000000;
  letter-spacing: -1px;
  text-align: left;
  margin-bottom: 20px;
}
@media (min-width: 641px) {
  .demo-request h2 {
    font-size: 4rem;
    line-height: 1.125;
  }
}

.grow h3 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #2a3e4a;
}
.how-does-it-work h3 {
  font-size: 1.4rem;
  color: #1ce180;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  margin: 20px auto 10px auto;
}
.scout h3 {
  font-size: 6vw;
  line-height: 7vw;
  color: white;
  margin-bottom: 15px;
}
@media (min-width: 630px) {
  .scout h3 {
    font-size: 3.6rem;
    line-height: 1.1;
  }
}
.scout h3 .scout-copy {
  color: #1ce180;
}
.advanced-analysis h3 {
  color: #2a3e4a;
  font-size: 6.5vw;
  line-height: 8vw;
  margin-bottom: 20px;
}
@media (min-width: 630px) {
  .advanced-analysis h3 {
    font-size: 3.6rem;
    line-height: 1.1;
    text-align: left;
  }
}

.scout h4 {
  color: white;
  font-size: 6.5vw;
  line-height: 8vw;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
@media (min-width: 630px) {
  .scout h4 {
    font-size: 3.6rem;
    line-height: 1.25;
    max-width: 590px;
    margin-left: auto;
    margin-right: auto;
  }
}

p {
  color: #505050;
  font-size: 1.5rem;
  line-height: 1.625;
}

main {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 50px;
}

.link {
  margin-top: 20px;
  color: #1ce180;
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}

.label {
  position: relative;
  font-size: 1.8rem;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  margin-bottom: 20px;
  color: #7f7f7f;
}
.label.small {
  font-size: 1.2rem;
}
.label.white {
  color: white;
}
.label.yellow {
  color: #1ce180;
}
.label span {
  display: block;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  transition: 0.6s;
}

.cover {
  -o-object-fit: cover;
     object-fit: cover;
}

section.mast {
  position: relative;
  background: #ADAEB1;
  color: white;
  text-align: center;
  padding: 150px 0 90px 0;
  overflow: hidden;
}
@media (min-width: 640px) {
  section.mast {
    padding: 200px 0 200px 0;
  }
}
@media (min-width: 1024px) {
  section.mast {
    padding: 200px 0 140px 0;
  }
}
section.mast::after {
  content: "";
  background-color: #2a3e4a;
  opacity: 0.5;
}
section.mast video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
section.mast .play-video {
  cursor: pointer;
}
section.mast .copy {
  position: relative;
  z-index: 5;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 800px) {
  section.mast .copy {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }
}
section.mast svg {
  position: relative;
  margin-top: 40px;
  width: 100px;
  height: 100px;
  transition: 0.6s;
  -webkit-transform: scale(1);
          transform: scale(1);
}
section.mast svg:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
@media (min-width: 641px) {
  section.mast svg {
    width: 120px;
    height: 120px;
  }
}
section.grow {
  padding: 50px 0;
}
@media (min-width: 641px) {
  section.grow {
    padding: 100px 0;
  }
}
section.grow .copy {
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 800px) {
  section.grow .copy {
    max-width: 675px;
    margin-left: auto;
    margin-right: auto;
  }
}
section.grow .items-contain {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 800px) {
  section.grow .items-contain {
    max-width: 975px;
    margin-left: auto;
    margin-right: auto;
  }
}
section.grow .item {
  margin: 60px auto 0 auto;
  text-align: center;
}
@media (min-width: 641px) {
  section.grow .item {
    max-width: 40%;
    -webkit-flex: 1 1 40%;
            flex: 1 1 40%;
  }
}
@media (min-width: 1024px) {
  section.grow .item {
    max-width: 20%;
    -webkit-flex: 1 1 20%;
            flex: 1 1 20%;
  }
}
@media (min-width: 1024px) {
  section.grow .item.third {
    max-width: 25%;
    -webkit-flex: 1 1 25%;
            flex: 1 1 25%;
  }
}
section.how-does-it-work {
  background: #f3f3f3;
  padding: 100px 0;
}
section.how-does-it-work .copy {
  text-align: center;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 800px) {
  section.how-does-it-work .copy {
    max-width: 675px;
    margin-left: auto;
    margin-right: auto;
  }
}
section.how-does-it-work .items-contain {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-align-items: center;
          align-items: center;
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}
@media (min-width: 768px) {
  section.how-does-it-work .items-contain {
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-align-items: baseline;
            align-items: baseline;
    margin-top: 0;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 850px) {
  section.how-does-it-work .items-contain {
    max-width: 820px;
    margin-left: auto;
    margin-right: auto;
  }
}
section.how-does-it-work .item {
  text-align: center;
  margin: 20px 0;
}
@media (min-width: 768px) {
  section.how-does-it-work .item {
    margin: 0 20px;
  }
}
section.how-does-it-work .item.icon {
  margin: 30px auto;
}
@media (min-width: 768px) {
  section.how-does-it-work .item.icon {
    max-width: 27%;
    margin: 60px auto 0 auto;
  }
}
section.how-does-it-work .item p {
  font-size: 1.6rem;
  line-height: 1.125;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}
section.how-does-it-work .item svg path, section.how-does-it-work .item svg line {
  stroke-width: 1.5px;
}
section.custom-data {
  padding: 100px 0 0 0;
}
section.custom-data .headline {
  text-align: center;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 600px) {
  section.custom-data .headline {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
}
section.custom-data .headline img {
  margin-bottom: 25px;
}
section.custom-data .button-contain {
  position: relative;
}
section.custom-data .line {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  height: 1px;
  background: #cdcdcd;
}
section.custom-data .buttons {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
  margin-bottom: 40px;
}
@media (min-width: 641px) {
  section.custom-data .buttons {
    margin-bottom: 60px;
  }
}
section.custom-data .buttons .button {
  height: 30px;
  width: 30px;
  line-height: 30px;
  text-align: center;
  border: 1px solid #cdcdcd;
  border-radius: 15px;
  background: white;
  font-size: 1.4rem;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  color: #ADAEB1;
  margin: auto;
  transition: 0.6s;
  cursor: pointer;
}
section.custom-data .buttons .button.pulse {
  -webkit-animation: 0.5s pulse infinite linear;
          animation: 0.5s pulse infinite linear;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
section.custom-data .buttons .button:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
section.custom-data .buttons .button.active {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  background: #1ce180;
  border: 1px solid #17bd6b;
  color: white;
  -webkit-animation: none;
          animation: none;
}
section.custom-data .graphic-contain {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-flex-direction: column;
          flex-direction: column;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  section.custom-data .graphic-contain {
    -webkit-flex-direction: row;
            flex-direction: row;
    margin-bottom: 100px;
  }
}
section.custom-data .graphic-contain .content .copy {
  position: relative;
  height: 80px;
  width: 300px;
  margin: 30px 0;
}
@media (min-width: 500px) {
  section.custom-data .graphic-contain .content .copy {
    height: 100px;
    width: 400px;
    margin: 0;
  }
}
@media (min-width: 600px) {
  section.custom-data .graphic-contain .content .copy {
    width: 500px;
  }
}
@media (min-width: 768px) {
  section.custom-data .graphic-contain .content .copy {
    height: 300px;
    width: 300px;
  }
}
section.custom-data .graphic-contain .content .copy p {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  font-size: 7vw;
  line-height: 7.5vw;
  text-align: center;
  transition: 0.6s;
  opacity: 0;
}
@media (min-width: 500px) {
  section.custom-data .graphic-contain .content .copy p {
    font-size: 5vw;
    line-height: 5.5vw;
  }
}
@media (min-width: 768px) {
  section.custom-data .graphic-contain .content .copy p {
    font-size: 3.6rem;
    line-height: 1.15;
    text-align: right;
  }
}
section.custom-data .graphic-contain .content .copy p span.red {
  color: #ed3332;
}
.one section.custom-data .graphic-contain .content .copy p.one {
  opacity: 1;
}
.two section.custom-data .graphic-contain .content .copy p.two {
  opacity: 1;
}
.three section.custom-data .graphic-contain .content .copy p.three {
  opacity: 1;
}
.four section.custom-data .graphic-contain .content .copy p.four {
  opacity: 1;
}
.five section.custom-data .graphic-contain .content .copy p.five {
  opacity: 1;
}
section.custom-data .graphic-contain .graphic {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin: auto;
  transition: 0.6s;
  padding: 0;
}
@media (min-width: 768px) {
  section.custom-data .graphic-contain .graphic {
    margin-left: 60px;
    border-left: 1px solid #cdcdcd;
    padding: 60px 0 0px 60px;
  }
}
section.custom-data .graphic-contain .likelihood {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  transition: 0.6s;
  opacity: 0;
  width: 300px;
  padding: 0 10px;
  margin-top: 20px;
}
.four section.custom-data .graphic-contain .likelihood, .five section.custom-data .graphic-contain .likelihood {
  opacity: 1;
}
section.custom-data .graphic-contain .likelihood div {
  position: relative;
  font-size: 1.4rem;
}
section.custom-data .graphic-contain .likelihood div:nth-child(1) {
  margin-right: auto;
}
section.custom-data .graphic-contain .likelihood div:nth-child(2) {
  margin-left: auto;
}
section.custom-data .circles {
  width: 300px;
  height: 300px;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
}
section.custom-data .circle {
  position: relative;
  background-color: #cdcdcd;
  border-radius: 5px;
  transition-duration: 0.6s;
  margin: 10px;
  display: block;
  width: 10px;
  height: 10px;
}
section.custom-data .circle::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  opacity: 0;
  background: white;
  transition: 0.6s;
}
.three section.custom-data .circle::before {
  opacity: 0.2;
  transition-delay: 1.3s;
}
.one section.custom-data .circle {
  background-color: transparent;
}
.one section.custom-data .circle:nth-child(n+31):nth-child(-n+60) {
  background-color: #000000;
}
.two section.custom-data .circle:nth-child(n+1):nth-child(-n+3) {
  background-color: #000000;
}
.two section.custom-data .circle:nth-child(n+10):nth-child(-n+14) {
  background-color: #000000;
}
.two section.custom-data .circle:nth-child(n+22):nth-child(-n+25) {
  background-color: #000000;
}
.two section.custom-data .circle:nth-child(n+38):nth-child(-n+40) {
  background-color: #000000;
}
.two section.custom-data .circle:nth-child(n+41):nth-child(-n+45) {
  background-color: #000000;
}
.two section.custom-data .circle:nth-child(n+58):nth-child(-n+60) {
  background-color: #000000;
}
.two section.custom-data .circle:nth-child(n+64):nth-child(-n+65) {
  background-color: #000000;
}
.two section.custom-data .circle:nth-child(n+79):nth-child(-n+80) {
  background-color: #000000;
}
.two section.custom-data .circle:nth-child(n+83):nth-child(-n+86) {
  background-color: #000000;
}
.two section.custom-data .circle:nth-child(n+93):nth-child(-n+98) {
  background-color: #000000;
}
.three section.custom-data .circle:nth-child(n+1):nth-child(-n+4), .three section.custom-data .circle:nth-child(n+11):nth-child(-n+14), .three section.custom-data .circle:nth-child(n+21):nth-child(-n+24) {
  background-color: #dda126;
}
.three section.custom-data .circle:nth-child(n+1):nth-child(-n+4)::before, .three section.custom-data .circle:nth-child(n+11):nth-child(-n+14)::before, .three section.custom-data .circle:nth-child(n+21):nth-child(-n+24)::before {
  background: #dda126;
}
.three section.custom-data .circle:nth-child(n+5):nth-child(-n+10), .three section.custom-data .circle:nth-child(n+15):nth-child(-n+20), .three section.custom-data .circle:nth-child(n+25):nth-child(-n+30) {
  background-color: #00c0e5;
}
.three section.custom-data .circle:nth-child(n+5):nth-child(-n+10)::before, .three section.custom-data .circle:nth-child(n+15):nth-child(-n+20)::before, .three section.custom-data .circle:nth-child(n+25):nth-child(-n+30)::before {
  background-color: #00c0e5;
}
.three section.custom-data .circle:nth-child(n+31):nth-child(-n+40), .three section.custom-data .circle:nth-child(n+41):nth-child(-n+50), .three section.custom-data .circle:nth-child(n+51):nth-child(-n+60) {
  background-color: #ee3624;
}
.three section.custom-data .circle:nth-child(n+31):nth-child(-n+40)::before, .three section.custom-data .circle:nth-child(n+41):nth-child(-n+50)::before, .three section.custom-data .circle:nth-child(n+51):nth-child(-n+60)::before {
  background-color: #ee3624;
}
.three section.custom-data .circle:nth-child(n+61):nth-child(-n+64), .three section.custom-data .circle:nth-child(n+71):nth-child(-n+74), .three section.custom-data .circle:nth-child(n+81):nth-child(-n+84), .three section.custom-data .circle:nth-child(n+91):nth-child(-n+94) {
  background-color: #aa4298;
}
.three section.custom-data .circle:nth-child(n+61):nth-child(-n+64)::before, .three section.custom-data .circle:nth-child(n+71):nth-child(-n+74)::before, .three section.custom-data .circle:nth-child(n+81):nth-child(-n+84)::before, .three section.custom-data .circle:nth-child(n+91):nth-child(-n+94)::before {
  background-color: #aa4298;
}
.three section.custom-data .circle:nth-child(n+65):nth-child(-n+68), .three section.custom-data .circle:nth-child(n+75):nth-child(-n+78), .three section.custom-data .circle:nth-child(n+85):nth-child(-n+88), .three section.custom-data .circle:nth-child(n+95):nth-child(-n+98) {
  background-color: #30b44a;
}
.three section.custom-data .circle:nth-child(n+65):nth-child(-n+68)::before, .three section.custom-data .circle:nth-child(n+75):nth-child(-n+78)::before, .three section.custom-data .circle:nth-child(n+85):nth-child(-n+88)::before, .three section.custom-data .circle:nth-child(n+95):nth-child(-n+98)::before {
  background-color: #30b44a;
}
.three section.custom-data .circle:nth-child(n+69):nth-child(-n+70), .three section.custom-data .circle:nth-child(n+79):nth-child(-n+80), .three section.custom-data .circle:nth-child(n+89):nth-child(-n+90), .three section.custom-data .circle:nth-child(n+99):nth-child(-n+100) {
  background-color: #1f4283;
}
.three section.custom-data .circle:nth-child(n+69):nth-child(-n+70)::before, .three section.custom-data .circle:nth-child(n+79):nth-child(-n+80)::before, .three section.custom-data .circle:nth-child(n+89):nth-child(-n+90)::before, .three section.custom-data .circle:nth-child(n+99):nth-child(-n+100)::before {
  background-color: #1f4283;
}
.four section.custom-data .circle:nth-child(n+1):nth-child(-n+10), .five section.custom-data .circle:nth-child(n+1):nth-child(-n+10) {
  background: white;
}
.four section.custom-data .circle:nth-child(n+11):nth-child(-n+15), .five section.custom-data .circle:nth-child(n+11):nth-child(-n+15) {
  background: white;
}
.four section.custom-data .circle:nth-child(n+17):nth-child(-n+20), .five section.custom-data .circle:nth-child(n+17):nth-child(-n+20) {
  background: white;
}
.four section.custom-data .circle:nth-child(n+21):nth-child(-n+25), .five section.custom-data .circle:nth-child(n+21):nth-child(-n+25) {
  background: white;
}
.four section.custom-data .circle:nth-child(n+27):nth-child(-n+30), .five section.custom-data .circle:nth-child(n+27):nth-child(-n+30) {
  background: white;
}
.four section.custom-data .circle:nth-child(n+31):nth-child(-n+35), .five section.custom-data .circle:nth-child(n+31):nth-child(-n+35) {
  background: white;
}
.four section.custom-data .circle:nth-child(36), .five section.custom-data .circle:nth-child(36) {
  background: #000000;
}
.four section.custom-data .circle:nth-child(37), .five section.custom-data .circle:nth-child(37) {
  background: white;
}
.four section.custom-data .circle:nth-child(n+38):nth-child(-n+40), .five section.custom-data .circle:nth-child(n+38):nth-child(-n+40) {
  background-color: white;
}
.four section.custom-data .circle:nth-child(n+41):nth-child(-n+44), .five section.custom-data .circle:nth-child(n+41):nth-child(-n+44) {
  background-color: white;
}
.four section.custom-data .circle:nth-child(45), .five section.custom-data .circle:nth-child(45) {
  background: #cdcdcd;
}
.four section.custom-data .circle:nth-child(46), .four section.custom-data .circle:nth-child(47), .five section.custom-data .circle:nth-child(46), .five section.custom-data .circle:nth-child(47) {
  background: #000000;
}
.four section.custom-data .circle:nth-child(n+48):nth-child(-n+50), .five section.custom-data .circle:nth-child(n+48):nth-child(-n+50) {
  background-color: white;
}
.four section.custom-data .circle:nth-child(n+51):nth-child(-n+54), .five section.custom-data .circle:nth-child(n+51):nth-child(-n+54) {
  background-color: white;
}
.four section.custom-data .circle:nth-child(n+55):nth-child(-n+57), .five section.custom-data .circle:nth-child(n+55):nth-child(-n+57) {
  background-color: #cdcdcd;
}
.four section.custom-data .circle:nth-child(n+58):nth-child(-n+60), .five section.custom-data .circle:nth-child(n+58):nth-child(-n+60) {
  background-color: white;
}
.four section.custom-data .circle:nth-child(n+61):nth-child(-n+63), .four section.custom-data .circle:nth-child(69), .five section.custom-data .circle:nth-child(n+61):nth-child(-n+63), .five section.custom-data .circle:nth-child(69) {
  background-color: white;
}
.four section.custom-data .circle:nth-child(64), .four section.custom-data .circle:nth-child(66), .four section.custom-data .circle:nth-child(68), .five section.custom-data .circle:nth-child(64), .five section.custom-data .circle:nth-child(66), .five section.custom-data .circle:nth-child(68) {
  background: #000000;
}
.four section.custom-data .circle:nth-child(71), .four section.custom-data .circle:nth-child(73), .four section.custom-data .circle:nth-child(79), .five section.custom-data .circle:nth-child(71), .five section.custom-data .circle:nth-child(73), .five section.custom-data .circle:nth-child(79) {
  background: white;
}
.four section.custom-data .circle:nth-child(75), .four section.custom-data .circle:nth-child(76), .four section.custom-data .circle:nth-child(80), .five section.custom-data .circle:nth-child(75), .five section.custom-data .circle:nth-child(76), .five section.custom-data .circle:nth-child(80) {
  background: #000000;
}
.four section.custom-data .circle:nth-child(82), .four section.custom-data .circle:nth-child(83), .four section.custom-data .circle:nth-child(85), .four section.custom-data .circle:nth-child(86), .five section.custom-data .circle:nth-child(82), .five section.custom-data .circle:nth-child(83), .five section.custom-data .circle:nth-child(85), .five section.custom-data .circle:nth-child(86) {
  background: #000000;
}
.four section.custom-data .circle:nth-child(91), .four section.custom-data .circle:nth-child(97), .four section.custom-data .circle:nth-child(99), .five section.custom-data .circle:nth-child(91), .five section.custom-data .circle:nth-child(97), .five section.custom-data .circle:nth-child(99) {
  background: #000000;
}
.five section.custom-data .circle:nth-child(47), .five section.custom-data .circle:nth-child(55), .five section.custom-data .circle:nth-child(65), .five section.custom-data .circle:nth-child(66), .five section.custom-data .circle:nth-child(67), .five section.custom-data .circle:nth-child(74), .five section.custom-data .circle:nth-child(77), .five section.custom-data .circle:nth-child(80), .five section.custom-data .circle:nth-child(84), .five section.custom-data .circle:nth-child(88), .five section.custom-data .circle:nth-child(89), .five section.custom-data .circle:nth-child(90), .five section.custom-data .circle:nth-child(94), .five section.custom-data .circle:nth-child(95), .five section.custom-data .circle:nth-child(67), .five section.custom-data .circle:nth-child(98), .five section.custom-data .circle:nth-child(100) {
  background: #ed3332;
}
section.custom-data .model-definition {
  background: #f3f3f3;
  padding: 60px 30px;
  width: 100%;
}
@media (min-width: 641px) {
  section.custom-data .model-definition {
    padding: 30px;
  }
}
section.custom-data .model-definition .copy {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-flex-direction: column;
          flex-direction: column;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 980px) {
  section.custom-data .model-definition .copy {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    -webkit-flex-direction: row;
            flex-direction: row;
  }
}
section.custom-data .model-definition p {
  max-width: 90%;
  text-align: center;
  margin: 10px 0 0 0;
}
@media (min-width: 980px) {
  section.custom-data .model-definition p {
    max-width: 700px;
    margin: 0 0 0 auto;
    text-align: left;
  }
}
section.scout {
  padding: 75px 0 0 0;
  background-color: #333941;
}
@media (min-width: 641px) {
  section.scout {
    padding: 150px 0 0 0;
  }
}
section.scout .header svg {
  margin: 60px auto;
  display: block;
  width: 233px;
}
section.scout .header svg path:not(#target), section.scout .header svg polygon {
  fill: white;
}
section.scout .scout-video {
  position: relative;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 980px) {
  section.scout .scout-video {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}
section.scout .scout-video span {
  position: absolute;
  left: 50%;
  margin-left: -40px;
  margin-top: -40px;
  top: 40%;
  cursor: pointer;
  transition: 0.3s;
  width: 80px;
  height: 80px;
  display: block;
}
@media (min-width: 641px) {
  section.scout .scout-video span {
    margin-left: -75px;
    margin-top: -75px;
    top: 40%;
    width: 150px;
    height: 150px;
  }
}
section.scout .scout-video span:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
section.scout .scout-video .scout-technology {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
section.scout .scout-copy {
  padding: 100px 0;
}
section.scout .scout-copy .copy-contain {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  border-bottom: 1px solid #232528;
  padding-bottom: 50px;
  max-width: 80%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  section.scout .scout-copy .copy-contain {
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-align-items: flex-end;
            align-items: flex-end;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  section.scout .scout-copy .headline {
    max-width: 40%;
  }
}
@media (min-width: 1024px) {
  section.scout .scout-copy .copy {
    max-width: 40%;
  }
  section.scout .scout-copy .copy p {
    color: white;
  }
}
section.scout .scout-products {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 100px;
}
@media (min-width: 641px) {
  section.scout .scout-products {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}
section.scout .scout-products .products-contain {
  display: -webkit-flex;
  display: flex;
  text-align: center;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  border-bottom: 1px solid #232528;
}
section.scout .scout-products .products-contain:last-child {
  border: 0;
}
section.scout .scout-products .product {
  padding: 40px 0;
  width: 40%;
  cursor: pointer;
  transition: 0.4s;
}
@media (min-width: 641px) {
  section.scout .scout-products .product {
    width: 300px;
    padding: 70px 0;
  }
}
section.scout .scout-products .product:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
section.scout .scout-products .product:hover p {
  color: #1ce180;
}
section.scout .scout-products .product:hover img {
  -webkit-transform: translateY(5px);
          transform: translateY(5px);
}
section.scout .scout-products .product p {
  color: white;
  text-transform: uppercase;
  font-size: 3vw;
  line-height: 4vw;
  margin-top: 20px;
  transition: 0.3s;
}
@media (min-width: 641px) {
  section.scout .scout-products .product p {
    font-size: 1.9rem;
    line-height: 1.05;
  }
}
section.scout .scout-products .product img {
  transition: 0.3s;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  height: 50px;
}
@media (min-width: 641px) {
  section.scout .scout-products .product img {
    height: 60px;
  }
}
section.scout .product-details {
  position: relative;
  overflow: hidden;
  max-height: 0;
  transition: 0s;
}
section.scout .product-details.active {
  transition: 0.8s;
  max-height: 900px;
  border-bottom: 1px solid #232528;
}
section.scout .product-details .close {
  position: absolute;
  top: 20px;
  right: 10px;
  cursor: pointer;
  z-index: 1;
}
section.scout .product-details .close svg {
  height: 20px;
  width: 20px;
}
section.scout .product-details .close svg line {
  stroke-color: white;
  stroke-width: 2px;
}
section.scout .product-details .product-detail-contain {
  display: -webkit-flex;
  display: flex;
  width: 200%;
  transition: 1s;
}
section.scout .product-details .product-detail-contain.shifted {
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
section.scout .product-details .product-detail {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  -webkit-align-items: center;
          align-items: center;
  padding: 50px 0;
  width: 100%;
}
@media (min-width: 641px) {
  section.scout .product-details .product-detail {
    padding: 50px 25px;
  }
}
@media (min-width: 900px) {
  section.scout .product-details .product-detail {
    -webkit-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1024px) {
  section.scout .product-details .product-detail {
    padding: 100px 0px;
  }
}
section.scout .product-details .product-detail img {
  width: 90%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  margin-top: 40px;
}
@media (min-width: 900px) {
  section.scout .product-details .product-detail img {
    width: 45%;
  }
}
section.scout .product-details .product-detail .copy {
  width: 90%;
}
@media (min-width: 900px) {
  section.scout .product-details .product-detail .copy {
    width: 45%;
  }
}
section.scout .product-details .product-detail .copy a {
  margin-top: 20px;
}
section.scout .scout-demo {
  background-size: cover;
  background-position: center center;
  background-image: url("https://cdn01.buxtonco.com/analytics-platform/home/request-scout-demo.jpg");
  background-repeat: no-repeat;
  padding: 60px 0;
  text-align: center;
}
@media (min-width: 640px) {
  section.scout .scout-demo {
    padding: 120px 0 80px 0;
  }
}
section.advanced-analysis {
  padding: 100px 0 0 0;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  section.advanced-analysis {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
section.advanced-analysis .header {
  margin-bottom: 100px;
}
section.advanced-analysis .header .copy {
  text-align: center;
}
section.advanced-analysis .header .copy img {
  margin-bottom: 25px;
}
section.advanced-analysis .header .copy p {
  margin-top: 30px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
section.advanced-analysis p a {
  display: inline-block;
}
section.advanced-analysis .product {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 1024px) {
  section.advanced-analysis .product {
    -webkit-flex-direction: row;
            flex-direction: row;
  }
}
@media (min-width: 1024px) {
  section.advanced-analysis .product.two {
    -webkit-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}
section.advanced-analysis .product img {
  height: 300px;
  width: 100%;
}
@media (min-width: 641px) {
  section.advanced-analysis .product img {
    height: 350px;
  }
}
@media (min-width: 1024px) {
  section.advanced-analysis .product img {
    height: 550px;
    width: 50%;
  }
}
@media (min-width: 1230px) {
  section.advanced-analysis .product img {
    height: 450px;
  }
}
section.advanced-analysis .product .copy {
  padding: 40px 0 50px 0;
  max-width: 90%;
  margin: auto;
}
@media (min-width: 641px) {
  section.advanced-analysis .product .copy {
    padding: 80px 0 100px 0;
    max-width: 80%;
  }
}
@media (min-width: 1024px) {
  section.advanced-analysis .product .copy {
    padding: 0 7%;
    width: 50%;
  }
}
section.reports {
  position: relative;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  background: linear-gradient(to top, rgba(110, 110, 110, 0.1) 0%, white 100%);
}
@media (min-width: 1024px) {
  section.reports {
    padding-top: 60px;
    margin-top: 60px;
  }
}
section.reports .label {
  background: white;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 2px;
  text-align: center;
  display: inline-block;
  padding: 16px 50px;
  border: 1px solid #E6E6E6;
}
section.reports #report-nav {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-align-items: center;
          align-items: center;
  margin-bottom: 40px;
}
section.reports #report-nav .prev, section.reports #report-nav .next {
  max-width: none;
  cursor: pointer;
  transition: 0.3s;
  -webkit-transform: none;
          transform: none;
}
section.reports #report-nav .prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (min-width: 641px) {
  section.reports #report-nav .prev:hover {
    -webkit-transform: translateX(-5px) rotate(180deg);
            transform: translateX(-5px) rotate(180deg);
  }
}
@media (min-width: 641px) {
  section.reports #report-nav .next:hover {
    -webkit-transform: translateX(5px);
            transform: translateX(5px);
  }
}
section.reports #numbers-contain {
  height: 150px;
  line-height: 94px;
  font-size: 4.6rem;
  font-weight: 500;
  margin: 0 20px;
  overflow: hidden;
}
@media (min-width: 641px) {
  section.reports #numbers-contain {
    height: 100px;
  }
}
section.reports #numbers-contain #report-copy {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  transition: 0.6s ease-in-out;
  height: 750px;
}
@media (min-width: 641px) {
  section.reports #numbers-contain #report-copy {
    height: 500px;
  }
}
section.reports #numbers-contain #report-copy.one {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}
section.reports #numbers-contain #report-copy.two {
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
}
section.reports #numbers-contain #report-copy.three {
  -webkit-transform: translateY(-40%);
          transform: translateY(-40%);
}
section.reports #numbers-contain #report-copy.four {
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
}
section.reports #numbers-contain #report-copy.five {
  -webkit-transform: translateY(-80%);
          transform: translateY(-80%);
}
section.reports #numbers-contain .title {
  font-size: 8vw;
  line-height: 9vw;
}
@media (min-width: 401px) {
  section.reports #numbers-contain .title {
    font-size: 3.6rem;
    line-height: 1.1;
  }
}
section.reports #numbers-contain div {
  position: relative;
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
          justify-content: center;
}
section.reports #numbers-contain .copy {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  line-height: 2rem;
  margin-top: 10px;
}
section.reports .report-images-contain {
  position: relative;
  overflow: hidden;
  padding: 30px 0 50px 0;
  max-width: 88%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 641px) {
  section.reports .report-images-contain {
    padding: 50px 0 100px 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
section.reports .report-images-contain #report-images {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: center;
          justify-content: center;
  width: 500%;
  transition: 1s ease-in-out;
}
section.reports .report-images-contain #report-images.one {
  -webkit-transform: translateX(0%);
          transform: translateX(0%);
}
section.reports .report-images-contain #report-images.two {
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
}
section.reports .report-images-contain #report-images.three {
  -webkit-transform: translateX(-40%);
          transform: translateX(-40%);
}
section.reports .report-images-contain #report-images.four {
  -webkit-transform: translateX(-60%);
          transform: translateX(-60%);
}
section.reports .report-images-contain #report-images.five {
  -webkit-transform: translateX(-80%);
          transform: translateX(-80%);
}
section.reports .report-images-contain .report-image {
  position: relative;
  width: 100%;
}
section.reports .report-images-contain .report-image img {
  max-width: 95%;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15);
}
@media (min-width: 641px) {
  section.reports .report-images-contain .report-image img {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  }
}
section.demo-request {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: flex-start;
          align-items: flex-start;
  margin-top: 60px;
  margin-bottom: 60px;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  section.demo-request {
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1024px) {
  section.demo-request {
    -webkit-flex-direction: row;
            flex-direction: row;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1300px) {
  section.demo-request {
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
  }
}
section.demo-request .content {
  padding-top: 6rem;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  section.demo-request .content {
    width: 45%;
  }
}
section.demo-request .landing-form {
  padding: 45px 5% 45px 5%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
  margin: 60px 0 0 0;
}
@media (min-width: 1024px) {
  section.demo-request .landing-form {
    width: 50%;
    margin: 0 0 0 auto;
  }
}
@media (min-width: 1230px) {
  section.demo-request .landing-form {
    width: 45%;
  }
}
section.demo-request .landing-form iframe {
  width: 100%;
}
section.demo-request .landing-form .landing-form-title {
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 20px;
}

.request-demo-contain {
  background: #333941;
  padding: 70px 0;
}
@media (min-width: 768px) {
  .request-demo-contain {
    padding: 50px 0;
  }
}
.request-demo-contain .request-demo {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex-direction: column;
          flex-direction: column;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .request-demo-contain .request-demo {
    -webkit-flex-direction: row;
            flex-direction: row;
    max-width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}
.request-demo-contain p {
  color: white;
  font-size: 2.6rem;
  line-height: 1.15;
  margin: 0 0 15px 0;
  text-align: center;
}
@media (min-width: 768px) {
  .request-demo-contain p {
    margin: 0 30px 0 0;
  }
}

.circle:nth-of-type(1) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.587745852s;
  -webkit-animation-delay: 0.3559189293s;
          animation-delay: 0.3559189293s;
}

.circle:nth-of-type(2) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.6660721905s;
  -webkit-animation-delay: 0.5914749101s;
          animation-delay: 0.5914749101s;
}

.circle:nth-of-type(3) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.6958978505s;
  -webkit-animation-delay: 0.5876076606s;
          animation-delay: 0.5876076606s;
}

.circle:nth-of-type(4) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.5369968291s;
  -webkit-animation-delay: 0.948486056s;
          animation-delay: 0.948486056s;
}

.circle:nth-of-type(5) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.5709966213s;
  -webkit-animation-delay: 0.0502879685s;
          animation-delay: 0.0502879685s;
}

.circle:nth-of-type(6) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.153885229s;
  -webkit-animation-delay: 0.4052679664s;
          animation-delay: 0.4052679664s;
}

.circle:nth-of-type(7) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.9644714061s;
  -webkit-animation-delay: 0.6460844086s;
          animation-delay: 0.6460844086s;
}

.circle:nth-of-type(8) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.7397645469s;
  -webkit-animation-delay: 0.3717473704s;
          animation-delay: 0.3717473704s;
}

.circle:nth-of-type(9) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.0476460126s;
  -webkit-animation-delay: 0.0157798424s;
          animation-delay: 0.0157798424s;
}

.circle:nth-of-type(10) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.374854776s;
  -webkit-animation-delay: 0.7879018939s;
          animation-delay: 0.7879018939s;
}

.circle:nth-of-type(11) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.1518684658s;
  -webkit-animation-delay: 0.8593094083s;
          animation-delay: 0.8593094083s;
}

.circle:nth-of-type(12) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.232912654s;
  -webkit-animation-delay: 0.8656363808s;
          animation-delay: 0.8656363808s;
}

.circle:nth-of-type(13) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.9920772285s;
  -webkit-animation-delay: 0.0075201629s;
          animation-delay: 0.0075201629s;
}

.circle:nth-of-type(14) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.4180543787s;
  -webkit-animation-delay: 0.5333364929s;
          animation-delay: 0.5333364929s;
}

.circle:nth-of-type(15) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.0314424821s;
  -webkit-animation-delay: 0.4616162679s;
          animation-delay: 0.4616162679s;
}

.circle:nth-of-type(16) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.4242673558s;
  -webkit-animation-delay: 0.3490353525s;
          animation-delay: 0.3490353525s;
}

.circle:nth-of-type(17) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.7638288555s;
  -webkit-animation-delay: 0.4800390401s;
          animation-delay: 0.4800390401s;
}

.circle:nth-of-type(18) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.3736896612s;
  -webkit-animation-delay: 0.1188173963s;
          animation-delay: 0.1188173963s;
}

.circle:nth-of-type(19) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.7503750035s;
  -webkit-animation-delay: 0.2092834227s;
          animation-delay: 0.2092834227s;
}

.circle:nth-of-type(20) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.6057010815s;
  -webkit-animation-delay: 0.7118584744s;
          animation-delay: 0.7118584744s;
}

.circle:nth-of-type(21) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.2098049034s;
  -webkit-animation-delay: 0.3749392958s;
          animation-delay: 0.3749392958s;
}

.circle:nth-of-type(22) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.2634560546s;
  -webkit-animation-delay: 0.8003621756s;
          animation-delay: 0.8003621756s;
}

.circle:nth-of-type(23) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.894581542s;
  -webkit-animation-delay: 0.8348176103s;
          animation-delay: 0.8348176103s;
}

.circle:nth-of-type(24) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.5649499216s;
  -webkit-animation-delay: 0.4778350508s;
          animation-delay: 0.4778350508s;
}

.circle:nth-of-type(25) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.8804185284s;
  -webkit-animation-delay: 0.1502264793s;
          animation-delay: 0.1502264793s;
}

.circle:nth-of-type(26) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.768914322s;
  -webkit-animation-delay: 0.8252485347s;
          animation-delay: 0.8252485347s;
}

.circle:nth-of-type(27) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.5227603961s;
  -webkit-animation-delay: 0.5592054199s;
          animation-delay: 0.5592054199s;
}

.circle:nth-of-type(28) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.9972821781s;
  -webkit-animation-delay: 0.9432332057s;
          animation-delay: 0.9432332057s;
}

.circle:nth-of-type(29) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.8791573545s;
  -webkit-animation-delay: 0.4133889327s;
          animation-delay: 0.4133889327s;
}

.circle:nth-of-type(30) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.3490904513s;
  -webkit-animation-delay: 0.5974824345s;
          animation-delay: 0.5974824345s;
}

.circle:nth-of-type(31) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.061662905s;
  -webkit-animation-delay: 0.2699701408s;
          animation-delay: 0.2699701408s;
}

.circle:nth-of-type(32) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.3100179668s;
  -webkit-animation-delay: 0.798947174s;
          animation-delay: 0.798947174s;
}

.circle:nth-of-type(33) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.6785044134s;
  -webkit-animation-delay: 0.6210157782s;
          animation-delay: 0.6210157782s;
}

.circle:nth-of-type(34) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.6624113181s;
  -webkit-animation-delay: 0.4173417889s;
          animation-delay: 0.4173417889s;
}

.circle:nth-of-type(35) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.973466428s;
  -webkit-animation-delay: 0.3112785617s;
          animation-delay: 0.3112785617s;
}

.circle:nth-of-type(36) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.1657650906s;
  -webkit-animation-delay: 0.071515218s;
          animation-delay: 0.071515218s;
}

.circle:nth-of-type(37) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.2044531478s;
  -webkit-animation-delay: 0.4470138833s;
          animation-delay: 0.4470138833s;
}

.circle:nth-of-type(38) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.3178760583s;
  -webkit-animation-delay: 0.1365479025s;
          animation-delay: 0.1365479025s;
}

.circle:nth-of-type(39) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.595364014s;
  -webkit-animation-delay: 0.863194636s;
          animation-delay: 0.863194636s;
}

.circle:nth-of-type(40) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.537258465s;
  -webkit-animation-delay: 0.7639202342s;
          animation-delay: 0.7639202342s;
}

.circle:nth-of-type(41) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.4818163651s;
  -webkit-animation-delay: 0.5275355215s;
          animation-delay: 0.5275355215s;
}

.circle:nth-of-type(42) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.7601679263s;
  -webkit-animation-delay: 0.6924779617s;
          animation-delay: 0.6924779617s;
}

.circle:nth-of-type(43) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.2155761458s;
  -webkit-animation-delay: 0.1390091233s;
          animation-delay: 0.1390091233s;
}

.circle:nth-of-type(44) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.2900470589s;
  -webkit-animation-delay: 0.6181985615s;
          animation-delay: 0.6181985615s;
}

.circle:nth-of-type(45) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.3520595409s;
  -webkit-animation-delay: 0.8947539428s;
          animation-delay: 0.8947539428s;
}

.circle:nth-of-type(46) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.6734636291s;
  -webkit-animation-delay: 0.3251693285s;
          animation-delay: 0.3251693285s;
}

.circle:nth-of-type(47) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.354448086s;
  -webkit-animation-delay: 0.8770822333s;
          animation-delay: 0.8770822333s;
}

.circle:nth-of-type(48) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.0814504636s;
  -webkit-animation-delay: 0.6272435128s;
          animation-delay: 0.6272435128s;
}

.circle:nth-of-type(49) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.0452181748s;
  -webkit-animation-delay: 0.3166730614s;
          animation-delay: 0.3166730614s;
}

.circle:nth-of-type(50) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.84300915s;
  -webkit-animation-delay: 0.7968593258s;
          animation-delay: 0.7968593258s;
}

.circle:nth-of-type(51) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.8561057082s;
  -webkit-animation-delay: 0.0255515054s;
          animation-delay: 0.0255515054s;
}

.circle:nth-of-type(52) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.4138064878s;
  -webkit-animation-delay: 0.6341449185s;
          animation-delay: 0.6341449185s;
}

.circle:nth-of-type(53) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.1513574604s;
  -webkit-animation-delay: 0.4559412769s;
          animation-delay: 0.4559412769s;
}

.circle:nth-of-type(54) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.749841575s;
  -webkit-animation-delay: 0.1684437266s;
          animation-delay: 0.1684437266s;
}

.circle:nth-of-type(55) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.1318882187s;
  -webkit-animation-delay: 0.5594209007s;
          animation-delay: 0.5594209007s;
}

.circle:nth-of-type(56) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.5479292957s;
  -webkit-animation-delay: 0.5207618975s;
          animation-delay: 0.5207618975s;
}

.circle:nth-of-type(57) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.6936389452s;
  -webkit-animation-delay: 0.8424834857s;
          animation-delay: 0.8424834857s;
}

.circle:nth-of-type(58) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.5884098958s;
  -webkit-animation-delay: 0.547190192s;
          animation-delay: 0.547190192s;
}

.circle:nth-of-type(59) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.6577450902s;
  -webkit-animation-delay: 0.7085588089s;
          animation-delay: 0.7085588089s;
}

.circle:nth-of-type(60) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.7177412206s;
  -webkit-animation-delay: 0.9481445129s;
          animation-delay: 0.9481445129s;
}

.circle:nth-of-type(61) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.0270796682s;
  -webkit-animation-delay: 0.4508731378s;
          animation-delay: 0.4508731378s;
}

.circle:nth-of-type(62) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.2724826626s;
  -webkit-animation-delay: 0.9430223305s;
          animation-delay: 0.9430223305s;
}

.circle:nth-of-type(63) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.404058249s;
  -webkit-animation-delay: 0.2841216906s;
          animation-delay: 0.2841216906s;
}

.circle:nth-of-type(64) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.3752113143s;
  -webkit-animation-delay: 0.9716685786s;
          animation-delay: 0.9716685786s;
}

.circle:nth-of-type(65) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.1258499691s;
  -webkit-animation-delay: 0.9127739072s;
          animation-delay: 0.9127739072s;
}

.circle:nth-of-type(66) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.4335985483s;
  -webkit-animation-delay: 0.9507779633s;
          animation-delay: 0.9507779633s;
}

.circle:nth-of-type(67) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.0387543725s;
  -webkit-animation-delay: 0.7604688611s;
          animation-delay: 0.7604688611s;
}

.circle:nth-of-type(68) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.111300698s;
  -webkit-animation-delay: 0.5973432273s;
          animation-delay: 0.5973432273s;
}

.circle:nth-of-type(69) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.3246884028s;
  -webkit-animation-delay: 0.1989647709s;
          animation-delay: 0.1989647709s;
}

.circle:nth-of-type(70) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.6976157558s;
  -webkit-animation-delay: 0.0209520382s;
          animation-delay: 0.0209520382s;
}

.circle:nth-of-type(71) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.9923997981s;
  -webkit-animation-delay: 0.4467583033s;
          animation-delay: 0.4467583033s;
}

.circle:nth-of-type(72) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.6207924678s;
  -webkit-animation-delay: 0.5688540708s;
          animation-delay: 0.5688540708s;
}

.circle:nth-of-type(73) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.4296760912s;
  -webkit-animation-delay: 0.2725518778s;
          animation-delay: 0.2725518778s;
}

.circle:nth-of-type(74) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.133985552s;
  -webkit-animation-delay: 0.5972513724s;
          animation-delay: 0.5972513724s;
}

.circle:nth-of-type(75) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.5622562033s;
  -webkit-animation-delay: 0.6338820327s;
          animation-delay: 0.6338820327s;
}

.circle:nth-of-type(76) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.5400640062s;
  -webkit-animation-delay: 0.4889387184s;
          animation-delay: 0.4889387184s;
}

.circle:nth-of-type(77) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.2861740573s;
  -webkit-animation-delay: 0.8187869865s;
          animation-delay: 0.8187869865s;
}

.circle:nth-of-type(78) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.4653744624s;
  -webkit-animation-delay: 0.3332912407s;
          animation-delay: 0.3332912407s;
}

.circle:nth-of-type(79) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.8415516399s;
  -webkit-animation-delay: 0.832779643s;
          animation-delay: 0.832779643s;
}

.circle:nth-of-type(80) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.0712662953s;
  -webkit-animation-delay: 0.2203885889s;
          animation-delay: 0.2203885889s;
}

.circle:nth-of-type(81) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.9013188114s;
  -webkit-animation-delay: 0.9143059507s;
          animation-delay: 0.9143059507s;
}

.circle:nth-of-type(82) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.9494995606s;
  -webkit-animation-delay: 0.299180786s;
          animation-delay: 0.299180786s;
}

.circle:nth-of-type(83) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.0754526307s;
  -webkit-animation-delay: 0.3445683206s;
          animation-delay: 0.3445683206s;
}

.circle:nth-of-type(84) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.0286354374s;
  -webkit-animation-delay: 0.2998809158s;
          animation-delay: 0.2998809158s;
}

.circle:nth-of-type(85) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.4944833206s;
  -webkit-animation-delay: 0.6421860749s;
          animation-delay: 0.6421860749s;
}

.circle:nth-of-type(86) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.1012848575s;
  -webkit-animation-delay: 0.6211440877s;
          animation-delay: 0.6211440877s;
}

.circle:nth-of-type(87) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.9792407241s;
  -webkit-animation-delay: 0.6276803163s;
          animation-delay: 0.6276803163s;
}

.circle:nth-of-type(88) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.677963417s;
  -webkit-animation-delay: 0.6818521215s;
          animation-delay: 0.6818521215s;
}

.circle:nth-of-type(89) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.6069963768s;
  -webkit-animation-delay: 0.2590847563s;
          animation-delay: 0.2590847563s;
}

.circle:nth-of-type(90) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.0501148231s;
  -webkit-animation-delay: 0.471183447s;
          animation-delay: 0.471183447s;
}

.circle:nth-of-type(91) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.6147963078s;
  -webkit-animation-delay: 0.196978342s;
          animation-delay: 0.196978342s;
}

.circle:nth-of-type(92) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.6051552465s;
  -webkit-animation-delay: 0.3754495853s;
          animation-delay: 0.3754495853s;
}

.circle:nth-of-type(93) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.6320082728s;
  -webkit-animation-delay: 0.6879506766s;
          animation-delay: 0.6879506766s;
}

.circle:nth-of-type(94) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.7474912458s;
  -webkit-animation-delay: 0.5380717705s;
          animation-delay: 0.5380717705s;
}

.circle:nth-of-type(95) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.2648352452s;
  -webkit-animation-delay: 0.4950692497s;
          animation-delay: 0.4950692497s;
}

.circle:nth-of-type(96) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.24244222s;
  -webkit-animation-delay: 0.3249912109s;
          animation-delay: 0.3249912109s;
}

.circle:nth-of-type(97) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.4879880185s;
  -webkit-animation-delay: 0.7670477606s;
          animation-delay: 0.7670477606s;
}

.circle:nth-of-type(98) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.1238171176s;
  -webkit-animation-delay: 0.8655064443s;
          animation-delay: 0.8655064443s;
}

.circle:nth-of-type(99) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.3376104161s;
  -webkit-animation-delay: 0.5812220815s;
          animation-delay: 0.5812220815s;
}

.circle:nth-of-type(100) {
  -webkit-animation: 1s circles linear;
          animation: 1s circles linear;
  transition-delay: 0.4312182008s;
  -webkit-animation-delay: 0.4294613826s;
          animation-delay: 0.4294613826s;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  25% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes circles {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes circles {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.hbspt-form label:not(.hs-error-msg) {
  display: block;
  margin-bottom: 0.5em;
  padding-top: 0.75em;
  font-size: 1.4rem;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  color: #505050;
}
