@import url(https://use.typekit.net/ugv1pqh.css);*,
*:after,
*:before {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
}

section#home-hero {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
          align-items: flex-start;
  background-color: #556270;
  height: 100%;
  max-height: 860px;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 1200px) {
  section#home-hero {
    background-color: transparent;
  }
}

section#home-hero .row {
  position: relative;
  z-index: 12;
  max-width: 800px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
          justify-content: flex-start;
  margin-left: 120px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 1200px) {
  section#home-hero .row {
    margin-left: 80px;
  }
}

@media screen and (max-width: 768px) {
  section#home-hero .row {
    margin-left: 60px;
  }
}

@media screen and (max-width: 640px) {
  section#home-hero .row {
    margin: 12px;
  }
}

section#home-hero .row::after {
  content: "";
  display: block;
  position: absolute;
  right: -60px;
  width: 0;
  height: 0;
  top: 0;
  border-left: 20px solid transparent;
  border-right: 470px solid transparent;
  border-top: 750px solid #556270;
  z-index: -1;
}

@media screen and (min-width: 1600px) {
  section#home-hero .row::after {
    right: -260px;
  }
}

@media screen and (max-width: 1200px) {
  section#home-hero .row::after {
    display: none;
  }
}

section#home-hero .row .hero-content {
  margin-top: 48px;
  margin-bottom: 120px;
  width: 100%;
}

@media screen and (max-width: 768px) {
  section#home-hero .row .hero-content {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-align: center;
            align-items: center;
  }
}

section#home-hero .row .hero-content h1 {
  font-size: 48px;
  color: #ffffff;
  text-align: left;
  max-width: 960px;
  margin: 0;
  line-height: 1;
  text-shadow: 2px 0 5px black;
}

@media screen and (max-width: 768px) {
  section#home-hero .row .hero-content h1 {
    font-size: 32px;
    text-align: center;
  }
}

section#home-hero .row .hero-content .hero-description {
  padding-right: 160px;
}

section#home-hero .row .hero-content .hero-description * {
  font-family: "proxima-nova", sans-serif;
  color: #ffffff;
}

@media screen and (max-width: 768px) {
  section#home-hero .row .hero-content .hero-description {
    padding: 0;
    text-align: center;
  }
}

section#home-hero .row .hero-content .hero-cta {
  background-color: #51B1D8;
  padding: 16px 24px;
  color: #ffffff;
  border: 2px solid #51B1D8;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  margin-top: 24px;
  max-width: 210px;
  text-align: center;
}

section#home-hero .row .hero-content .hero-cta:hover {
  background-color: transparent;
}

section#home-hero .hero-image {
  position: absolute;
  top: 0;
  left: 45%;
  overflow: hidden;
  height: 100%;
  width: 75%;
  background-size: cover;
  background-position: 0 50%;
}

@media screen and (max-width: 1200px) {
  section#home-hero .hero-image {
    width: 100%;
    z-index: 1;
    left: 0;
  }

  section#home-hero .hero-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
  }
}

section#intro {
  padding: 48px 0;
  margin-bottom: 120px;
  background-color: #eff0f1;
  position: relative;
}

@media screen and (max-width: 768px) {
  section#intro {
    margin-bottom: 100px;
  }
}

section#intro::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 100%;
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 100vw solid transparent;
  border-top: 120px solid #eff0f1;
}

@media screen and (max-width: 768px) {
  section#intro::after {
    border-top: 80px solid #eff0f1;
    margin-top: -1px;
  }
}

section#intro .row {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 800px) {
  section#intro .row {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
  }
}

section#intro .row .content,
section#intro .row .data {
  width: 50%;
}

@media screen and (max-width: 800px) {
  section#intro .row .content,
  section#intro .row .data {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  section#intro .row .content {
    padding: 12px;
  }
}

section#intro .row .content .subhead-title {
  color: #DD4412;
  text-transform: uppercase;
  font-weight: 600;
}

section#intro .row .content .intro-title {
  color: #556270;
  font-size: 40px;
  font-weight: 300;
}

section#intro .row .content .intro-description {
  padding-right: 80px;
  color: #556270;
}

@media screen and (max-width: 768px) {
  section#intro .row .content .intro-description {
    padding: 0;
  }
}

