:root {
  --white: white;
  --black: black;
  --dim-grey: #6b6b6b;
  --sws: #3235be;
  --green: #18c798;
  --midnight-blue: #302383;
  --blue-violet: #6e2ed8;
  --663399: #602bb6;
  --deep-pink: #fc0a7e;
  --medium-violet-red: #b32e6e;
  --medium-slate-blue: #955df1;
}

body {
  color: #fff;
  background-color: #000;
  font-family: Montserrat, sans-serif;
  font-size: 20px;
  line-height: 20px;
}

h1 {
  color: var(--white);
  margin-top: 20px;
  margin-bottom: 10px;
  font-size: 8vh;
  font-weight: 600;
  line-height: 10vh;
}

h2 {
  color: var(--black);
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 42px;
  font-weight: 400;
  line-height: 48px;
}

h3 {
  color: var(--dim-grey);
  margin-top: 25px;
  margin-bottom: 5px;
  font-size: 3vh;
  font-weight: 400;
  line-height: 4.5vh;
}

h4 {
  color: var(--black);
  margin-top: 10px;
  margin-bottom: 4px;
  font-size: 18px;
  font-weight: 700;
  line-height: 24px;
}

p {
  color: var(--black);
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 28px;
}

a {
  color: #000;
  text-decoration: underline;
}

ul {
  margin-top: 5px;
  margin-bottom: 15px;
  padding-left: 20px;
}

li {
  color: var(--black);
  font-size: 16px;
  line-height: 24px;
}

.section {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  display: flex;
}

