@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700&display=swap");
/* COLORS */
@import "../core-js/third-party/slick/slick.css";
.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 {
  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;
  }
}

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%;
  }
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../core-js/third-party/slick/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../core-js/third-party/slick/fonts/slick.eot");
  src: url("../core-js/third-party/slick/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../core-js/third-party/slick/fonts/slick.woff") format("woff"), url("../core-js/third-party/slick/fonts/slick.ttf") format("truetype"), url("../core-js/third-party/slick/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.arrows {
  display: none;
}
@media (min-width: 641px) {
  .arrows {
    display: -webkit-flex;
    display: flex;
  }
}
.arrows .arrow {
  cursor: pointer;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color: #2a3e4a;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin: 4px;
  -webkit-transform: scale(1);
          transform: scale(1);
  transition: all 0.25s ease-in-out;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.arrows .arrow img {
  width: 8px;
  -webkit-transform-origin: center right;
          transform-origin: center right;
  transition: all 0.25s ease-in-out;
}
.arrows .arrow.prev img {
  -webkit-transform: translateX(-2px);
          transform: translateX(-2px);
}
.arrows .arrow.next img {
  -webkit-transform: translateX(2px);
          transform: translateX(2px);
}
.arrows .arrow:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.arrows .arrow:hover.prev img {
  -webkit-transform: translateX(-2px) scale(1.25);
          transform: translateX(-2px) scale(1.25);
}
.arrows .arrow:hover.next img {
  -webkit-transform: translateX(2px) scale(1.25);
          transform: translateX(2px) scale(1.25);
}

.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}
[dir=rtl] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: "←";
}
[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}
[dir=rtl] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: "→";
}
[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

section.mast {
  overflow: hidden;
  padding-top: 6rem;
}
[data-page=industries] section.mast {
  max-height: 100vw;
}
@media (min-width: 641px) {
  section.mast {
    padding-top: 0;
  }
}
[data-page=home] section.mast {
  min-height: 52rem;
}
.loading section.mast {
  height: 64rem;
}
.loading section.mast * {
  display: none;
}
@media (min-width: 900px) {
  section.mast .slide {
    padding-bottom: 0;
  }
}
section.mast .slick-track {
  display: -webkit-flex !important;
  display: flex !important;
}
section.mast .slick-slide {
  height: inherit !important;
}
section.mast .personalized {
  position: relative;
}
section.mast .personalized::before {
  content: "";
  background: linear-gradient(183deg, rgba(42, 62, 74, 0.6) 0%, rgba(42, 62, 74, 0.4) 10%, rgba(42, 62, 74, 0) 20%);
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  opacity: 0.6;
  pointer-events: none;
}
section.mast .personalized::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
  background: linear-gradient(0deg, #F3F3F5 0%, white 10%, rgba(255, 255, 255, 0) 50%);
  pointer-events: none;
}
@media (min-width: 641px) {
  section.mast .personalized::after {
    background: linear-gradient(90deg, #F3F3F5 0%, rgba(243, 243, 245, 0.95) 55%, rgba(243, 243, 245, 0) 95%);
  }
}
@media (min-width: 1024px) {
  section.mast .personalized::after {
    background: linear-gradient(90deg, #F3F3F5 0%, rgba(243, 243, 245, 0.95) 42%, rgba(243, 243, 245, 0) 50%);
  }
}
section.mast .personalized #map {
  z-index: 0;
}
section.mast .personalized .content {
  z-index: 2;
  pointer-events: none;
}
section.mast .personalized .content .btn {
  pointer-events: all;
}
section.mast .personalized .container {
  padding-top: 10rem;
}
section.mast .container {
  position: relative;
  z-index: 3;
  max-width: calc(1024px + 10%);
  padding-top: 12.5rem;
  padding-bottom: 5rem;
}
[data-page=industries] section.mast .container {
  padding-bottom: 12.5rem;
}
@media (max-width: 639px) {
  [data-page=home] section.mast .container {
    padding-bottom: 2rem;
  }
}
@media (min-width: 641px) {
  section.mast .container {
    padding-top: 19.5rem;
    padding-bottom: 4rem;
  }
}
@media (min-width: 900px) {
  section.mast .container {
    padding-bottom: 19rem;
  }
}
section.mast .content .copy {
  margin-top: 3rem;
  max-width: 50rem;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  line-height: 1.35;
  color: #7c8599;
}
section.mast .content .copy p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
}
section.mast .content .label {
  color: #1ce180;
  font-size: 2.2rem;
  font-size: clamp(2rem,5vw,2.2rem);
  letter-spacing: 0;
}
section.mast .content .label:first-letter {
  text-transform: uppercase;
}
section.mast .content .btn {
  margin-top: 3.5rem;
}
section.mast figure.fill {
  z-index: 1;
}
@media (max-width: 640px) {
  section.mast figure.fill {
    height: 100vw;
  }
}
section.mast figure.fill::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  z-index: 2;
  background: linear-gradient(0deg, #F3F3F5 0%, rgba(243, 243, 245, 0) 25%);
}
@media (min-width: 641px) {
  section.mast figure.fill::before {
    background: linear-gradient(90deg, #F3F3F5 0%, rgba(243, 243, 245, 0.95) 55%, rgba(243, 243, 245, 0) 95%);
  }
}
@media (min-width: 1024px) {
  section.mast figure.fill::before {
    background: linear-gradient(90deg, #F3F3F5 0%, rgba(243, 243, 245, 0.95) 45%, rgba(243, 243, 245, 0) 75%);
  }
}
[data-page=home] section.mast figure.fill::before {
  background: linear-gradient(0deg, #F3F3F5 0%, white 10%, rgba(255, 255, 255, 0) 50%);
}
@media (min-width: 641px) {
  [data-page=home] section.mast figure.fill::before {
    background: linear-gradient(90deg, #F3F3F5 0%, rgba(243, 243, 245, 0.95) 55%, rgba(243, 243, 245, 0) 95%);
  }
}
@media (min-width: 1024px) {
  [data-page=home] section.mast figure.fill::before {
    background: linear-gradient(90deg, #F3F3F5 0%, rgba(243, 243, 245, 0.95) 45%, rgba(243, 243, 245, 0) 75%);
  }
}
section.mast figure.fill img {
  -o-object-position: 100% 0%;
     object-position: 100% 0%;
}
[data-page=home] section.mast figure.fill img {
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
}
@media (min-width: 768px) {
  [data-page=home] section.mast figure.fill img {
    -o-object-position: 100% 0%;
       object-position: 100% 0%;
  }
}
section.mast .social-proof {
  margin-top: 3rem;
  max-width: 35rem;
}
section.mast .social-proof .we-help p {
  font-size: 16px;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  color: #7C889C;
}
section.mast .social-proof .we-help img:not(.logo-override) {
  max-height: 4rem;
}
section.mast .client-video {
  position: relative;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  z-index: 3;
  padding-left: 5%;
  padding-right: 5%;
}
@media (min-width: 641px) {
  section.mast .client-video {
    height: 146px;
  }
}
@media (min-width: 900px) {
  section.mast .client-video {
    padding-left: 0;
    padding-right: 0;
    position: absolute;
    bottom: 165px;
    right: 0;
    left: 0;
  }
}
section.mast .client-video .cv-container {
  max-width: 570px;
  border-radius: 75px;
  background-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 80%);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  padding: 16px 13px;
}
@media (min-width: 900px) {
  section.mast .client-video .cv-container {
    margin-left: auto;
    -webkit-transform: translateX(70px);
            transform: translateX(70px);
  }
}
section.mast .client-video a {
  position: relative;
  display: block;
  height: 60px;
  width: 60px;
  min-height: 60px;
  min-width: 60px;
  border-radius: 60px;
  border: 1px solid #1ce180;
  transition: 0.25s ease-in-out;
}
@media (min-width: 641px) {
  section.mast .client-video a {
    height: 120px;
    width: 120px;
    min-height: 120px;
    min-width: 120px;
  }
}
@media (min-width: 900px) {
  section.mast .client-video a {
    border: 1px solid #ffffff;
  }
}
section.mast .client-video a::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 11px 0 11px 14px;
  border-color: transparent transparent transparent #ffffff;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(calc(-50% + 5px), -50%);
          transform: translate(calc(-50% + 5px), -50%);
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  transition: 0.25s ease-in-out;
}
@media (min-width: 641px) {
  section.mast .client-video a::after {
    border-width: 20px 0 20px 28px;
  }
}
section.mast .client-video a video {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  overflow: hidden;
}
@media (min-width: 900px) {
  section.mast .client-video a:hover {
    border-width: 3px;
  }
}
section.mast .client-video a:hover::after {
  -webkit-transform: translate(calc(-50% + 5px), -50%) scale(1.05);
          transform: translate(calc(-50% + 5px), -50%) scale(1.05);
}
section.mast .client-video .copy {
  padding: 0 20px;
  max-width: 410px;
}
@media (min-width: 641px) {
  section.mast .client-video .copy {
    padding: 0 115px 0 30px;
  }
}
section.mast .client-video .copy p {
  color: #7C889C;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 0;
}
@media (min-width: 900px) {
  section.mast .client-video .copy p {
    font-size: 1.8rem;
    color: #ffffff;
  }
}
section.mast .client-video .copy p strong {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
section.mast .client-video .copy p.headline {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 10px;
  color: #2a3e4a;
}
@media (min-width: 900px) {
  section.mast .client-video .copy p.headline {
    color: #ffffff;
    font-size: 2.4rem;
  }
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  background-image: linear-gradient(90deg, #f3f4f7 36%, rgba(255, 255, 255, 0) 60%);
}

.heading_1 {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: flex-start;
          justify-content: flex-start;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 5.2rem;
  font-size: clamp(3.5rem, 6vw, 5.2rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.mast .heading_1 {
  color: #2a3e4a;
}
.heading_1 img {
  margin-right: 1rem;
}
.heading_1 strong {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.heading_1 br {
  display: none;
}
@media (min-width: 641px) {
  .heading_1 br {
    display: block;
  }
}

.heading_2 {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  font-size: 5.7rem;
  font-size: clamp(4.4rem, 6vw, 5.7rem);
  letter-spacing: -0.02em;
  line-height: 46.77px;
  text-align: center;
  margin-bottom: 0.25em;
  color: #2a3e4a;
}
.heading_2 strong {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}
.heading_2 br {
  display: none;
}
@media (min-width: 641px) {
  .heading_2 br {
    display: block;
  }
}
.heading_2.small {
  font-size: 4.4rem;
  font-size: clamp(3.5rem, 6vw, 4.4rem);
}
.copy--image .heading_2 {
  font-size: 4.4rem;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin-bottom: 0.5em;
}
@media (min-width: 768px) {
  .copy--image .heading_2 {
    text-align: left;
  }
}
@media (min-width: 1024px) {
  .copy--image .heading_2 {
    font-size: 5.8rem;
  }
}
.copy--image .container .content .heading_2 {
  font-size: 4.4rem;
}
@media (min-width: 1024px) {
  .copy--image .container .content .heading_2 {
    font-size: 5.7rem;
  }
}

.heading_3 {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0.35em;
}

header {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
  padding-bottom: 70px;
}
header.center {
  text-align: center;
}
header.reverse {
  -webkit-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

p:not(:last-child) {
  margin-bottom: 1.35em;
}

.btn.btn--green {
  color: #ffffff;
}
.btn span {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
  font-size: 14px;
  line-height: 1;
  text-transform: none;
}

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

.label {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  text-transform: none;
  font-size: 1.9rem;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: #7C889C;
  margin-bottom: 0.5em;
}
@media (min-width: 641px) {
  .label {
    font-size: 2.3rem;
  }
}

.buxton-logo path {
  fill: #2a3e4a;
}
.buxton-logo.gray path {
  fill: #ADAEB1;
}
.buxton-logo.white path {
  fill: #ffffff;
}

.card {
  border-radius: 6px;
  box-shadow: 0 0 2px 0 rgba(20, 52, 92, 0.05), 0 3px 1.5rem 0 rgba(20, 52, 92, 0.05), 0 1.5rem 4rem 0 rgba(20, 52, 92, 0.05);
}

.section-group {
  position: relative;
}

.bg-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 80px;
}
.bg-container > figure {
  position: absolute;
  top: 0;
  left: 36%;
  right: 0;
  bottom: 0;
}
.bg-container > figure img {
  display: block;
}
.bg-container::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(90deg, #F3F3F5 36%, rgba(255, 255, 255, 0) 60%);
}

.slider-navigation {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
          justify-content: space-between;
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.slider-navigation > div {
  cursor: pointer;
}
.slider-navigation > div svg path {
  transition: 0.15s ease-in-out;
}
.slider-navigation > div:hover svg path {
  stroke: #1ce180;
}

.slick-dots {
  bottom: -24px;
}
.slick-dots li {
  margin: 0;
}

.slider.fade-transition .slide {
  opacity: 0;
  transition: 1s ease-in-out;
}
.slider.fade-transition .slide.slick-active {
  opacity: 1;
}

.info-container {
  display: -webkit-flex;
  display: flex;
}

.info-logo {
  width: 85px;
  height: 85px;
  border-radius: 45px;
  overflow: hidden;
}

.info-content {
  padding-left: 1.6rem;
}
.info-content .place-name {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.15;
  color: #2a3e4a;
  margin-bottom: 0.35em;
}
.info-content .place-address, .info-content .place-domain, .info-content a {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 1.2rem;
  line-height: 1.375;
  color: #7c8599;
  display: block;
}
.info-content a {
  color: #2a3e4a;
  margin-top: 1rem;
}

@media (max-width: 767px) {
  #map img[src*="logo.clearbit.com"] {
    border-radius: 80px;
    border: 3px solid #ffffff !important;
    height: 7rem !important;
    width: 7rem !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08) 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);
  }
}

.gm-style .gm-style-iw-t {
  -webkit-transform: translateX(90px);
          transform: translateX(90px);
}
.gm-style .gm-style-iw-t::after {
  top: -2px;
  left: -90px;
}

[role=dialog][class*=gm-style-] {
  border-radius: 140px;
}

section.mast .label {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 2.625rem;
  line-height: 1.15;
  margin-bottom: 1.5em;
}
section.mast .label img {
  display: block;
}
@media (min-width: 1024px) {
  section.mast .label img {
    display: inline-block;
  }
}
section.mast .container {
  padding-bottom: 4rem;
}
@media (min-width: 641px) {
  section.mast .container {
    padding-bottom: 19rem;
  }
}
section.mast .container figure.graphic {
  margin-top: 4rem;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
@media (min-width: 641px) {
  section.mast .container figure.graphic {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@media (min-width: 768px) {
  section.mast .container figure.graphic {
    -webkit-transform: scale(1);
            transform: scale(1);
    position: absolute;
    left: 60%;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 70rem;
    margin-top: 0;
  }
}
@media (min-width: 768px) {
  section.mast .container .content {
    width: 55%;
  }
}
section.mast .container .content .copy {
  margin-top: 2rem;
}

section.cta {
  position: relative;
  z-index: 3;
  padding-top: 4rem;
  padding-bottom: 5rem;
}
@media (min-width: 641px) {
  section.cta {
    padding: 0;
  }
}
@media (min-width: 641px) {
  section.cta .container {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 60%);
            transform: translate(-50%, 60%);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
  }
}
section.cta .card {
  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;
  padding: 40px 30px;
  background-color: #ffffff;
  border-radius: 6px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.03), 0 4px 4px rgba(0, 0, 0, 0.03), 0 8px 8px rgba(0, 0, 0, 0.03), 0 16px 16px rgba(0, 0, 0, 0.03), 0 32px 32px rgba(0, 0, 0, 0.03);
}
@media (min-width: 641px) {
  section.cta .card {
    padding: 50px;
    -webkit-flex-direction: row;
            flex-direction: row;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  section.cta .card {
    padding: 50px 50px 50px 75px;
  }
}
section.cta .call {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
  -webkit-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
          align-items: center;
  text-align: center;
}
@media (min-width: 641px) {
  section.cta .call {
    -webkit-justify-content: flex-start;
            justify-content: flex-start;
    -webkit-flex-direction: row;
            flex-direction: row;
    text-align: left;
  }
}
section.cta .action {
  padding-top: 3rem;
}
@media (min-width: 641px) {
  section.cta .action {
    padding-left: 3rem;
    padding-top: 0;
  }
}
section.cta figure {
  width: 85px;
  height: 85px;
  min-width: 85px;
  min-height: 85px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 2rem;
}
@media (min-width: 641px) {
  section.cta figure {
    margin-right: 40px;
    margin-bottom: 0;
  }
}
section.cta .label {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.1;
  color: #7C889C;
  margin-bottom: 1rem;
}
@media (min-width: 641px) {
  section.cta .label {
    margin-bottom: 0.15em;
  }
}
@media (min-width: 768px) {
  section.cta .label {
    font-size: 2.2rem;
  }
}
section.cta p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.1;
  color: #2a3e4a;
}
@media (min-width: 768px) {
  section.cta p {
    font-size: 3rem;
  }
}

section.customer-logos {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
@media (min-width: 641px) {
  section.customer-logos {
    padding-top: 15rem;
    padding-bottom: 5rem;
  }
}
section.customer-logos .container {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-around;
          justify-content: space-around;
  -webkit-align-items: center;
          align-items: center;
  padding-bottom: 3rem;
}
section.customer-logos p {
  text-align: center;
  max-width: 67.5rem;
  margin-left: auto;
  margin-right: auto;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 1.25;
  color: #7C889C;
}
section.customer-logos figure {
  padding: 0 4rem 3rem;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  width: 100%;
  text-align: center;
}
@media (min-width: 641px) {
  section.customer-logos figure {
    width: 50%;
  }
}
@media (min-width: 1024px) {
  section.customer-logos figure {
    width: 25%;
  }
}
section.customer-logos img {
  max-height: 6rem;
  max-width: 20rem;
  max-width: 100%;
}

section.product-module-benefits {
  position: relative;
  z-index: 2;
  padding: 15rem 2rem 8rem;
}
section.product-module-benefits header {
  max-width: 725px;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 12.5rem;
}
section.product-module-benefits header figure {
  margin-bottom: 2.8rem;
}
section.product-module-benefits header .copy {
  padding-top: 2.4rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.38;
  text-align: center;
  color: #7C889C;
}
section.product-module-benefits .benefits-container {
  position: relative;
  max-width: 1180px;
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  section.product-module-benefits .benefits-container {
    display: -webkit-flex;
    display: flex;
  }
}
@media (max-width: 767px) {
  section.product-module-benefits .benefit-cards {
    padding-top: 3rem;
    padding-bottom: 3rem;
    border-radius: 7px;
    background-color: #ffffff;
    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 (min-width: 768px) {
  section.product-module-benefits .benefit-cards {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: calc(50% + 70px);
  }
}
section.product-module-benefits .benefit-cards button {
  position: relative;
  width: 100%;
}
@media (max-width: 767px) {
  section.product-module-benefits .benefit-cards button:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    bottom: 0;
    width: 90%;
    height: 1px;
    background-color: #7C889C;
    opacity: 0.15;
    transition: 0.3s ease-in-out;
    display: block;
  }
}
section.product-module-benefits .benefit {
  position: relative;
  padding: 20px 30px;
  border-radius: 7px;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  text-align: left;
}
@media (min-width: 768px) {
  section.product-module-benefits .benefit {
    margin-top: 24px;
    padding: 20px 45px 20px 35px;
  }
}
@media (min-width: 1024px) {
  section.product-module-benefits .benefit {
    padding: 20px 90px 20px 75px;
  }
}
section.product-module-benefits .benefit:not(:last-child):not(.active):not(.active_prev)::after {
  content: "";
  position: absolute;
  left: 60px;
  bottom: 0;
  width: calc(100% - 180px);
  height: 1px;
  background-color: #7C889C;
  opacity: 0.35;
  transition: 0.3s ease-in-out;
  display: block;
}
@media (min-width: 768px) {
  section.product-module-benefits .benefit.active {
    margin-bottom: 20px;
    padding: 40px 30px 40px;
    background-color: #ffffff;
    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);
    padding: 40px 45px 40px 35px;
  }
}
@media (min-width: 1024px) {
  section.product-module-benefits .benefit.active {
    padding: 40px 90px 40px 75px;
  }
}
section.product-module-benefits .benefit.active .heading_3 {
  color: #1ce180;
}
section.product-module-benefits .benefit.active + .solution {
  padding-top: 40px;
}
section.product-module-benefits .benefit .heading_3 {
  color: #7C889C;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.1;
  transition: 0.3s ease-in-out;
}
@media (min-width: 768px) {
  section.product-module-benefits .benefit .heading_3 {
    font-size: 2.2rem;
  }
}
section.product-module-benefits .benefit .copy {
  overflow: hidden;
  max-height: 0;
  transition: 0.3s ease-in-out;
}
section.product-module-benefits .benefit p {
  font-size: 1.5rem;
  line-height: 1.4;
  color: #7C889C;
}
@media (min-width: 768px) {
  section.product-module-benefits .benefit p {
    font-size: 1.8rem;
  }
}
section.product-module-benefits .graphic {
  padding-top: 2rem;
  position: relative;
  margin-left: auto;
  width: 100%;
  height: 55rem;
}
@media (min-width: 768px) {
  section.product-module-benefits .graphic {
    padding-top: 0;
    height: 69.4rem;
    width: calc(50% - 3rem);
  }
}
@media (min-width: 1024px) {
  section.product-module-benefits .graphic {
    width: 50%;
  }
}
section.product-module-benefits .graphic figure {
  height: 100%;
  position: absolute;
  opacity: 0;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.075), 0 4px 4px rgba(0, 0, 0, 0.075), 0 8px 8px rgba(0, 0, 0, 0.075), 0 16px 16px rgba(0, 0, 0, 0.075), 0 32px 32px rgba(0, 0, 0, 0.075), 0 64px 64px rgba(0, 0, 0, 0.075);
}
section.product-module-benefits .graphic figure img {
  -o-object-position: 100% 0;
     object-position: 100% 0;
}
section.product-module-benefits .graphic figure.active {
  opacity: 1;
}

section.tourial {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}
section.tourial header .copy p {
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
  color: #7C889C;
}

section.use-cases {
  padding-top: 8rem;
}
@media (min-width: 641px) {
  section.use-cases {
    padding-top: 125px;
  }
}
section.use-cases .ui-tabs.container {
  max-width: calc(1024px + 10%);
}
section.use-cases .ui-tabs .tab-container {
  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;
  margin-bottom: 3rem;
}
@media (min-width: 840px) {
  section.use-cases .ui-tabs .tab-container {
    -webkit-flex-direction: row;
            flex-direction: row;
  }
}
section.use-cases .ui-tabs button {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.1;
  color: #7C889C;
  padding: 1.5rem 3rem;
  border-radius: 8px;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  text-align: left;
  position: relative;
  transition: 0.25s ease-in-out;
  margin-bottom: 1.4rem;
}
@media (min-width: 1024px) {
  section.use-cases .ui-tabs button {
    font-size: 1.8rem;
    padding: 2rem 6rem;
  }
}
section.use-cases .ui-tabs button .icon {
  height: 3rem;
  width: 3rem;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
  margin-right: 0.9em;
}
section.use-cases .ui-tabs button:hover {
  background: rgba(255, 255, 255, 0.5);
}
section.use-cases .ui-tabs button.active {
  background-color: #ffffff;
  box-shadow: 0px 7.03px 5.27px rgba(79, 79, 91, 0.3);
}
section.use-cases figcaption {
  max-width: 515px;
  margin-left: auto;
  margin-right: auto;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
  color: #7C889C;
  margin-bottom: 4.4rem;
}

section.copy--image {
  position: relative;
  padding-top: 125px;
}
section.copy--image.reverse .container {
  -webkit-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media (min-width: 768px) {
  section.copy--image.reverse .container figure.graphic {
    right: 46%;
    left: auto;
  }
}
section.copy--image .container {
  text-align: center;
}
@media (min-width: 768px) {
  section.copy--image .container {
    text-align: left;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
            justify-content: space-between;
  }
}
section.copy--image .container figure {
  margin-top: 4rem;
}
@media (min-width: 768px) {
  section.copy--image .container figure {
    margin-top: 0;
    width: 50%;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
  }
}
section.copy--image .container .content {
  height: 100%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
@media (min-width: 768px) {
  section.copy--image .container .content {
    padding-left: 4rem;
    width: 50%;
  }
}
@media (min-width: 1024px) {
  section.copy--image .container .content {
    padding-left: 4rem;
    padding-right: 4rem;
    width: 45%;
  }
}
section.copy--image .container .content .icon {
  margin-bottom: 2rem;
  position: relative;
  left: -12px;
}
section.copy--image .container .content .copy {
  margin-top: 2rem;
}
section.copy--image .container .content .copy p {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #7C889C;
}
@media (min-width: 1024px) {
  section.copy--image .container .content .copy p {
    font-size: 1.8rem;
  }
}

.cta-contain {
  position: relative;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media (min-width: 641px) {
  .cta-contain {
    padding-top: 50px;
    padding-bottom: 150px;
  }
}
.cta-contain .video-bg {
  display: none;
  position: absolute;
  top: -150px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100%;
  max-width: 1440px;
  overflow: hidden;
  height: 50%;
  opacity: 1;
  transition: 1s ease-in-out;
  mix-blend-mode: multiply;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
@media (min-width: 641px) {
  .cta-contain .video-bg {
    display: block;
  }
}
.cta-contain .video-bg.hide {
  opacity: 0;
}
.cta-contain .video-bg::after {
  content: "";
  background-image: linear-gradient(rgba(255, 255, 225, 0) 0%, white 100%);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cta-contain .video-bg video {
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
  width: 100%;
  opacity: 0.15;
}

.form-cta {
  background-color: transparent;
  box-shadow: none;
}
@media (max-width: 640px) {
  .form-cta {
    padding: 7rem 0 4rem;
  }
}
.form-cta .form-contain {
  -webkit-flex-grow: 1;
          flex-grow: 1;
}
.form-cta .form-info {
  max-width: 100%;
  padding-right: 0;
}
@media (min-width: 768px) {
  .form-cta .form-info {
    padding-right: 3rem;
  }
}
.form-cta .form-info h4 {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
}
.form-cta .form-info .logo {
  height: 6rem;
  width: 6rem;
  border-radius: 3rem;
  overflow: hidden;
  margin-right: 2rem;
}
@media (min-width: 768px) {
  .form-cta .form-info {
    max-width: 38rem;
    padding-right: 0;
  }
}
.form-cta .actions {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
          justify-content: center;
}
.form-cta .hbspt-form .hs-button {
  cursor: pointer;
  padding: 1.8rem 4.7rem 1.95rem;
  color: #ffffff;
}
.form-cta .form-cta-contain {
  max-width: 900px;
}
.form-cta .card {
  background-color: #ffffff;
  -webkit-flex-grow: 1;
          flex-grow: 1;
  padding: 50px 44px 60px;
}
.form-cta p.heading {
  font-size: 4rem;
  font-size: clamp(3.2rem,6vw,4rem);
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #2a3e4a;
  margin-bottom: 0.65em;
  max-width: 100%;
}
.form-cta p {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.45;
  color: #7C889C;
  max-width: 47.5rem;
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(255, 255, 255, 0.95);
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  -webkit-justify-content: center;
          justify-content: center;
}