section#intro .row .content .intro-description h1,
section#intro .row .content .intro-description h2,
section#intro .row .content .intro-description h3,
section#intro .row .content .intro-description h4,
section#intro .row .content .intro-description h5,
section#intro .row .content .intro-description h6 {
  font-size: 32px;
  margin-top: 12px;
}

@media screen and (max-width: 768px) {
  section#intro .row .content .intro-description h1,
  section#intro .row .content .intro-description h2,
  section#intro .row .content .intro-description h3,
  section#intro .row .content .intro-description h4,
  section#intro .row .content .intro-description h5,
  section#intro .row .content .intro-description h6 {
    font-size: 28px;
  }
}

section#intro .row .content .intro-description p {
  font-size: 16px;
  line-height: 1.5;
}

section#intro .row .data {
  border-left: 2px solid #556270;
  padding-left: 24px;
}

@media screen and (max-width: 768px) {
  section#intro .row .data {
    padding: 12px;
    border-left: none;
  }
}

section#intro .row .data .intro-data-title {
  font-size: 24px;
  margin-bottom: 12px;
  color: #174774;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  section#intro .row .data .intro-data-title {
    font-size: 20px;
  }
}

section#intro .row .data .data-point {
  margin-bottom: 16px;
}

section#intro .row .data .data-point .bar {
  height: 8px;
  margin-top: 4px;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}

section#intro .row .data .data-point .bar.inactive {
  width: 0 !important;
}

section#intro .row .data .data-point .number-title-wrapper {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
          align-items: center;
}

section#intro .row .data .data-point .number-title-wrapper .data-number {
  font-weight: 600;
  font-size: 24px;
}

section#intro .row .data .data-point .number-title-wrapper .data-title {
  font-size: 20px;
  margin-left: 12px;
}

@media screen and (max-width: 768px) {
  section#intro .row .data .data-point .number-title-wrapper .data-title {
    font-size: 16px;
  }
}

section#views {
  padding: 48px 0;
  padding-bottom: 120px;
  position: relative;
}

section#views::after {
  content: "";
  width: 95vw;
  height: 500px;
  background-color: #eff0f1;
  position: absolute;
  top: 40%;
  right: 0;
  z-index: -1;
}

section#views .row {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 800px) {
  section#views .row {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    padding: 12px;
  }
}

section#views .row .subhead-title {
  color: #DD4412;
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  width: 100%;
}

section#views .row .views-title {
  color: #556270;
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 0;
}

@media screen and (max-width: 768px) {
  section#views .row .views-title {
    font-size: 28px;
  }
}

section#views .row .views-description {
  padding-right: 80px;
  color: #556270;
  width: 100%;
}

@media screen and (max-width: 768px) {
  section#views .row .views-description {
    padding: 0;
  }
}

section#views .row .views-description h1,
section#views .row .views-description h2,
section#views .row .views-description h3,
section#views .row .views-description h4,
section#views .row .views-description h5,
section#views .row .views-description h6 {
  font-size: 22px;
  margin-top: 12px;
  color: #174774;
  font-weight: 600;
}

section#views .row .views-description p {
  font-size: 16px;
  line-height: 1.5;
}

section#views .row .pie-charts-title {
  margin-top: 0;
  -webkit-transform: translate(0px, 80px);
          transform: translate(0px, 80px);
  color: #174774;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

@media screen and (max-width: 1400px) {
  section#views .row .pie-charts-title {
    margin-left: 64px;
  }
}

@media screen and (max-width: 768px) {
  section#views .row .pie-charts-title {
    margin-left: 0;
    text-align: center;
  }
}

section#views .row .columns {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: center;
          justify-content: center;
  padding-top: 80px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 768px) {
  section#views .row .columns {
    flex-wrap: wrap;
  }
}

section#views .row .columns .column {
  width: 28%;
  margin: 0 2%;
  background-color: #ffffff;
  box-shadow: -1px 6px 8px -1px rgba(0, 0, 0, 0.75);
  padding: 0;
  opacity: 0;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
}

@media screen and (max-width: 768px) {
  section#views .row .columns .column {
    width: 100%;
    padding: 0 0 24px;
    margin: 0 0 48px;
  }
}

section#views .row .columns .column img {
  margin: auto;
  display: block;
  position: relative;
  margin-top: 24px;
  width: 260px;
  height: 260px;
}

section#views .row .columns .column .pie-chart-title {
  font-size: 22px;
  padding: 0 24px;
  color: #556270;
  margin: 0;
  padding: 12px 48px;
  text-align: center;
}

