html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  max-width: 100%;
  overflow-x: hidden;
  background-color: #0E181E;
  color: #fff;
  font-family: 'Manrope', sans-serif;
}

html {
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

html a {
  -webkit-transition: .3s ease;
  transition: .3s ease;
  text-decoration: none;
}

html .button {
  display: inline-block;
  padding: 10px 20px;
  color: #fff;
  text-decoration: none;
  margin-bottom: 30px;
  margin-top: 30px;
  font-size: 16px;
}

@media (min-width: 768px) {
  html .button {
    font-size: 18px;
    margin-top: 15px;
    margin-bottom: 35px;
  }
}

@media (min-width: 1024px) {
  html .button {
    font-size: 19px;
    padding: 15px 25px;
    margin-top: 20px;
    margin-bottom: 40px;
  }
}

@media (min-width: 1500px) {
  html .button {
    font-size: 20px;
  }
}

html h2 {
  font-weight: 300;
  font-size: 30px;
  margin-bottom: 40px;
}

html h2 strong {
  font-weight: 700;
}

@media (min-width: 768px) {
  html h2 {
    font-size: 42px;
  }
}

@media (min-width: 1024px) {
  html h2 {
    font-size: 55px;
  }
}

@media (min-width: 1200px) {
  html h2 {
    font-size: 61px;
  }
}

@media (min-width: 1400px) {
  html h2 {
    font-size: 80px;
  }
}

html p, html li {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  html p, html li {
    font-size: 20px;
    margin-bottom: 25px;
  }
}

@media (min-width: 1024px) {
  html p, html li {
    font-size: 22px;
    margin-bottom: 30px;
  }
}

@media (min-width: 1500px) {
  html p, html li {
    font-size: 24px;
  }
}

h1, h2, h3, h4 {
  line-height: 1.4;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img, svg {
  max-width: 100%;
  height: auto;
}

p, ul, li, a, span {
  font-size: 15px;
  font-weight: 400;
  color: #fff;
  line-height: 1.7;
}

@media (min-width: 640px) {
  p, ul, li, a, span {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  p, ul, li, a, span {
    font-size: 17px;
  }
}

@media (min-width: 1024px) {
  p, ul, li, a, span {
    font-size: 19px;
  }
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.navActive {
  overflow: hidden;
}

.nav {
  padding-top: 20px;
}

.nav .wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav .wrapper .logoWrapper {
  position: relative;
  z-index: 400;
}

.nav .wrapper .logoWrapper img {
  max-height: 100px;
}

.nav .wrapper .toggle-btn {
  display: block;
  height: 46px;
  cursor: pointer;
  z-index: 360;
  width: 46px;
  background-color: transparent;
  -webkit-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
  position: relative;
  margin-right: -14px;
}

@media (min-width: 768px) {
  .nav .wrapper .toggle-btn {
    display: none;
  }
}

.nav .wrapper .toggle-btn.show .bar:first-of-type {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.nav .wrapper .toggle-btn.show .bar:nth-of-type(2) {
  -webkit-transform: scale(0);
          transform: scale(0);
}

.nav .wrapper .toggle-btn.show .bar:last-of-type {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.nav .wrapper .toggle-btn .bar {
  width: 18px;
  -webkit-transition: all .25s ease-in-out;
  transition: all .25s ease-in-out;
  height: 2px;
  background-repeat: no-repeat;
  position: absolute;
  top: 22px;
  background-size: contain;
  left: 14px;
  -webkit-transition: all 0.5s cubic-bezier(0.8, -1.1, 0.5, 1.9);
  transition: all 0.5s cubic-bezier(0.8, -1.1, 0.5, 1.9);
  -webkit-transform-origin: center;
          transform-origin: center;
  background-color: #fff;
}

.nav .wrapper .toggle-btn .bar:first-of-type {
  -webkit-transform: translateY(-7px);
          transform: translateY(-7px);
}

.nav .wrapper .toggle-btn .bar:nth-of-type(2) {
  -webkit-transition: all 0.5s cubic-bezier(0.8, -1.1, 0.5, 1.9);
  transition: all 0.5s cubic-bezier(0.8, -1.1, 0.5, 1.9);
}

.nav .wrapper .toggle-btn .bar:last-of-type {
  -webkit-transform: translateY(7px);
          transform: translateY(7px);
}

.nav .wrapper .mainNav {
  display: none;
}

@media (min-width: 768px) {
  .nav .wrapper .mainNav {
    display: block;
  }
}

.nav .wrapper .mainNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.nav .wrapper .mainNav ul li {
  margin-left: 40px;
}

@media (min-width: 1024px) {
  .nav .wrapper .mainNav ul li {
    margin-left: 80px;
  }
}

@media (min-width: 1200px) {
  .nav .wrapper .mainNav ul li {
    margin-left: 100px;
  }
}

@media (min-width: 1400px) {
  .nav .wrapper .mainNav ul li {
    margin-left: 120px;
  }
}

.nav .wrapper .mainNav ul li a {
  text-decoration: none;
}

@media (min-width: 1024px) {
  .nav .wrapper .mainNav ul li a {
    position: relative;
  }
  .nav .wrapper .mainNav ul li a:after {
    bottom: 0;
    height: 1px;
    background-color: #0CB7A4;
    width: 0%;
    position: absolute;
    left: 0;
    content: "";
    -webkit-transition: .3s ease;
    transition: .3s ease;
  }
  .nav .wrapper .mainNav ul li a:before {
    right: -20px;
    opacity: 0;
    -webkit-transition: .3s ease;
    transition: .3s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='9.81' height='9.81' viewBox='0 0 9.81 9.81'%3E%3Cg transform='translate(-70.757 1099.067) rotate(-90)'%3E%3Cline x2='7.458' transform='translate(1091.11 80.067)' fill='none' stroke='%23e5ff45' stroke-linecap='square' stroke-width='1'/%3E%3Cline x2='7.458' transform='translate(1098.567 72.61) rotate(90)' fill='none' stroke='%23e5ff45' stroke-linecap='square' stroke-width='1'/%3E%3Cpath d='M0,0H11.676' transform='translate(1089.964 71.464) rotate(45)' fill='none' stroke='%23e5ff45' stroke-linecap='square' stroke-width='1'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    height: 9px;
    width: 9px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    content: "";
    position: absolute;
  }
  .nav .wrapper .mainNav ul li a:hover {
    color: #0CB7A4;
  }
  .nav .wrapper .mainNav ul li a:hover:before {
    opacity: 1;
  }
  .nav .wrapper .mainNav ul li a:hover:after {
    width: 100%;
  }
}

.nav .wrapper .navItems {
  -webkit-transition: .5s ease;
  transition: .5s ease;
  z-index: 350;
  background: #0E181E;
  color: #fff;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 20px;
  pointer-events: none;
  opacity: 0;
}

@media (min-width: 768px) {
  .nav .wrapper .navItems {
    display: none;
  }
}

.nav .wrapper .navItems.show {
  opacity: 1;
  pointer-events: all;
  overflow: hidden;
}

.nav .wrapper .navItems ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  width: 100%;
  text-align: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.nav .wrapper .navItems ul li {
  display: block;
  width: 100%;
  height: 20%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.nav .wrapper .navItems ul li a {
  text-decoration: none;
  display: block;
  font-size: 24px;
}

header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 400;
}

section .wrapper, footer .wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
}

.container {
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container .logoText {
  padding: 80px 0;
  position: relative;
}

@media (min-width: 768px) {
  .container .logoText {
    padding: 120px 0;
  }
}

@media (min-width: 1400px) {
  .container .logoText {
    padding: 150px 0;
  }
}

@media (min-width: 1600px) {
  .container .logoText {
    padding: 170px 0;
  }
}

.container .logoText .bottomBorder {
  bottom: 0;
  left: -50%;
  width: 150%;
  background-image: -webkit-gradient(linear, left top, right top, from(#3d3362), color-stop(50%, #41376e), color-stop(70%, #617a66), to(#5f8364));
  background-image: linear-gradient(90deg, #3d3362 0%, #41376e 50%, #617a66 70%, #5f8364 100%);
  height: 2px;
  background-repeat: no-repeat;
  position: absolute;
  z-index: 5;
}

.container .logoText .wrapper {
  position: relative;
}

@media (min-width: 768px) {
  .container .logoText .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.container .logoText .wrapper .topLeftText {
  position: absolute;
  top: 80px;
  left: -40px;
  z-index: 1;
  max-width: 50vw;
}

@media (min-width: 768px) {
  .container .logoText .wrapper .topLeftText {
    left: -150px;
  }
}

@media (min-width: 1024px) {
  .container .logoText .wrapper .topLeftText {
    top: 150px;
    left: -12%;
  }
}

.container .logoText .wrapper .topRightText {
  position: absolute;
  top: 80px;
  right: -60px;
  z-index: 1;
  max-width: 50vw;
}

@media (min-width: 768px) {
  .container .logoText .wrapper .topRightText {
    right: -180px;
  }
}

@media (min-width: 1024px) {
  .container .logoText .wrapper .topRightText {
    top: 180px;
    right: -25%;
  }
}

.container .logoText .wrapper .middleRightText {
  position: absolute;
  top: 20px;
  right: -20px;
  z-index: 1;
  max-width: 50vw;
}

@media (min-width: 768px) {
  .container .logoText .wrapper .middleRightText {
    top: 80px;
    right: -40px;
  }
}

.container .logoText .wrapper .farBottomLeftText {
  position: absolute;
  bottom: 120px;
  left: -40px;
  z-index: 1;
  max-width: 20vw;
}

@media (min-width: 768px) {
  .container .logoText .wrapper .farBottomLeftText {
    right: -180px;
    bottom: 180px;
  }
}

@media (min-width: 1024px) {
  .container .logoText .wrapper .farBottomLeftText {
    bottom: 220px;
  }
}

.container .logoText .wrapper .leftLogo {
  z-index: 2;
  position: relative;
  margin: 0 0 80px;
  text-align: center;
  opacity: 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.container .logoText .wrapper .leftLogo.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@media (min-width: 768px) {
  .container .logoText .wrapper .leftLogo {
    -webkit-transition-delay: .25s;
            transition-delay: .25s;
  }
}

@media (min-width: 768px) {
  .container .logoText .wrapper .leftLogo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(40% - 20px);
            flex: 0 1 calc(40% - 20px);
    -webkit-transition-delay: 0s;
            transition-delay: 0s;
  }
}

.container .logoText .wrapper .leftLogo img {
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}

.container .logoText .wrapper .leftLogo img.osmii {
  max-height: 40px;
}

.container .logoText .wrapper .leftLogo .hwGlobal {
  max-height: 35vw;
}

@media (min-width: 400px) {
  .container .logoText .wrapper .leftLogo .hwGlobal {
    max-height: 230px;
  }
}

.container .logoText .wrapper .leftLogo .hwPeople {
  max-height: 35vw;
}

@media (min-width: 400px) {
  .container .logoText .wrapper .leftLogo .hwPeople {
    max-height: 230px;
  }
}

.container .logoText .wrapper .leftLogo .zebraPeople {
  max-height: 57px;
}

.container .logoText .wrapper .leftLogo .osmii {
  max-height: 10vw;
}

@media (min-width: 400px) {
  .container .logoText .wrapper .leftLogo .osmii {
    max-height: 78px;
  }
}

.container .logoText .wrapper .rightText {
  z-index: 2;
  position: relative;
  opacity: 0;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  -webkit-transform: translateY(50px);
          transform: translateY(50px);
}

.container .logoText .wrapper .rightText.active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@media (min-width: 768px) {
  .container .logoText .wrapper .rightText {
    -webkit-transition-delay: .25s;
            transition-delay: .25s;
  }
}

@media (min-width: 768px) {
  .container .logoText .wrapper .rightText {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(60% - 20px);
            flex: 0 1 calc(60% - 20px);
    -webkit-transition-delay: .35s;
            transition-delay: .35s;
  }
}

@media (min-width: 1350px) {
  .container .logoText .wrapper .rightText {
    padding-left: 80px;
  }
}

.container .logoText .wrapper .rightText p {
  font-size: 20px;
  margin-bottom: 40px;
  font-weight: 300;
}

@media (min-width: 768px) {
  .container .logoText .wrapper .rightText p {
    font-size: 22px;
  }
}

@media (min-width: 1024px) {
  .container .logoText .wrapper .rightText p {
    font-size: 26px;
  }
}

@media (min-width: 1200px) {
  .container .logoText .wrapper .rightText p {
    font-size: 28px;
  }
}

.container .logoText .wrapper .button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  position: relative;
  padding: 15px 45px;
}

@media (min-width: 1024px) {
  .container .logoText .wrapper .button {
    margin-top: 30px;
  }
  .container .logoText .wrapper .button:hover span {
    color: #17339E;
  }
  .container .logoText .wrapper .button:hover .buttonBG {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  .container .logoText .wrapper .button:hover .buttonBG path {
    fill: #0CB7A4;
  }
}

.container .logoText .wrapper .button .buttonBG {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  height: 100%;
  width: 100%;
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.container .logoText .wrapper .button .buttonBG path {
  fill: transparent;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.container .logoText .wrapper .button span {
  color: #0CB7A4;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  font-weight: 500;
  letter-spacing: 3px;
  position: relative;
  z-index: 1;
}

.container .videoSec {
  position: relative;
  padding: 140px 0;
  background-color: #fff;
}

@media (min-width: 768px) {
  .container .videoSec {
    padding: 210px 0 140px;
  }
}

.container .videoSec .videoWrapper {
  width: 100%;
  max-width: 90%;
  z-index: 8;
  position: relative;
  margin: auto;
  overflow: hidden;
}

@media (min-width: 1400px) {
  .container .videoSec .videoWrapper {
    max-width: 1300px;
  }
}

.container .videoSec .videoWrapper .embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.container .videoSec .videoWrapper .embed-container .playButton {
  -webkit-transition: 1s ease;
  transition: 1s ease;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 20;
  background-color: rgba(39, 110, 234, 0.5);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.container .videoSec .videoWrapper .embed-container .playButton:hover {
  cursor: pointer;
}

.container .videoSec .videoWrapper .embed-container .playButton.hide {
  pointer-events: none;
  background-color: rgba(39, 110, 234, 0);
}

.container .videoSec .videoWrapper .embed-container .playButton.hide:after {
  opacity: 0;
  pointer-events: none;
}

.container .videoSec .videoWrapper .embed-container .playButton:after {
  top: 0;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  content: "";
  z-index: 2;
  height: 0;
  border-style: solid;
  border-width: 30px 0 30px 60px;
  border-color: transparent transparent transparent #ffffff;
  width: 60px;
}

.container .introBanner {
  position: relative;
}

@-webkit-keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: .75;
  }
}

@keyframes fadeout {
  0% {
    opacity: 1;
  }
  100% {
    opacity: .75;
  }
}

.container .introBanner:after {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  z-index: 1;
  background-image: url("/img/utopi-intro.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  content: "";
  width: 100%;
  height: 100%;
}

.container .introBanner:before {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  position: absolute;
  z-index: 2;
  background-color: #0cb7a4;
  content: "";
  width: 100%;
  height: 100%;
  -webkit-animation: fadeout 1000ms linear 1 normal forwards;
          animation: fadeout 1000ms linear 1 normal forwards;
}

.container .introBanner .wrapper {
  position: relative;
  z-index: 4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  text-align: center;
  min-height: 100vh;
  padding-top: 100px;
  padding-bottom: 100px;
}

.container .introBanner .wrapper .alarm {
  position: absolute;
  bottom: -100px;
  left: 0;
  right: 0;
  z-index: 3;
  max-width: 200px;
  display: inline-block;
  text-align: center;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container .introBanner .wrapper .alarm {
    max-width: 350px;
    bottom: -175px;
  }
}

.container .introBanner .wrapper .alarm img {
  position: relative;
  z-index: 6;
}

.container .introBanner .wrapper .alarm .circle {
  border-radius: 50%;
  border: 1px solid rgba(109, 212, 200, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

@media (max-width: 767px) {
  .container .introBanner .wrapper .alarm .circle {
    -webkit-transform: none !important;
            transform: none !important;
  }
}

.container .introBanner .wrapper .alarm .circle:nth-of-type(1) {
  height: 70vw;
  width: 70vw;
  z-index: 5;
  left: -8vw;
}

@media (min-width: 768px) {
  .container .introBanner .wrapper .alarm .circle:nth-of-type(1) {
    height: 106%;
    width: 106%;
    left: -3%;
  }
}

.container .introBanner .wrapper .alarm .circle:nth-of-type(2) {
  height: 80vw;
  width: 80vw;
  z-index: 4;
  left: -13vw;
}

@media (min-width: 768px) {
  .container .introBanner .wrapper .alarm .circle:nth-of-type(2) {
    height: 120%;
    width: 120%;
    left: -10%;
  }
}

.container .introBanner .wrapper .alarm .circle:nth-of-type(3) {
  height: 95vw;
  width: 95vw;
  left: -21vw;
  z-index: 3;
}

@media (min-width: 768px) {
  .container .introBanner .wrapper .alarm .circle:nth-of-type(3) {
    height: 146%;
    width: 146%;
    left: -23%;
  }
}

.container .introBanner .wrapper .alarm .circle:nth-of-type(4) {
  height: 110vw;
  width: 110vw;
  left: -28vw;
  z-index: 2;
}

@media (min-width: 768px) {
  .container .introBanner .wrapper .alarm .circle:nth-of-type(4) {
    height: 174%;
    width: 174%;
    left: -37%;
  }
}

.container .introBanner .wrapper .introText {
  position: relative;
  z-index: 9;
}

@media (min-width: 768px) {
  .container .introBanner .wrapper .introText {
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .container .introBanner .wrapper .introText {
    max-width: 800px;
  }
}

.container .introBanner .wrapper .introText p {
  font-size: 20px;
}

@media (min-width: 768px) {
  .container .introBanner .wrapper .introText p {
    font-size: 28px;
  }
}

@media (min-width: 1024px) {
  .container .introBanner .wrapper .introText p {
    font-size: 32px;
  }
}

@media (min-width: 1200px) {
  .container .introBanner .wrapper .introText p {
    font-size: 34px;
  }
}

.container .introBanner .wrapper .titleWrapper {
  position: relative;
  z-index: 9;
}

.container .introBanner .wrapper .titleWrapper h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  font-size: 50px;
  font-weight: 400;
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .container .introBanner .wrapper .titleWrapper h1 {
    font-size: 60px;
  }
}

@media (min-width: 1024px) {
  .container .introBanner .wrapper .titleWrapper h1 {
    font-size: 80px;
  }
}

@media (min-width: 1200px) {
  .container .introBanner .wrapper .titleWrapper h1 {
    font-size: 100px;
  }
}

.container .ready {
  background-color: #0CB7A4;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  padding: 100px 0;
}

.container .ready.active {
  background-color: #040A2E;
}

@media (min-width: 768px) {
  .container .ready {
    padding: 120px 0;
    -webkit-transition-delay: .25s;
            transition-delay: .25s;
  }
}

@media (min-width: 1200px) {
  .container .ready {
    padding: 160px 0;
  }
}

@media (min-width: 1400px) {
  .container .ready {
    padding: 200px 0;
  }
}

.container .ready .wrapper {
  text-align: center;
}

.container .ready .wrapper h2 {
  max-width: 340px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .container .ready .wrapper h2 {
    max-width: 540px;
  }
}

@media (min-width: 1024px) {
  .container .ready .wrapper h2 {
    max-width: 640px;
    margin: 0 auto;
  }
}

@media (min-width: 1200px) {
  .container .ready .wrapper h2 {
    max-width: 840px;
  }
}

.container .where {
  padding: 80px 0 40px;
  position: relative;
  background-color: #fff;
  overflow: hidden;
}

@media (min-width: 768px) {
  .container .where {
    padding: 120px 0 80px;
  }
}

@media (min-width: 1200px) {
  .container .where {
    padding: 160px 0 120px;
  }
}

.container .where .wrapper {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .container .where .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.container .where .wrapper .button {
  background-color: #276EEA;
}

.container .where .wrapper .button:hover {
  background-color: #0CB7A4;
}

.container .where .wrapper .colOne {
  position: relative;
  margin-bottom: 60px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  color: #000814;
  z-index: 2;
}

@media (min-width: 768px) {
  .container .where .wrapper .colOne {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 20px);
            flex: 0 1 calc(50% - 20px);
    margin-bottom: 0;
    opacity: 0;
    -webkit-transition: .75s ease;
    transition: .75s ease;
    -webkit-transition-delay: .25s;
            transition-delay: .25s;
  }
  .container .where .wrapper .colOne.active {
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  .container .where .wrapper .colOne {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 40px);
            flex: 0 1 calc(50% - 40px);
  }
}

.container .where .wrapper .colOne h2 {
  color: #276EEA;
  position: relative;
}

.container .where .wrapper .colOne h2:before {
  top: -40px;
  left: 0;
  content: "";
  height: 10px;
  width: 10px;
  background-color: #276EEA;
  position: absolute;
}

.container .where .wrapper .colOne p {
  color: #000814;
}

.container .where .wrapper .colOne .button {
  background-color: #040A2E;
  color: #fff;
}

.container .where .wrapper .colOne .button:hover {
  background-color: #276EEA;
}

.container .where .wrapper .colTwo {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
  margin-top: 100px;
}

@media (min-width: 768px) {
  .container .where .wrapper .colTwo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 20px);
            flex: 0 1 calc(50% - 20px);
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .container .where .wrapper .colTwo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 40px);
            flex: 0 1 calc(50% - 40px);
    padding: 20px 20px 50px;
  }
}

.container .where .wrapper .colTwo .imageWrapper {
  position: relative;
  display: inline-block;
  width: 100%;
  text-align: center;
}

@media (min-width: 768px) {
  .container .where .wrapper .colTwo .imageWrapper {
    max-width: 50vh;
    max-height: 50vh;
  }
}

.container .where .wrapper .colTwo .imageWrapper.active img {
  -webkit-transform: scale(1);
          transform: scale(1);
  opacity: 1;
}

.container .where .wrapper .colTwo .imageWrapper.active .circle {
  opacity: 1;
  -webkit-transform: scale(1);
          transform: scale(1);
}

.container .where .wrapper .colTwo .imageWrapper img {
  position: relative;
  z-index: 6;
  max-width: 200px;
  max-height: 200px;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

@media (min-width: 768px) {
  .container .where .wrapper .colTwo .imageWrapper img {
    -webkit-transition-delay: .25s;
            transition-delay: .25s;
    max-width: 100%;
    max-height: 100%;
  }
}

.container .where .wrapper .colTwo .imageWrapper .line {
  position: absolute;
  width: 500%;
  height: 2px;
  border-bottom: 2px dashed rgba(234, 234, 234, 0.5);
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  opacity: .8;
}

.container .where .wrapper .colTwo .imageWrapper .line.lineOne {
  right: 50%;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transform-origin: right;
          transform-origin: right;
}

.container .where .wrapper .colTwo .imageWrapper .line.lineTwo {
  right: 50%;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-transform-origin: right;
          transform-origin: right;
}

.container .where .wrapper .colTwo .imageWrapper .line.lineThree {
  left: 50%;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.container .where .wrapper .colTwo .imageWrapper .line.lineFour {
  left: 50%;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.container .where .wrapper .colTwo .imageWrapper .circle {
  border-radius: 50%;
  background-color: #fff;
  border: 2px solid rgba(234, 234, 234, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: scale(0);
          transform: scale(0);
  opacity: 0;
  -webkit-transition: 1s ease;
  transition: 1s ease;
}

.container .where .wrapper .colTwo .imageWrapper .circle:nth-of-type(1) {
  height: 70vw;
  width: 70vw;
  z-index: 5;
  -webkit-transition-delay: .25s;
          transition-delay: .25s;
}

@media (min-width: 768px) {
  .container .where .wrapper .colTwo .imageWrapper .circle:nth-of-type(1) {
    height: 106%;
    width: 106%;
    left: -3%;
  }
}

.container .where .wrapper .colTwo .imageWrapper .circle:nth-of-type(2) {
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
  height: 80vw;
  width: 80vw;
  z-index: 4;
}

@media (min-width: 768px) {
  .container .where .wrapper .colTwo .imageWrapper .circle:nth-of-type(2) {
    height: 120%;
    width: 120%;
    left: -10%;
  }
}

.container .where .wrapper .colTwo .imageWrapper .circle:nth-of-type(3) {
  -webkit-transition-delay: .75s;
          transition-delay: .75s;
  height: 95vw;
  width: 95vw;
  left: -6vw;
  z-index: 3;
}

@media (min-width: 768px) {
  .container .where .wrapper .colTwo .imageWrapper .circle:nth-of-type(3) {
    height: 146%;
    width: 146%;
    left: -23%;
  }
}

.container .where .wrapper .colTwo .imageWrapper .circle:nth-of-type(4) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
  height: 110vw;
  width: 110vw;
  left: -13vw;
  z-index: 2;
}

@media (min-width: 768px) {
  .container .where .wrapper .colTwo .imageWrapper .circle:nth-of-type(4) {
    height: 174%;
    width: 174%;
    left: -37%;
  }
}

.container .how {
  padding: 60px 0;
  position: relative;
  background-color: #fff;
}

@media (min-width: 768px) {
  .container .how {
    padding: 40px 0 100px;
  }
}

.container .how .wrapper {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .container .how .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.container .how .wrapper .button {
  background-color: #276EEA;
}

.container .how .wrapper .button:hover {
  background-color: #0CB7A4;
}

.container .how .wrapper .colOne {
  position: relative;
  margin-bottom: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  color: #000814;
}

@media (min-width: 768px) {
  .container .how .wrapper .colOne {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(60% - 20px);
            flex: 0 1 calc(60% - 20px);
    margin-bottom: 0;
    opacity: 0;
    -webkit-transition: .75s ease;
    transition: .75s ease;
    -webkit-transition-delay: .25s;
            transition-delay: .25s;
  }
  .container .how .wrapper .colOne.active {
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  .container .how .wrapper .colOne {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 40px);
            flex: 0 1 calc(50% - 40px);
  }
}

.container .how .wrapper .colOne .button {
  margin-bottom: 50px;
}

.container .how .wrapper .colOne h2 {
  color: #276EEA;
  position: relative;
}

.container .how .wrapper .colOne h2:before {
  top: -40px;
  left: 0;
  content: "";
  height: 10px;
  width: 10px;
  background-color: #276EEA;
  position: absolute;
}

.container .how .wrapper .colOne p {
  color: #000814;
}

.container .how .wrapper .colTwo {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
}

@media (min-width: 768px) {
  .container .how .wrapper .colTwo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(40% - 20px);
            flex: 0 1 calc(40% - 20px);
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 1024px) {
  .container .how .wrapper .colTwo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 40px);
            flex: 0 1 calc(50% - 40px);
    padding: 70px 60px 50px;
  }
}

@media (min-width: 1500px) {
  .container .how .wrapper .colTwo {
    padding: 70px 60px 50px;
  }
}

.container .how .wrapper .colTwo .imageWrapper {
  position: relative;
}

@media (min-width: 768px) {
  .container .how .wrapper .colTwo .imageWrapper .resApp {
    opacity: 0;
    -webkit-transition: .75s ease;
    transition: .75s ease;
    -webkit-transition-delay: .25s;
            transition-delay: .25s;
  }
  .container .how .wrapper .colTwo .imageWrapper .resApp.active {
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  .container .how .wrapper .colTwo .imageWrapper .resApp {
    max-width: calc(100% + 80px);
  }
}

@media (min-width: 768px) {
  .container .how .wrapper .colTwo .imageWrapper:before {
    content: "";
    top: 40px;
    left: 36%;
    z-index: -1;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    opacity: .2;
    position: absolute;
    border: 1px solid #0CB7A4;
    -webkit-animation: pulse 8000ms linear infinite normal forwards;
            animation: pulse 8000ms linear infinite normal forwards;
  }
}

.container .why {
  padding: 100px 0 40px;
  position: relative;
  background-color: #276EEA;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  -webkit-transition-delay: .25s;
          transition-delay: .25s;
}

.container .why.active {
  background-color: #0CB7A4;
}

@media (min-width: 768px) {
  .container .why {
    padding: 100px 0 80px;
  }
}

@media (min-width: 1024px) {
  .container .why {
    padding: 80px 0;
  }
}

.container .why .wrapper {
  position: relative;
  z-index: 2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

@media (min-width: 768px) {
  .container .why .wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.container .why .wrapper:before {
  content: "";
  bottom: -40px;
  left: 20px;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  position: absolute;
  border: 1px solid #9EE2DB;
}

@media (min-width: 768px) {
  .container .why .wrapper:before {
    bottom: -80px;
    -webkit-animation: pulse 8000ms linear infinite normal forwards;
            animation: pulse 8000ms linear infinite normal forwards;
    right: 20px;
    left: auto;
    height: 80px;
    width: 80px;
  }
}

.container .why .wrapper:after {
  content: "";
  top: -100px;
  right: 0;
  border-radius: 50%;
  height: 40px;
  width: 40px;
  position: absolute;
  border: 1px solid #9EE2DB;
  -webkit-animation: pulse 8000ms linear infinite normal forwards;
          animation: pulse 8000ms linear infinite normal forwards;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

@media (min-width: 768px) {
  .container .why .wrapper:after {
    height: 80px;
    width: 80px;
    top: -100px;
    right: auto;
    left: 20px;
  }
}

@media (min-width: 1024px) {
  .container .why .wrapper:after {
    top: -80px;
    left: 0;
  }
}

.container .why .wrapper .colTwo {
  position: relative;
  margin-bottom: 40px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  color: #000814;
}

@media (min-width: 768px) {
  .container .why .wrapper .colTwo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 20px);
            flex: 0 1 calc(50% - 20px);
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .container .why .wrapper .colTwo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 40px);
            flex: 0 1 calc(50% - 40px);
  }
}

.container .why .wrapper .colTwo h2 {
  color: #fff;
  position: relative;
}

@media (min-width: 1400px) {
  .container .why .wrapper .colTwo h2 {
    max-width: 540px;
  }
}

.container .why .wrapper .colTwo h2:before {
  top: -40px;
  left: 0;
  content: "";
  height: 10px;
  width: 10px;
  background-color: #000814;
  position: absolute;
}

.container .why .wrapper .colTwo p {
  color: #fff;
}

.container .why .wrapper .colTwo .rightBoxes {
  position: absolute;
  top: 110vw;
  opacity: .7;
  margin: auto 0;
  right: -20px;
  height: 22vw;
  width: 22vw;
}

@media (min-width: 768px) {
  .container .why .wrapper .colTwo .rightBoxes {
    opacity: 1;
    top: 0;
    height: 11vw;
    right: -40px;
    width: 11vw;
  }
  .container .why .wrapper .colTwo .rightBoxes.active:before {
    left: 0;
  }
  .container .why .wrapper .colTwo .rightBoxes.active:after {
    right: 0;
  }
}

@media (min-width: 1200px) {
  .container .why .wrapper .colTwo .rightBoxes {
    right: -80px;
    top: -100px;
  }
}

.container .why .wrapper .colTwo .rightBoxes:before, .container .why .wrapper .colTwo .rightBoxes:after {
  content: "";
  opacity: .3;
  height: 11vw;
  width: 11vw;
  background-color: #9EE2DB;
  position: absolute;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  -webkit-transition-delay: .25s;
          transition-delay: .25s;
}

@media (min-width: 768px) {
  .container .why .wrapper .colTwo .rightBoxes:before, .container .why .wrapper .colTwo .rightBoxes:after {
    height: 5.5vw;
    width: 5.5vw;
  }
}

.container .why .wrapper .colTwo .rightBoxes:before {
  bottom: 0;
  left: 5.5vw;
}

.container .why .wrapper .colTwo .rightBoxes:after {
  top: 0;
  right: 5.5vw;
}

.container .why .wrapper .colOne {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  padding-bottom: 60px;
}

@media (min-width: 768px) {
  .container .why .wrapper .colOne {
    padding-bottom: 0;
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 20px);
            flex: 0 1 calc(50% - 20px);
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 1024px) {
  .container .why .wrapper .colOne {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 40px);
            flex: 0 1 calc(50% - 40px);
    padding: 70px 60px 50px;
  }
}

@media (min-width: 1500px) {
  .container .why .wrapper .colOne {
    padding: 70px 60px 50px;
  }
}

.container .why .wrapper .colOne .leftBoxes {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  left: 0;
  opacity: .3;
  height: 5.5vw;
  width: 5.5vw;
  background-color: #9EE2DB;
}

@media (min-width: 768px) {
  .container .why .wrapper .colOne .leftBoxes {
    left: -40px;
  }
}

.container .why .wrapper .colOne .imageWrapper {
  position: relative;
}

.container .afterVid {
  padding: 40px 0;
  position: relative;
  background-color: #fff;
}

@media (min-width: 768px) {
  .container .afterVid {
    padding: 80px 0 220px;
  }
}

.container .afterVid .wrapper {
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .container .afterVid .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  10% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}

@keyframes pulse {
  0% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  10% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  40% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  60% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  90% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
  100% {
    -webkit-transform: scale(0.7);
            transform: scale(0.7);
  }
}

@media (min-width: 768px) {
  .container .afterVid .wrapper:before {
    content: "";
    top: -80px;
    left: 60px;
    z-index: -1;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    opacity: .2;
    position: absolute;
    border: 1px solid #0CB7A4;
    -webkit-animation: pulse 8000ms linear infinite normal forwards;
            animation: pulse 8000ms linear infinite normal forwards;
  }
}

.container .afterVid .wrapper .colOne {
  position: relative;
  margin-bottom: 60px;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  color: #000814;
}

@media (min-width: 768px) {
  .container .afterVid .wrapper .colOne {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 20px);
            flex: 0 1 calc(50% - 20px);
    margin-bottom: 0;
    opacity: 0;
    -webkit-transition: .75s ease;
    transition: .75s ease;
    -webkit-transition-delay: .25s;
            transition-delay: .25s;
  }
  .container .afterVid .wrapper .colOne.active {
    opacity: 1;
  }
}

@media (min-width: 1024px) {
  .container .afterVid .wrapper .colOne {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 40px);
            flex: 0 1 calc(50% - 40px);
  }
}

@media (min-width: 768px) {
  .container .afterVid .wrapper .colOne:before {
    content: "";
    bottom: -140px;
    left: 18%;
    z-index: -1;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    opacity: .2;
    position: absolute;
    border: 1px solid #0CB7A4;
    -webkit-animation: pulse 8000ms linear infinite normal forwards;
            animation: pulse 8000ms linear infinite normal forwards;
    -webkit-animation-delay: 1s;
            animation-delay: 1s;
  }
}

.container .afterVid .wrapper .colOne h2 {
  color: #0CB7A4;
  position: relative;
}

.container .afterVid .wrapper .colOne h2:before {
  top: -40px;
  left: 0;
  content: "";
  height: 10px;
  width: 10px;
  background-color: #0CB7A4;
  position: absolute;
}

.container .afterVid .wrapper .colOne p {
  color: #000814;
}

@media (min-width: 768px) {
  .container .afterVid .wrapper .colOne .leftBoxes {
    z-index: -1;
    position: absolute;
    bottom: -100px;
    height: 16.5vw;
    left: -8vw;
    opacity: .1;
    width: 11vw;
  }
}

@media (min-width: 768px) {
  .container .afterVid .wrapper .colOne .leftBoxes .box {
    background-color: #0CB7A4;
    position: absolute;
    height: 5.5vw;
    width: 5.5vw;
  }
}

.container .afterVid .wrapper .colOne .leftBoxes .box:nth-of-type(1) {
  top: 0;
  right: 0;
}

.container .afterVid .wrapper .colOne .leftBoxes .box:nth-of-type(2) {
  top: 5.5vw;
  right: 5.5vw;
}

.container .afterVid .wrapper .colOne .leftBoxes .box:nth-of-type(3) {
  bottom: 0;
  right: 0;
}

.container .afterVid .wrapper .colTwo {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  background-color: #276EEA;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  -webkit-transition-delay: .25s;
          transition-delay: .25s;
  border-radius: 40px;
  padding: 70px 40px 60px;
  -webkit-box-shadow: 10px 9px 21px -4px rgba(120, 120, 120, 0.54);
          box-shadow: 10px 9px 21px -4px rgba(120, 120, 120, 0.54);
}

.container .afterVid .wrapper .colTwo.active {
  background-color: #0CB7A4;
}

@media (min-width: 768px) {
  .container .afterVid .wrapper .colTwo {
    padding: 40px 30px 30px;
    position: relative;
  }
}

@media (min-width: 1024px) {
  .container .afterVid .wrapper .colTwo {
    padding: 70px 40px 60px;
  }
}

@media (min-width: 768px) {
  .container .afterVid .wrapper .colTwo:before {
    content: "";
    bottom: -60px;
    left: 45%;
    z-index: -1;
    border-radius: 50%;
    height: 80px;
    width: 80px;
    opacity: .2;
    position: absolute;
    border: 1px solid #0CB7A4;
    -webkit-animation: pulse 8000ms linear infinite normal forwards;
            animation: pulse 8000ms linear infinite normal forwards;
    -webkit-animation-delay: 2s;
            animation-delay: 2s;
  }
}

@media (min-width: 768px) {
  .container .afterVid .wrapper .colTwo:after {
    bottom: -60px;
    right: -20px;
    content: "";
    height: 10px;
    width: 10px;
    background-color: #0CB7A4;
    position: absolute;
  }
}

.container .afterVid .wrapper .colTwo .bottomBoxes {
  position: absolute;
  bottom: -60px;
  z-index: -1;
  margin: auto 0;
  right: 0;
  height: 22vw;
  width: 22vw;
}

@media (min-width: 768px) {
  .container .afterVid .wrapper .colTwo .bottomBoxes {
    top: auto;
    bottom: -200px;
    height: 11vw;
    left: -18%;
    width: 11vw;
    right: auto;
  }
}

.container .afterVid .wrapper .colTwo .bottomBoxes:before, .container .afterVid .wrapper .colTwo .bottomBoxes:after {
  content: "";
  opacity: .3;
  height: 11vw;
  width: 11vw;
  background-color: #9EE2DB;
  position: absolute;
  -webkit-transition: 1s ease;
  transition: 1s ease;
  -webkit-transition-delay: .25s;
          transition-delay: .25s;
}

@media (min-width: 768px) {
  .container .afterVid .wrapper .colTwo .bottomBoxes:before, .container .afterVid .wrapper .colTwo .bottomBoxes:after {
    height: 5.5vw;
    width: 5.5vw;
  }
}

.container .afterVid .wrapper .colTwo .bottomBoxes.active:before {
  left: 0;
}

.container .afterVid .wrapper .colTwo .bottomBoxes.active:after {
  right: 0;
}

.container .afterVid .wrapper .colTwo .bottomBoxes:before {
  bottom: 0;
  left: 5.5vw;
}

.container .afterVid .wrapper .colTwo .bottomBoxes:after {
  top: 0;
  right: 5.5vw;
}

@media (min-width: 768px) {
  .container .afterVid .wrapper .colTwo .topRightBoxes {
    position: absolute;
    top: -100px;
    z-index: -1;
    height: 16.5vw;
    width: 16.5vw;
    right: -80px;
  }
  .container .afterVid .wrapper .colTwo .topRightBoxes.active .box:nth-of-type(1) {
    top: 0;
  }
  .container .afterVid .wrapper .colTwo .topRightBoxes.active .box:nth-of-type(2) {
    right: 0;
  }
  .container .afterVid .wrapper .colTwo .topRightBoxes.active .box:nth-of-type(4) {
    bottom: 0;
  }
}

@media (min-width: 768px) {
  .container .afterVid .wrapper .colTwo .topRightBoxes .box {
    opacity: .15;
    background-color: #0CB7A4;
    position: absolute;
    height: 5.5vw;
    width: 5.5vw;
    -webkit-transition: 1s ease;
    transition: 1s ease;
    -webkit-transition-delay: .25s;
            transition-delay: .25s;
  }
}

.container .afterVid .wrapper .colTwo .topRightBoxes .box:nth-of-type(1) {
  left: 0;
  top: 5.5vw;
}

.container .afterVid .wrapper .colTwo .topRightBoxes .box:nth-of-type(2) {
  top: 0;
  right: 5.5vw;
}

.container .afterVid .wrapper .colTwo .topRightBoxes .box:nth-of-type(3) {
  top: 5.5vw;
  right: 5.5vw;
}

.container .afterVid .wrapper .colTwo .topRightBoxes .box:nth-of-type(4) {
  bottom: 5.5vw;
  right: 0;
}

.container .afterVid .wrapper .colTwo svg {
  position: absolute;
  top: 20px;
  right: 20px;
  max-width: 10%;
}

@media (min-width: 1200px) {
  .container .afterVid .wrapper .colTwo svg {
    top: 40px;
    right: 40px;
  }
}

.container .afterVid .wrapper .colTwo h3 {
  font-size: 26px;
  font-weight: 300;
  margin-bottom: 40px;
  position: relative;
}

@media (min-width: 768px) {
  .container .afterVid .wrapper .colTwo h3 {
    font-size: 30px;
  }
}

@media (min-width: 1024px) {
  .container .afterVid .wrapper .colTwo h3 {
    font-size: 42px;
  }
}

@media (min-width: 1200px) {
  .container .afterVid .wrapper .colTwo h3 {
    font-size: 45px;
  }
}

@media (min-width: 1400px) {
  .container .afterVid .wrapper .colTwo h3 {
    font-size: 55px;
  }
}

.container .afterVid .wrapper .colTwo h3:before {
  top: -100px;
  left: -80px;
  content: "";
  height: 10px;
  width: 10px;
  background-color: #0CB7A4;
  position: absolute;
}

.container .afterVid .wrapper .colTwo ul li {
  position: relative;
  padding-left: 20px;
}

@media (min-width: 1024px) {
  .container .afterVid .wrapper .colTwo ul li {
    padding-left: 25px;
  }
}

.container .afterVid .wrapper .colTwo ul li:after {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  height: 8px;
  width: 8px;
  background-color: #000814;
}

@media (min-width: 768px) {
  .container .afterVid .wrapper .colTwo ul li:after {
    top: 14px;
  }
}

@media (min-width: 1024px) {
  .container .afterVid .wrapper .colTwo ul li:after {
    top: 16px;
  }
}

@media (min-width: 768px) {
  .container .afterVid .wrapper .colTwo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 20px);
            flex: 0 1 calc(50% - 20px);
    margin-bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 1024px) {
  .container .afterVid .wrapper .colTwo {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 calc(50% - 40px);
            flex: 0 1 calc(50% - 40px);
    padding: 70px 60px 50px;
  }
}

@media (min-width: 1500px) {
  .container .afterVid .wrapper .colTwo {
    padding: 70px 60px 50px;
  }
}

@-webkit-keyframes fadeShimmer {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeShimmer {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeShimmerYellow {
  0% {
    opacity: .1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: .1;
  }
}

@keyframes fadeShimmerYellow {
  0% {
    opacity: .1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: .1;
  }
}

.container .shimmer path {
  -webkit-animation: fadeShimmer 3500ms linear infinite normal forwards;
          animation: fadeShimmer 3500ms linear infinite normal forwards;
}

.container .shimmer path:nth-child(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.container .shimmer path:nth-child(2) {
  -webkit-animation-delay: 0.15s;
          animation-delay: 0.15s;
}

.container .shimmer path:nth-child(3) {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.container .shimmer path:nth-child(4) {
  -webkit-animation-delay: 0.45s;
          animation-delay: 0.45s;
}

.container .shimmer path:nth-child(5) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.container .shimmer path:nth-child(6) {
  -webkit-animation-delay: 0.75s;
          animation-delay: 0.75s;
}

.container .shimmer path:nth-child(7) {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.container .shimmer path:nth-child(8) {
  -webkit-animation-delay: 1.05s;
          animation-delay: 1.05s;
}

.container .shimmer path:nth-child(9) {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.container .shimmer path:nth-child(10) {
  -webkit-animation-delay: 1.35s;
          animation-delay: 1.35s;
}

.container .shimmer path:nth-child(11) {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.container .shimmer path:nth-child(12) {
  -webkit-animation-delay: 1.65s;
          animation-delay: 1.65s;
}

.container .shimmer path:nth-child(13) {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.container .shimmer path:nth-child(14) {
  -webkit-animation-delay: 1.95s;
          animation-delay: 1.95s;
}

.container .shimmer path:nth-child(15) {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}

.container .shimmer path:nth-child(16) {
  -webkit-animation-delay: 2.25s;
          animation-delay: 2.25s;
}

.container .shimmer path:nth-child(17) {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.container .shimmer path:nth-child(18) {
  -webkit-animation-delay: 2.55s;
          animation-delay: 2.55s;
}

.container .shimmer path:nth-child(19) {
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}

.container .shimmer path:nth-child(20) {
  -webkit-animation-delay: 2.85s;
          animation-delay: 2.85s;
}

.container .shimmer path:nth-child(21) {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.container .shimmer path:nth-of-type(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.container footer {
  float: left;
  width: 100%;
  padding: 60px 0 40px;
  overflow: hidden;
  position: relative;
  background-color: #fff;
  color: #276EEA;
  border-bottom: 20px solid #F7F7F7;
}

@media (min-width: 768px) {
  .container footer {
    border-bottom: 60px solid #F7F7F7;
    padding: 80px 0 70px;
    height: 420px;
  }
}

.container footer.active:after {
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
}

@media (min-width: 768px) {
  .container footer.active .wrapper .threeBoxes .box:nth-of-type(1) {
    left: 0;
  }
}

@media (min-width: 768px) {
  .container footer.active .wrapper .threeBoxes .box:nth-of-type(2) {
    top: 120px;
  }
}

@media (min-width: 768px) {
  .container footer.active .wrapper .threeBoxes .box:nth-of-type(3) {
    left: 120px;
  }
}

.container footer:after {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: 1s ease;
  transition: 1s ease;
  -webkit-transition-delay: .5s;
          transition-delay: .5s;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #276EEA;
  content: "";
  position: absolute;
  z-index: 10;
}

.container footer .wrapper {
  position: relative;
}

@media (min-width: 768px) {
  .container footer .wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}

.container footer .wrapper .threeBoxes {
  position: absolute;
  bottom: 0;
  right: 20px;
  width: 16.5vw;
  height: 16.5vw;
}

@media (min-width: 768px) {
  .container footer .wrapper .threeBoxes {
    height: 360px;
    width: 360px;
    top: -80px;
    bottom: auto;
  }
}

.container footer .wrapper .threeBoxes .box {
  height: 5.5vw;
  width: 5.5vw;
  background-color: #f7f7f7;
  position: absolute;
}

@media (min-width: 768px) {
  .container footer .wrapper .threeBoxes .box {
    height: 120px;
    width: 120px;
    -webkit-transition: 1s ease;
    transition: 1s ease;
    -webkit-transition-delay: .75s;
            transition-delay: .75s;
  }
}

.container footer .wrapper .threeBoxes .box:nth-of-type(1) {
  top: 0;
  left: 0;
}

@media (min-width: 768px) {
  .container footer .wrapper .threeBoxes .box:nth-of-type(1) {
    left: 120px;
  }
}

.container footer .wrapper .threeBoxes .box:nth-of-type(2) {
  top: 5.5vw;
  right: 0;
}

@media (min-width: 768px) {
  .container footer .wrapper .threeBoxes .box:nth-of-type(2) {
    top: 240px;
  }
}

.container footer .wrapper .threeBoxes .box:nth-of-type(3) {
  top: 11vw;
  left: 5.5vw;
}

@media (min-width: 768px) {
  .container footer .wrapper .threeBoxes .box:nth-of-type(3) {
    top: 240px;
    left: 0;
  }
}

.container footer .wrapper .logoWrapper {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .container footer .wrapper .logoWrapper {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 100%;
            flex: 1 0 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.container footer .wrapper .logos {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .container footer .wrapper .logos {
    padding-left: 80px;
    max-width: 70%;
    margin-left: auto;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .container footer .wrapper .logos img {
    position: relative;
    right: -10px;
  }
}

@media (min-width: 1024px) {
  .container footer .wrapper .logos img {
    max-width: 600px;
  }
}

.container footer .wrapper .contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  .container footer .wrapper .contact {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.container footer .wrapper .contact a {
  line-height: 1.8;
  color: #276EEA;
  display: inline-block;
  font-size: 14px;
}

@media (min-width: 768px) {
  .container footer .wrapper .contact a {
    font-size: 18px;
  }
}

.container footer .wrapper .contact a:hover {
  color: #040A2E;
}

.container footer .wrapper .holdens {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  position: relative;
  z-index: 2;
  margin-top: 40px;
}

@media (min-width: 768px) {
  .container footer .wrapper .holdens {
    position: absolute;
    bottom: 0;
    right: 40px;
  }
}

.container footer .wrapper .holdens:hover span {
  color: #040A2E;
}

.container footer .wrapper .holdens:hover svg path {
  fill: #040A2E;
}

.container footer .wrapper .holdens span {
  font-size: 12px;
  font-weight: 300;
  color: #276EEA;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

@media (min-width: 768px) {
  .container footer .wrapper .holdens span {
    font-size: 13px;
  }
}

@media (min-width: 1024px) {
  .container footer .wrapper .holdens span {
    font-size: 14px;
  }
}

.container footer .wrapper .holdens svg {
  margin-left: 5px;
  position: relative;
  top: -3px;
}

.container footer .wrapper .holdens svg path {
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.container footer .wrapper .bottomCopy {
  position: relative;
  z-index: 2;
}

.container footer .wrapper .bottomCopy span {
  font-weight: 300;
  font-size: 12px;
  margin-right: 5px;
}

.container footer .wrapper .bottomCopy span:nth-of-type(1), .container footer .wrapper .bottomCopy span:nth-of-type(2) {
  position: relative;
}

@media (min-width: 370px) {
  .container footer .wrapper .bottomCopy span {
    margin-right: 20px;
  }
}

@media (min-width: 768px) {
  .container footer .wrapper .bottomCopy span {
    font-size: 13px;
  }
}

@media (min-width: 1024px) {
  .container footer .wrapper .bottomCopy span {
    font-size: 14px;
  }
}

.wrapper {
  max-width: 1900px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (min-width: 768px) {
  .wrapper {
    padding-left: 40px;
    padding-right: 40px;
  }
}
/*# sourceMappingURL=new-styles.css.map */