@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;500;600;700;900&display=swap");
.text-light {
  font-family: "Manrope", sans-serif;
  font-weight: 300;
}

.text-regular {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}

.text-medium {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
}

.text-semibold {
  font-family: "Manrope", sans-serif;
  font-weight: 600;
}

.text-bold {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
}

/* COLORS */
:root {
  --primary_blue: #2E3D49;
  --primary_blue_rgb: 46,61,73;
  --primary_lightblue: #00c4ff;
  --primary_lightblue_rgb: 0,169,224;
  --primary_green: #1CE180;
  --primary_green_rgb: 28,225,128;
  --accent_darkgreen: #488950;
  --accent_coolgray: #7C889C;
  --accent_gray75: #383838;
  --accent_gray50: #70747D;
  --accent_gray25: #B7B9BD;
  --accent_gray10: #DDDFE5;
  --accent_gray05: #F5F6F7;
  --highlight_red: #FF4557;
  --highlight_lightblue: #A4E1DC;
  --color_cre: #246473;
  --color_retail: #0a8e8c;
  --color_restaurant: $primary_green;
  --color_franchise: #e89b26;
  --color_hospitality: #f4b120;
  --color_healthcare: #00acdf;
  --color_specialty_health: $highlight_red;
  --color_public_sector: #00a59e;
  --color_automotive: #2169b3;
  --color_private_equity: #a72d6e;
}

.green, .color--green {
  color: var(--primary_green);
}

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

.red, .color--red {
  color: var(--highlight_red);
}

.orange, .color--orange {
  color: #FFA147;
}

.purple, .color--purple {
  color: #8567FF;
}

.blue, .color--blue {
  color: var(--primary_blue);
}

.lightblue, .color--lightblue {
  color: var(--primary_lightblue);
}

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

.color--darkgray {
  color: var(--accent_gray75);
}

.color--gray50 {
  color: var(--accent_gray50);
}

.gray, .color--gray {
  color: var(--accent_gray50);
}

.lightgray, .color--lightgray {
  color: var(--accent_gray10);
}

.lightestgray, .color--lightestgray {
  color: var(--accent_gray05);
}

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

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

.bg-green, .bg--green {
  background-color: var(--primary_green);
}

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

.bg-blue, .bg--blue {
  background-color: var(--primary_blue);
}

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

.bg--darkgray {
  background-color: var(--accent_gray75);
}

.bg-gray, .bg--gray {
  background-color: var(--accent_gray50);
}

.bg-lightgray, .bg--lightgray {
  background-color: var(--accent_gray10);
}

.bg-lightestgray, .bg--lightestgray {
  background-color: var(--accent_gray05);
}

.bg--white {
  background-color: white;
}

.fill--green {
  fill: var(--primary_green);
}

.fill--blue {
  fill: var(--primary_blue);
}

.fill--lightblue {
  fill: var(--primary_lightblue);
}

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

.fill--accent_gray75 {
  fill: var(--accent_gray75);
}

.fill--accent_gray50 {
  fill: var(--accent_gray50);
}

.fill--accent_gray10 {
  fill: var(--accent_gray10);
}

.fill--accent_gray05 {
  fill: var(--accent_gray05);
}

.stroke--green {
  stroke: var(--primary_green);
}

.stroke--blue {
  stroke: var(--primary_blue);
}

.stroke--lightblue {
  stroke: var(--primary_lightblue);
}

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

.stroke--accent_gray75 {
  stroke: var(--accent_gray75);
}

.stroke--accent_gray50 {
  stroke: var(--accent_gray50);
}

.stroke--accent_gray10 {
  stroke: var(--accent_gray10);
}

.stroke--accent_gray05 {
  stroke: var(--accent_gray05);
}

* {
  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;
  -webkit-font-feature-settings: "salt" 0;
          font-feature-settings: "salt" 0;
  -webkit-font-variant-ligatures: none;
          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;
  -webkit-font-feature-settings: "salt" 1;
          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;
}
ul.arrow li {
  display: flex;
  align-items: baseline;
}
ul.arrow li::before {
  content: "";
  display: block;
  background-image: url("../images/core-icons/icon-list_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  width: 15px;
  height: 12px;
  padding-right: 20px;
}

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: flex;
  height: 100%;
  width: 100%;
}