@media screen and (max-width: 768px) {
  section#views .row .columns .column .pie-chart-title {
    font-size: 18px;
  }
}

section#views .row .columns .column .description {
  color: #556270;
  font-size: 16px;
  padding: 12px 48px;
  margin: 0 0 64px;
}

section#views .row .columns.active div.column {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

section#views .row .columns.active div.column:nth-of-type(2) {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
}

section#views .row .columns.active div.column:nth-of-type(3) {
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

section#vertical {
  padding: 100px 0;
  margin-bottom: 48px;
  position: relative;
}

section#vertical .row {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 800px) {
  section#vertical .row {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
  }
}

section#vertical .row .content,
section#vertical .row .data {
  width: 50%;
}

@media screen and (max-width: 800px) {
  section#vertical .row .content,
  section#vertical .row .data {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  section#vertical .row .content {
    padding: 12px;
  }
}

section#vertical .row .content .subhead-title {
  color: #DD4412;
  text-transform: uppercase;
  font-weight: 600;
}

section#vertical .row .content .intro-title {
  color: #556270;
  font-size: 40px;
  font-weight: 300;
  margin-top: 12px;
}

section#vertical .row .content .intro-description {
  padding-right: 80px;
  color: #556270;
  line-height: 1.5;
  color: #DD4412;
}

@media screen and (max-width: 768px) {
  section#vertical .row .content .intro-description {
    padding: 0;
  }
}

section#vertical .row .content .intro-description h1,
section#vertical .row .content .intro-description h2,
section#vertical .row .content .intro-description h3,
section#vertical .row .content .intro-description h4,
section#vertical .row .content .intro-description h5,
section#vertical .row .content .intro-description h6 {
  font-size: 32px;
  margin-top: 12px;
  line-height: 1.2;
  color: #556270;
}

section#vertical .row .content .intro-description p {
  font-size: 16px;
  line-height: 1.5;
}

@media screen and (min-width: 768px) {
  section#vertical .row .data {
    border-left: 1px solid #174774;
    padding-left: 48px;
  }
}

section#vertical .row .data .vertical-chart-title {
  color: #174774;
  max-width: 411px;
  font-weight: 600;
  font-size: 20px;
}

@media screen and (max-width: 768px) {
  section#vertical .row .data .vertical-chart-title {
    padding: 12px;
  }
}

section#vertical .row .data .vertical-chart {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: end;
          align-items: flex-end;
  flex-wrap: nowrap;
}

section#vertical .row .data .vertical-chart .data-point {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
          align-items: center;
  height: 360px;
  overflow: hidden;
  margin: 6px;
}

@media screen and (max-width: 768px) {
  section#vertical .row .data .vertical-chart .data-point {
    margin: 0;
  }
}

section#vertical .row .data .vertical-chart .data-point .arrow {
  height: 150px;
  overflow: hidden;
  margin-bottom: -100px;
  -webkit-transition: all 1.5s ease-in-out;
  transition: all 1.5s ease-in-out;
}

section#vertical .row .data .vertical-chart .data-point .arrow.inactive {
  max-height: 0 !important;
}

section#vertical .row .data .vertical-chart .data-point .arrow svg {
  width: 50px;
}

section#vertical .row .data .vertical-chart .data-point .circle svg {
  width: 125px;
}

section#vertical .row .data .vertical-chart .data-point .circle svg text {
  font-family: "proxima-nova", sans-serif !important;
  font-weight: 600;
}

section#vertical .row .data .vertical-chart .data-point .data-title {
  margin: 0;
  text-align: center;
  max-width: 160px;
}

@media screen and (max-width: 768px) {
  section#vertical .row .data .vertical-chart .data-point .data-title {
    font-size: 12px;
  }
}

section#security {
  padding: 48px 0;
  margin-bottom: 250px;
  position: relative;
  background-color: #eff0f1;
  z-index: 12;
}

@media screen and (max-width: 768px) {
  section#security {
    margin-bottom: 24px;
  }
}

section#security::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 80%;
  width: 0;
  height: 0;
  border-left: -7px solid transparent;
  border-right: 250vw solid transparent;
  border-top: 250px solid #eff0f1;
  z-index: -1;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

@media screen and (max-width: 768px) {
  section#security::after {
    display: none;
  }
}

