/*
Apple iPad Air (2020) viewport size is 820 x 1180 PX with ~ 132 actual pixel density, which means it have 2.0 xhdpi display pixel density.

Original
768 x 1024
iPad Air
820 x 1180
iPad 10.2
810 x 1080
iPad Pro 12.9''
1024 x 1366
iPad Pro 11''
834 x 1194
*/
/**
 * Mixin scrollbar
 */
/* Uncomment and set these variables to customize the grid. */
.container-flexbox-fluid {
  margin-right: auto;
  margin-left: auto;
  padding-right: 2rem;
  padding-left: 2rem;
}

.row > div {
  margin-bottom: 1em;
}

/*.row > div > div {
  border: 1px solid #e5e5e5;
}*/
.row:last-child {
  margin-bottom: -1em;
}

.row {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex: 0 1 auto;
  -webkit-box-flex: 0;
  flex: 0 1 auto;
  -ms-flex-direction: row;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.row.reverse {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  flex-direction: row-reverse;
}

.col.reverse {
  -ms-flex-direction: column-reverse;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  flex-direction: column-reverse;
}

.col-xs,
.col-xs-1,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9,
.col-xs-10,
.col-xs-11,
.col-xs-12 {
  box-sizing: border-box;
  -ms-flex: 0 0 auto;
  -webkit-box-flex: 0;
  flex: 0 0 auto;
  padding-right: 1rem;
  padding-left: 1rem;
}
@media (max-width: 768px) {
  .col-xs,
  .col-xs-1,
  .col-xs-2,
  .col-xs-3,
  .col-xs-4,
  .col-xs-5,
  .col-xs-6,
  .col-xs-7,
  .col-xs-8,
  .col-xs-9,
  .col-xs-10,
  .col-xs-11,
  .col-xs-12 {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.col-xs {
  -webkit-flex-grow: 1;
  -ms-flex-positive: 1;
  -webkit-box-flex: 1;
  flex-grow: 1;
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  max-width: 100%;
}

.col-xs-1 {
  -ms-flex-preferred-size: 8.333%;
  flex-basis: 8.333%;
  max-width: 8.333%;
}

.col-xs-2 {
  -ms-flex-preferred-size: 16.667%;
  flex-basis: 16.667%;
  max-width: 16.667%;
}

.col-xs-3 {
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
  max-width: 25%;
}

.col-xs-4 {
  -ms-flex-preferred-size: 33.333%;
  flex-basis: 33.333%;
  max-width: 33.333%;
}

.col-xs-5 {
  -ms-flex-preferred-size: 41.667%;
  flex-basis: 41.667%;
  max-width: 41.667%;
}

.col-xs-6 {
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
  max-width: 50%;
}

.col-xs-7 {
  -ms-flex-preferred-size: 58.333%;
  flex-basis: 58.333%;
  max-width: 58.333%;
}

.col-xs-8 {
  -ms-flex-preferred-size: 66.667%;
  flex-basis: 66.667%;
  max-width: 66.667%;
}

.col-xs-9 {
  -ms-flex-preferred-size: 75%;
  flex-basis: 75%;
  max-width: 75%;
}

.col-xs-10 {
  -ms-flex-preferred-size: 83.333%;
  flex-basis: 83.333%;
  max-width: 83.333%;
}

.col-xs-11 {
  -ms-flex-preferred-size: 91.667%;
  flex-basis: 91.667%;
  max-width: 91.667%;
}

.col-xs-12 {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
}

.col-xs-offset-1 {
  margin-left: 8.333%;
}

.col-xs-offset-2 {
  margin-left: 16.667%;
}

.col-xs-offset-3 {
  margin-left: 25%;
}

.col-xs-offset-4 {
  margin-left: 33.333%;
}

.col-xs-offset-5 {
  margin-left: 41.667%;
}

.col-xs-offset-6 {
  margin-left: 50%;
}

.col-xs-offset-7 {
  margin-left: 58.333%;
}

.col-xs-offset-8 {
  margin-left: 66.667%;
}

.col-xs-offset-9 {
  margin-left: 75%;
}

.col-xs-offset-10 {
  margin-left: 83.333%;
}

.col-xs-offset-11 {
  margin-left: 91.667%;
}

.start-xs {
  -ms-flex-pack: start;
  -webkit-box-pack: start;
  justify-content: flex-start;
  text-align: start;
}

.center-xs {
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  text-align: center;
}

.end-xs {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
  text-align: end;
}

.top-xs {
  -ms-flex-align: start;
  -webkit-box-align: start;
  align-items: flex-start;
}

.middle-xs {
  -ms-flex-align: center;
  -webkit-box-align: center;
  align-items: center;
}

.bottom-xs {
  -ms-flex-align: end;
  -webkit-box-align: end;
  align-items: flex-end;
}

.around-xs {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.between-xs {
  -ms-flex-pack: justify;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.first-xs {
  -ms-flex-order: -1;
  -webkit-box-ordinal-group: 0;
  order: -1;
}

.last-xs {
  -ms-flex-order: 1;
  -webkit-box-ordinal-group: 2;
  order: 1;
}

@media only screen and (min-width: 48em) {
  .container-flexbox {
    width: 46rem;
  }
  .col-sm,
  .col-sm-1,
  .col-sm-2,
  .col-sm-3,
  .col-sm-4,
  .col-sm-5,
  .col-sm-6,
  .col-sm-7,
  .col-sm-8,
  .col-sm-9,
  .col-sm-10,
  .col-sm-11,
  .col-sm-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .col-sm {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-sm-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-sm-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-sm-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-sm-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-sm-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-sm-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-sm-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-sm-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-sm-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-sm-offset-1 {
    margin-left: 8.333%;
  }
  .col-sm-offset-2 {
    margin-left: 16.667%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-4 {
    margin-left: 33.333%;
  }
  .col-sm-offset-5 {
    margin-left: 41.667%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-7 {
    margin-left: 58.333%;
  }
  .col-sm-offset-8 {
    margin-left: 66.667%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-10 {
    margin-left: 83.333%;
  }
  .col-sm-offset-11 {
    margin-left: 91.667%;
  }
  .start-sm {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-sm {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-sm {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-sm {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-sm {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-sm {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-sm {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-sm {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-sm {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-sm {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
@media only screen and (min-width: 62em) {
  .container-flexbox {
    width: 61rem;
  }
  .col-md,
  .col-md-1,
  .col-md-2,
  .col-md-3,
  .col-md-4,
  .col-md-5,
  .col-md-6,
  .col-md-7,
  .col-md-8,
  .col-md-9,
  .col-md-10,
  .col-md-11,
  .col-md-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .col-md {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-md-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-md-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-md-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-md-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-md-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-md-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-md-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-md-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-md-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-md-offset-1 {
    margin-left: 8.333%;
  }
  .col-md-offset-2 {
    margin-left: 16.667%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-4 {
    margin-left: 33.333%;
  }
  .col-md-offset-5 {
    margin-left: 41.667%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-7 {
    margin-left: 58.333%;
  }
  .col-md-offset-8 {
    margin-left: 66.667%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-10 {
    margin-left: 83.333%;
  }
  .col-md-offset-11 {
    margin-left: 91.667%;
  }
  .start-md {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-md {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-md {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-md {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-md {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-md {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-md {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-md {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-md {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-md {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
@media only screen and (min-width: 75em) {
  .container-flexbox {
    width: 71rem;
  }
  .col-lg,
  .col-lg-1,
  .col-lg-2,
  .col-lg-3,
  .col-lg-4,
  .col-lg-5,
  .col-lg-6,
  .col-lg-7,
  .col-lg-8,
  .col-lg-9,
  .col-lg-10,
  .col-lg-11,
  .col-lg-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
  }
  .col-lg {
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    -webkit-box-flex: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    max-width: 100%;
  }
  .col-lg-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
  }
  .col-lg-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
  }
  .col-lg-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
  }
  .col-lg-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
  }
  .col-lg-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
  }
  .col-lg-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
  }
  .col-lg-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
  }
  .col-lg-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
  }
  .col-lg-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
  }
  .col-lg-offset-1 {
    margin-left: 8.333%;
  }
  .col-lg-offset-2 {
    margin-left: 16.667%;
  }
  .col-lg-offset-3 {
    margin-left: 25%;
  }
  .col-lg-offset-4 {
    margin-left: 33.333%;
  }
  .col-lg-offset-5 {
    margin-left: 41.667%;
  }
  .col-lg-offset-6 {
    margin-left: 50%;
  }
  .col-lg-offset-7 {
    margin-left: 58.333%;
  }
  .col-lg-offset-8 {
    margin-left: 66.667%;
  }
  .col-lg-offset-9 {
    margin-left: 75%;
  }
  .col-lg-offset-10 {
    margin-left: 83.333%;
  }
  .col-lg-offset-11 {
    margin-left: 91.667%;
  }
  .start-lg {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
  }
  .center-lg {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
  }
  .end-lg {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
  }
  .top-lg {
    -ms-flex-align: start;
    -webkit-box-align: start;
    align-items: flex-start;
  }
  .middle-lg {
    -ms-flex-align: center;
    -webkit-box-align: center;
    align-items: center;
  }
  .bottom-lg {
    -ms-flex-align: end;
    -webkit-box-align: end;
    align-items: flex-end;
  }
  .around-lg {
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }
  .between-lg {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .first-lg {
    -ms-flex-order: -1;
    -webkit-box-ordinal-group: 0;
    order: -1;
  }
  .last-lg {
    -ms-flex-order: 1;
    -webkit-box-ordinal-group: 2;
    order: 1;
  }
}
/* ==========================================================================
Common and Defaults
========================================================================== */
[contenteditable=true]:focus {
  outline: none;
}

*:focus {
  outline: none;
}

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

span.no-wrap {
  white-space: nowrap;
}

.relative {
  position: relative;
}

.no_selection {
  user-select: none; /* standard syntax */
  -webkit-user-select: none; /* webkit (safari, chrome) browsers */
  -moz-user-select: none; /* mozilla browsers */
  -khtml-user-select: none; /* webkit (konqueror) browsers */
  -ms-user-select: none; /* IE10+ */
}

/* ==========================================================================
   Development things
   ========================================================================== */
/* ==========================================================================
   Helpers
   ========================================================================== */
/* ==========================================================================
Layout with containers
========================================================================== */
html {
  padding: 0;
  margin: 0;
  height: 100%;
}

body {
  background-size: cover;
  height: 100%;
  color: #333;
  font-family: "Lato", sans-serif;
  padding: 0;
  margin: 0;
  background: rgb(6, 43, 83);
  background: linear-gradient(45deg, rgb(6, 43, 83) 0%, rgb(69, 111, 173) 100%);
}

.section {
  margin: 0;
  padding: 0;
}

.inside-wrapper {
  margin: 0 auto;
  padding: 0 30px;
  max-width: 1000px;
  box-sizing: border-box;
}
.inside-wrapper.max-width-900 {
  max-width: 900px;
}

.skinnier .inside-wrapper {
  max-width: 750px;
}

.relative {
  position: relative;
}

.align-right {
  text-align: right;
}

.align-left {
  text-align: left;
}

.align-center {
  text-align: center;
}

.no-margin {
  margin: 0 !important;
}

.no-padding {
  padding: 0 !important;
  margin: 0 !important;
}

.row {
  margin-right: 0;
  margin-left: 0;
}
@media (max-width: 768px) {
  .row .row {
    margin-left: -1em;
    margin-right: -1em;
  }
}

.form-wrapper {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 767px) {
  .form-wrapper {
    min-width: 700px;
  }
}

/* Rules for sizing the icon. */
.material-icons.md-18 {
  font-size: 18px;
}

.material-icons.md-24 {
  font-size: 24px;
}

.material-icons.md-36 {
  font-size: 36px;
}

.material-icons.md-48 {
  font-size: 48px;
}

.v-center {
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
}
@media (max-width: 768px) {
  .v-center {
    position: relative;
    transform: none;
    top: auto;
    box-shadow: none;
    border-radius: none;
  }
}

.flex-v-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-height: 670px) {
  .flex-v-center {
    /*display: block;
    padding-top: 240px !important;*/
  }
}
@media (max-width: 768px) {
  .flex-v-center {
    /*display: block;*/
    /*padding-top: 240px;*/
  }
}

.relative-container {
  width: 100%;
  height: 100vh;
  max-width: 1000px;
  max-width: 100%;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background: #082239;
  border-top: 1px solid rgb(6, 43, 83);
  font-weight: 400;
  color: #fff;
  padding: 30px 0;
}
footer p {
  color: #fff;
  margin: 0;
  font-size: 14px;
}
footer a {
  color: #fff;
  font-size: 14px;
  display: inline-block;
  text-decoration: none;
  margin-right: 20px;
}
footer .social-icons a {
  font-size: 24px;
}
footer .inside-wrapper > div {
  margin-bottom: 20px;
}
footer .learn {
  background: rgba(0, 0, 0, 0.25);
  padding: 20px;
  display: inline-block;
  margin-left: -20px;
}
footer .learn p:first-child {
  margin-bottom: 20px;
}
@media (min-width: 1000px) {
  footer .learn {
    position: absolute;
    right: 20px;
    top: -30px;
  }
  footer .learn img {
    width: 100px;
  }
}
footer .learn img {
  width: 100px;
}

/* ==========================================================================
Header
========================================================================== */
.page-cover {
  background: #fff;
  height: 100vh;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 999999;
  opacity: 1;
  transition: all 1s ease-in-out;
}
.page-cover.reveal {
  opacity: 1;
}
.page-cover.obscure {
  display: none;
  /*left: 100%;*/
}

.page-wrapper {
  transition: opacity 1s ease-in-out;
}
.page-wrapper.reveal {
  opacity: 1;
}
.page-wrapper.obscure {
  opacity: 0;
}

.top-header {
  position: fixed;
  width: 100%;
  text-align: right;
  height: 160px;
  padding: 0px 0px;
  box-sizing: border-box;
  background: none;
  z-index: 9999;
  /*background: rgb(6,43,83);
  background: linear-gradient(180deg, rgba(6,43,83,0.75) 0%, rgba(69,111,173,0) 100%);
  */
}
.top-header .header-wrapper {
  height: 100px;
  width: 100%;
  padding: 45px 0px 0 30px;
  box-sizing: border-box;
  position: relative;
}
.top-header .eplus-logo {
  position: absolute;
  left: 0px;
  top: 30px;
  width: 60px;
  display: inline-block;
}
.top-header .eplus-logo img {
  transform-origin: 50% 50%;
}
@media (max-width: 1035px) {
  .top-header .eplus-logo {
    left: 20px;
  }
}
@media (max-width: 768px) {
  .top-header .eplus-logo {
    width: 40px;
    left: 20px;
    top: 20px;
  }
}
@media (max-height: 670px) {
  .top-header .eplus-logo {
    width: 40px;
    left: 20px;
    top: 20px;
  }
}
.top-header .logo-extra {
  text-align: left;
  position: absolute;
  left: 30px;
  top: 50%;
}
.top-header .logo-extra .collab {
  width: 170px;
  margin-left: 40px;
}
@media (max-width: 768px) {
  .top-header .logo-extra {
    width: 140px;
    top: 30px;
  }
}
@media (max-height: 670px) {
  .top-header .logo-extra {
    width: 140px;
    top: 30px;
  }
}
.top-header .mobile-navigation {
  display: none;
  position: absolute;
  color: #fff;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .top-header .mobile-navigation {
    display: block;
  }
}
@media (max-height: 670px) {
  .top-header .mobile-navigation {
    display: block;
  }
}
.top-header .navigation {
  display: inline-block;
}
@media (max-width: 768px) {
  .top-header .navigation {
    display: none;
  }
}
@media (max-height: 670px) {
  .top-header .navigation {
    display: none;
  }
}
@media (max-width: 950px) {
  .top-header .navigation {
    padding-right: 30px;
  }
}
@media (max-width: 768px) {
  .top-header .navigation {
    position: absolute;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 25px 30px 30px;
    border-bottom-left-radius: 5px;
  }
}
@media (max-height: 670px) {
  .top-header .navigation {
    position: absolute;
    right: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 60px 25px 30px 30px;
    border-bottom-left-radius: 5px;
  }
}
.top-header .show {
  display: block;
}
.top-header .navigation ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  color: #fff;
  text-align: right;
}
.top-header .navigation ul li {
  list-style-type: none;
  margin: 0 20px;
  padding: 0;
  display: inline-block;
}
@media (max-width: 950px) {
  .top-header .navigation ul li {
    margin: 0 15px;
  }
}
@media (max-width: 768px) {
  .top-header .navigation ul li {
    display: block;
    margin: 10px 0;
  }
}
@media (max-height: 670px) {
  .top-header .navigation ul li {
    display: block;
    margin: 10px 0;
  }
}
.top-header .navigation ul li a {
  display: inline-block;
  font-weight: 500;
  letter-spacing: 1px;
  color: #fff;
  font-size: 16px;
  padding: 5px 0 20px 0px;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
}
@media (max-width: 950px) {
  .top-header .navigation ul li a {
    font-size: 13px;
    padding: 0;
  }
}
@media (max-height: 670px) {
  .top-header .navigation ul li a {
    font-size: 13px;
    padding: 0;
  }
}
.top-header .navigation ul li a:before {
  transition: 300ms;
  height: 2px;
  content: "";
  position: absolute;
  background-color: #ed8e2e;
  width: 50%;
  bottom: 10px;
}
@media (max-width: 950px) {
  .top-header .navigation ul li a:before {
    bottom: -5px;
  }
}
@media (max-height: 670px) {
  .top-header .navigation ul li a:before {
    bottom: -5px;
  }
}
.top-header .navigation ul li a:hover::before {
  width: 100%;
}

.alternate-nav .top-header .navigation {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 60px 25px 30px 30px;
  border-bottom-left-radius: 5px;
}
.alternate-nav .top-header .navigation.show {
  display: block;
}
.alternate-nav .top-header .navigation ul li {
  display: block;
  margin: 10px 0;
}
.alternate-nav .top-header .navigation ul li a {
  font-size: 13px;
  padding: 0;
}
.alternate-nav .top-header .navigation ul li a:before {
  bottom: -5px;
}
.alternate-nav .top-header .mobile-navigation {
  display: block;
  top: 30px;
}
@media (max-width: 768px) {
  .alternate-nav .top-header .mobile-navigation {
    top: 20px;
  }
}
.alternate-nav .top-header .eplus-logo {
  width: 60px;
}
@media (max-width: 768px) {
  .alternate-nav .top-header .eplus-logo {
    width: 40px;
  }
}
@media (max-height: 670px) {
  .alternate-nav .top-header .eplus-logo {
    width: 40px;
  }
}
.alternate-nav .top-header .logo-extra {
  text-align: left;
  position: absolute;
  left: 30px;
  top: 50%;
}
.alternate-nav .top-header .logo-extra .collab {
  width: 170px;
  margin-left: 40px;
}
@media (max-width: 768px) {
  .alternate-nav .top-header .logo-extra {
    width: 140px;
    top: 30px;
  }
}
@media (max-height: 670px) {
  .alternate-nav .top-header .logo-extra {
    width: 140px;
    top: 30px;
  }
}

.not-fixed-nav .top-header {
  background: rgb(6, 43, 83);
  background: linear-gradient(45deg, rgb(6, 43, 83) 0%, rgb(69, 111, 173) 100%);
  position: relative;
}

/* ==========================================================================
  Content Things
========================================================================== */
.section .video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}
.section .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.section .video-action {
  cursor: pointer;
  position: relative;
}
.section .video-action .thumbnail:after {
  font-family: "Material Icons";
  content: "play_circle";
  color: #fff;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50px;
}
.section .video-action.dark-button .thumbnail:after {
  color: rgba(0, 0, 0, 0.7);
  font-size: 70px;
}
.section .caption {
  font-size: 14px;
  display: block;
}
.section .caption.bigger {
  font-size: 20px;
  margin-top: 10px;
}
@media (min-width: 1000px) {
  .section .caption {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}
.section .note {
  font-size: 95%;
}
.section .col-xs-12 .content-image {
  max-width: 200px;
}
.section .in-content-image {
  margin-bottom: 40px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section .in-content-image img {
  box-shadow: 0 1px 3px -2px rgb(0, 0, 0);
}
.section .in-content-image.no-border img {
  border: 0px;
}
@media (min-width: 1000px) {
  .section .in-content-image {
    max-width: 90%;
  }
}
.section.basic-panel .the-content a {
  text-decoration: underline;
}
.section .the-content a {
  text-decoration: underline;
}

.pullquote {
  margin: 60px 0;
  position: relative;
  padding-left: 20px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  border-left: 5px solid #ed8e2e;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.4em;
  font-style: italic;
}
.pullquote p {
  margin-top: 0px;
}
.pullquote .attribution {
  font-style: normal;
  font-size: 80%;
  line-height: 1.6em;
  margin: 30px 0;
}
.pullquote .attribution span {
  display: block;
}

/* ==========================================================================
  Form Things
========================================================================== */
form {
  max-width: 900px;
}
form label {
  font-size: 16px;
  line-height: 1.4em;
  font-weight: 300;
  display: block;
  margin: 0 0 10px 0;
  font-family: "Lato";
}
form input {
  font-size: 16px;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 20px 10px;
  background: none;
  margin: 0 0 30px 0;
  color: #fff;
  font-weight: 300;
  font-family: "Lato";
  -webkit-appearance: none;
  width: 100%;
  box-sizing: border-box;
}

.form-submitted .hide-on-submit {
  display: none;
}
.form-submitted .hbspt-form {
  border: 1px solid #fff;
  padding: 10px 20px;
  border-radius: 5px;
}

.logos {
  padding: 0px 0 0px 0;
  margin-bottom: -50px;
  margin-top: 20px;
}
@media (max-height: 670px) {
  .logos {
    margin-bottom: 0px;
  }
}
.logos .inner {
  padding: 0;
}
@media (max-width: 700px) {
  .logos {
    margin-bottom: 0px;
  }
}
.logos.no-padding-top {
  padding-top: 0;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  grid-gap: 1rem;
  align-items: center;
  justify-content: center;
}
@media (max-height: 670px) {
  .image-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    grid-gap: 0.5rem;
  }
}
@media (max-width: 700px) {
  .image-grid {
    grid-template-columns: repeat(auto-fill, minmax(75px, 1fr));
    grid-gap: 0.5rem;
  }
}

.image-grid > div {
  padding: 1rem;
  display: grid;
}

.section .subtext .partner-text {
  font-size: 18px;
  margin-top: 25px;
  font-weight: 500;
}
@media (max-width: 700px) {
  .section .subtext .partner-text {
    display: block !important;
    font-size: 16px;
  }
}
@media (max-height: 670px) {
  .section .subtext .partner-text {
    display: none;
  }
}

.logos .image-grid > div {
  background: none;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 5px;
}
.logos .item {
  border-bottom: 0px;
  padding: 0;
  margin: 0;
}

.image-grid > div::before {
  content: "";
  padding-bottom: 100%;
  display: block;
}

.image-grid > div::before,
.image-grid > div > img,
.image-grid > div > a {
  grid-area: 1/1/2/2;
}

.image-grid > div > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-grid > div > a > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-grid > svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.image-grid > a {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.section.not-fixed-height.logos-section {
  padding-top: 50px;
  padding-bottom: 80px;
}

.logos-section .logos {
  margin-bottom: 0px;
}

/* ==========================================================================
Sections
========================================================================== */
body {
  transition: opacity 1s ease-in-out;
}
body.reveal {
  opacity: 1;
}
body.obscure {
  opacity: 0;
}

.section {
  padding-top: 140px;
  padding-bottom: 40px;
  height: 100vh;
  width: 100vw;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
  position: relative;
  /* ==========================================================================
  Alternate Versions, color, etc
  ========================================================================== */
  /*
  &.gray {
  	background: #d8c0a7;
  	color: #062b53;

  	.accent {
  		color: #cb1b30;
  	}

  	.more {
  		color: #062b53;
  	}

  	.more-action {
  		a {
  			color: #062b53;
  		}

  		span.material-icon {
  			text-shadow: none;
  		}
  	}
  }
  */
  /* ==========================================================================
  END Alternate Versions, color, etc
  ========================================================================== */
  /* ==========================================================================
  Content inside pages
  ========================================================================== */
  /* ==========================================================================
  END Content inside pages
  ========================================================================== */
  /* ==========================================================================
  Scrolly Panel Versions
  ========================================================================== */
  /* USED IN MULTIPLES */
}
@media (max-height: 670px) {
  .section {
    height: auto !important;
    margin-bottom: 0px !important;
    min-height: 100vh;
  }
}
.section:last-child {
  margin-bottom: 0px;
}
.section.no-padding {
  padding-top: 0;
  padding-bottom: 0;
}
.section img {
  max-width: 100%;
  height: auto;
}
.section h2 {
  font-size: 60px;
  margin: 0px;
}
@media (max-height: 670px) {
  .section h2 {
    font-size: 36px;
  }
}
@media (max-width: 768px) {
  .section h2 {
    font-size: 36px;
  }
}
.section h3 {
  font-size: 30px;
  margin: 0px;
}
@media (max-height: 670px) {
  .section h3 {
    font-size: 24px;
  }
}
.section h2.intro-header {
  font-size: 36px;
  position: relative;
  text-align: center;
  margin-bottom: 60px;
}
.section h2.intro-header span {
  position: relative;
  display: inline-block;
}
.section h2.intro-header span:before {
  transition: 300ms;
  height: 4px;
  content: "";
  position: absolute;
  background-color: #cb1b30;
  width: 60%;
  bottom: -20px;
  margin: auto;
  right: 0;
  left: 0;
}
.section .go, .section .jump-to {
  cursor: pointer;
}
.section .go.material-icon, .section .jump-to.material-icon {
  font-size: 80px;
  display: inline-block;
  cursor: pointer;
}
@media (max-height: 670px) {
  .section .go.material-icon, .section .jump-to.material-icon {
    font-size: 50px;
  }
}
@media (max-width: 768px) {
  .section .go.material-icon, .section .jump-to.material-icon {
    font-size: 50px;
  }
}
.section .more-action.expand {
  margin-top: 0px;
  color: #ed8e2e;
}
.section .more-action.expand a {
  color: #ed8e2e;
}
.section .more-action.expand span.material-icon {
  font-size: 80px;
}
.section .header {
  margin: 0;
  font-weight: 900;
  font-size: 72px;
  line-height: 1.1em;
  color: #fff;
  position: relative;
  z-index: 2;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
}
@media (max-height: 670px) {
  .section .header {
    font-size: 36px !important;
  }
}
@media (max-width: 700px) {
  .section .header {
    font-size: 32px !important;
  }
}
@media (min-width: 767px) {
  .section .header.smaller-text {
    font-size: 60px;
  }
}
.section p {
  margin-top: 0px;
  font-size: 24px;
  color: #fff;
}
@media (max-height: 670px) {
  .section p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .section p {
    font-size: 20px;
  }
}
.section .subhead {
  font-size: 30px;
  display: block;
  margin-top: 20px;
  color: #e5e5e5;
  letter-spacing: 1px;
  color: #6ab3c9;
  margin-top: 10px;
  margin-bottom: 10px;
}
@media (max-height: 670px) {
  .section .subhead {
    font-size: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    white-space: normal;
  }
}
@media (max-width: 768px) {
  .section .subhead {
    white-space: normal;
    font-size: 20px;
  }
}
.section .fade-in {
  opacity: 0;
}
.section .above-bg {
  padding-left: 20px;
  margin-bottom: 20px;
}
.section .with-bg {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 25px;
}
.section .with-bg .subhead {
  white-space: normal;
}
.section .with-bg.offset {
  margin-left: -20px;
}
.section .with-bg.below-header {
  margin-top: 20px;
}
.section .with-bg.below-header .subhead {
  color: #fff;
}
.section .with-bg p {
  margin: 0;
  text-shadow: 2px 3px 5px rgba(0, 0, 0, 0.5);
}
.section .with-bg p + p {
  margin-top: 10px;
}
.section .with-bg.overflow {
  border-radius: 5px;
  margin-top: 50px;
  margin-left: -20px;
  display: none;
  /*border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;*/
}
@media (min-height: 900px) {
  .section .with-bg.overflow {
    display: block;
  }
}
.section .with-bg.overflow p {
  font-size: 18px;
}
@media (max-width: 768px) {
  .section .with-bg.overflow p {
    font-size: 16px;
  }
}
.section .no-header p:first-child {
  margin-top: 30px;
}
.section .with-bg .no-header p:first-child {
  margin-top: 0px;
}
@media (max-width: 768px) {
  .section .with-bg-mobile {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 25px;
  }
  .section .with-bg-mobile .subhead {
    white-space: normal;
  }
}
.section .subtext {
  max-width: 80%;
}
.section .subtext p {
  font-size: 30px;
  font-weight: 300;
  margin: 10px 0 0 0;
}
@media (max-height: 670px) {
  .section .subtext p {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .section .subtext p {
    font-size: 24px;
  }
}
@media (max-width: 768px) {
  .section .subtext {
    max-width: 100%;
  }
}
.section .with-collab-logo {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  align-content: center;
  margin: 20px 0;
}
.section .with-collab-logo p.partner-text {
  margin: 0;
}
.section .with-collab-logo .collab-logo {
  top: 0px;
  left: 0px;
  width: 200px;
  box-sizing: border-box;
  margin-right: 20px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 10px 16px;
}
@media (max-width: 768px) {
  .section .with-collab-logo .collab-logo {
    position: relative;
    top: auto;
    left: auto;
  }
}
@media (max-width: 768px) {
  .section .with-collab-logo {
    padding-left: 0px;
  }
}
.section .hide-when-animation {
  display: none;
}
.section.intro-panel .lines {
  margin-top: -100px;
}
@media (max-width: 768px) {
  .section.intro-panel .lines {
    margin-top: -30px;
  }
}
@media (max-height: 670px) {
  .section.intro-panel .lines {
    margin-top: -30px;
  }
}
.section.basic-panel {
  background: rgb(6, 43, 83);
  background: linear-gradient(45deg, rgb(0, 54, 102) 0%, rgb(108, 140, 199) 100%);
  color: #fff;
  margin-bottom: 0px;
  height: auto;
  min-height: 100vh;
}
.section.basic-panel .inside-wrapper {
  width: 100%;
  box-sizing: border-box;
}
.section.basic-panel .lines {
  min-width: 1000px;
}
@media (max-width: 1000px) {
  .section.basic-panel .lines {
    min-width: 100%;
    width: 100%;
  }
}
.section.basic-panel .lines .line {
  display: block;
  font-size: 60px;
  /*font-size: 3.5vw;*/
  font-weight: 700;
  letter-spacing: 1px;
}
.section.basic-panel .lines .line.sized-line {
  font-size: 36px;
  white-space: nowrap;
}
@media (min-width: 1000px) {
  .section.basic-panel .lines .line {
    font-size: 42px;
  }
  .section.basic-panel .lines .line.sized-line {
    font-size: 42px;
  }
}
@media (max-width: 1000px) {
  .section.basic-panel .lines .line {
    font-size: 36px;
  }
  .section.basic-panel .lines .line.sized-line {
    font-size: 36px;
    white-space: nowrap;
  }
}
@media (max-width: 830px) {
  .section.basic-panel .lines .line {
    font-size: 32px;
  }
  .section.basic-panel .lines .line.sized-line {
    font-size: 32px;
    white-space: nowrap;
  }
}
@media (max-width: 768px) {
  .section.basic-panel .lines .line {
    font-size: 30px;
  }
  .section.basic-panel .lines .line.sized-line {
    font-size: 30px;
  }
}
@media (max-width: 700px) {
  .section.basic-panel .lines .line {
    font-size: 32px;
  }
  .section.basic-panel .lines .line.sized-line {
    font-size: 32px;
    white-space: normal;
  }
  .section.basic-panel .lines .line.typed, .section.basic-panel .lines .line #typer {
    display: block;
  }
}
@media (max-height: 670px) {
  .section.basic-panel .lines .line {
    font-size: 32px;
  }
  .section.basic-panel .lines .line.sized-line {
    font-size: 32px;
  }
}
.section.basic-panel .lines .ti-cursor {
  color: #cb1b30 !important;
}
.section.basic-panel a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}
@media (max-width: 840px) {
  .section.basic-panel a.with-decoration {
    text-decoration: underline;
  }
}
.section.basic-panel #typer {
  white-space: nowrap;
  display: inline-block;
  border-bottom: 3px solid #fff;
  padding-bottom: 1px;
  padding-right: 5px;
}
@media (max-width: 768px) {
  .section.basic-panel #typer {
    white-space: normal;
    border-bottom: none;
    display: block;
  }
}
@media (max-width: 840px) {
  .section.basic-panel #typer {
    white-space: normal;
    border-bottom: none;
    display: block;
  }
}
.section.basic-panel .no-link #typer {
  border-bottom: none;
}
.section.basic-panel .badge {
  position: absolute;
  right: 40px;
  bottom: 40px;
  max-height: 200px;
  width: 100px;
}
@media (max-width: 768px) {
  .section.basic-panel .badge {
    width: 40px;
  }
}
.section.basic-panel .badge .partner-badge {
  max-height: 90px;
}
@media (max-width: 768px) {
  .section.basic-panel .badge .partner-badge {
    max-height: 60px;
    right: 0px;
  }
}
.section.wayfind-panel {
  height: 100vh !important; /* Fallback for browsers that do not support Custom Properties */
  min-height: 100vh !important; /* Fallback for browsers that do not support Custom Properties */
  height: calc(var(--vh, 1vh) * 100) !important;
  min-height: calc(var(--vh, 1vh) * 100) !important;
}
.section .down-wayfinding {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  padding: 20px 20px 15px 20px;
  text-align: center;
  /*position: fixed;
  bottom: 0px;
  left: 0px;
  width: 100%;
  z-index: 99999;*/
}
.section .down-wayfinding span.material-icon {
  transition: all 0.2s ease-in-out;
  animation: bounce 2s infinite;
}
.section .down-wayfinding span.material-icon:hover {
  transform: scale(1.1);
}
@media (max-height: 670px) {
  .section .down-wayfinding {
    padding: 10px 20px 5px 20px;
  }
}
.section .down-wayfinding.next-panel {
  text-align: right;
  padding: 10px 20px 5px 20px;
  background: none;
}
.section .down-wayfinding.next-panel span.material-icon {
  animation: none;
}
.section .down-wayfinding.next-panel span.back-up {
  text-align: left;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}
.section .more-action {
  display: inline-block;
  width: 100%;
  box-sizing: border-box;
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  position: relative;
}
.section .more-action .lm {
  opacity: 0;
  font-size: 24px;
  font-weight: 300;
  /*
  display:inline-flex;
  vertical-align:middle;
  */
  display: block;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
@media (max-height: 670px) {
  .section .more-action .lm {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .section .more-action .lm {
    font-size: 16px;
  }
}
.section .more-action a {
  color: #fff;
  text-decoration: none;
  display: inline-block;
}
.section .more-action a span {
  transition: all 0.2s ease-in-out;
}
.section .more-action a:hover span.material-icon {
  transform: scale(1.1);
  color: #fff;
}
.section .more-action span.material-icon {
  font-size: 80px;
  display: inline-block;
  cursor: pointer;
  /*text-shadow: 2px 3px 5px rgba(0,0,0,0.2);*/
}
@media (max-height: 670px) {
  .section .more-action span.material-icon {
    font-size: 48px;
  }
}
@media (max-width: 768px) {
  .section .more-action span.material-icon {
    font-size: 48px;
  }
}
.section .more-action span.material-icon.with-text {
  display: inline-flex;
  vertical-align: middle;
}
.section .more-action.on-video {
  position: absolute;
  z-index: 9999;
  bottom: 20vh;
  left: 0px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section .more-action.on-video a {
  color: rgb(255, 255, 255);
}
.section .more-action.on-pano {
  z-index: 9999;
  position: absolute;
  bottom: 60px;
  left: 0px;
  z-index: 9999;
}
@media (max-height: 670px) {
  .section .more-action.on-pano {
    bottom: 30px;
  }
}
@media (max-width: 768px) {
  .section .more-action.on-pano {
    bottom: 30px;
  }
}
.section .layer .more-action {
  margin-top: 5px;
}
.section.blue {
  background: #0E304E;
  color: #fff;
}
.section.blue a {
  color: #fff;
}
.section.blue .accent {
  color: #ed8e2e;
}
.section.blue .more {
  color: #fff;
}
.section.blue .more-action .lm {
  opacity: 1;
}
.section.blue-dark, .section.gray {
  background: #0E304E;
  color: #fff;
}
.section.blue-dark a, .section.gray a {
  color: #fff;
}
.section.blue-dark .accent, .section.gray .accent {
  color: #cb1b30;
}
.section.blue-dark .more, .section.gray .more {
  color: #fff;
}
.section.blue-dark .more-action .lm, .section.gray .more-action .lm {
  opacity: 1;
}
.section.not-fixed-height {
  min-height: auto;
  width: 100%;
  height: auto;
  padding-top: 140px;
  padding-bottom: 140px;
}
.section.black {
  background: #000;
  color: #fff;
}
.section.black .mask {
  font-size: 65px;
}
.section.black .accent {
  color: #cb1b30;
}
.section.black .more {
  color: #fff;
}
.section.no-min-height {
  height: auto;
  margin-bottom: 0px;
  padding-top: 100px;
  padding-bottom: 100px;
  min-height: 0px;
}
.section .the-content p {
  font-size: 24px;
  line-height: 1.5em;
  font-weight: 300;
}
.section .the-content .logos {
  margin-top: 0px;
  margin-bottom: 30px;
  text-align: center;
}
.section.center-content .the-content * {
  text-align: center;
}
.section.content-right .the-content * {
  text-align: right;
}
@media (max-width: 768px) {
  .section.content-right .the-content * {
    text-align: left;
  }
}
.section.content-right .the-content h2 {
  text-align: right;
}
@media (max-width: 768px) {
  .section.content-right .the-content h2 {
    text-align: left;
  }
}
.section.content-right .the-content h2 span:before {
  bottom: -20px;
  right: 0;
  left: auto;
}
@media (max-width: 768px) {
  .section.content-right .the-content h2 span:before {
    left: 0;
    right: auto;
  }
}
.section.content-left .the-content * {
  text-align: left;
}
.section.content-left .the-content h2 {
  text-align: left;
}
.section.content-left .the-content h2 span:before {
  bottom: -20px;
  left: 0;
  right: auto;
}
.section.video-panel {
  background: #242424;
}
.section.video-panel canvas {
  position: absolute;
  top: 0;
  left: 0;
}
.section.video-panel .video {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}
.section.video-panel .video.zoomed {
  transform: scale(1);
}
@media (max-width: 600px) {
  .section.video-panel .video {
    right: -100%;
  }
}
.section.video-panel .subhead {
  color: #fff;
}
.section.video-panel .animated-1 {
  opacity: 0;
  padding: 30px;
  background: rgba(36, 36, 36, 0.3);
  border-radius: 10px;
  position: relative;
  z-index: 500;
}
.section.panoramic {
  position: relative;
}
.section.panoramic .inside-wrapper {
  height: 100vh;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.section.panoramic .subhead {
  color: #fff;
}
.section.panoramic .animated-1 {
  position: absolute;
  right: 150px;
  top: 30%;
  width: 100%;
  text-align: right;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .section.panoramic .animated-1 {
    top: 20%;
    right: 40px;
  }
}
.section.panoramic .animated-1.left-aligned {
  right: 40px;
  text-align: left;
  padding-left: 15%;
}
@media (max-width: 1000px) {
  .section.panoramic .animated-1 {
    right: 40px;
    text-align: left;
    padding-left: 15%;
  }
}
.section.panoramic .animated-2 {
  position: absolute;
  right: -600px;
  opacity: 0;
  top: 30%;
  width: 80%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .section.panoramic .animated-2 {
    top: 20%;
    width: 80%;
  }
}
.section.panoramic .parallax-wrap {
  height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: 0 0;
  background-repeat: no-repeat;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.section.stack {
  padding-top: 0px;
  padding-bottom: 0px;
  background: rgb(6, 43, 83);
  background: linear-gradient(90deg, rgb(9, 50, 86) 0%, rgb(63, 104, 140) 100%);
}
.section.stack .animated-copy {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 600px;
  transform: translate(0, -50%);
}
@media (max-width: 768px) {
  .section.stack .animated-copy {
    width: 70%;
    left: auto;
  }
}
.section.stack .animated-1 {
  font-weight: 900;
  max-width: 500px;
  transform-origin: left 50%;
  color: #fff;
  -webkit-text-fill-color: rgba(1, 1, 1, 0);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  text-stroke: 1px solid #fff;
  transform: scale(0.8);
}
@media (max-width: 768px) {
  .section.stack .animated-1 {
    width: 75%;
  }
}
@media (max-height: 670px) {
  .section.stack .animated-1 {
    max-width: none;
  }
}
@media (max-width: 768px) {
  .section.stack .animated-1 {
    max-width: none;
  }
}
.section.stack .animated-1 p {
  margin: 0;
  font-size: 64px;
  line-height: 1.05em;
  margin: 0px;
}
@media (max-height: 670px) {
  .section.stack .animated-1 p {
    font-size: 40px !important;
  }
}
@media (max-width: 700px) {
  .section.stack .animated-1 p {
    font-size: 40px !important;
  }
}
.section.stack .animated-2 {
  padding-top: 30px;
  opacity: 0;
}
@media (max-height: 670px) {
  .section.stack .animated-2 {
    padding-top: 20px;
  }
}
@media (max-width: 768px) {
  .section.stack .animated-2 {
    padding-top: 20px;
  }
  .section.stack .animated-2 p {
    font-size: 20px;
    line-height: 1.3em;
  }
}
.section.stack .image-stack {
  width: 600px;
  height: 600px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 10%;
}
@media (max-width: 768px) {
  .section.stack .image-stack {
    display: none;
    width: 140px;
    height: auto;
    transform: none;
    bottom: 100px;
    right: 0px;
    top: auto;
    z-index: 0;
  }
}
@media (max-height: 670px) {
  .section.stack .image-stack {
    display: none;
  }
}
.section.stack .image-stack img {
  max-width: 100%;
  transform: translate(0, 0) scale(0.7);
  border: 1px solid #000;
  position: absolute;
  box-shadow: 0 1px 3px -2px rgba(0, 0, 0, 0.5);
  transition: all 0.3s ease-out;
  max-width: 600px;
}
@media (max-width: 768px) {
  .section.stack .image-stack img {
    max-width: 100px;
    z-index: 0;
    border: none;
  }
}
.section.stack .image-stack img:nth-child(1) {
  max-width: auto;
  transform: translate(0, 0) scale(1);
}
.section.stack .image-stack img:nth-child(1) {
  z-index: 999;
}
.section.stack .image-stack img:nth-child(2) {
  transform: translate3d(-34%, -45%, 0) rotate3d(0, 0, -2, 7deg) scale(0.7);
}
.section.stack .image-stack img:nth-child(4) {
  transform: translate3d(35%, -45%, 0) rotate3d(0, 0, 1, 5deg) scale(0.7);
}
.section.stack .image-stack img:nth-child(3) {
  transform: translate3d(42%, 45%, 0) rotate3d(0, 0, 1, -3deg) scale(0.7);
}
.section.stack .image-stack img:nth-child(5) {
  transform: translate3d(-36%, 44%, 0) rotate3d(0, 0, 1, 2deg) scale(0.7);
}
.section.waves {
  background: #122D45;
  /*background: linear-gradient(45deg, rgba(6,43,83,1) 0%, rgba(69,111,173,1) 100%);*/
  position: relative;
}
.section.waves .header {
  font-size: 60px;
}
.section.waves .animated-1 {
  position: absolute;
  right: 150px;
  top: 30%;
  width: 100%;
  text-align: right;
  box-sizing: border-box;
}
@media (max-width: 1000px) {
  .section.waves .animated-1 {
    right: 40px;
    text-align: left;
    padding-left: 15%;
  }
}
.section.waves .animated-1.need-room {
  right: 40px;
  text-align: left;
  padding-left: 15%;
}
@media (max-width: 768px) {
  .section.waves .animated-1 {
    top: 20%;
    right: 40px;
  }
}
.section.waves .animated-2 {
  position: absolute;
  right: -600px;
  width: 100%;
  opacity: 0;
  top: 30%;
  width: 80%;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .section.waves .animated-2 {
    top: 20%;
    width: 80%;
  }
}
.section.waves .wave {
  position: absolute;
  bottom: 0;
  width: 300%;
  left: -150px;
  bottom: -3px;
}
.section.waves .wave.wave-1 {
  width: 251%;
  left: -7%;
}
.section.waves .wave.wave-2 {
  width: 156%;
  left: -1%;
}
.section.waves .wave.wave-3 {
  width: 140%;
  left: -11%;
}
.section.waves .wave.wave-4 {
  width: 241%;
  left: -7%;
}
.section.nets {
  background: #2C5981;
  /*background: linear-gradient(45deg, rgba(6,43,83,1) 0%, rgba(69,111,173,1) 100%);*/
  position: relative;
}
.section.nets .animated-1 {
  position: absolute;
  left: 150px;
  top: 50%;
  transform: translate(0, -50%);
  width: 600px;
  box-sizing: border-box;
}
.section.nets .net {
  position: absolute;
}
.section.nets .net.net-1 {
  width: 145%;
  left: 16%;
  bottom: 22%;
}
.section.nets .net.net-1 img {
  opacity: 0.4;
}
@media (min-height: 1000px) {
  .section.nets .net.net-1 {
    bottom: -5%;
  }
}
.section.nets .net.net-2 {
  width: 181%;
  left: -8%;
  bottom: -33%;
}
@media (min-height: 1000px) {
  .section.nets .net.net-2 {
    bottom: -10%;
  }
}
.section.nets .net.net-3 {
  width: 131%;
  left: -1%;
  bottom: -27%;
}
.section.nets .net.net-3 img {
  opacity: 1;
}
@media (min-height: 1000px) {
  .section.nets .net.net-3 {
    bottom: -5%;
  }
}
@media (max-width: 768px) {
  .section.nets .net {
    bottom: -4% !important;
  }
}
.section.hexs {
  background: #174874;
  /*background: linear-gradient(45deg, rgba(6,43,83,1) 0%, rgba(69,111,173,1) 100%);*/
  position: relative;
}
@media (max-width: 700px) {
  .section.hexs .header {
    font-size: 36px;
  }
}
@media (max-height: 670px) {
  .section.hexs .header {
    font-size: 36px;
  }
}
.section.hexs .animated-copy {
  position: relative;
  /*left: 100px;*/
  /*bottom: 150px;*/
  width: 100%;
  box-sizing: border-box;
  z-index: 9;
}
@media (max-width: 768px) {
  .section.hexs .animated-copy {
    width: 100%;
    left: auto;
  }
}
.section.hexs .animated-1 {
  color: #fff;
  -webkit-text-fill-color: rgba(1, 1, 1, 0);
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fff;
  text-stroke: 1px solid #fff;
}
.section.hexs .animated-1 .header {
  text-shadow: none;
}
@media (max-width: 768px) {
  .section.hexs {
    /*padding: 0 30px;*/
  }
}
.section.hexs .hex-bg {
  position: absolute;
  top: 0px;
  height: 100vh;
  width: 100%;
  opacity: 0;
  background-size: cover;
  background-position: center center;
}
.section.hexs .hex-bg.hex-bg-1 {
  background-image: url("/_assets/images/resized/hex-1.png");
  opacity: 1;
}
.section.hexs .hex-bg.hex-bg-1-fill {
  background-image: url("/_assets/images/resized/hex-1-fill.png");
}
.section.hexs .hex-bg.hex-bg-2 {
  background-image: url("/_assets/images/resized/hex-2.png");
}
.section.hexs .hex-bg.hex-bg-2-fill {
  background-image: url("/_assets/images/resized/hex-2-fill.png");
}
.section.hexs .hex-bg.hex-bg-3 {
  background-image: url("/_assets/images/resized/hex-3.png");
}
.section.hexs .hex-bg.hex-bg-3-fill {
  background-image: url("/_assets/images/resized/hex-3-fill.png");
}
.section.hexs .hex-bg.hex-bg-4 {
  background-image: url("/_assets/images/resized/hex-4.png");
}
.section.hexs .hex-bg.hex-bg-4-fill {
  background-image: url("/_assets/images/resized/hex-4-fill.png");
}
.section.hexs .hex-bg.hex-bg-5 {
  background-image: url("/_assets/images/resized/hex-5.png");
}
.section.hexs .hex-bg.hex-bg-5-fill {
  background-image: url("/_assets/images/resized/hex-5-fill.png");
}
@media (max-width: 768px) {
  .section.nets {
    padding: 0 30px;
  }
  .section.nets .animated-1 {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: auto;
  }
}
.section .fill-me {
  position: relative;
  display: inline-block;
}
.section .fill-me:after {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  -webkit-text-fill-color: rgb(255, 255, 255);
  opacity: 0;
  transition: opacity 2s ease-out;
}
.section .fill-me .filler {
  font-style: normal;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  -webkit-text-fill-color: rgb(255, 255, 255);
  opacity: 0;
}

@media (max-width: 768px) {
  .section .inside-wrapper {
    margin-top: 0px;
    padding-top: 0px;
  }
  .flex-v-center {
    display: block;
  }
  .section {
    height: auto;
    margin-bottom: 0px;
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .section.force-full-height {
    min-height: 100vh;
    padding-top: 40px;
    padding-bottom: 100px;
    display: flex;
  }
  .section.force-full-height .inside-wrapper {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
  }
}
/* Styles for when we bypass animation */
.bypass-animation .next-panel .go {
  position: relative;
  z-index: 99999;
}
.bypass-animation .section.force-full-height {
  height: auto;
  min-height: 100vh;
  padding-top: 40px;
  padding-bottom: 100px;
}
.bypass-animation .section.can-bypass-animation {
  padding-right: 30px !important;
  padding-left: 30px !important;
}
.bypass-animation .section.can-bypass-animation .relative-container {
  height: auto;
}
.bypass-animation .section.can-bypass-animation .inside-wrapper {
  padding: 0;
}
.bypass-animation .section.can-bypass-animation .animated-1,
.bypass-animation .section.can-bypass-animation .animated-copy {
  left: auto;
  top: auto;
  transform: none;
  width: auto;
}
.bypass-animation .section.can-bypass-animation .fade-in, .bypass-animation .section.can-bypass-animation .lm {
  opacity: 1 !important;
}
.bypass-animation .section.can-bypass-animation .fill-me .filler {
  opacity: 1;
}
.bypass-animation .section.can-bypass-animation .animated-2 {
  opacity: 1;
}
.bypass-animation .section.can-bypass-animation .hide-when-animation {
  display: block;
}
.bypass-animation .section.can-bypass-animation .hide-when-animation img {
  max-width: 50%;
  margin-top: 20px;
}
.bypass-animation .section.can-bypass-animation.video-panel canvas {
  display: none;
}
.bypass-animation .section.can-bypass-animation.video-panel .animated-1 {
  opacity: 1;
}
.bypass-animation .section.can-bypass-animation.nets .animated-1 {
  position: relative;
}
.bypass-animation .section.can-bypass-animation.stack .animated-copy {
  position: relative;
  width: 100%;
  transform: scale(1);
}
.bypass-animation .section.can-bypass-animation.stack .animated-1 {
  width: auto;
  max-width: none;
}
.bypass-animation .section.can-bypass-animation.stack .animated-2 {
  padding-top: 10px;
}
.bypass-animation .section.can-bypass-animation.stack .image-stack {
  display: none;
}
.bypass-animation .section.can-bypass-animation.waves .animated-1, .bypass-animation .section.can-bypass-animation.panoramic .animated-1 {
  opacity: 0;
  top: auto;
}
.bypass-animation .section.can-bypass-animation.waves .animated-2, .bypass-animation .section.can-bypass-animation.panoramic .animated-2 {
  position: relative;
  width: 100%;
  left: 0px;
  opacity: 1;
  top: auto;
}
.bypass-animation .section.can-bypass-animation.panoramic .inside-wrapper {
  height: auto;
}
@media (max-width: 600px) {
  .bypass-animation .section.can-bypass-animation.panoramic .parallax-wrap {
    background-position: -450px 0;
  }
}
.bypass-animation .section.can-bypass-animation.hexs {
  background-image: url("/_assets/images/hex-all.svg");
  background-size: cover;
  background-position: -114px 150px;
  background-repeat: no-repeat;
}
.bypass-animation .section.can-bypass-animation.hexs .animated-copy {
  position: relative;
  padding: 0;
}
.bypass-animation .section.can-bypass-animation.hexs .hex-bg {
  display: none;
}
.bypass-animation .with-bg-bypass {
  background: rgba(0, 0, 0, 0.3);
  padding: 20px 25px;
}
.bypass-animation .with-bg-bypass .subhead {
  white-space: normal;
}

/*# sourceMappingURL=welcome.css.map */