.ampersand {
  -webkit-font-feature-settings: "salt" 1;
          font-feature-settings: "salt" 1;
  -webkit-font-variant-ligatures: none;
          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: #2E3D49;
  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: #2E3D49;
}
.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: #2E3D49;
}
.btn.large {
  font-size: 2.3rem;
  padding: 1.4rem 4.8rem;
}
.btn.btn--ghost {
  border: 1px solid;
}
.btn.btn--ghost.btn--blue {
  border-color: #2E3D49;
}
.btn.btn--ghost.btn--green {
  border-color: #1CE180;
}
.btn.btn--ghost.btn--white {
  border-color: #ffffff;
  color: #ffffff;
  background: transparent;
}
.btn.btn--cre {
  color: #ffffff;
  background-color: #246473;
}
.btn.btn--cre:hover {
  box-shadow: 0 32px 64px 0 rgba(36, 100, 115, 0.1), 0 16px 32px 0 rgba(36, 100, 115, 0.12), 0 8px 16px 0 rgba(36, 100, 115, 0.14), 0 4px 8px 0 rgba(36, 100, 115, 0.16), 0 2px 4px 0 rgba(36, 100, 115, 0.5), 0 1px 2px 0 rgba(36, 100, 115, 0.6);
}
.btn.btn--retail {
  color: #ffffff;
  background-color: #0a8e8c;
}
.btn.btn--retail:hover {
  box-shadow: 0 32px 64px 0 rgba(10, 142, 140, 0.1), 0 16px 32px 0 rgba(10, 142, 140, 0.12), 0 8px 16px 0 rgba(10, 142, 140, 0.14), 0 4px 8px 0 rgba(10, 142, 140, 0.16), 0 2px 4px 0 rgba(10, 142, 140, 0.5), 0 1px 2px 0 rgba(10, 142, 140, 0.6);
}
.btn.btn--restaurant {
  color: #ffffff;
  background-color: #1CE180;
}
.btn.btn--restaurant: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(28, 225, 128, 0.5), 0 1px 2px 0 rgba(28, 225, 128, 0.6);
}
.btn.btn--franchise {
  color: #ffffff;
  background-color: #e89b26;
}
.btn.btn--franchise:hover {
  box-shadow: 0 32px 64px 0 rgba(232, 155, 38, 0.1), 0 16px 32px 0 rgba(232, 155, 38, 0.12), 0 8px 16px 0 rgba(232, 155, 38, 0.14), 0 4px 8px 0 rgba(232, 155, 38, 0.16), 0 2px 4px 0 rgba(232, 155, 38, 0.5), 0 1px 2px 0 rgba(232, 155, 38, 0.6);
}
.btn.btn--hospitality {
  color: #ffffff;
  background-color: #f4b120;
}
.btn.btn--hospitality:hover {
  box-shadow: 0 32px 64px 0 rgba(244, 177, 32, 0.1), 0 16px 32px 0 rgba(244, 177, 32, 0.12), 0 8px 16px 0 rgba(244, 177, 32, 0.14), 0 4px 8px 0 rgba(244, 177, 32, 0.16), 0 2px 4px 0 rgba(244, 177, 32, 0.5), 0 1px 2px 0 rgba(244, 177, 32, 0.6);
}
.btn.btn--healthcare {
  color: #ffffff;
  background-color: #00acdf;
}
.btn.btn--healthcare:hover {
  box-shadow: 0 32px 64px 0 rgba(0, 172, 223, 0.1), 0 16px 32px 0 rgba(0, 172, 223, 0.12), 0 8px 16px 0 rgba(0, 172, 223, 0.14), 0 4px 8px 0 rgba(0, 172, 223, 0.16), 0 2px 4px 0 rgba(0, 172, 223, 0.5), 0 1px 2px 0 rgba(0, 172, 223, 0.6);
}
.btn.btn--specialty_health {
  color: #ffffff;
  background-color: #FF4557;
}
.btn.btn--specialty_health:hover {
  box-shadow: 0 32px 64px 0 rgba(255, 69, 87, 0.1), 0 16px 32px 0 rgba(255, 69, 87, 0.12), 0 8px 16px 0 rgba(255, 69, 87, 0.14), 0 4px 8px 0 rgba(255, 69, 87, 0.16), 0 2px 4px 0 rgba(255, 69, 87, 0.5), 0 1px 2px 0 rgba(255, 69, 87, 0.6);
}
.btn.btn--public_sector {
  color: #ffffff;
  background-color: #00a59e;
}
.btn.btn--public_sector:hover {
  box-shadow: 0 32px 64px 0 rgba(0, 165, 158, 0.1), 0 16px 32px 0 rgba(0, 165, 158, 0.12), 0 8px 16px 0 rgba(0, 165, 158, 0.14), 0 4px 8px 0 rgba(0, 165, 158, 0.16), 0 2px 4px 0 rgba(0, 165, 158, 0.5), 0 1px 2px 0 rgba(0, 165, 158, 0.6);
}
.btn.btn--automotive {
  color: #ffffff;
  background-color: #2169b3;
}
.btn.btn--automotive:hover {
  box-shadow: 0 32px 64px 0 rgba(33, 105, 179, 0.1), 0 16px 32px 0 rgba(33, 105, 179, 0.12), 0 8px 16px 0 rgba(33, 105, 179, 0.14), 0 4px 8px 0 rgba(33, 105, 179, 0.16), 0 2px 4px 0 rgba(33, 105, 179, 0.5), 0 1px 2px 0 rgba(33, 105, 179, 0.6);
}
.btn.btn--private_equity {
  color: #ffffff;
  background-color: #a72d6e;
}
.btn.btn--private_equity:hover {
  box-shadow: 0 32px 64px 0 rgba(167, 45, 110, 0.1), 0 16px 32px 0 rgba(167, 45, 110, 0.12), 0 8px 16px 0 rgba(167, 45, 110, 0.14), 0 4px 8px 0 rgba(167, 45, 110, 0.16), 0 2px 4px 0 rgba(167, 45, 110, 0.5), 0 1px 2px 0 rgba(167, 45, 110, 0.6);
}