section#security .row {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 800px) {
  section#security .row {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    padding: 12px;
  }
}

section#security .row .content,
section#security .row .data {
  width: 50%;
}

@media screen and (max-width: 800px) {
  section#security .row .content,
  section#security .row .data {
    width: 100%;
  }
}

section#security .row .content .subhead-title {
  color: #DD4412;
  text-transform: uppercase;
  font-weight: 600;
}

section#security .row .content .intro-title {
  color: #556270;
  font-size: 40px;
  font-weight: 300;
}

section#security .row .content .intro-description {
  padding-right: 80px;
  color: #556270;
  line-height: 1.5;
  color: #DD4412;
}

@media screen and (max-width: 768px) {
  section#security .row .content .intro-description {
    padding: 0;
  }
}

section#security .row .content .intro-description h1,
section#security .row .content .intro-description h2,
section#security .row .content .intro-description h3,
section#security .row .content .intro-description h4,
section#security .row .content .intro-description h5,
section#security .row .content .intro-description h6 {
  font-size: 32px;
  margin-top: 12px;
  line-height: 1.2;
  color: #556270;
}

section#security .row .content .intro-description p {
  font-size: 16px;
  line-height: 1.5;
}

section#security .row .data {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  section#security .row .data {
    margin-top: 24px;
  }
}

section#security .row .data .data-inner {
  background-color: #ffffff;
  padding: 18px;
  box-shadow: -1px 6px 8px -1px rgba(0, 0, 0, 0.75);
}

section#security .row .data .data-inner .data-security-title {
  max-width: 250px;
  font-size: 20px;
  color: #174774;
  font-weight: 600;
  margin-bottom: 12px;
}

section#security .row .data .data-inner .security-data-points {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

section#security .row .data .data-inner .security-data-points .security-data-point {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
          align-items: center;
}

section#security .row .data .data-inner .security-data-points .security-data-point .data-title {
  max-width: 350px;
  padding-right: 12px;
  font-size: 18px;
  line-height: 1;
  margin: 6px 0;
}

@media screen and (max-width: 768px) {
  section#security .row .data .data-inner .security-data-points .security-data-point .data-title {
    font-size: 16px;
  }
}

section#security .row .data .data-inner .security-data-points .security-data-point .separator {
  width: 1px;
  background-color: #eff0f1;
  height: 100%;
  display: block;
  position: relative;
}

section#security .row .data .data-inner .security-data-points .security-data-point .data-number {
  border-left: 1px solid #174774;
  padding-left: 12px;
  font-size: 28px;
  height: 100%;
  min-width: 100px;
}

@media screen and (max-width: 768px) {
  section#security .row .data .data-inner .security-data-points .security-data-point .data-number {
    min-width: 65px;
  }
}

section#security .row .data .data-inner .security-data-points .security-data-point .data-number::after {
  content: "%";
}

section#about-hero {
  background-color: #556270;
  padding: 120px 12px;
}

section#about-hero .row {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
          align-items: flex-start;
}

@media screen and (max-width: 900px) {
  section#about-hero .row {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
  }
}

section#about-hero .row .column {
  width: 68%;
  padding: 0 16px;
}

@media screen and (max-width: 1000px) {
  section#about-hero .row .column {
    width: 60%;
  }
}

@media screen and (max-width: 900px) {
  section#about-hero .row .column {
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  section#about-hero .row .column .hero-content {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    text-align: center;
  }
}

section#about-hero .row .column .hero-content .hero-title {
  font-size: 80px;
  color: #ffffff;
  margin-top: -36px;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  section#about-hero .row .column .hero-content .hero-title {
    font-size: 34px;
  }
}

section#about-hero .row .column .hero-content .hero-description * {
  color: #ffffff;
  line-height: 1.4;
  font-size: 20px;
}

section#about-hero .row .column .hero-content a.hero-cta {
  margin-top: 36px;
  text-align: center;
  font-weight: 600;
}

section#about-hero .row .column.data {
  width: 30%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 1000px) {
  section#about-hero .row .column.data {
    width: 40%;
  }
}

@media screen and (max-width: 900px) {
  section#about-hero .row .column.data {
    width: 100%;
    margin-top: 120px;
  }
}

