.scene .background,
.scene .background-img,
.scene .background-img-mobile,
.scene .gradient {
  background: #020d45;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: 1.25s ease-in-out;
  transition: 1.25s ease-in-out;
}
@-webkit-keyframes gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
@keyframes gradient {
  0% {
    background-position: 0 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0 50%;
  }
}
.scene .gradient {
  background: linear-gradient(
    -45deg,
    rgba(0, 0, 0, 0.01),
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.05),
    rgba(0, 0, 0, 0.1)
  );
  background-size: 400% 400%;
  -webkit-animation: gradient 10s ease infinite;
  animation: gradient 10s ease infinite;
  opacity: 1;
}
.scene .background-img,
.scene .background-img-mobile {
  background: 0 0;
  background-size: cover;
  background-position: center;
  top: 100%;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.scene .background-img-mobile {
  opacity: 0.3;
}
.scene .banner-logos {
  opacity: 0;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.scene .canvas-container {
  width: 300% !important;
  height: 100% !important;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  -ms-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  z-index: 0;
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}
.scene .canvas {
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media only screen and (min-width: 1400px) {
  .scene .canvas {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
.scene .canvas.active {
  opacity: 0.3;
}
@media (min-width: 992px) {
  .scene .canvas.active {
    opacity: 1;
  }
}
@-webkit-keyframes line {
  0% {
    height: 0;
    top: 20px;
  }
  50% {
    height: 60px;
  }
  100% {
    height: 0;
    top: 95px;
  }
}
@keyframes line {
  0% {
    height: 0;
    top: 20px;
  }
  50% {
    height: 60px;
  }
  100% {
    height: 0;
    top: 95px;
  }
}
.scene .scroll-to-explore {
  width: 170px;
  position: fixed;
  bottom: -124px;
  left: 20px;
  z-index: 5;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.scene .scroll-to-explore button {
  background: 0 0;
  border: none;
  padding: 0 0 70px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
  font-size: 0.8rem;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
@media (min-width: 768px) {
  .scene .scroll-to-explore button {
    font-size: 1.3rem;
  }
}
.scene .scroll-to-explore button:before {
  content: "";
  background: #fff;
  width: 2px;
  height: 60px;
  border-radius: 5px;
  display: block;
  position: absolute;
  top: 35px;
  left: 1px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  -webkit-animation: line 1s linear infinite;
  animation: line 1s linear infinite;
}
.scene .scroll-to-explore button span {
  opacity: 1;
  display: block;
  visibility: visible;
  -webkit-transition:
    opacity 0.25s ease-in-out 2.25s,
    visibility 0s ease-in-out 0.25s;
  transition:
    opacity 0.25s ease-in-out 2.25s,
    visibility 0s ease-in-out 0.25s;
}
.scene .scroll-to-explore.half-active {
  width: 10px;
}
.scene .scroll-to-explore.half-active span {
  opacity: 0;
  visibility: hidden;
  -webkit-transition:
    opacity 0.25s ease-in-out,
    visibility 0s ease-in-out 0.25s;
  transition:
    opacity 0.25s ease-in-out,
    visibility 0s ease-in-out 0.25s;
}
.scene .scroll-to-explore.active {
  opacity: 1;
  bottom: 0;
  -webkit-transition: all 0.25s ease-in-out 2s;
  transition: all 0.25s ease-in-out 2s;
}
.scene .scroll-to-explore.dark button {
  color: #020d45;
}
.scene .scroll-to-explore.dark button:before {
  background: #020d45;
}
@-webkit-keyframes countdown {
  from {
    stroke-dashoffset: 113px;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes countdown {
  from {
    stroke-dashoffset: 113px;
  }
  to {
    stroke-dashoffset: 0;
  }
}
.scene .content-nav {
  position: fixed;
  top: 50%;
  right: -50px;
  z-index: 5;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.25s ease-in-out 0.25s;
  transition: all 0.25s ease-in-out 0.25s;
}
.scene .content-nav.active {
  right: 0;
}
@media (min-width: 768px) {
  .scene .content-nav.active {
    right: 20px;
  }
}
.scene .content-nav .content-nav-btn {
  background: 0 0;
  width: 48px;
  height: 48px;
  display: block;
  position: relative;
  text-indent: -999px;
  overflow: hidden;
  border: none;
}
.scene .content-nav .content-nav-btn:after,
.scene .content-nav .content-nav-btn:before {
  content: "";
  background: #28dc78;
  width: 5px;
  height: 5px;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.scene .content-nav .content-nav-btn svg {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-49%, -49%) rotateY(-180deg) rotateZ(-90deg);
  transform: translate(-49%, -49%) rotateY(-180deg) rotateZ(-90deg);
}
.scene .content-nav .content-nav-btn svg circle {
  stroke-dasharray: 113px;
  stroke-dashoffset: 113px;
  stroke-linecap: round;
  stroke-width: 2px;
  stroke: #28dc78;
  fill: none;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.scene .content-nav .content-nav-btn.active:before {
  opacity: 1;
}
.scene .content-nav .content-nav-btn.active svg circle {
  -webkit-animation: countdown 1.5s linear forwards;
  animation: countdown 1.5s linear forwards;
}
.scene .content-nav.dark .content-nav-btn:after {
  background: #28dc78;
}
.scene .content-nav.dark .content-nav-btn:before {
  border-color: #28dc78;
}
.scene .content-nav.dark .content-nav-btn svg circle {
  stroke: #28dc78;
}
.scene .strip {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 0.9rem;
  visibility: hidden;
  opacity: 0;
  z-index: 2;
  -webkit-transition:
    opacity 0.5s ease-in-out,
    margin-top 0.5s ease-in-out 0.75s;
  transition:
    opacity 0.5s ease-in-out,
    margin-top 0.5s ease-in-out 0.75s;
}
@media (min-width: 768px) {
  .scene .strip {
    font-size: 1.3rem;
  }
}
.scene .strip .strip-row {
  height: 100vh;
}
.scene .strip .strip-content > div > * {
  position: relative;
  z-index: 2;
}
.scene .strip h1,
.scene .strip h2,
.scene .strip h3,
.scene .strip h4,
.scene .strip h5,
.scene .strip h6,
.scene .strip p {
  margin: 0 0 1rem 0;
}
@media (min-width: 768px) {
  .scene .strip h1,
  .scene .strip h2,
  .scene .strip h3,
  .scene .strip h4,
  .scene .strip h5,
  .scene .strip h6,
  .scene .strip p {
    margin: 0 0 2rem 0;
  }
}
.scene .strip h1 span,
.scene .strip h2 span,
.scene .strip h3 span,
.scene .strip h4 span,
.scene .strip h5 span,
.scene .strip h6 span {
  display: block;
  overflow: hidden;
}
.scene .strip h1,
.scene .strip h2 {
  font-size: 1.25rem;
  line-height: 1.3;
}
.scene .strip h1 span,
.scene .strip h2 span {
  height: 32px;
  padding-top: 32px;
}
@media (min-width: 576px) {
  .scene .strip h1,
  .scene .strip h2 {
    font-size: 2rem;
  }
  .scene .strip h1 span,
  .scene .strip h2 span {
    height: 42px;
    padding-top: 42px;
  }
}
@media (min-width: 768px) {
  .scene .strip h1 {
    font-size: 4rem;
    line-height: 80px;
  }
  .scene .strip h1 span {
    height: 78px;
    padding-top: 78px;
  }
}
@media (min-width: 768px) {
  .scene .strip h2 {
    font-size: 2.8rem;
  }
  .scene .strip h2 span {
    height: 68px;
    padding-top: 68px;
  }
}
.scene .strip p {
  font-size: 0.9rem;
  line-height: 1.8;
  font-weight: 600;
}
@media (min-width: 768px) {
  .scene .strip p {
    font-size: 1.3rem;
    line-height: 1.8;
    font-weight: 300;
  }
}
.scene .strip .sub {
  position: relative;
}
.scene .strip .sub .line {
  background: #fff;
  width: 0;
  height: 2px;
  position: absolute;
  top: 12px;
  left: -10px;
}
@media (min-width: 768px) {
  .scene .strip .sub .line {
    top: 18px;
  }
}
.scene .strip .sub span:not(.line) {
  height: 30px;
  padding-top: 30px;
  display: block;
  overflow: hidden;
}
.scene .strip .description {
  position: relative;
  top: 20px;
  opacity: 0;
}
.scene .strip .link {
  position: relative;
  padding: 0 50px 0 0;
  display: inline-block;
  text-decoration: none;
}
.scene .strip .link span:not(.arrow) {
  height: 36px;
  line-height: 36px;
  display: block;
  padding: 36px 0 0 0;
  overflow: hidden;
}
.scene .strip .link .arrow {
  width: 40px;
  height: 20px;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  overflow: hidden;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.scene .strip .link .arrow:after {
  content: "";
  background: #fff;
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  top: 50%;
  left: -30px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  -webkit-transition: all 0.25s ease-in-out 0.5s;
  transition: all 0.25s ease-in-out 0.5s;
}
.scene .strip .link .arrow:before {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: -15px;
  -webkit-transform: translate(0, -50%) rotate(315deg);
  -ms-transform: translate(0, -50%) rotate(315deg);
  transform: translate(0, -50%) rotate(315deg);
  -webkit-transition: all 0.25s ease-in-out 0.5s;
  transition: all 0.25s ease-in-out 0.5s;
}
.scene .strip .link:hover .arrow {
  right: -10px;
}
.scene .strip.dark .link .arrow:after {
  background: #020d45;
}
.scene .strip.dark .link .arrow:before {
  border-color: #020d45;
}
.scene .strip .button {
  background-color: #020d45;
  display: inline-block;
  text-align: center;
  margin-top: 0;
  padding-top: 10px;
  font-weight: 700;
}
.scene .strip .button a {
  padding: 13px;
  text-decoration: none;
  border-radius: 9999px;
  font-size: 22px;
  font-weight: lighter;
  color: #fff;
}
.scene .strip.light .button {
  background-color: #fff;
}
.scene .strip.light .button a {
  color: #020d45;
}
.scene .strip .delay-0 {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.scene .strip .delay-1 {
  -webkit-transition: all 0.25s ease-in-out 125ms;
  transition: all 0.25s ease-in-out 125ms;
}
.scene .strip .delay-2 {
  -webkit-transition: all 0.25s ease-in-out 0.25s;
  transition: all 0.25s ease-in-out 0.25s;
}
.scene .strip .delay-3 {
  -webkit-transition: all 0.25s ease-in-out 375ms;
  transition: all 0.25s ease-in-out 375ms;
}
.scene .strip .delay-4 {
  -webkit-transition: all 0.25s ease-in-out 0.5s;
  transition: all 0.25s ease-in-out 0.5s;
}
.scene .strip .delay-5 {
  -webkit-transition: all 0.25s ease-in-out 0.5s;
  transition: all 0.25s ease-in-out 0.5s;
}
.scene .strip .delay-6 {
  -webkit-transition: all 0.25s ease-in-out 0.5s;
  transition: all 0.25s ease-in-out 0.5s;
}
.scene .strip.active {
  visibility: visible;
}
.scene .strip.active .sub .line {
  width: 15px;
  left: -25px;
}
@media (min-width: 768px) {
  .scene .strip.active .sub .line {
    width: 20px;
    left: -30px;
  }
}
.scene .strip.active .sub span:not(.line) {
  padding-top: 0;
}
.scene .strip.active h1 span,
.scene .strip.active h2 span {
  padding-top: 0;
}
.scene .strip.active .description {
  top: 0;
  opacity: 1;
}
.scene .strip.active .link span:not(.arrow) {
  padding-top: 0;
}
.scene .strip.active .link .arrow:after {
  left: 0;
  -webkit-transition: all 0.25s ease-in-out 1.125s;
  transition: all 0.25s ease-in-out 1.125s;
}
.scene .strip.active .link .arrow:before {
  left: 25px;
  -webkit-transition: all 0.25s ease-in-out 1.125s;
  transition: all 0.25s ease-in-out 1.125s;
}
.scene .strip.active .delay-0 {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.scene .strip.active .delay-1 {
  -webkit-transition: all 0.25s ease-in-out 125ms;
  transition: all 0.25s ease-in-out 125ms;
}
.scene .strip.active .delay-2 {
  -webkit-transition: all 0.25s ease-in-out 0.25s;
  transition: all 0.25s ease-in-out 0.25s;
}
.scene .strip.active .delay-3 {
  -webkit-transition: all 0.25s ease-in-out 375ms;
  transition: all 0.25s ease-in-out 375ms;
}
.scene .strip.active .delay-4 {
  -webkit-transition: all 0.25s ease-in-out 0.5s;
  transition: all 0.25s ease-in-out 0.5s;
}
.scene .strip.active .delay-5 {
  -webkit-transition: all 0.25s ease-in-out 625ms;
  transition: all 0.25s ease-in-out 625ms;
}
.scene .strip.active .delay-6 {
  -webkit-transition: all 0.25s ease-in-out 0.75s;
  transition: all 0.25s ease-in-out 0.75s;
}
/* .replace-content .scene {
  margin-top: -99px;
}
@media all and (min-width: 1200px) {
  .replace-content .scene {
    margin-top: -167px;
  }
}
.replace-content .scene .strip:first-of-type {
  padding-top: 45px;
} */
.scene-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.25s ease-in-out;
  transition: opacity 0.25s ease-in-out;
  z-index: -1;
}
.scene-header.active {
  opacity: 1;
}
.scene-header .background {
  background-color: #fff;
}
.scene-header .strip {
  height: 100vh;
}
@media (min-width: 992px) {
  .align-canvas-right .scene .canvas-container {
    left: 70%;
    z-index: 1;
  }
}
@media (min-width: 992px) {
  .align-canvas-left .scene .canvas-container {
    left: -70%;
    z-index: 1;
  }
}
.has-background-img .background-img,
.has-background-img .background-img-mobile {
  top: 0;
  -webkit-transition: all 1s ease-in-out 0.73s;
  transition: all 1s ease-in-out 0.73s;
}
body.has-logos .banner-logos {
  opacity: 1;
  -webkit-transition: all 1s ease-in-out 0.75s;
  transition: all 1s ease-in-out 0.75s;
}
.loader {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  opacity: 1;
  visibility: visible;
  -webkit-transition:
    opacity 0.5s ease-in-out,
    visibility 0s ease-in-out 0.5s;
  transition:
    opacity 0.5s ease-in-out,
    visibility 0s ease-in-out 0.5s;
}
body.has-loaded .strip {
  opacity: 1 !important;
}
body.has-loaded .loader {
  opacity: 0;
  visibility: hidden;
}
@media all and (min-width: 1200px) {
  .scene .strip .strip-row {
    padding-top: 80px;
  }
}