.btn--lightblue {
  text-transform: none;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  color: #fff;
  background-color: #00c4ff;
  border: 1px solid #00c4ff;
  transition: 0.15s ease-in-out;
}
.btn--lightblue.hover-shadow--blue {
  border-color: #00c4ff;
}
.btn--lightblue.hover-shadow--blue:hover {
  border-color: #66dcff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.16), 0 2px 4px rgba(0, 0, 0, 0.14), 0 4px 8px rgba(0, 0, 0, 0.12), 0 8px 16px rgba(42, 62, 74, 0.1), 0 16px 32px rgba(0, 196, 255, 0.08), 0 32px 64px rgba(0, 196, 255, 0.06);
}
.btn--lightblue.hover-shadow--lightblue {
  border-color: #00c4ff;
}
.btn--lightblue.hover-shadow--lightblue:hover {
  border-color: #66dcff;
  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(0, 196, 255, 0.1), 0 16px 32px rgba(0, 196, 255, 0.08), 0 32px 64px rgba(0, 196, 255, 0.06);
}
.btn--lightblue.btn--large {
  font-size: 2rem;
  padding: 2rem 4rem;
}

.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: var(--primary_lightblue);
  opacity: 0;
  transition: 0.6s;
}
.link.link--small {
  font-size: 1.3rem;
}
.link.color--white, .link.link--white {
  color: white;
}
.link.color--darkgray, .link.link--darkgray {
  color: var(--accent_gray75);
}
.link.color--green, .link.link--green {
  color: var(--primary_green);
}