section#about-hero .row .column.data .hero-data {
  height: 100%;
  background-color: #ffffff;
  max-width: 350px;
  padding: 24px;
  position: relative;
  box-shadow: -1px 6px 8px -1px rgba(0, 0, 0, 0.75);
}

section#about-hero .row .column.data .hero-data img {
  width: 100%;
  max-width: 100%;
  margin-top: -48px;
}

section#about-hero .row .column.data .hero-data .hero-data-points {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 36px;
}

section#about-hero .row .column.data .hero-data .hero-data-points .data-point {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  text-align: center;
  border-right: 1px solid #eff0f1;
}

section#about-hero .row .column.data .hero-data .hero-data-points .data-point:last-of-type {
  border-right: 1px solid transparent;
}

section#about-hero .row .column.data .hero-data .hero-data-points .data-point .data-point-title {
  font-size: 12px;
  margin: 0;
  min-height: 32px;
}

section#about-hero .row .column.data .hero-data .hero-data-points .data-point .data-number,
section#about-hero .row .column.data .hero-data .hero-data-points .data-point .data-text {
  font-size: 20px;
  margin-bottom: 0;
  margin-top: 8px;
  padding: 6px;
}

section#about-intro {
  background-color: #eff0f1;
  padding: 120px 12px 20px;
  position: relative;
}

@media screen and (max-width: 768px) {
  section#about-intro {
    padding-bottom: 32px;
  }
}

section#about-intro::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 76%;
  width: 0;
  height: 0;
  border-left: -7px solid transparent;
  border-right: 106vw solid transparent;
  border-top: 150px solid #ffffff;
  z-index: 0;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
  section#about-intro::after {
    display: none;
  }
}

section#about-intro .row {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
          align-items: flex-start;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 900px) {
  section#about-intro .row {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
  }
}

section#about-intro .row .column {
  width: 68%;
  padding: 0 16px 16px;
}

@media screen and (max-width: 1000px) {
  section#about-intro .row .column {
    width: 60%;
  }
}

@media screen and (max-width: 900px) {
  section#about-intro .row .column {
    width: 100%;
  }
}

@media screen and (max-width: 900px) {
  section#about-intro .row .column .intro-content {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
    text-align: center;
  }
}

section#about-intro .row .column .intro-content .intro-title {
  font-size: 70px;
  color: #000000;
  margin-top: -36px;
  margin-bottom: 12px;
}

@media screen and (max-width: 768px) {
  section#about-intro .row .column .intro-content .intro-title {
    font-size: 34px;
  }
}

section#about-intro .row .column .intro-content .intro-description * {
  color: #000000;
  line-height: 1.4;
  font-size: 20px;
}

section#about-intro .row .column .intro-content a.hero-cta {
  margin-top: 36px;
  text-align: center;
  font-weight: 600;
}

section#about-intro .row .column.data {
  width: 30%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 1000px) {
  section#about-intro .row .column.data {
    width: 40%;
  }
}

@media screen and (max-width: 900px) {
  section#about-intro .row .column.data {
    width: 100%;
    margin-top: 120px;
  }
}

section#about-intro .row .column.data .hero-data {
  height: 100%;
  background-color: #ffffff;
  max-width: 350px;
  padding: 24px;
  position: relative;
  box-shadow: -1px 6px 8px -1px rgba(0, 0, 0, 0.75);
}

section#about-intro .row .column.data .hero-data img {
  width: 100%;
  max-width: 100%;
  margin-top: -48px;
}

section#about-intro .row .column.data .hero-data .hero-data-points {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  margin-top: 36px;
}

section#about-intro .row .column.data .hero-data .hero-data-points .data-point {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  text-align: center;
  border-right: 1px solid #eff0f1;
}

section#about-intro .row .column.data .hero-data .hero-data-points .data-point:last-of-type {
  border-right: 1px solid transparent;
}

section#about-intro .row .column.data .hero-data .hero-data-points .data-point .data-point-title {
  font-size: 12px;
  margin: 0;
}

section#about-intro .row .column.data .hero-data .hero-data-points .data-point .data-number,
section#about-intro .row .column.data .hero-data .hero-data-points .data-point .data-text {
  font-size: 24px;
  margin-bottom: 0;
}

section#about-about {
  padding: 120px 0 48px;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

section#about-about::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 70%;
  width: 0;
  height: 0;
  border-left: -7px solid transparent;
  border-right: 250vw solid transparent;
  border-top: 250px solid #eff0f1;
  z-index: -1;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}