.section.center {
  background-image: linear-gradient(135deg, #fff 27%, #c5ceed);
  background-position: 0 0;
  background-repeat: repeat;
  background-size: auto;
  background-attachment: scroll;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  padding-top: 27vh;
  padding-bottom: 10vh;
  display: flex;
  position: relative;
}

.section.center.full {
  background-image: linear-gradient(135deg, #fff 27%, #c5ceed);
  background-repeat: repeat;
  background-size: auto;
  background-attachment: scroll;
  height: auto;
  min-height: 100vh;
}

.section.wide {
  background-color: #1b1b1b;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding-top: 10vh;
  padding-bottom: 10vh;
  display: flex;
}

.section.wide.img {
  color: #fff;
  background-color: #302383;
  padding: 5vh 8vw 8vh;
}

.section.wide.purple {
  background-image: url('../images/wavy-bg.svg'), linear-gradient(135deg, #fc0a7e, #602bb6);
  background-position: 50%, 0 0;
  background-size: cover, auto;
  padding-top: 15vh;
  padding-bottom: 15vh;
}

.hero {
  z-index: 999999;
  background-color: #0000;
  border: 1px #000;
  width: 100%;
  height: auto;
  padding: 0 10vw;
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
}

.nav {
  background-color: #0000;
  justify-content: space-between;
  align-items: center;
  height: auto;
  display: flex;
}

.nav-inner {
  border-bottom: 1px #ffffff1a;
  justify-content: space-between;
  align-items: flex-start;
  width: 80vw;
  height: 100px;
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
}

.body {
  color: #000;
  background-color: #0000;
  font-family: "Raleway (local)";
}

.feature-content {
  border: 1px #000;
  flex: none;
  width: 50vw;
  max-width: 760px;
  padding-left: 5vw;
  padding-right: 2vw;
}

.feature-content.icons {
  text-align: center;
  flex-direction: column;
  flex: none;
  align-items: center;
  width: 33.33%;
  max-width: none;
  padding-left: 30px;
  padding-right: 30px;
  display: flex;
}

.feature-content.icons.numbers {
  width: 25%;
}

.feature-content.imaghe {
  justify-content: center;
  align-items: center;
  width: 10%;
  min-width: 220px;
  max-width: none;
  height: 100%;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.button {
  color: #fff;
  text-align: center;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #18c798;
  border-radius: 110px;
  margin-right: 0;
  padding: 20px 40px;
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  transition: background-color .5s cubic-bezier(.789, .159, .25, 1), color .2s cubic-bezier(.789, .159, .25, 1);
  display: inline-block;
}

.button:hover {
  color: #fff;
  background-color: #4a24d5;
}

.button.contact {
  background-color: #0000;
  margin-left: 10px;
  box-shadow: inset 0 0 0 2px #fff3;
}

.button.contact:hover {
  color: #fff;
  box-shadow: inset 0 0 0 2px #fff;
}

.button.form-button {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1), cubic-bezier(.215, .61, .355, 1);
}

.button.form-button:hover {
  color: #fff;
  background-color: #000;
}

.button._2nd {
  color: #7270cc;
  background-color: #ffffff42;
  border: 2px solid #7270cc;
  margin-left: 0;
}

.button._2nd:hover {
  color: #fff;
  background-color: #7270cc;
}

.button._1st {
  background-color: var(--sws);
  margin-top: 12px;
  margin-bottom: 12px;
  margin-right: 24px;
  font-size: 2vh;
}

.button._1st:hover {
  background-color: var(--green);
}

.wrapper {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 1200px;
  display: flex;
}

.wrap {
  text-align: center;
  padding-top: 60px;
  padding-bottom: 20px;
}

.wrap.space {
  margin-top: 220px;
}

.title {
  color: #4a24d5;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-bottom: 1px #2e2e2e;
  padding-bottom: 5px;
  font-size: 12px;
  display: inline-block;
}

.title.green {
  color: #7270cc;
}

.image-2 {
  flex: none;
}

.button-wrap {
  justify-content: center;
  width: auto;
  margin-top: 5vh;
  padding-left: 0;
  padding-right: 0;
  display: flex;
}

.nav-menu-wrap {
  display: block;
}

.nav-link {
  color: #fff;
  flex: 0 auto;
  margin-bottom: 20px;
  margin-left: 15px;
  margin-right: 15px;
  padding-top: 40px;
  padding-left: 0;
  padding-right: 0;
  font-size: 16px;
  font-weight: 400;
}

.nav-link:hover {
  color: #fff;
  box-shadow: inset 0 -5px #fc0a7e;
}

.hero-image {
  transform-style: preserve-3d;
  height: 85vh;
  position: absolute;
  top: 58.422px;
  bottom: 0;
  right: 3vw;
  transform: rotateX(30deg)rotateY(-20deg)rotateZ(0);
}

.black-text {
  color: #1c1261;
}

.hero-content {
  z-index: 90;
  width: 100%;
  padding-top: 14%;
  padding-left: 10vw;
  padding-right: 20vh;
  position: relative;
  overflow: hidden;
}

.hero-content.content {
  padding-top: 8vh;
}

.feature-wrap {
  border: 1px #000;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 90vw;
  height: 286px;
  margin-top: 10vh;
  margin-bottom: 3vh;
  padding-left: 10vw;
  padding-right: 10vw;
  display: flex;
}

.feature-wrap.reverse {
  flex-direction: row-reverse;
}

.feature-wrap.logos {
  border-style: none;
  justify-content: space-around;
  height: auto;
  margin-top: 6vh;
  padding-top: 5vh;
  padding-bottom: 5vh;
}

.feature-wrap.icons {
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
}

.feature-image {
  border: 1px #000;
  justify-content: center;
  align-items: center;
  width: 50vw;
  display: flex;
}

.black {
  color: #1c1261;
}

.hero-subhead {
  color: #4a24d5;
  max-width: 610px;
  font-size: 30px;
  line-height: 44px;
}

.bottom-image-wrap {
  max-width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.feature-icon {
  height: 35px;
  margin-bottom: 30px;
}

.purple {
  color: #b32e6e;
}

.footer {
  background-color: #fff;
  background-image: linear-gradient(#fff 38%, #edf0fc);
  border-bottom: 4px solid #302383;
  justify-content: center;
  align-items: center;
  display: flex;
}

.footer-link {
  color: #302383;
  margin-left: 15px;
  margin-right: 15px;
  font-size: 14px;
  text-decoration: none;
  transition: text-shadow .2s ease-in-out;
}

.footer-link:hover {
  color: #4a24d5;
  text-shadow: 1px 1px 70px #18c798, 1px 1px 9px #18c798, 1px 1px 30px #18c798, 1px 1px 15px #18c798;
}

.footer-link.white {
  color: #fff;
  margin-left: 0;
  margin-right: 30px;
}

.footer-list {
  padding-top: 29px;
  padding-bottom: 29px;
}

.form-2 {
  margin-top: 40px;
  display: flex;
}

.input {
  clear: none;
  color: #000;
  background-color: #fff;
  border-style: none;
  border-top-left-radius: 3px;
  border-bottom-left-radius: 3px;
  flex: 0 auto;
  height: 70px;
  margin-bottom: 0;
  padding-left: 20px;
  padding-right: 0;
  transition: box-shadow .3s cubic-bezier(.215, .61, .355, 1);
  box-shadow: inset 0 0 #fc0a7e;
}

.input:hover, .input:focus {
  box-shadow: inset 0 0 0 2px #fc0a7e;
}

.input::placeholder {
  color: #555;
}

.arrow {
  margin-left: auto;
  margin-right: auto;
  display: block;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
}

.quote-slider {
  background-color: #0000;
  width: 90vw;
  height: 60vh;
  margin-top: 10vh;
}

.slider-arrow {
  color: #d6d6d6;
}

.quote-wrap {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50vw;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.quote-attribution {
  justify-content: center;
  align-items: center;
  display: flex;
}

.quote-dash {
  background-color: #d3d3d3;
  flex: none;
  width: 30px;
  height: 1px;
  margin-bottom: 10px;
  margin-left: 20px;
  margin-right: 20px;
}

.quote-icon {
  margin-bottom: 45px;
}

.slide-nav {
  font-size: 7px;
}

.number {
  font-size: 60px;
  line-height: 90px;
}

.nav-logo-wrap {
  flex: none;
}

.nav-menu-2 {
  align-items: center;
  height: 120px;
  display: flex;
}

.heading-3 {
  color: var(--midnight-blue);
  letter-spacing: -3px;
  margin-left: -7px;
  font-weight: 600;
}

.herohead {
  color: #1c1261;
  margin-top: 20px;
  font-size: 60px;
}

.herohead.white, .herohead.wrap-txt {
  color: #fff;
  line-height: 70px;
}

.marked {
  background-color: var(--green);
  color: #fff;
  border-radius: 50px;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 35px;
}

.utility-page-wrap {
  justify-content: center;
  align-items: center;
  width: 100vw;
  max-width: 100%;
  height: 100vh;
  max-height: 100%;
  display: flex;
}

.utility-page-content {
  text-align: center;
  flex-direction: column;
  width: 260px;
  display: flex;
}

.logo {
  margin: 26px;
}

.image-5 {
  margin-top: -28px;
  margin-left: -9px;
  position: fixed;
}

.socket {
  justify-content: flex-end;
  align-items: center;
  width: 30%;
  padding: 24px 2vw 24px 10vw;
  font-size: 16px;
  display: flex;
  position: absolute;
  inset: auto 0% 0% auto;
}

.staytuned {
  color: var(--white);
  align-items: flex-end;
  margin-top: 0;
  margin-right: 0;
  font-size: 4vh;
  font-weight: 600;
  display: inline;
}

.staytuned.h1 {
  font-size: 8vh;
}

.hero-image-mobile, .hero-image-tablet {
  transform-style: preserve-3d;
  height: 85vh;
  display: none;
  position: absolute;
  top: 58.422px;
  bottom: 0;
  right: 3vw;
  transform: rotateX(30deg)rotateY(-20deg)rotateZ(0);
}

.div-block-13 {
  margin-top: 80px;
}

.trenner {
  color: var(--sws);
  position: relative;
  top: -3px;
}

.hero-head {
  letter-spacing: -3px;
  margin-bottom: .8em;
  margin-left: -7px;
  font-size: 8vh;
  font-weight: 600;
}

.div-block-14 {
  margin-top: 3em;
}

.image-6 {
  width: 900px;
  margin-bottom: auto;
  overflow: hidden;
}

.heading-4 {
  font-size: 4vh;
}

.socket-link {
  color: #fff;
  margin-right: 12px;
  text-decoration: none;
}

.utility-page-form {
  flex-direction: column;
  align-items: stretch;
  display: flex;
}

@media screen and (max-width: 991px) {
  h2 {
    font-size: 34px;
    line-height: 44px;
  }

  .section.center {
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 15vh;
  }

  .section.wide.img {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .nav {
    width: 100vw;
  }

  .nav-inner {
    width: 100vw;
    padding-left: 5vw;
  }

  .button._1st {
    margin-top: 10px;
    margin-bottom: 10px;
    margin-right: 20px;
    padding: 15px 30px;
    font-size: 1.8vh;
  }

  .nav-link {
    padding-top: 20px;
  }

  .nav-link:hover {
    box-shadow: none;
  }

  .hero-image {
    width: 50%;
    height: auto;
    margin-bottom: 7vw;
    margin-left: auto;
    margin-right: auto;
    display: none;
    position: absolute;
    inset: auto -44.4vw 0 0;
  }

  .hero-content {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .feature-wrap {
    align-items: flex-start;
    height: auto;
    margin-top: 5vh;
    margin-bottom: 5vh;
    padding-left: 0;
    padding-right: 0;
  }

  .feature-wrap.logos {
    flex-flow: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 5vh;
    margin-bottom: 5vh;
  }

  .hero-subhead {
    font-size: 24px;
    line-height: 31px;
  }

  .bottom-image-wrap {
    background-image: none;
    height: auto;
  }

  .feature-icon {
    flex: none;
  }

  .footer-link.white {
    margin-left: 0;
    margin-right: 25px;
  }

  .quote-slider {
    width: 100vw;
    height: auto;
    min-height: 500px;
    padding-top: 50px;
    padding-bottom: 50px;
  }

  .quote-wrap {
    width: 70vw;
  }

  .menu-icon {
    color: #fff;
    font-size: 40px;
  }

  .menu-button.w--open {
    background-color: #000;
  }

  .nav-menu-2 {
    background-color: #000;
    min-width: 240px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand {
    padding-left: 0;
  }

  .heading-3 {
    font-size: 8vw;
  }

  .herohead {
    font-size: 46px;
    line-height: 49px;
  }

  .logo {
    margin: 31px;
  }

  .image-5 {
    max-width: 80%;
  }

  .socket {
    text-align: center;
    background-color: #3335bd;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 5vw;
  }

  .staytuned {
    font-size: 8vw;
  }

  .staytuned.h1 {
    font-size: 6.5vh;
  }

  .hero-image-mobile {
    width: 50%;
    height: auto;
    margin-bottom: 7vw;
    margin-left: auto;
    margin-right: auto;
    display: none;
    position: absolute;
    inset: auto -44.4vw 0 0;
  }

  .hero-image-tablet {
    opacity: .25;
    width: 50%;
    height: auto;
    margin-bottom: 7vw;
    margin-left: auto;
    margin-right: auto;
    display: block;
    position: absolute;
    inset: auto -44.4vw 0 0;
  }

  .paragraph-2 {
    margin-bottom: 25px;
    line-height: 22px;
  }

  .hero-head {
    font-size: 8vw;
  }

  .image-6 {
    width: 800px;
    max-width: 90%;
  }

  .heading-5 {
    margin-top: 10px;
  }
}

@media screen and (max-width: 767px) {
  h2 {
    color: var(--black);
    font-size: 34px;
    line-height: 38px;
  }

  h3 {
    font-size: 2.5vh;
    line-height: 4.2vh;
  }

  .section.center {
    padding-top: 20vh;
  }

  .section.wide.img {
    padding: 3vh 0 6vh;
  }

  .feature-content {
    flex: 1;
  }

  .feature-content.icons {
    text-align: left;
    align-items: flex-start;
    width: auto;
    padding-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .feature-content.icons.numbers {
    flex: none;
    align-items: center;
    width: 50%;
  }

  .feature-content.imaghe {
    flex: 0 auto;
    width: 30%;
    min-width: 120px;
    min-height: 2px;
  }

  .button.form-button {
    border-top-right-radius: 0;
    border-bottom-left-radius: 3px;
  }

  .wrap {
    flex-flow: column wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: none;
    padding-left: 5vw;
    padding-right: 5vw;
    display: flex;
  }

  .wrap.space {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .hero-image {
    margin-bottom: 10vw;
  }

  .hero-content {
    margin-bottom: 5vh;
  }

  .feature-wrap {
    flex-direction: row;
    justify-content: flex-start;
  }

  .feature-wrap.icons {
    flex-flow: wrap;
    display: block;
  }

  .feature-wrap.icons.numbers {
    display: flex;
  }

  .hero-subhead {
    font-size: 29px;
    line-height: 38px;
  }

  .footer-link {
    margin-bottom: 10px;
    display: inline-block;
  }

  .form-2 {
    flex-direction: column;
  }

  .input {
    text-align: center;
    border-top-right-radius: 3px;
    border-bottom-left-radius: 0;
    padding-left: 22px;
    padding-right: 22px;
  }

  .quote-attribution {
    flex-direction: row;
    align-items: center;
  }

  .menu-icon {
    font-size: 30px;
  }

  .heading-3 {
    font-size: 14vw;
    line-height: 12vh;
  }

  .form-block {
    width: 100%;
  }

  .socket {
    position: static;
  }

  .staytuned {
    font-size: 10vw;
    line-height: 12vh;
  }

  .staytuned.h1 {
    font-size: 4vh;
    line-height: 7vh;
  }

  .hero-image-mobile {
    opacity: .25;
    margin-bottom: 10vw;
    display: block;
  }

  .hero-image-tablet {
    margin-bottom: 10vw;
    display: none;
  }

  .hero-head {
    font-size: 14vw;
    line-height: 12vh;
  }
}

@media screen and (max-width: 479px) {
  h1 {
    font-size: 60px;
    line-height: 70px;
  }

  h3 {
    line-height: 3vh;
  }

  .section.center {
    padding-top: 15vh;
    padding-bottom: 10vh;
    overflow: hidden;
  }

  .hero {
    padding-left: 0;
    padding-right: 0;
  }

  .nav-inner {
    width: 100vw;
    height: 100px;
    padding-left: 0;
  }

  .feature-content {
    width: auto;
  }

  .feature-content.icons.numbers {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .button.contact {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
  }

  .button._1st {
    margin-top: 6px;
    margin-bottom: 6px;
    margin-right: 9px;
    padding: 12px 20px;
  }

  .wrap {
    white-space: pre-wrap;
    flex-wrap: wrap;
    padding-left: 2vw;
    padding-right: 2vw;
    overflow: hidden;
  }

  .image-2 {
    width: 100%;
  }

  .button-wrap {
    flex-direction: column;
    width: 90vw;
  }

  .hero-image {
    width: 80%;
    inset: auto 0% 8%;
  }

  .hero-content {
    margin-bottom: 0;
    padding-top: 30%;
  }

  .feature-wrap, .feature-wrap.reverse {
    flex-direction: column;
  }

  .feature-image {
    width: auto;
    margin-top: 30px;
    margin-bottom: 30px;
  }

  .hero-subhead {
    font-size: 24px;
    line-height: 33px;
  }

  .feature-icon {
    margin-bottom: 20px;
  }

  .form-2 {
    flex-direction: column;
    width: 90vw;
  }

  .quote-slider {
    width: 100vw;
    padding-left: 5vw;
    padding-right: 5vw;
  }

  .slider-arrow {
    font-size: 24px;
  }

  .left-arrow, .right-arrow {
    width: 15vw;
  }

  .number {
    font-size: 40px;
  }

  .brand {
    max-width: 90%;
  }

  .brand.w--current {
    max-width: 100%;
  }

  .heading-3 {
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 20vw;
    line-height: 56px;
  }

  .herohead.wrap-txt {
    white-space: pre-wrap;
    max-width: 98%;
    font-size: 30px;
    line-height: 46px;
  }

  .image-5 {
    max-width: 103%;
    margin-top: -10px;
    margin-left: -6px;
  }

  .staytuned {
    letter-spacing: -1px;
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 11vw;
    line-height: 56px;
  }

  .staytuned.h1 {
    font-size: 4vh;
    line-height: 4vh;
  }

  .hero-image-mobile {
    opacity: .15;
    width: 80%;
    inset: auto 0% 8%;
  }

  .hero-image-tablet {
    width: 80%;
    inset: auto 0% 8%;
  }

  .div-block-13 {
    margin-top: 50px;
  }

  .hero-head {
    margin-top: 25px;
    margin-bottom: 25px;
    font-size: 20vw;
    line-height: 56px;
  }

  .div-block-14 {
    margin-top: 2em;
  }

  .image-6 {
    max-width: 100%;
  }
}