.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: var(--accent_gray50);
  display: block;
  margin-top: 2.5rem;
}
.hbspt-form input, .hbspt-form select, .hbspt-form textarea {
  width: 100%;
  background: #eeeef2;
  border: 0;
  border-radius: 0.4rem;
  min-height: 5.5rem;
  margin-bottom: 1rem;
  padding: 2rem;
  color: var(--primary_blue);
  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, .hbspt-form textarea::-webkit-input-placeholder {
  color: var(--accent_gray50);
  opacity: 1;
}
.hbspt-form input::-moz-placeholder, .hbspt-form select::-moz-placeholder, .hbspt-form textarea::-moz-placeholder {
  color: var(--accent_gray50);
  opacity: 1;
}
.hbspt-form input:-ms-input-placeholder, .hbspt-form select:-ms-input-placeholder, .hbspt-form textarea:-ms-input-placeholder {
  color: var(--accent_gray50);
  opacity: 1;
}
.hbspt-form input::placeholder, .hbspt-form select::placeholder, .hbspt-form textarea::placeholder {
  color: var(--accent_gray50);
  opacity: 1;
}
.hbspt-form input:-ms-input-placeholder, .hbspt-form select:-ms-input-placeholder, .hbspt-form textarea:-ms-input-placeholder {
  color: var(--accent_gray50);
  opacity: 1;
}
.hbspt-form input::-ms-input-placeholder, .hbspt-form select::-ms-input-placeholder, .hbspt-form textarea::-ms-input-placeholder {
  color: var(--accent_gray50);
  opacity: 1;
}
.hbspt-form .hs-input.is-placeholder {
  color: #ADAEB1;
}
.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: var(--primary_blue);
}
.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(var(--primary_green), 0.7);
  box-shadow: 0 0 0 3px -moz-mac-focusring;
  color: #222;
  outline: none;
}
.hbspt-form select option {
  font-weight: normal;
  color: var(--primary_blue);
}
.hbspt-form textarea {
  display: block;
  width: 100%;
  border-radius: 0.4rem;
  padding: 2rem;
  color: var(--primary_blue);
}
.hbspt-form .actions {
  display: flex;
  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.6rem 1.3rem;
  font-size: 1.232rem;
  text-align: center;
  text-transform: uppercase;
  background: var(--primary_green);
  color: white;
  width: auto;
  border-radius: 0;
  cursor: pointer;
}
@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 {
  border-color: #75eeb2;
  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(0, 196, 255, 0.1), 0 16px 32px rgba(0, 196, 255, 0.08), 0 32px 64px rgba(0, 196, 255, 0.06);
}
.hbspt-form legend.hs-field-desc {
  font-size: 1.2rem;
  margin-top: 1rem;
  padding-bottom: 0.4rem;
}

.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: 700;
  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: flex;
  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 {
    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: 40rem;
    margin-right: clamp(2rem, 10%, 4rem);
  }
}
.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 var(--accent_gray05);
  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;
  }
}
.form-cta .form-contain .hbspt-form .submitted-message {
  min-height: 36rem;
}
.form-cta .form-contain .hbspt-form .submitted-message p {
  font-size: 1.75rem;
  line-height: 1.5;
}

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: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1084px;
  margin-bottom: 3.6rem;
}
@media (min-width: 768px) {
  section.bloq--clients .logos {
    justify-content: space-between;
  }
}
section.bloq--clients .logos .logo {
  margin: 3rem 0;
  width: 50%;
  display: flex;
  justify-content: 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: flex;
  }
}
section.bloq--clients .case-study figure {
  position: relative;
  background-color: #ADAEB1;
  width: 100%;
  height: 250px;
  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: flex;
  flex-direction: column;
  justify-content: space-between;
  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: flex;
  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: var(--primary_green);
  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%;
  }
}
.padding.padding-small {
  padding-left: 5%;
  padding-right: 5%;
}