@media screen and (max-width: 768px) {
  section#about-about::after {
    display: none;
  }
}

section#about-about .row {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 800px) {
  section#about-about .row {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
  }
}

section#about-about .row .column .subhead-title {
  color: #DD4412;
  text-transform: uppercase;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  section#about-about .row .column .subhead-title {
    padding-left: 20px;
  }
}

section#about-about .row .column .intro-title {
  color: #556270;
  font-size: 40px;
  font-weight: 300;
}

@media screen and (max-width: 768px) {
  section#about-about .row .column .intro-title {
    padding-left: 20px;
  }
}

section#about-about .row .content {
  width: 100%;
  padding: 40px;
  background-color: #ffffff;
  box-shadow: -1px 6px 8px -1px rgba(0, 0, 0, 0.75);
}

@media screen and (max-width: 768px) {
  section#about-about .row .content {
    padding: 20px;
  }
}

section#about-about .row .content h1,
section#about-about .row .content h2,
section#about-about .row .content h3,
section#about-about .row .content h4,
section#about-about .row .content h5,
section#about-about .row .content h6 {
  color: #DD4412;
}

section#about-about .row .content .intro-description {
  color: #556270;
  line-height: 1.5;
  color: #DD4412;
}

section#about-about .row .content .intro-description h1,
section#about-about .row .content .intro-description h2,
section#about-about .row .content .intro-description h3,
section#about-about .row .content .intro-description h4,
section#about-about .row .content .intro-description h5,
section#about-about .row .content .intro-description h6 {
  font-size: 32px;
  margin-top: 12px;
  margin-bottom: 12px;
  line-height: 1.2;
  color: #DD4412;
}

section#about-about .row .content .intro-description p {
  font-size: 16px;
  line-height: 1.5;
}

section#about-about .row .data {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: end;
          align-items: flex-end;
  flex-wrap: nowrap;
}

section#about-about .row .data img {
  margin: 0 4px;
}

section#about-about .row .data img:first-of-type {
  margin-right: 18px;
  margin-bottom: 10px;
}

section {
  width: 100%;
  max-width: 100%;
}

@media screen and (max-width: 768px) {
  section {
    padding: 12px;
  }
}

section .row {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

body,
html {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

body.menu-active,
html.menu-active {
  overflow: hidden;
}

a,
div,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-family: "proxima-nova", sans-serif;
  font-weight: 500;
  color: #556270;
}

.cta,
button {
  background-color: #51B1D8;
  padding: 16px 24px;
  color: #ffffff;
  border: 2px solid #51B1D8;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  max-width: 160px;
}

.cta:hover,
button:hover {
  background-color: transparent !important;
  color: #51B1D8;
}

header {
  padding: 12px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-align: center;
          align-items: center;
  -webkit-box-pack: justify;
          justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 900px) {
  header a.logo {
    width: 70%;
  }
}

header a.logo img {
  width: 80%;
}

@media screen and (max-width: 900px) {
  header a.logo img {
    width: 70%;
  }
}

@media screen and (min-width: 900px) {
  header .mobile-trigger {
    display: none;
  }
}

header nav {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 900px) {
  header nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

header nav .inner {
  margin-right: 48px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 0;
}

@media screen and (max-width: 900px) {
  header nav .inner {
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    margin-top: 20%;
  }
}

header nav ul {
  margin-right: 48px;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  padding: 0;
}

@media screen and (max-width: 900px) {
  header nav ul {
    margin-right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
  }
}

header nav ul li {
  list-style: none;
  margin-left: 18px;
  display: block;
}

@media screen and (max-width: 900px) {
  header nav ul li {
    margin-left: 0;
    margin-bottom: 24px;
  }
}

header nav ul li a {
  text-decoration: none;
  display: block;
  text-align: center;
  color: #556270;
  padding-bottom: 4px;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #556270;
}

header nav ul li a.on,
header nav ul li a:hover {
  border-bottom: 2px solid #51B1D8;
  color: #51B1D8;
}

header nav .cta {
  max-width: 210px;
}

header nav .close-mobile-menu {
  font-size: 60px;
  font-weight: 200;
  color: #556270;
  margin-top: 64px;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 900px) {
  header nav .close-mobile-menu {
    display: none;
  }
}

@media screen and (max-width: 900px) {
  header nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 123456789;
    display: none;
  }
}

footer.footer {
  position: relative;
  padding-top: 210px;
  padding-bottom: 120px;
  margin-top: -210px;
  z-index: -1;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: center;
          align-items: center;
  background-size: cover !important;
  background-repeat: no-repeat;
}

footer.footer::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 12;
}

footer.footer .row {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: start;
          align-items: flex-start;
  width: 100%;
  max-width: 100%;
  max-width: 1200px;
}

@media screen and (max-width: 768px) {
  footer.footer .row {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
  }
}

footer.footer .row .column {
  padding: 12px;
}

footer.footer .row .column.title {
  width: 37%;
}

@media screen and (max-width: 768px) {
  footer.footer .row .column.title {
    width: 100%;
  }
}

footer.footer .row .column.title .footer-title {
  color: #ffffff;
  font-size: 48px;
}

footer.footer .row .column.form {
  width: 63%;
}

@media screen and (max-width: 768px) {
  footer.footer .row .column.form {
    width: 100%;
  }
}

footer.footer .row .column.form form {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
          align-items: center;
  flex-wrap: wrap;
  width: 100% !important;
}

footer.footer .row .column.form form .mktoFieldWrap,
footer.footer .row .column.form form .mktoFormCol {
  width: 100%;
}

footer.footer .row .column.form form .mktoFormRow {
  width: 48%;
  float: left;
  margin-left: 12px;
}

@media screen and (max-width: 768px) {
  footer.footer .row .column.form form .mktoFormRow {
    width: 100%;
  }
}

footer.footer .row .column.form form .mktoFormRow:last-of-type {
  width: 100% !important;
  float: none;
}

footer.footer .row .column.form form .mktoButtonRow {
  clear: both;
  width: 100%;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-pack: center;
          justify-content: center;
  -webkit-box-align: start;
          align-items: flex-start;
  padding-left: 12px;
}

footer.footer .row .column.form form .mktoButtonRow .mktoButtonWrap {
  margin: 0 !important;
}

footer.footer .row .column.form form .mktoButtonRow .mktoButtonWrap button {
  width: 200px;
  margin-top: 24px;
  background-color: #51B1D8 !important;
  background-image: none !important;
  box-shadow: none !important;
  padding: 16px 24px;
  color: #ffffff;
  border: 2px solid #51B1D8;
  text-decoration: none;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  display: block;
  max-width: 160px;
}

footer.footer .row .column.form form .mktoButtonRow .mktoButtonWrap button:hover {
  background-color: transparent !important;
  color: #51B1D8;
}

@media screen and (max-width: 768px) {
  footer.footer .row .column.form form .mktoButtonRow .mktoButtonWrap button {
    width: 100% !important;
    max-width: 100% !important;
  }
}

footer.footer .row .column.form form label {
  color: #ffffff !important;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
          align-items: center;
}

footer.footer .row .column.form form label .mktoAsterix {
  color: #ffffff !important;
}

footer.footer .row .column.form form input,
footer.footer .row .column.form form select,
footer.footer .row .column.form form textarea {
  width: 100% !important;
  height: 40px;
  color: #556270 !important;
  background-color: #ffffff;
  background-image: none !important;
  box-shadow: none !important;
}

footer.footer .row .column.form .disclaimer {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.5;
}

footer.footer .row .column.form .disclaimer a {
  color: #ffffff;
}

section#footer-bottom {
  background-color: #174774;
  padding: 24px;
}

section#footer-bottom .row {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  section#footer-bottom .row {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
  }
}

section#footer-bottom .row a.logo img {
  max-width: 280px;
}

section#footer-bottom .row ul.footer-nav {
  list-style: none;
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
          flex-direction: row;
  -webkit-box-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
          align-items: center;
  padding-left: 0;
  width: 50%;
}

@media screen and (max-width: 768px) {
  section#footer-bottom .row ul.footer-nav {
    display: -webkit-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -webkit-box-pack: center;
            justify-content: center;
    -webkit-box-align: center;
            align-items: center;
  }
}

section#footer-bottom .row ul.footer-nav li {
  margin-left: 12px;
}

@media screen and (max-width: 768px) {
  section#footer-bottom .row ul.footer-nav li {
    margin-bottom: 12px;
  }
}

section#footer-bottom .row ul.footer-nav li a {
  color: #ffffff;
  text-decoration: none;
}