h1 {
  position: relative;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 10vw;
  line-height: 10vw;
  color: #000000;
  letter-spacing: -1px;
  text-align: left;
}
.adwords_landing_pages h1, .landing_pages h1, .landing h1 {
  padding-top: 50px;
}
@media (min-width: 641px) {
  .adwords_landing_pages h1, .landing_pages h1, .landing h1 {
    font-size: 4rem;
    line-height: 1.5;
    max-width: 850px;
  }
}
.thank_you_pages h1 {
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  margin-bottom: 10px;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 641px) {
  .thank_you_pages h1 {
    font-size: 5.6rem;
    line-height: 1.5;
    padding-top: 20px;
  }
}
.scout_demo h1 {
  position: relative;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 10vw;
  line-height: 10vw;
  color: #000000;
  letter-spacing: -1px;
  text-align: center;
  padding: 0px 0 30px 0;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 641px) {
  .scout_demo h1 {
    font-size: 6vw;
    line-height: 7vw;
  }
}
@media (min-width: 1024px) {
  .scout_demo h1 {
    font-size: 4.4rem;
    line-height: 1.5;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }
}

.adwords_landing_pages h2, .landing_pages h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 1.5;
  color: #7a7a7a;
  font-weight: 300;
  margin-top: 5px;
  margin-bottom: 10px;
}
.scout_demo h2 {
  position: relative;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 8vw;
  line-height: 9vw;
  color: #000000;
  letter-spacing: -1px;
  text-align: left;
  padding-top: 50px;
}
@media (min-width: 641px) {
  .scout_demo h2 {
    font-size: 4rem;
    line-height: 1.5;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
  }
}
.thank_you_pages .content h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 1.5;
  color: #7a7a7a;
  font-weight: 300;
  margin-top: 5px;
  margin-bottom: 20px;
  text-align: center;
}
.landing-related h2 {
  color: #000000;
  margin-top: 30px;
  font-size: 6vw;
  line-height: 7vw;
}
@media (min-width: 768px) {
  .landing-related h2 {
    margin-top: 0;
  }
}
@media (min-width: 1024px) {
  .landing-related h2 {
    font-size: 4rem;
    line-height: 1.5;
  }
}
.thank_you_pages .featured h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 12vw;
  line-height: 11vw;
  color: white;
}
@media (min-width: 641px) {
  .thank_you_pages .featured h2 {
    font-size: 5rem;
    line-height: 1.5;
  }
}
.thank-you-related h2 {
  font-size: 5vw;
  line-height: 6vw;
}
@media (min-width: 641px) {
  .thank-you-related h2 {
    font-size: 2.6rem;
    line-height: 1.5;
  }
}

.scout_demo h3 {
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 1.5;
  color: #7a7a7a;
  font-weight: 300;
  margin-top: 5px;
  margin-bottom: 10px;
}

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

.pill {
  position: relative;
  font-size: 1.2rem;
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  color: #000000;
  border: 2px solid #1ce180;
  border-radius: 2em;
  padding: 7px 20px;
  display: inline-block;
  text-transform: uppercase;
  transition: 0.3s;
  transition-delay: 1s;
}

.contain {
  display: flex;
  justify-content: center;
  flex-direction: column;
  flex: 1;
  align-items: flex-start;
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .contain {
    flex-direction: row;
    margin-bottom: 60px;
    max-width: 96%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1300px) {
  .contain {
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
  }
}
.thank-you-related-contain .contain {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: space-between;
  border-top: 1px solid #dddddd;
  padding-top: 60px;
  flex-wrap: wrap;
}
@media (min-width: 960px) {
  .thank-you-related-contain .contain {
    flex-direction: row;
  }
}
.thank-you-related-contain .contain::after {
  display: none;
}

@media (min-width: 1024px) {
  .nav-ghost nav {
    opacity: 0.2;
  }
}
.nav-ghost nav:hover {
  opacity: 1;
}

.landing p {
  color: #808080;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 15px;
}
.landing .content ul {
  color: #808080;
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 20px;
  margin-left: 20px;
  padding-left: 1em;
  text-indent: -1em;
  list-style-position: inside;
}
@media (min-width: 768px) {
  .landing .content ul {
    max-width: 420px;
  }
}
.landing .content ul li {
  list-style-image: none;
  list-style-type: none;
  margin-bottom: 10px;
}
.landing .content ul li::before {
  content: "•";
  margin-right: 10px;
}

.landing-form {
  padding: 45px 5% 45px 5%;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  width: 100%;
}
@media (min-width: 768px) {
  .landing-form {
    width: 45%;
  }
}
@media (min-width: 1024px) {
  .landing-form {
    width: 40%;
  }
}
.landing-form iframe {
  width: 100%;
}
.landing-form .landing-form-title {
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 1.5;
  margin-bottom: 20px;
}

.adwords_landing_pages .content, .landing_pages .content {
  padding-bottom: 60px;
  width: 100%;
}
@media (min-width: 768px) {
  .adwords_landing_pages .content, .landing_pages .content {
    width: 55%;
    padding-right: 60px;
  }
}
@media (min-width: 1024px) {
  .adwords_landing_pages .content, .landing_pages .content {
    width: 60%;
  }
}
@media (min-width: 768px) {
  .scout_demo .content {
    padding-right: 60px;
  }
}
@media (min-width: 1024px) {
  .scout_demo .content {
    width: 45%;
  }
}
.thank_you_pages .content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .thank_you_pages .content {
    width: 50%;
  }
}
.content .copy {
  margin-top: 20px;
  width: 100%;
}

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

.landing-related {
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
  padding: 60px 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1024px) {
  .landing-related {
    flex-direction: row;
    padding: 75px 24px;
  }
}
.landing-related .copy {
  width: 100%;
}
@media (min-width: 1024px) {
  .landing-related .copy {
    width: 47%;
  }
}
.landing-related .image {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (min-width: 768px) {
  .landing-related .image {
    height: 365px;
  }
}
@media (min-width: 1024px) {
  .landing-related .image {
    width: 47%;
  }
}
.landing-related p {
  margin: 10px 0 0 0;
}
.landing-related a {
  margin-top: 30px;
}

.thank-you-related-contain .related-title {
  color: #828282;
  text-align: center;
  margin: 0px auto 40px auto;
  font-size: 2.6rem;
  flex-basis: 100%;
}
.thank-you-related-contain .label {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  color: #828282;
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.thank-you-related-contain .thank-you-related {
  display: block;
  width: 100%;
  margin: 0 auto 50px auto;
  -webkit-transform: none;
          transform: none;
  transition: 0.6s;
}
@media (min-width: 641px) {
  .thank-you-related-contain .thank-you-related {
    width: 80%;
  }
}
@media (min-width: 960px) {
  .thank-you-related-contain .thank-you-related {
    width: calc(33.33% - 30px);
  }
}
.thank-you-related-contain .thank-you-related:hover {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
.thank-you-related-contain img {
  height: 232px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  margin-bottom: 20px;
}
.thank-you-related-contain a {
  color: #000000;
}

.featured {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 100px 20px;
  background: black;
  background-image: url("https://cdn01.buxtonco.com/blog/bap-bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
  border-radius: 5px;
  width: 100%;
}
.featured p {
  font-size: 2rem;
  margin: 10px 0 20px 0;
  color: white;
}

.scout_demo .header {
  margin-top: 50px;
  display: flex;
  align-items: center;
  flex-direction: column;
}
.scout_demo .images {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.scout_demo svg {
  -webkit-animation: opacity 1s linear;
          animation: opacity 1s linear;
}
.scout_demo .scout-logo {
  margin-bottom: 10px;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}
.scout_demo .line {
  width: 36px;
  height: 1px;
  background: #dddddd;
  margin: 30px 0 40px 0;
}
.scout_demo .scout-target {
  -webkit-animation: rotate 0.5s linear;
          animation: rotate 0.5s linear;
  -webkit-transform-origin: center center;
          transform-origin: center center;
}

.scout-demo-video {
  max-width: 96%;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1300px) {
  .scout-demo-video {
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
  }
}

@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}

@keyframes rotate {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
}
@-webkit-keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes opacity {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
