/* ---------------------------
Sass conversion of Adam Schwartz's "Smarter Link Underline"
-- (https://eager.io/blog/smarter-link-underlines/)

Example Usage:
  a {
    @include link-underline(
      $color-background,
      $color-text,
      $color-selection,
      $underline-boldness
    );
  }

NOTE:
$underline-boldness is an optional modifier which will
default to the normal weight unless set to 'bold'
--------------------------- */
.article {
  width: 100%;
  max-width: 920px;
  margin: -10% auto 0;
  margin-top: -10%;
  padding: 4.8rem 3.2rem;
  background-color: #fff; }
  @media (min-width: 768px) {
    .article {
      padding: 10% 7.5%; } }

.article__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 2.4rem; }

.article__category {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  font-size: 4vw;
  margin: 0 0 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase; }
  @media (max-width: 210px) {
    .article__category {
      font-size: 8.4px; } }
  @media (min-width: 300px) {
    .article__category {
      font-size: 12px; } }

.article__title {
  font-family: 'kyrial-sans-pro', sans-serif;
  color: #05234a;
  font-weight: 300;
  font-size: 4.8rem;
  font-size: 4vw;
  margin: 0 0 3.2rem;
  line-height: 1.4; }
  @media (max-width: 840px) {
    .article__title {
      font-size: 33.6px; } }
  @media (min-width: 1200px) {
    .article__title {
      font-size: 48px; } }

.article__author {
  font-family: 'kyrial-sans-pro', sans-serif;
  color: #4a4a4a;
  font-weight: 400;
  font-size: 1.6rem;
  font-size: 4vw;
  margin: 0; }
  @media (max-width: 280px) {
    .article__author {
      font-size: 11.2px; } }
  @media (min-width: 400px) {
    .article__author {
      font-size: 16px; } }

.article__date {
  display: none;
  /* SQ: Temporary as of 9/21/2018 */
  font-family: 'kyrial-sans-pro', sans-serif;
  color: rgba(80, 109, 155, 0.5);
  font-weight: 600;
  font-size: 1.2rem;
  font-size: 4vw;
  margin: 0 0 0 2.4rem; }
  @media (max-width: 210px) {
    .article__date {
      font-size: 8.4px; } }
  @media (min-width: 300px) {
    .article__date {
      font-size: 12px; } }

.article__text {
  font-family: 'kyrial-sans-pro', sans-serif;
  color: #4a4a4a;
  font-weight: 400;
  font-size: 1.4rem;
  font-size: 4vw;
  margin: 1.6rem 0 2.4rem;
  line-height: 1.6; }
  @media (max-width: 245px) {
    .article__text {
      font-size: 9.8px; } }
  @media (min-width: 350px) {
    .article__text {
      font-size: 14px; } }

.audience-able {
  padding: 60px 0 30px 0; }
  .audience-able.block {
    color: #05234a; }
  .audience-able .wrapper {
    max-width: 1240px; }
  .audience-able .block__row {
    -ms-flex-pack: distribute;
        justify-content: space-around; }
    @media (max-width: 767px) {
      .audience-able .block__row {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
  .audience-able .block__title {
    max-width: inherit; }
  .audience-able .block__inner {
    padding: 3.2rem 3.2rem; }
  @media (min-width: 768px) {
    .audience-able .block__inner:nth-of-type(odd) .block__test:first-child {
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end; } }
  @media (min-width: 768px) {
    .audience-able .block__inner:nth-of-type(odd) .block__test:last-child {
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }
  .audience-able .block__test {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 1;
            flex: 1 1;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 4rem;
    padding: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (min-width: 768px) {
      .audience-able .block__test:first-child {
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start; } }
    @media (min-width: 768px) {
      .audience-able .block__test:last-child {
        -webkit-box-flex: 2;
            -ms-flex-positive: 2;
                flex-grow: 2;
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end; } }
    .audience-able .block__test ul {
      margin-top: 20px;
      font-family: 'kyrial-sans-pro', sans-serif;
      font-weight: 300;
      font-size: 2rem;
      font-size: 4vw;
      line-height: 1.8; }
      @media (max-width: 350px) {
        .audience-able .block__test ul {
          font-size: 14px; } }
      @media (min-width: 500px) {
        .audience-able .block__test ul {
          font-size: 20px; } }
    .audience-able .block__test img {
      width: 100%;
      height: auto;
      border-radius: 12px;
      -webkit-filter: drop-shadow(0 10px 40px rgba(41, 56, 78, 0.5));
              filter: drop-shadow(0 10px 40px rgba(41, 56, 78, 0.5)); }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .audience-able .block__test {
        -webkit-box-flex: 0;
            -ms-flex: none;
                flex: none; } }
    @media (max-width: 767px) {
      .audience-able .block__test {
        width: 100%;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        margin: 0; } }
    @media (min-width: 768px) {
      .audience-able .block__test {
        -webkit-box-flex: 1;
            -ms-flex: 1 1;
                flex: 1 1;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-ordinal-group: 1;
            -ms-flex-order: 0;
                order: 0;
        margin-top: 0;
        margin-left: 6.4rem; }
        .block__inner:nth-of-type(odd) .audience-able .block__test {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: reverse;
              -ms-flex-direction: row-reverse;
                  flex-direction: row-reverse;
          margin-right: 6.4rem;
          margin-left: 0; } }
  @media all and (min-width: 768px) and (-ms-high-contrast: none), (min-width: 768px) and (-ms-high-contrast: active) {
    .audience-able .block__test {
      min-width: calc((80% + 6.4rem)); } }

@media all and (min-width: 1024px) and (-ms-high-contrast: none), (min-width: 1024px) and (-ms-high-contrast: active) {
  .audience-able .block__test {
    min-width: calc((70% + 6.4rem)); } }
  .audience-able .block__box-subtitle {
    margin-top: 2.8rem; }
  .audience-able .block__text {
    width: 100%;
    max-width: inherit; }

.block {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #506d9b; }
  .block.nav-block {
    height: 100px;
    width: 100%; }

.block__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: auto; }

.block__inner {
  padding: 6.4rem 3.2rem; }
  @media (min-width: 768px) {
    .block__inner {
      padding: 7.5% 6.4rem; } }
  @media (min-width: 768px) {
    .block__inner.condensed {
      padding: 3.5% 6.4rem; } }

.block__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  .block__content--centered {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
  .block__content + .block__content {
    margin-top: 9.6rem; }
  @media (max-width: 767px) {
    .block__content--centered-mobile {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      text-align: center; } }

.block__intro {
  margin: 0 0 3.2rem; }
  @media (min-width: 768px) {
    .block__intro {
      margin: 0 0 6.4rem; } }
  .block__content--centered .block__intro {
    text-align: center; }
  #features .block__intro {
    margin: 0; }
  .audience-able .block__intro {
    color: #527DB8; }
  .block__intro--no-margin {
    margin: 0; }

.block__title {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 600;
  font-size: 4.4rem;
  font-size: 4vw;
  max-width: 650px;
  margin: 0; }
  @media (max-width: 770px) {
    .block__title {
      font-size: 30.8px; } }
  @media (min-width: 1100px) {
    .block__title {
      font-size: 44px; } }
  .block__intro--sm .block__title {
    max-width: 450px; }
  .block__intro--md .block__title {
    max-width: 700px; }
  .block__intro--lg .block__title {
    max-width: 800px; }
  .audience-able .block__title {
    font-family: 'kyrial-sans-pro', sans-serif;
    font-weight: 600;
    font-size: 6.4rem;
    font-size: 4vw; }
    @media (max-width: 1120px) {
      .audience-able .block__title {
        font-size: 44.8px; } }
    @media (min-width: 1600px) {
      .audience-able .block__title {
        font-size: 64px; } }
    @media (max-width: 767px) {
      .audience-able .block__title {
        font-family: 'kyrial-sans-pro', sans-serif;
        font-weight: 600;
        font-size: 4.8rem;
        font-size: 4vw; } }
  @media (max-width: 767px) and (max-width: 840px) {
    .audience-able .block__title {
      font-size: 33.6px; } }
  @media (max-width: 767px) and (min-width: 1200px) {
    .audience-able .block__title {
      font-size: 48px; } }
  #survey .block__title {
    color: #6DB9A3; }

.block__subtitle {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 2.4rem;
  font-size: 4vw;
  margin: 0 0 1.6rem; }
  @media (max-width: 420px) {
    .block__subtitle {
      font-size: 16.8px; } }
  @media (min-width: 600px) {
    .block__subtitle {
      font-size: 24px; } }
  .audience-able .block__subtitle {
    font-family: 'kyrial-sans-pro', sans-serif;
    font-weight: 300;
    font-size: 3.2rem;
    font-size: 4vw;
    max-width: inherit; }
    @media (max-width: 560px) {
      .audience-able .block__subtitle {
        font-size: 22.4px; } }
    @media (min-width: 800px) {
      .audience-able .block__subtitle {
        font-size: 32px; } }

.block__text {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 2rem;
  font-size: 4vw;
  max-width: 600px;
  margin: 0;
  line-height: 1.8; }
  @media (max-width: 350px) {
    .block__text {
      font-size: 14px; } }
  @media (min-width: 500px) {
    .block__text {
      font-size: 20px; } }
  .block__title + .block__text {
    margin: 1.6rem 0 0; }
  .block__intro--sm .block__text {
    max-width: 400px; }
  .block__intro--md .block__text {
    max-width: 650px; }
  .block__intro--lg .block__text {
    max-width: 800px; }
  .block__text--dark {
    color: #05234a; }
  #demo-1 .block__text, #demo-2 .block__text {
    font-family: 'kyrial-sans-pro', sans-serif;
    font-weight: 300;
    font-size: 2.8rem;
    font-size: 4vw; }
    @media (max-width: 490px) {
      #demo-1 .block__text, #demo-2 .block__text {
        font-size: 19.6px; } }
    @media (min-width: 700px) {
      #demo-1 .block__text, #demo-2 .block__text {
        font-size: 28px; } }

.block__text--footer {
  color: #6DB9A3; }

.block__btn {
  margin: 4.8rem auto 0;
  margin-top: 4.8rem; }

.block__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start; }
  @media (min-width: 768px) {
    .block__row {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .block__inner:nth-of-type(odd) .block__row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse; } }
  @media (min-width: 768px) {
    #features-profile .block__row {
      margin-bottom: 4%; }
    #features-guidance .block__row {
      margin: 4% 0; }
    #features-badges .block__row {
      margin-top: 14.5%; } }

.block__content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  max-width: 400px; }
  @media (min-width: 768px) {
    .block__content-box {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 350px;
              flex: 1 0 350px; } }

.block__image-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc((110% + 6.4rem));
          flex: 0 0 calc((110% + 6.4rem));
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  min-width: calc((110% + 6.4rem));
  margin-top: 4rem;
  padding: 0; }
  .block__inner:nth-of-type(odd) .block__image-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -ms-flex-item-align: end;
        align-self: flex-end;
    margin-left: 10px; }
  .block__image-box img {
    border-radius: 12px;
    -webkit-filter: drop-shadow(0 10px 40px rgba(41, 56, 78, 0.5));
            filter: drop-shadow(0 10px 40px rgba(41, 56, 78, 0.5)); }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .block__image-box {
      -webkit-box-flex: 0;
          -ms-flex: none;
              flex: none; } }
  @media (max-width: 767px) {
    #features-profile .block__image-box {
      margin-bottom: 5.5%; }
    #features-guidance .block__image-box {
      min-width: 100%;
      margin: calc(7% + 4rem) 0; }
    #features-badges .block__image-box {
      margin-top: calc(19% + 4rem); }
    .block__image-box #outcomes ul {
      text-align: left; } }
  @media (min-width: 768px) {
    .block__image-box {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 calc((110% + 6.4rem) - (4.8rem + 350px));
              flex: 0 0 calc((110% + 6.4rem) - (4.8rem + 350px));
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -webkit-box-ordinal-group: 1;
          -ms-flex-order: 0;
              order: 0;
      min-width: 600px;
      margin-top: 0;
      margin-left: 6.4rem; }
      .block__inner:nth-of-type(odd) .block__image-box {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
        margin-right: 6.4rem;
        margin-left: 0; } }
  @media all and (min-width: 768px) and (-ms-high-contrast: none), (min-width: 768px) and (-ms-high-contrast: active) {
    .block__image-box {
      min-width: calc((80% + 6.4rem)); } }
  @media (min-width: 768px) {
      #features-guidance .block__image-box {
        -ms-flex-negative: 1;
            flex-shrink: 1;
        min-width: 500px; } }
    @media all and (min-width: 768px) and (-ms-high-contrast: none), (min-width: 768px) and (-ms-high-contrast: active) {
      #features-guidance .block__image-box {
        min-width: calc((50% + 6.4rem)); } }
  @media (min-width: 1024px) {
    .block__image-box {
      min-width: 800px; } }
  @media all and (min-width: 1024px) and (-ms-high-contrast: none), (min-width: 1024px) and (-ms-high-contrast: active) {
    .block__image-box {
      min-width: calc((70% + 6.4rem)); } }

.block__box-title {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 3.2rem;
  font-size: 4vw;
  margin: 0 0 1.6rem; }
  @media (max-width: 560px) {
    .block__box-title {
      font-size: 22.4px; } }
  @media (min-width: 800px) {
    .block__box-title {
      font-size: 32px; } }
  .block__box-title::before {
    display: block;
    width: 80px;
    height: 4px;
    margin: 0 0 2.8rem;
    background: -webkit-gradient(linear, left top, right top, from(#a9d5fc), to(#63a7ff));
    background: linear-gradient(90deg, #a9d5fc 0%, #63a7ff 100%);
    content: ' ';
    border-radius: 2px; }
  .audience-able .block__box-title {
    color: #6DB9A3; }
    .audience-able .block__box-title::before {
      background: transparent !important; }

.block__box-subtitle {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 2.8rem;
  font-size: 4vw; }
  @media (max-width: 490px) {
    .block__box-subtitle {
      font-size: 19.6px; } }
  @media (min-width: 700px) {
    .block__box-subtitle {
      font-size: 28px; } }

.block__box-text {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  font-size: 4vw;
  margin: 0;
  line-height: 1.8; }
  @media (max-width: 280px) {
    .block__box-text {
      font-size: 11.2px; } }
  @media (min-width: 400px) {
    .block__box-text {
      font-size: 16px; } }

.block__large-text {
  font-size: 20px; }

.block__image {
  -webkit-transition: opacity 300ms ease;
  transition: opacity 300ms ease; }
  .block__image--absolute {
    position: absolute;
    width: 100%; }
  html:not(.no-js) #features .block__image.lazyload, html:not(.no-js) #features .block__image.lazyloading, html:not(.no-js) #features .block__image.lazyloaded {
    opacity: 0;
    will-change: opacity; }
  #features-profile .block__image:nth-of-type(2) {
    top: 7.5%;
    left: 8%;
    width: 30%; }
  html:not(.no-js) #features-profile .block__image {
    will-change: transform, opacity; }
    html:not(.no-js) #features-profile .block__image:nth-of-type(1) {
      -webkit-transform: translateX(30%);
              transform: translateX(30%);
      opacity: 0; }
    html:not(.no-js) #features-profile .block__image:nth-of-type(2) {
      -webkit-transform: translateY(10%);
              transform: translateY(10%);
      opacity: 0; }
  #features-guidance .block__image:nth-of-type(1), #features-guidance .block__image:nth-of-type(3) {
    top: 0;
    bottom: 0;
    width: auto;
    height: 100%;
    margin: auto; }
  #features-guidance .block__image:nth-of-type(1) {
    right: 60%;
    left: 0; }
  #features-guidance .block__image:nth-of-type(2) {
    top: -7.5%;
    right: 0;
    left: 0;
    z-index: 10;
    width: auto;
    height: 115%;
    margin: auto; }
  #features-guidance .block__image:nth-of-type(3) {
    right: 0;
    left: 60%; }
  html:not(.no-js) #features-guidance .block__image {
    -webkit-transform: translateX(-30%);
            transform: translateX(-30%);
    opacity: 0;
    will-change: transform, opacity; }
  #features-report .block__image:nth-of-type(2) {
    bottom: 5.5%;
    left: 10.9%;
    width: 83%; }
  html:not(.no-js) #features-report .block__image {
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
    opacity: 0;
    will-change: transform, opacity; }
  #features-badges .block__image:nth-of-type(2) {
    top: -28.7%;
    left: 38.2%;
    width: 31.4%;
    -webkit-transform-origin: bottom center;
            transform-origin: bottom center; }
  html:not(.no-js) #features-badges .block__image {
    will-change: transform, opacity; }
    html:not(.no-js) #features-badges .block__image:nth-of-type(1) {
      -webkit-transform: translateX(-30%);
              transform: translateX(-30%);
      opacity: 0; }
    html:not(.no-js) #features-badges .block__image:nth-of-type(2) {
      -webkit-transform: translateY(50px);
              transform: translateY(50px);
      opacity: 0; }
  html:not(.no-js) #features-connections .block__image {
    -webkit-transform: translateX(30%);
            transform: translateX(30%);
    opacity: 0;
    will-change: transform, opacity; }

#careers .block__footer {
  margin-top: 3.2rem; }

.btn {
  font-family: 'kyrial-sans-pro', sans-serif;
  color: #fff;
  font-weight: 600;
  font-size: 1.6rem;
  font-size: 4vw;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 1.6rem 6.4rem;
  line-height: 1;
  text-decoration: none;
  background-color: #63a7ff;
  border-radius: 12px;
  -webkit-transition: color 250ms ease-out, background-color 250ms ease-out, -webkit-box-shadow 250ms ease-out;
  transition: color 250ms ease-out, background-color 250ms ease-out, -webkit-box-shadow 250ms ease-out;
  transition: color 250ms ease-out, background-color 250ms ease-out, box-shadow 250ms ease-out;
  transition: color 250ms ease-out, background-color 250ms ease-out, box-shadow 250ms ease-out, -webkit-box-shadow 250ms ease-out; }
  @media (max-width: 280px) {
    .btn {
      font-size: 11.2px; } }
  @media (min-width: 400px) {
    .btn {
      font-size: 16px; } }
  .btn:hover:not(.btn--text) {
    color: rgba(41, 56, 78, 0.75);
    background-color: #72b0ff;
    -webkit-box-shadow: inset 0 -1px 5px 3px rgba(5, 35, 74, 0.25);
            box-shadow: inset 0 -1px 5px 3px rgba(5, 35, 74, 0.25); }

.btn--text {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: initial;
      -ms-flex-align: initial;
          align-items: initial;
  -ms-flex-item-align: start;
      align-self: flex-start;
  padding: 0.8rem 0;
  color: #4287e3;
  line-height: 1.4;
  text-decoration: none;
  background-color: transparent;
  border-radius: 0;
  -webkit-box-shadow: none;
          box-shadow: none; }
  .btn--text .icon {
    -ms-flex-negative: 0;
        flex-shrink: 0; }
  .btn--text:hover .icon {
    -webkit-transform: translateX(0.8rem);
            transform: translateX(0.8rem); }

.career__btn {
  margin-top: 1.6rem;
  padding: 1rem 2rem 1.2rem;
  -ms-flex-item-align: end;
      align-self: flex-end; }

.career__btn2 {
  margin-top: 1.6rem;
  -ms-flex-item-align: end;
      align-self: flex-end; }

.cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  margin: 0;
  margin: -1.6rem;
  padding: 0;
  list-style: none; }
  .cards.cards--full {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .cards.cards--behavioral {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc(100% + 3.2rem); }
    @media (min-width: 768px) {
      .cards.cards--behavioral {
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start; } }
  .cards.cards--gradient {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: calc(100% + 3.2rem); }
  .cards.cards--career {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
    @media (min-width: 1024px) {
      .cards.cards--career {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }

.card {
  width: 100%;
  margin: 1.6rem;
  overflow: hidden;
  border-radius: 16px; }
  html:not(.no-js) .card {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    visibility: hidden;
    opacity: 0; }
  .cards--full .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(100% - 3.2rem);
            flex: 1 0 calc(100% - 3.2rem);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
    max-width: calc(100% - 3.2rem);
    padding: 3.2rem;
    text-align: center;
    background-color: rgba(80, 109, 155, 0.4); }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .cards--full .card {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto;
        max-width: 100%; } }
    @media (min-width: 768px) {
      .cards--full .card {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        padding: 6.4rem 4.8rem;
        text-align: left; } }
  .cards--behavioral .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(100% - 3.2rem);
            flex: 1 0 calc(100% - 3.2rem);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 500px;
    margin: 1.6rem;
    border-radius: 8px; }
    @media (min-width: 768px) {
      .cards--behavioral .card {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 calc(33.333% - 3.2rem);
                flex: 0 0 calc(33.333% - 3.2rem);
        max-width: calc(33.333% - 3.2rem); } }
  .cards--gradient .card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 3.2rem);
            flex: 0 0 calc(100% - 3.2rem);
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    max-width: 500px;
    margin: 1.6rem;
    background-color: rgba(80, 109, 155, 0.3); }
    @media (min-width: 1024px) {
      .cards--gradient .card {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 calc(33.333% - 3.2rem);
                flex: 0 0 calc(33.333% - 3.2rem); } }
    .bg__gradient--gray .cards--gradient .card {
      background-color: white;
      -webkit-box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.15);
              box-shadow: 0 2px 20px 0 rgba(0, 0, 0, 0.15); }
    .cards--gradient .card::before {
      display: block;
      width: 100%;
      height: 2.4rem;
      content: ' '; }
    .cards--gradient .card:nth-of-type(1)::before {
      background: -webkit-gradient(linear, left top, right top, from(#ff8828), to(rgba(255, 189, 81, 0))), #ffbd51;
      background: linear-gradient(90deg, #ff8828 0%, rgba(255, 189, 81, 0) 100%), #ffbd51; }
    .cards--gradient .card:nth-of-type(2)::before {
      background: -webkit-gradient(linear, left top, right top, from(#b46dc9), to(rgba(238, 138, 205, 0))), #ee8acd;
      background: linear-gradient(90deg, #b46dc9 0%, rgba(238, 138, 205, 0) 100%), #ee8acd; }
    .cards--gradient .card:nth-of-type(3)::before {
      background: -webkit-gradient(linear, left top, right top, from(#7477fc), to(rgba(163, 142, 233, 0))), #a38ee9;
      background: linear-gradient(90deg, #7477fc 0%, rgba(163, 142, 233, 0) 100%), #a38ee9; }
  .cards--career .card {
    background: white;
    padding: 1.6rem;
    border-radius: 4px;
    border-bottom: 2px solid #adbfd4;
    border-left: 8px solid #63a7ff; }
    .cards--career .card .card__icon {
      height: 60px;
      width: auto;
      margin-right: 1.2rem;
      margin-top: 0.4rem;
      opacity: 0; }
      @media (min-width: 550px) {
        .cards--career .card .card__icon {
          opacity: 1; } }
      @media (min-width: 768px) {
        .cards--career .card .card__icon {
          display: inherit; } }
      @media (min-width: 1024px) {
        .cards--career .card .card__icon {
          display: none; } }
      @media (min-width: 1440px) {
        .cards--career .card .card__icon {
          display: inherit; } }
    .cards--career .card .card__title {
      opacity: 1 !important;
      -webkit-transform: none !important;
              transform: none !important; }

.card__image-box {
  position: relative;
  width: 100%;
  max-width: 300px;
  border-radius: 8px; }
  .card__image-box--thumbnail {
    max-width: none;
    height: 250px;
    overflow: hidden;
    background-color: rgba(80, 109, 155, 0.4); }
    @media (min-width: 550px) {
      .card__image-box--thumbnail {
        height: 300px; } }
    @media (min-width: 768px) {
      .card__image-box--thumbnail {
        height: 200px; } }
    @media (min-width: 1024px) {
      .card__image-box--thumbnail {
        height: 200px; } }
  .cards--full .card__image-box {
    -ms-flex-item-align: stretch;
        align-self: stretch;
    -ms-flex-item-align: center;
        align-self: center;
    max-width: 250px;
    min-height: 200px;
    margin-bottom: 3.2rem; }
    @media (min-width: 768px) {
      .cards--full .card__image-box {
        margin-bottom: 0; } }
    @media (min-width: 1024px) {
      .cards--full .card__image-box {
        max-width: 300px; } }
  @media all and (min-width: 1024px) and (-ms-high-contrast: none), (min-width: 1024px) and (-ms-high-contrast: active) {
    .cards--full .card__image-box {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 30%;
              flex: 1 0 30%;
      width: 100%;
      max-width: 300px; } }

.card__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;'; }
  .cards--full .card__image {
    -o-object-fit: contain;
       object-fit: contain;
    font-family: 'object-fit: contain;'; }
  html:not(.no-js) .card__image {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transform-origin: center;
            transform-origin: center; }
    .card__image-box--thumbnail html:not(.no-js) .card__image {
      opacity: 0; }

.card__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .card__content {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto; } }
  html:not(.no-js) .card__content > * {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0; }
  .cards--behavioral .card__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 400px;
    margin: auto; }
    @media (min-width: 768px) {
      .cards--behavioral .card__content {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        max-width: none;
        margin: 0; } }
  .cards--full .card__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    @media (min-width: 768px) {
      .cards--full .card__content {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        margin-left: 6.4rem; } }
  @media all and (min-width: 768px) and (-ms-high-contrast: none), (min-width: 768px) and (-ms-high-contrast: active) {
    .cards--full .card__content {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1;
      width: 100%; } }
  .cards--gradient .card__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 4.8rem 3.2rem 6.4rem; }
  .cards--career .card__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -ms-flex-direction: row; }

.card__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .cards--full .card__row {
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: 100%; } }
  @media all and (-ms-high-contrast: none) and (min-width: 768px), (-ms-high-contrast: active) and (min-width: 768px) {
    .cards--full .card__row {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }
  @media (min-width: 1024px) {
    .cards--full .card__row {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }

.card__box {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(50% - 3.2rem);
          flex: 1 0 calc(50% - 3.2rem); }
  .card__box + .card__box {
    margin-left: 6.4rem; }
  .cards--full .card__box + .card__box {
    margin-top: 3.2rem;
    margin-left: 0; }
  @media (min-width: 1024px) {
    .cards--full .card__box + .card__box {
      margin-top: 0;
      margin-left: 6.4rem; } }

.card__title {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  font-size: 4vw;
  margin: 0 0 1.6rem; }
  @media (max-width: 350px) {
    .card__title {
      font-size: 14px; } }
  @media (min-width: 500px) {
    .card__title {
      font-size: 20px; } }
  html:not(.no-js) .card__title {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    opacity: 0; }
  .cards--behavioral .card__title {
    margin: 2.4rem 0 1.6rem; }
  .cards--full .card__title {
    margin: 0 0 2.4rem;
    font-family: 'kyrial-sans-pro', sans-serif;
    font-weight: 300;
    font-size: 3rem;
    font-size: 4vw; }
    @media (max-width: 525px) {
      .cards--full .card__title {
        font-size: 21px; } }
    @media (min-width: 750px) {
      .cards--full .card__title {
        font-size: 30px; } }
  .cards--gradient .card__title {
    letter-spacing: 1.75px;
    text-transform: uppercase; }

.card__text {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  font-size: 4vw;
  width: 100%;
  margin: 0;
  line-height: 1.6; }
  @media (max-width: 280px) {
    .card__text {
      font-size: 11.2px; } }
  @media (min-width: 400px) {
    .card__text {
      font-size: 16px; } }
  .card__text strong {
    font-weight: 600; }

.card__box-title {
  font-family: 'kyrial-sans-pro', sans-serif;
  color: #d8e9ff;
  font-weight: 400;
  font-size: 1.2rem;
  font-size: 4vw;
  margin: 0 0 1.6rem;
  letter-spacing: 1.5px;
  text-transform: uppercase; }
  @media (max-width: 210px) {
    .card__box-title {
      font-size: 8.4px; } }
  @media (min-width: 300px) {
    .card__box-title {
      font-size: 12px; } }

.card__box-text {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  font-size: 4vw;
  max-width: 300px;
  margin: 0;
  line-height: 1.6; }
  @media (max-width: 280px) {
    .card__box-text {
      font-size: 11.2px; } }
  @media (min-width: 400px) {
    .card__box-text {
      font-size: 16px; } }
  .card__box-text + .card__box-text {
    margin-top: 1.6rem; }

.ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  width: calc(100% + 2.4rem);
  max-width: 1100px;
  margin: -1.2rem -2.4rem; }

.cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin: 1.2rem;
  overflow: hidden;
  color: #506d9b;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1); }
  @media (min-width: 550px) {
    .cta {
      text-align: left; } }

@media (min-width: 550px) and (max-width: 767px) {
  .cta {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; } }
  @media (min-width: 768px) {
    .cta {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 calc(50% - 2.4rem);
              flex: 0 0 calc(50% - 2.4rem);
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      text-align: center; } }
  @media all and (min-width: 768px) and (-ms-high-contrast: none), (min-width: 768px) and (-ms-high-contrast: active) {
    .cta {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 50%;
              flex: 1 0 50%;
      max-width: calc(50% - 3.2rem); } }
  @media (min-width: 768px) {
      @supports (-ms-ime-align: auto) {
        .cta {
          -webkit-box-flex: 1;
              -ms-flex: 1 0 calc(50% - 3.2rem);
                  flex: 1 0 calc(50% - 3.2rem);
          max-width: calc(50% - 2.4rem); } } }
  @media (min-width: 1024px) {
    .cta {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      text-align: left; } }
  .cta--featured {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(100% - 2.4rem);
            flex: 1 0 calc(100% - 2.4rem);
    max-width: calc(100% - 2.4rem); }
    @media (min-width: 550px) {
      .cta--featured {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }
    @media (min-width: 768px) {
      .cta--featured {
        text-align: left; } }
  .cta--contact {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    max-width: 400px;
    margin-right: auto;
    margin-left: auto;
    text-align: left; }
    @media (min-width: 768px) {
      .cta--contact {
        max-width: none; } }
  @media all and (min-width: 768px) and (-ms-high-contrast: none), (min-width: 768px) and (-ms-high-contrast: active) {
    .cta--contact {
      max-width: calc(50% - 2.4rem); } }
    @media (min-width: 768px) {
        @supports (-ms-ime-align: auto) {
          .cta--contact {
            max-width: calc(50% - 2.4rem); } } }
  .cta:hover {
    -webkit-box-shadow: 0 7px 28px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.17);
            box-shadow: 0 7px 28px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.17); }

.cta__image-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: center;
      align-self: center;
  padding: 2.4rem 2.4rem 0; }

@media (min-width: 550px) and (max-width: 767px) {
  .cta__image-box {
    -ms-flex-item-align: stretch;
        align-self: stretch;
    padding: 1.6rem 0 1.6rem 2.4rem; } }
  @media (min-width: 768px) {
    .cta__image-box {
      -webkit-box-flex: 1;
          -ms-flex: 1;
              flex: 1; } }
  @media all and (min-width: 768px) and (-ms-high-contrast: none), (min-width: 768px) and (-ms-high-contrast: active) {
    .cta__image-box {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      width: 100%; } }
  @media (min-width: 1024px) {
    .cta__image-box {
      -ms-flex-item-align: stretch;
          align-self: stretch;
      padding: 1.6rem 0 1.6rem 2.4rem; } }
  @media all and (min-width: 1024px) and (-ms-high-contrast: none), (min-width: 1024px) and (-ms-high-contrast: active) {
    .cta__image-box {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 40%;
              flex: 1 0 40%;
      max-width: 40%; } }
  .cta--featured .cta__image-box {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    -ms-flex-item-align: stretch;
        align-self: stretch;
    width: 100%;
    max-height: 200px;
    padding: 0; }
    @media (min-width: 550px) {
      .cta--featured .cta__image-box {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 40%;
                flex: 0 0 40%;
        min-width: 200px;
        max-height: none; } }

.cta__image {
  width: 100%;
  font-family: 'object-fit: contain;';
  -o-object-fit: contain;
     object-fit: contain; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .cta__image {
      width: 100%; } }
  .cta--featured .cta__image {
    height: 100%;
    font-family: 'object-fit: cover;';
    -o-object-fit: cover;
       object-fit: cover; }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .cta--featured .cta__image {
        width: 100%; } }

.cta__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  width: 100%;
  padding: 2.4rem; }
  @media (min-width: 550px) {
    .cta__content {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 40%;
              flex: 1 0 40%; } }
  @media (min-width: 768px) {
    .cta__content {
      padding: 3.2rem 2.4rem; } }
  @media all and (min-width: 768px) and (-ms-high-contrast: none), (min-width: 768px) and (-ms-high-contrast: active) {
    .cta__content {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto; } }
  @media (min-width: 768px) {
      .cta--contact .cta__content {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        padding: 4.8rem; } }
    @media all and (min-width: 768px) and (-ms-high-contrast: none), (min-width: 768px) and (-ms-high-contrast: active) {
      .cta--contact .cta__content {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto; } }
  @media (min-width: 1024px) {
    .cta__content {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 60%;
              flex: 0 0 60%;
      max-width: 60%;
      padding: 10% 5%; } }
  .cta--contact .cta__content {
    max-width: 100%; }
  @media (min-width: 768px) {
    .cta--featured .cta__content {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 60%;
              flex: 0 0 60%;
      max-width: 60%; } }
  @media (min-width: 1024px) {
    .cta--featured .cta__content {
      padding: 5%; } }

.cta__box + .cta__box {
  margin-top: 3.2rem; }

.cta__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: -0.4rem -1.6rem; }

.cta__tagline {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  font-size: 4vw;
  margin: 0 0 1.6rem;
  letter-spacing: 1.3px;
  text-transform: uppercase; }
  @media (max-width: 245px) {
    .cta__tagline {
      font-size: 9.8px; } }
  @media (min-width: 350px) {
    .cta__tagline {
      font-size: 14px; } }

.cta__title {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  font-size: 4vw;
  max-width: 450px;
  margin: 0 0 2.4rem; }
  @media (max-width: 420px) {
    .cta__title {
      font-size: 16.8px; } }
  @media (min-width: 600px) {
    .cta__title {
      font-size: 24px; } }
  .cta--contact .cta__title {
    font-family: 'kyrial-sans-pro', sans-serif;
    font-weight: 300;
    font-size: 3.2rem;
    font-size: 4vw;
    max-width: none; }
    @media (max-width: 560px) {
      .cta--contact .cta__title {
        font-size: 22.4px; } }
    @media (min-width: 800px) {
      .cta--contact .cta__title {
        font-size: 32px; } }

.cta__text {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  font-size: 4vw;
  max-width: 300px;
  margin: 0 0 2.4rem;
  line-height: 1.6; }
  @media (max-width: 280px) {
    .cta__text {
      font-size: 11.2px; } }
  @media (min-width: 400px) {
    .cta__text {
      font-size: 16px; } }
  @media (min-width: 768px) {
    .cta__text {
      max-width: 600px;
      min-height: 88px; } }
  .cta__box .cta__text {
    margin: 0 0 0.4rem; }

.cta__text--link {
  font-family: 'kyrial-sans-pro', sans-serif;
  color: #63a7ff;
  font-weight: 400;
  font-size: 1.8rem;
  font-size: 4vw;
  line-height: 1.4;
  text-decoration: none; }
  @media (max-width: 315px) {
    .cta__text--link {
      font-size: 12.6px; } }
  @media (min-width: 450px) {
    .cta__text--link {
      font-size: 18px; } }
  .cta__text--link:hover {
    text-shadow: 0.03em 0 #fff, -0.03em 0 #fff, 0 0.03em #fff, 0 -0.03em #fff, 0.06em 0 #fff, -0.06em 0 #fff, 0.09em 0 #fff, -0.09em 0 #fff, 0.12em 0 #fff, -0.12em 0 #fff, 0.15em 0 #fff, -0.15em 0 #fff;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#63a7ff), to(#63a7ff));
    background-image: linear-gradient(#63a7ff, #63a7ff);
    background-repeat: repeat-x;
    background-position: 0% 92%;
    background-size: 1px 1px;
    color: #63a7ff;
    text-decoration: none; }
    .cta__text--link:hover::-moz-selection {
      text-shadow: 0.03em 0 inherit, -0.03em 0 inherit, 0 0.03em inherit, 0 -0.03em inherit, 0.06em 0 inherit, -0.06em 0 inherit, 0.09em 0 inherit, -0.09em 0 inherit, 0.12em 0 inherit, -0.12em 0 inherit, 0.15em 0 inherit, -0.15em 0 inherit;
      display: block;
      width: 100%;
      background: inherit; }
    .cta__text--link:hover::selection {
      text-shadow: 0.03em 0 inherit, -0.03em 0 inherit, 0 0.03em inherit, 0 -0.03em inherit, 0.06em 0 inherit, -0.06em 0 inherit, 0.09em 0 inherit, -0.09em 0 inherit, 0.12em 0 inherit, -0.12em 0 inherit, 0.15em 0 inherit, -0.15em 0 inherit;
      display: block;
      width: 100%;
      background: inherit; }
    .cta__text--link:hover *,
    .cta__text--link:hover *::after, .cta__text--link:hover::after,
    .cta__text--link:hover *::before, .cta__text--link:hover::before {
      text-shadow: none; }
    .cta__text--link:hover:visited {
      color: #63a7ff; }
  @media (min-width: 768px) {
    .cta__text--link .social__icons {
      display: none; } }
  .cta__row--social .cta__text--link {
    margin: 1.6rem 1.6rem 0.4rem; }
    @media (max-width: 767px) {
      .cta__row--social .cta__text--link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        width: 40px;
        height: 100%;
        height: 40px;
        padding: 1.2rem;
        overflow: hidden;
        color: inherit;
        color: #fff;
        font: 0/0 a;
        text-shadow: none;
        background-color: #8fa7c7;
        border-radius: 50%;
        -webkit-box-shadow: none;
                box-shadow: none;
        -webkit-transition: background-color 200ms ease-out;
        transition: background-color 200ms ease-out; }
        .cta__row--social .cta__text--link:hover {
          background-color: #506d9b;
          background-image: none; } }

.cta__btn:not(.btn--text) {
  padding: 1.2rem 2.4rem; }

.diagram {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: -2.4rem; }

.diagram__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(100% - 4.8rem);
          flex: 1 0 calc(100% - 4.8rem);
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-item-align: start;
      align-self: flex-start;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  margin: 3.2rem 2.4rem; }
  @media (min-width: 550px) {
    .diagram__content {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 calc(50% - 4.8rem);
              flex: 1 0 calc(50% - 4.8rem);
      max-width: calc(50% - 5.6rem); } }
  @media (min-width: 1024px) {
    .diagram__content {
      position: absolute;
      display: block;
      margin-top: 0; }
      .diagram__content--motivate {
        top: 3.2rem;
        left: 0; }
      .diagram__content--evaluate {
        top: 3.2rem;
        right: 0; }
      .diagram__content--achieve {
        bottom: 3.2rem;
        left: 0; }
      .diagram__content--connect {
        right: 0;
        bottom: 3.2rem; } }

.diagram__content-image {
  margin-right: 1.6rem; }
  @media (min-width: 1024px) {
    .diagram__content-image {
      display: none; } }

.diagram__image-box {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 550px;
  margin: 0 auto; }
  @media (min-width: 1024px) {
    .diagram__image-box {
      max-width: 55%;
      padding: 5% 5% calc(5% + 100px); } }
  @media (min-width: 1440px) {
    .diagram__image-box {
      max-width: 75%;
      -webkit-transform: translate(0);
              transform: translate(0); } }

.diagram__image {
  width: 100%;
  margin: auto;
  font-family: 'object-fit: contain;';
  -o-object-fit: contain;
     object-fit: contain; }
  @supports (-moz-appearance: meterbar) {
    .diagram__image {
      width: 100% !important;
      height: auto !important; } }
  html:not(.no-js) .diagram__image.lazyload, html:not(.no-js) .diagram__image.lazyloading {
    opacity: 0; }
  html:not(.no-js) .diagram__image.lazyloaded {
    -webkit-transform: translateY(0) scale(0.9) rotate(1.5deg);
            transform: translateY(0) scale(0.9) rotate(1.5deg);
    opacity: 0;
    -webkit-animation: 3s ease-out 0s 1 fadeIn;
            animation: 3s ease-out 0s 1 fadeIn;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards; }

.diagram__title {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  font-size: 4vw;
  margin: 0 0 0.8rem;
  line-height: 1; }
  @media (max-width: 420px) {
    .diagram__title {
      font-size: 16.8px; } }
  @media (min-width: 600px) {
    .diagram__title {
      font-size: 24px; } }
  @media (min-width: 1024px) {
    .diagram__title {
      max-width: 240px; } }
  @media (min-width: 1440px) {
    .diagram__title {
      margin: 0 0 1.6rem; } }

.diagram__text {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  font-size: 4vw;
  max-width: 300px;
  margin: 1.6rem 0 0;
  line-height: 1.8; }
  @media (max-width: 280px) {
    .diagram__text {
      font-size: 11.2px; } }
  @media (min-width: 400px) {
    .diagram__text {
      font-size: 16px; } }
  .diagram__text + .diagram__text {
    margin-top: 1.2rem; }
  @media (min-width: 1024px) {
    .diagram__text {
      max-width: 240px; }
      .diagram__content--phrases .diagram__text + .diagram__text {
        margin-top: 0.8rem;
        margin-left: 3.2rem; } }

.diagram__text-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 1024px) {
    .diagram__text-row {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }

.engagements {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  width: 100%;
  max-width: 1100px;
  margin: 0;
  padding: 0;
  list-style: none; }

.engagement {
  width: 100%;
  margin: 0; }
  @media (min-width: 768px) {
    .engagement {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      max-width: calc(100% - 3.2rem); } }
  .engagement + .engagement {
    margin-top: 6.4rem; }
  html:not(.no-js) .engagement {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    visibility: hidden;
    opacity: 0; }

.engagement__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 3.2rem);
          flex: 0 0 calc(100% - 3.2rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: inherit;
  text-decoration: none;
  -webkit-transition: -webkit-box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1); }
  @media (min-width: 768px) {
    .engagement__link {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      max-width: none; } }

.engagement__image-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 50%;
          flex: 1 0 50%;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  min-height: 200px;
  overflow: hidden;
  background-color: rgba(80, 109, 155, 0.3);
  border-radius: 8px; }
  @media (min-width: 768px) {
    .engagement__image-box {
      max-width: 500px;
      min-height: none;
      border-radius: 0; } }

.engagement__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;'; }
  html:not(.no-js) .engagement__image {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-transform-origin: center;
            transform-origin: center; }

.engagement__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex: 1 0 auto;
      flex: 1 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: 100%;
  padding: 2.4rem 0 0;
  text-align: start; }
  @media (min-width: 768px) {
    .engagement__content {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 50%;
              flex: 1 0 50%;
      max-width: 50%;
      padding: 3.2rem 0 3.2rem 3.2rem; } }
  html:not(.no-js) .engagement__content > * {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    visibility: hidden;
    opacity: 0; }

.engagement__title {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 400;
  font-size: 3.2rem;
  font-size: 4vw;
  margin: 0 0 2.4rem; }
  @media (max-width: 560px) {
    .engagement__title {
      font-size: 22.4px; } }
  @media (min-width: 800px) {
    .engagement__title {
      font-size: 32px; } }

.engagement__text {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  font-size: 4vw;
  margin: 0;
  line-height: 1.6; }
  @media (max-width: 280px) {
    .engagement__text {
      font-size: 11.2px; } }
  @media (min-width: 400px) {
    .engagement__text {
      font-size: 16px; } }

.engagement__btn {
  margin-top: 2.4rem; }

.footer {
  min-height: 50vh;
  color: #fff;
  background-color: #29384e; }

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 8rem 2.4rem; }
  @media (min-width: 768px) {
    .footer__inner {
      padding: 8rem 3.2rem; } }
  @media (min-width: 768px) {
    .footer__inner {
      padding: 7.5% 6.4rem; } }

.footer__logo-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (min-width: 550px) {
    .footer__logo-box {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }

.footer__logo {
  height: 45px; }

.footer__logo-text {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 600;
  font-size: 3.2rem;
  font-size: 4vw;
  margin: 0;
  margin-left: 1.6rem;
  line-height: 1; }
  @media (max-width: 560px) {
    .footer__logo-text {
      font-size: 22.4px; } }
  @media (min-width: 800px) {
    .footer__logo-text {
      font-size: 32px; } }

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: -3.2rem -2.5%;
  padding: 8rem 0; }
  @media (min-width: 768px) {
    .footer__content {
      padding: 8rem; } }

.footer__content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 2.4rem 0 0;
  text-align: center; }
  .footer__content-box:nth-of-type(1) {
    margin-bottom: 1.6rem; }
  @media (min-width: 550px) {
    .footer__content-box {
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      margin: 3.2rem 2.5%;
      text-align: left; } }

@media (min-width: 550px) and (max-width: 1023px) {
  .footer__content-box {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(50% - 8rem);
            flex: 0 0 calc(50% - 8rem); } }
  @media (min-width: 1024px) {
    .footer__content-box {
      -webkit-box-flex: 1;
          -ms-flex: auto;
              flex: auto; } }

.footer__content-title {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  font-size: 4vw;
  margin: 0 0 1.6rem;
  color: inherit;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none; }
  @media (max-width: 245px) {
    .footer__content-title {
      font-size: 9.8px; } }
  @media (min-width: 350px) {
    .footer__content-title {
      font-size: 14px; } }
  @media (min-width: 550px) {
    .footer__content-title {
      margin: 0 0 2.4rem; } }
  a.footer__content-title:hover {
    text-shadow: 0.03em 0 #29384e, -0.03em 0 #29384e, 0 0.03em #29384e, 0 -0.03em #29384e, 0.06em 0 #29384e, -0.06em 0 #29384e, 0.09em 0 #29384e, -0.09em 0 #29384e, 0.12em 0 #29384e, -0.12em 0 #29384e, 0.15em 0 #29384e, -0.15em 0 #29384e;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
    background-image: linear-gradient(#fff, #fff);
    background-repeat: repeat-x;
    background-position: 0% 92%;
    background-size: 1px 1px;
    color: #fff;
    text-decoration: none; }
    a.footer__content-title:hover::-moz-selection {
      text-shadow: 0.03em 0 rgba(80, 109, 155, 0.5), -0.03em 0 rgba(80, 109, 155, 0.5), 0 0.03em rgba(80, 109, 155, 0.5), 0 -0.03em rgba(80, 109, 155, 0.5), 0.06em 0 rgba(80, 109, 155, 0.5), -0.06em 0 rgba(80, 109, 155, 0.5), 0.09em 0 rgba(80, 109, 155, 0.5), -0.09em 0 rgba(80, 109, 155, 0.5), 0.12em 0 rgba(80, 109, 155, 0.5), -0.12em 0 rgba(80, 109, 155, 0.5), 0.15em 0 rgba(80, 109, 155, 0.5), -0.15em 0 rgba(80, 109, 155, 0.5);
      display: block;
      width: 100%;
      background: rgba(80, 109, 155, 0.5); }
    a.footer__content-title:hover::selection {
      text-shadow: 0.03em 0 rgba(80, 109, 155, 0.5), -0.03em 0 rgba(80, 109, 155, 0.5), 0 0.03em rgba(80, 109, 155, 0.5), 0 -0.03em rgba(80, 109, 155, 0.5), 0.06em 0 rgba(80, 109, 155, 0.5), -0.06em 0 rgba(80, 109, 155, 0.5), 0.09em 0 rgba(80, 109, 155, 0.5), -0.09em 0 rgba(80, 109, 155, 0.5), 0.12em 0 rgba(80, 109, 155, 0.5), -0.12em 0 rgba(80, 109, 155, 0.5), 0.15em 0 rgba(80, 109, 155, 0.5), -0.15em 0 rgba(80, 109, 155, 0.5);
      display: block;
      width: 100%;
      background: rgba(80, 109, 155, 0.5); }
    a.footer__content-title:hover *,
    a.footer__content-title:hover *::after, a.footer__content-title:hover::after,
    a.footer__content-title:hover *::before, a.footer__content-title:hover::before {
      text-shadow: none; }
    a.footer__content-title:hover:visited {
      color: #fff; }

.footer__content-link,
.footer__content-text {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  font-size: 4vw;
  margin: 0;
  line-height: 1.6; }
  @media (max-width: 245px) {
    .footer__content-link,
    .footer__content-text {
      font-size: 9.8px; } }
  @media (min-width: 350px) {
    .footer__content-link,
    .footer__content-text {
      font-size: 14px; } }
  .footer__content-link + .footer__content-link,
  .footer__content-text + .footer__content-link, .footer__content-link +
  .footer__content-text,
  .footer__content-text +
  .footer__content-text {
    margin-top: 1.6rem; }

.footer__content-text {
  display: none; }
  @media (min-width: 550px) {
    .footer__content-text {
      display: block; } }

.footer__content-subsections {
  display: none; }
  @media (min-width: 550px) {
    .footer__content-subsections {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start; } }

.footer__content-link {
  color: inherit;
  text-decoration: none; }
  .footer__content-link:hover {
    text-shadow: 0.03em 0 #29384e, -0.03em 0 #29384e, 0 0.03em #29384e, 0 -0.03em #29384e, 0.06em 0 #29384e, -0.06em 0 #29384e, 0.09em 0 #29384e, -0.09em 0 #29384e, 0.12em 0 #29384e, -0.12em 0 #29384e, 0.15em 0 #29384e, -0.15em 0 #29384e;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
    background-image: linear-gradient(#fff, #fff);
    background-repeat: repeat-x;
    background-position: 0% 92%;
    background-size: 1px 1px;
    color: #fff;
    text-decoration: none; }
    .footer__content-link:hover::-moz-selection {
      text-shadow: 0.03em 0 rgba(80, 109, 155, 0.5), -0.03em 0 rgba(80, 109, 155, 0.5), 0 0.03em rgba(80, 109, 155, 0.5), 0 -0.03em rgba(80, 109, 155, 0.5), 0.06em 0 rgba(80, 109, 155, 0.5), -0.06em 0 rgba(80, 109, 155, 0.5), 0.09em 0 rgba(80, 109, 155, 0.5), -0.09em 0 rgba(80, 109, 155, 0.5), 0.12em 0 rgba(80, 109, 155, 0.5), -0.12em 0 rgba(80, 109, 155, 0.5), 0.15em 0 rgba(80, 109, 155, 0.5), -0.15em 0 rgba(80, 109, 155, 0.5);
      display: block;
      width: 100%;
      background: rgba(80, 109, 155, 0.5); }
    .footer__content-link:hover::selection {
      text-shadow: 0.03em 0 rgba(80, 109, 155, 0.5), -0.03em 0 rgba(80, 109, 155, 0.5), 0 0.03em rgba(80, 109, 155, 0.5), 0 -0.03em rgba(80, 109, 155, 0.5), 0.06em 0 rgba(80, 109, 155, 0.5), -0.06em 0 rgba(80, 109, 155, 0.5), 0.09em 0 rgba(80, 109, 155, 0.5), -0.09em 0 rgba(80, 109, 155, 0.5), 0.12em 0 rgba(80, 109, 155, 0.5), -0.12em 0 rgba(80, 109, 155, 0.5), 0.15em 0 rgba(80, 109, 155, 0.5), -0.15em 0 rgba(80, 109, 155, 0.5);
      display: block;
      width: 100%;
      background: rgba(80, 109, 155, 0.5); }
    .footer__content-link:hover *,
    .footer__content-link:hover *::after, .footer__content-link:hover::after,
    .footer__content-link:hover *::before, .footer__content-link:hover::before {
      text-shadow: none; }
    .footer__content-link:hover:visited {
      color: #fff; }

.footer__legal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column; }
  @media (min-width: 768px) {
    .footer__legal {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }

.footer__legal-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap; }
  .footer__legal-box + .footer__legal-box {
    margin: 3.2rem 0 0;
    white-space: normal; }
    @media (min-width: 768px) {
      .footer__legal-box + .footer__legal-box {
        margin: 0 0 0 10%; } }

.footer__legal-link,
.footer__legal-text {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 1.4rem;
  font-size: 4vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  color: #7a818a;
  line-height: 1.6; }
  @media (max-width: 245px) {
    .footer__legal-link,
    .footer__legal-text {
      font-size: 9.8px; } }
  @media (min-width: 350px) {
    .footer__legal-link,
    .footer__legal-text {
      font-size: 14px; } }
  @media (max-width: 767px) {
    .footer__legal-link,
    .footer__legal-text {
      max-width: 400px;
      font-family: 'kyrial-sans-pro', sans-serif;
      font-weight: 300;
      font-size: 1.2rem;
      font-size: 4vw; } }
  @media (max-width: 767px) and (max-width: 210px) {
    .footer__legal-link,
    .footer__legal-text {
      font-size: 8.4px; } }
  @media (max-width: 767px) and (min-width: 300px) {
    .footer__legal-link,
    .footer__legal-text {
      font-size: 12px; } }

.footer__legal-link {
  margin-left: 2.4rem;
  font-weight: 600;
  text-decoration: none; }
  .footer__legal-link:hover {
    text-shadow: 0.03em 0 #29384e, -0.03em 0 #29384e, 0 0.03em #29384e, 0 -0.03em #29384e, 0.06em 0 #29384e, -0.06em 0 #29384e, 0.09em 0 #29384e, -0.09em 0 #29384e, 0.12em 0 #29384e, -0.12em 0 #29384e, 0.15em 0 #29384e, -0.15em 0 #29384e;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#7a818a), to(#7a818a));
    background-image: linear-gradient(#7a818a, #7a818a);
    background-repeat: repeat-x;
    background-position: 0% 92%;
    background-size: 1px 1px;
    color: #7a818a;
    text-decoration: none; }
    .footer__legal-link:hover::-moz-selection {
      text-shadow: 0.03em 0 rgba(80, 109, 155, 0.5), -0.03em 0 rgba(80, 109, 155, 0.5), 0 0.03em rgba(80, 109, 155, 0.5), 0 -0.03em rgba(80, 109, 155, 0.5), 0.06em 0 rgba(80, 109, 155, 0.5), -0.06em 0 rgba(80, 109, 155, 0.5), 0.09em 0 rgba(80, 109, 155, 0.5), -0.09em 0 rgba(80, 109, 155, 0.5), 0.12em 0 rgba(80, 109, 155, 0.5), -0.12em 0 rgba(80, 109, 155, 0.5), 0.15em 0 rgba(80, 109, 155, 0.5), -0.15em 0 rgba(80, 109, 155, 0.5);
      display: block;
      width: 100%;
      background: rgba(80, 109, 155, 0.5); }
    .footer__legal-link:hover::selection {
      text-shadow: 0.03em 0 rgba(80, 109, 155, 0.5), -0.03em 0 rgba(80, 109, 155, 0.5), 0 0.03em rgba(80, 109, 155, 0.5), 0 -0.03em rgba(80, 109, 155, 0.5), 0.06em 0 rgba(80, 109, 155, 0.5), -0.06em 0 rgba(80, 109, 155, 0.5), 0.09em 0 rgba(80, 109, 155, 0.5), -0.09em 0 rgba(80, 109, 155, 0.5), 0.12em 0 rgba(80, 109, 155, 0.5), -0.12em 0 rgba(80, 109, 155, 0.5), 0.15em 0 rgba(80, 109, 155, 0.5), -0.15em 0 rgba(80, 109, 155, 0.5);
      display: block;
      width: 100%;
      background: rgba(80, 109, 155, 0.5); }
    .footer__legal-link:hover *,
    .footer__legal-link:hover *::after, .footer__legal-link:hover::after,
    .footer__legal-link:hover *::before, .footer__legal-link:hover::before {
      text-shadow: none; }
    .footer__legal-link:hover:visited {
      color: #7a818a; }

.list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: calc(100% + 8rem);
  margin: 0;
  margin: -4rem;
  padding: 0;
  list-style: none; }
  .block__content--centered .list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

.list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 8rem);
          flex: 0 0 calc(100% - 8rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 4rem;
  text-align: center; }
  @supports (-ms-ime-align: auto) {
    .list-item {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 calc(100% - 8rem);
              flex: 1 0 calc(100% - 8rem); } }
  @media (min-width: 550px) {
    .list-item {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 calc(50% - 8rem);
              flex: 0 0 calc(50% - 8rem);
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      max-width: 300px;
      text-align: left; }
      @supports (-ms-ime-align: auto) {
        .list-item {
          -webkit-box-flex: 1;
              -ms-flex: 1 0 calc(50% - 8rem);
                  flex: 1 0 calc(50% - 8rem); } } }
  @media (min-width: 1024px) {
    .list-item {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 calc(25% - 8rem);
              flex: 0 0 calc(25% - 8rem); } }
  @media all and (min-width: 1024px) and (-ms-high-contrast: none), (min-width: 1024px) and (-ms-high-contrast: active) {
    .list-item {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto;
      max-width: calc(25% - 8rem); } }
  @media (min-width: 1024px) {
      @supports (-ms-ime-align: auto) {
        .list-item {
          -webkit-box-flex: 1;
              -ms-flex: 1 0 calc(25% - 3.2rem);
                  flex: 1 0 calc(25% - 3.2rem);
          max-width: calc(25% - 8rem); } } }
  html:not(.no-js) .list-item {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    visibility: hidden;
    opacity: 0; }

.list-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 300px;
  color: inherit;
  text-decoration: none; }
  @media (min-width: 550px) {
    .list-item__link {
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      max-width: none; } }

.list-item__link-btn {
  -ms-flex-item-align: center;
      align-self: center;
  margin: auto 0 0; }
  @media (min-width: 550px) {
    .list-item__link-btn {
      -ms-flex-item-align: start;
          align-self: flex-start; } }

.list-item__image {
  max-height: 110px;
  margin: 0 0 2.4rem; }
  .list-item__image--thumbnail {
    width: 100%;
    max-height: 200px;
    background-color: rgba(80, 109, 155, 0.4);
    -o-object-fit: cover;
       object-fit: cover; }

.list-item__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%; }
  html:not(.no-js) .list-item__content > * {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    visibility: hidden;
    opacity: 0; }

.list-item__title {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  font-size: 4vw;
  margin: 0 0 1.6rem; }
  @media (max-width: 350px) {
    .list-item__title {
      font-size: 14px; } }
  @media (min-width: 500px) {
    .list-item__title {
      font-size: 20px; } }

.list-item__text {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  font-size: 4vw;
  margin: 0;
  line-height: 1.6; }
  @media (max-width: 280px) {
    .list-item__text {
      font-size: 11.2px; } }
  @media (min-width: 400px) {
    .list-item__text {
      font-size: 16px; } }
  .list-item__text + .list-item__text {
    margin-top: 1.6rem; }
  .list-item__text:last-of-type {
    margin-bottom: 1.6rem; }

.hero {
  position: relative;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: calc(65vh + 100px);
  padding-top: 76px; }
  .hero.hero--fresh-start {
    min-height: calc(50vh + 100px); }
    .hero.hero--fresh-start::after {
      background: initial !important; }
  .hero.hero--home, .hero.hero--audience {
    min-height: calc(75vh + 100px);
    margin-bottom: -50px;
    padding-bottom: 5em;
    background: linear-gradient(135deg, #07184c 0%, #052b59 33%, #904d9a 80%, #b66f7f 100%), #07184c; }
    @media (min-width: 768px) {
      .hero.hero--home, .hero.hero--audience {
        padding-bottom: 10em; } }
    .hero.hero--home::before, .hero.hero--audience::before {
      display: block;
      width: 100%;
      background: url("../images/radial-grid.svg") center center/cover no-repeat;
      opacity: 0;
      -webkit-animation: 5s ease-out 500ms fadeGrid forwards;
              animation: 5s ease-out 500ms fadeGrid forwards;
      content: ' ';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0; }
      @media (min-width: 768px) {
        .hero.hero--home::before, .hero.hero--audience::before {
          -webkit-transform: translateX(-15%);
                  transform: translateX(-15%); } }
    .hero.hero--home::after, .hero.hero--audience::after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      display: block;
      width: 100vw;
      height: 5em;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 1440 186'%3E%3Cg data-name='Layer 2'%3E%3Cpath fill='%23FFF' d='M1440 186H0V0q133.89 27.21 330.15 8.27c334-32.24 452 124.23 681 162.34q229 38.1 428.85-28.91z' data-name='Layer 1'/%3E%3C/g%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-size: 100% 100%;
      -webkit-transform: translateY(1px);
              transform: translateY(1px);
      content: ' '; }
      @media (min-width: 768px) {
        .hero.hero--home::after, .hero.hero--audience::after {
          height: 10em; } }
  .hero.hero--audience {
    background: linear-gradient(135deg, #12293D 0%, #0E3A4C 25%, #0B4A5B 50%, #03717E 100%), #07184c; }
  .hero.hero--hiw {
    background: #152e4f; }
    .hero.hero--hiw::before {
      display: block;
      width: 100%;
      background: url("../images/radial-grid.svg") center center/cover no-repeat;
      opacity: 0;
      -webkit-animation: 5s ease-out 500ms fadeGrid forwards;
              animation: 5s ease-out 500ms fadeGrid forwards;
      content: ' ';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0; }
      @media (min-width: 768px) {
        .hero.hero--hiw::before {
          -webkit-transform: translateX(15%);
                  transform: translateX(15%); } }
    .hero.hero--hiw::after {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      display: block;
      width: 100%;
      margin: auto;
      background: url("../images/how-it-works/yarn.svg") center bottom/contain no-repeat;
      background-size: 350px;
      -webkit-transform: translateY(30px) translateX(0);
              transform: translateY(30px) translateX(0);
      -webkit-transform-origin: center calc(100% - 30px);
              transform-origin: center calc(100% - 30px);
      opacity: 0;
      content: ' ';
      -webkit-animation: 600ms cubic-bezier(0.86, 0, 0.07, 1) 1s revealChart forwards;
              animation: 600ms cubic-bezier(0.86, 0, 0.07, 1) 1s revealChart forwards; }

@-webkit-keyframes revealChart {
  0% {
    -webkit-transform: translateY(30px) translateX(0) scale(0.5);
            transform: translateY(30px) translateX(0) scale(0.5);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(30px) translateX(0) scale(1);
            transform: translateY(30px) translateX(0) scale(1);
    opacity: 1; } }

@keyframes revealChart {
  0% {
    -webkit-transform: translateY(30px) translateX(0) scale(0.5);
            transform: translateY(30px) translateX(0) scale(0.5);
    opacity: 0; }
  100% {
    -webkit-transform: translateY(30px) translateX(0) scale(1);
            transform: translateY(30px) translateX(0) scale(1);
    opacity: 1; } }
      @media (min-width: 768px) {
        .hero.hero--hiw::after {
          background-size: 450px;
          -webkit-transform: translateY(39px) translateX(15%);
                  transform: translateY(39px) translateX(15%);
          -webkit-transform-origin: center calc(100% - 39px);
                  transform-origin: center calc(100% - 39px); }
        @-webkit-keyframes revealChart {
          0% {
            -webkit-transform: translateY(39px) translateX(15%) scale(0.5);
                    transform: translateY(39px) translateX(15%) scale(0.5);
            opacity: 0; }
          100% {
            -webkit-transform: translateY(39px) translateX(15%) scale(1);
                    transform: translateY(39px) translateX(15%) scale(1);
            opacity: 1; } }
        @keyframes revealChart {
          0% {
            -webkit-transform: translateY(39px) translateX(15%) scale(0.5);
                    transform: translateY(39px) translateX(15%) scale(0.5);
            opacity: 0; }
          100% {
            -webkit-transform: translateY(39px) translateX(15%) scale(1);
                    transform: translateY(39px) translateX(15%) scale(1);
            opacity: 1; } } }
      @media (min-width: 1024px) {
        .hero.hero--hiw::after {
          background-size: 550px;
          -webkit-transform: translateY(48px) translateX(15%);
                  transform: translateY(48px) translateX(15%);
          -webkit-transform-origin: center calc(100% - 48px);
                  transform-origin: center calc(100% - 48px); }
        @-webkit-keyframes revealChart {
          0% {
            -webkit-transform: translateY(48px) translateX(15%) scale(0.5);
                    transform: translateY(48px) translateX(15%) scale(0.5);
            opacity: 0; }
          100% {
            -webkit-transform: translateY(48px) translateX(15%) scale(1);
                    transform: translateY(48px) translateX(15%) scale(1);
            opacity: 1; } }
        @keyframes revealChart {
          0% {
            -webkit-transform: translateY(48px) translateX(15%) scale(0.5);
                    transform: translateY(48px) translateX(15%) scale(0.5);
            opacity: 0; }
          100% {
            -webkit-transform: translateY(48px) translateX(15%) scale(1);
                    transform: translateY(48px) translateX(15%) scale(1);
            opacity: 1; } } }
      @media (min-width: 1440px) {
        .hero.hero--hiw::after {
          background-size: 800px;
          -webkit-transform: translateY(69.8px) translateX(15%);
                  transform: translateY(69.8px) translateX(15%);
          -webkit-transform-origin: center calc(100% - 69.8px);
                  transform-origin: center calc(100% - 69.8px); }
        @-webkit-keyframes revealChart {
          0% {
            -webkit-transform: translateY(69.8px) translateX(15%) scale(0.5);
                    transform: translateY(69.8px) translateX(15%) scale(0.5);
            opacity: 0; }
          100% {
            -webkit-transform: translateY(69.8px) translateX(15%) scale(1);
                    transform: translateY(69.8px) translateX(15%) scale(1);
            opacity: 1; } }
        @keyframes revealChart {
          0% {
            -webkit-transform: translateY(69.8px) translateX(15%) scale(0.5);
                    transform: translateY(69.8px) translateX(15%) scale(0.5);
            opacity: 0; }
          100% {
            -webkit-transform: translateY(69.8px) translateX(15%) scale(1);
                    transform: translateY(69.8px) translateX(15%) scale(1);
            opacity: 1; } } }
  .hero.hero--resources {
    min-height: calc(50vh + 100px);
    padding-bottom: 25px;
    background: -webkit-gradient(linear, left top, left bottom, from(#1e8871), to(rgba(167, 208, 116, 0))), #a7d074;
    background: linear-gradient(180deg, #1e8871 0%, rgba(167, 208, 116, 0) 100%), #a7d074; }
  .hero.hero--our-team, .hero.hero--contact-us {
    padding-bottom: 2em; }
    .hero.hero--our-team::after, .hero.hero--contact-us::after {
      position: absolute;
      right: 0;
      bottom: 0;
      left: 0;
      display: block;
      width: 100vw;
      height: 2em;
      background-repeat: no-repeat;
      background-size: 100% 100%;
      content: ' ';
      -webkit-transform: translateY(2px);
              transform: translateY(2px); }
      @media (min-width: 768px) {
        .hero.hero--our-team::after, .hero.hero--contact-us::after {
          height: 5em; } }
    @media (min-width: 768px) {
      .hero.hero--our-team, .hero.hero--contact-us {
        padding-bottom: 5em; } }
  .hero.hero--contact-us {
    padding-bottom: 100px; }
    .hero.hero--contact-us::before {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      display: block;
      min-width: 400px;
      max-width: 1100px;
      margin-left: auto;
      background: url("../images/contact-us/hero-town.svg") right bottom/contain no-repeat;
      -webkit-transform: translateY(1px);
              transform: translateY(1px);
      content: ' ';
      -webkit-transform-origin: right bottom;
              transform-origin: right bottom;
      opacity: 0;
      -webkit-animation: 15s ease revealVillage forwards;
              animation: 15s ease revealVillage forwards; }
      @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
        .hero.hero--contact-us::before {
          max-width: none; } }
      @media (min-width: 550px) {
        .hero.hero--contact-us::before {
          left: 20%; } }

@-webkit-keyframes revealVillage {
  0% {
    -webkit-transform: translateY(1px) scale(0.95);
            transform: translateY(1px) scale(0.95);
    opacity: 0; }
  15% {
    opacity: 1; }
  100% {
    -webkit-transform: translateY(1px) scale(1);
            transform: translateY(1px) scale(1);
    opacity: 1; } }

@keyframes revealVillage {
  0% {
    -webkit-transform: translateY(1px) scale(0.95);
            transform: translateY(1px) scale(0.95);
    opacity: 0; }
  15% {
    opacity: 1; }
  100% {
    -webkit-transform: translateY(1px) scale(1);
            transform: translateY(1px) scale(1);
    opacity: 1; } }
  .hero.hero--article {
    height: 40vh;
    min-height: calc(60px + 350px);
    background-color: rgba(80, 109, 155, 0.3);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover; }
  .hero .hero-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: auto; }

.hero__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 6.4rem 3.2rem; }
  @media (min-width: 768px) {
    .hero__inner {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      padding: 5% 6.4rem; } }

.hero__inner--centered {
  -ms-flex-direction: initial;
  -webkit-box-orient: initial;
  -webkit-box-direction: initial;
          flex-direction: initial; }
  .hero__inner--centered .hero__content-box {
    margin: auto;
    text-align: center; }
  .hero__inner--centered .hero__btn {
    margin-top: 1.8rem;
    margin: auto; }

.hero__content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 400px;
          flex: 1 0 400px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 480px;
  text-align: center; }
  @media (min-width: 769px) {
    .hero__content-box {
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      text-align: left; } }
  .hero__content-box--wide {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 650px; }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .hero__content-box--wide {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto; } }

.hero__title {
  font-family: 'kyrial-sans-pro', sans-serif;
  color: #fff;
  font-weight: 300;
  font-size: 5.6rem;
  font-size: 4vw;
  width: 100%;
  margin: 0;
  line-height: 1; }
  @media (max-width: 980px) {
    .hero__title {
      font-size: 39.2px; } }
  @media (min-width: 1400px) {
    .hero__title {
      font-size: 56px; } }
  .hero__title strong {
    font-weight: 600; }
  .hero--home .hero__title {
    max-width: 480px; }
  .hero--audience .hero__title {
    font-family: 'kyrial-sans-pro', sans-serif;
    color: #fff;
    font-weight: 300;
    font-size: 4.8rem;
    font-size: 4vw; }
    @media (max-width: 840px) {
      .hero--audience .hero__title {
        font-size: 33.6px; } }
    @media (min-width: 1200px) {
      .hero--audience .hero__title {
        font-size: 48px; } }
  .hero--our-team .hero__title,
  .hero--contact-us .hero__title {
    color: #506d9b; }
  .hero__title .hero__title--keywords {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    list-style: none; }
    .hero__title .hero__title--keywords::after {
      /* This allows us to dynamically scale the `keywords` container consistently with the text by having an invisible pseudo element that maintains the largest size word we display */
      content: 'workshops';
      display: block;
      font-weight: 600;
      visibility: hidden;
      opacity: 0; }
  .hero__title .hero__title--keyword {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    font-weight: 600;
    -webkit-transform: matrix3d(1, 0, 0, 0, 0, 0, 1, 0, 0, -1, 0, 0, 0, 0, 0, 1);
            transform: matrix3d(1, 0, 0, 0, 0, 0, 1, 0, 0, -1, 0, 0, 0, 0, 0, 1);
    -webkit-transform-origin: 100% 100% 0;
            transform-origin: 100% 100% 0;
    visibility: hidden;
    opacity: 0; }
    @media (min-width: 550px) {
      .hero__title .hero__title--keyword {
        right: initial; } }
    .hero__title .hero__title--keyword.setter {
      -webkit-transform: rotateX(0deg);
              transform: rotateX(0deg);
      visibility: visible;
      opacity: 1; }

.hero__text {
  font-family: 'kyrial-sans-pro', sans-serif;
  color: #fff;
  font-weight: 300;
  font-size: 2rem;
  font-size: 4vw;
  width: 100%;
  max-width: 500px;
  margin: 3.2rem 0 0;
  line-height: 1.6; }
  @media (max-width: 350px) {
    .hero__text {
      font-size: 14px; } }
  @media (min-width: 500px) {
    .hero__text {
      font-size: 20px; } }
  .hero__text strong {
    font-weight: 600; }
  .hero--home .hero__text {
    max-width: 450px; }
  .hero--our-team .hero__text,
  .hero--contact-us .hero__text {
    color: #506d9b; }

.hero__btn {
  -ms-flex-item-align: center;
      align-self: center;
  margin-top: 4.8rem; }
  @media (min-width: 769px) {
    .hero__btn {
      -ms-flex-item-align: start;
          align-self: flex-start; } }
  .hero--audience .hero__btn {
    color: #05234a;
    background-color: #C3D057; }

.hero__images {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  margin-bottom: 4rem;
  padding: 0; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .hero__images {
      -ms-flex-negative: 0;
          flex-shrink: 0; } }
  @media (min-width: 768px) {
    .hero__images {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 calc((110% + 6.4rem) - (4.8rem + 500px));
              flex: 0 0 calc((110% + 6.4rem) - (4.8rem + 500px));
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -webkit-box-ordinal-group: 1;
          -ms-flex-order: 0;
              order: 0;
      min-width: 1000px;
      margin-bottom: 0;
      margin-left: 6.4rem; }
      .hero__content-box--wide + .hero__images {
        -webkit-box-flex: 1;
            -ms-flex: 1;
                flex: 1;
        min-width: 500px;
        margin-left: 0; } }
    @media all and (min-width: 768px) and (-ms-high-contrast: none), (min-width: 768px) and (-ms-high-contrast: active) {
      .hero__content-box--wide + .hero__images {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 calc(100% - 650px);
                flex: 1 0 calc(100% - 650px);
        max-width: calc(100% - 650px); } }
  @media (min-width: 768px) {
    .hero--home .hero__images {
      padding-bottom: 100px; } }

.hero__title-image {
  margin: auto;
  width: auto;
  max-width: 500px; }

.hero__image {
  width: 100%;
  margin-left: auto;
  -webkit-transform: translateY(0) scale(0.9) rotate(1deg);
          transform: translateY(0) scale(0.9) rotate(1deg);
  -webkit-transform-origin: center;
          transform-origin: center;
  opacity: 0;
  -webkit-animation: 3s ease-out 0s 1 fadeIn;
          animation: 3s ease-out 0s 1 fadeIn;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -o-object-fit: contain;
     object-fit: contain; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .hero__image {
      font-family: 'object-fit: contain;';
      visibility: visible !important;
      opacity: 1 !important; } }
  @media (min-width: 768px) {
    .hero__image {
      max-height: none; } }
  .hero--home .hero__image {
    -webkit-transform: none;
            transform: none;
    opacity: 1;
    -webkit-filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.2));
            filter: drop-shadow(0 0 15px rgba(0, 0, 0, 0.2));
    -webkit-animation: none;
            animation: none; }
    html:not(.no-js) .hero--home .hero__image {
      opacity: 0; }

@media (min-width: 768px) {
  .hero__image-box {
    position: absolute;
    bottom: 0;
    left: 0;
    min-width: 230px; } }

.icon {
  -ms-flex-item-align: center;
      align-self: center;
  width: 24px;
  width: 16px;
  height: 24px;
  height: 16px;
  fill: currentColor; }
  .btn .icon {
    margin-left: 0.8rem;
    -webkit-transition: -webkit-transform 200ms ease-out;
    transition: -webkit-transform 200ms ease-out;
    transition: transform 200ms ease-out;
    transition: transform 200ms ease-out, -webkit-transform 200ms ease-out; }

.icon-arrow-down {
  width: 12px;
  height: 7.5px; }

.inquiries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% + 8rem);
  max-width: 1100px;
  margin: -1.2rem -2.4rem -2.4rem;
  padding: 0;
  list-style: none; }
  @media (min-width: 768px) {
    .inquiries {
      margin: -4rem; } }

.inquiry {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 8rem);
          flex: 0 0 calc(100% - 8rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 100%;
  max-width: 300px;
  margin: 2.4rem; }
  @media (min-width: 768px) {
    .inquiry {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 calc(50% - 8rem);
              flex: 0 0 calc(50% - 8rem);
      margin: 4rem; } }

.inquiry__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: inherit;
  text-decoration: none; }

.inquiry__icon {
  -ms-flex-item-align: start;
      align-self: flex-start;
  width: 20px;
  margin-right: 1.6rem; }

.inquiry__title {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 2rem;
  font-size: 4vw;
  margin: 0 0 1.6rem;
  line-height: 0.6; }
  @media (max-width: 350px) {
    .inquiry__title {
      font-size: 14px; } }
  @media (min-width: 500px) {
    .inquiry__title {
      font-size: 20px; } }

.inquiry__text {
  font-family: 'kyrial-sans-pro', sans-serif;
  color: #63a7ff;
  font-weight: 300;
  font-size: 1.8rem;
  font-size: 4vw;
  margin: 0;
  line-height: 1.4; }
  @media (max-width: 315px) {
    .inquiry__text {
      font-size: 12.6px; } }
  @media (min-width: 450px) {
    .inquiry__text {
      font-size: 18px; } }
  .inquiry__text:hover {
    text-shadow: 0.03em 0 #05234a, -0.03em 0 #05234a, 0 0.03em #05234a, 0 -0.03em #05234a, 0.06em 0 #05234a, -0.06em 0 #05234a, 0.09em 0 #05234a, -0.09em 0 #05234a, 0.12em 0 #05234a, -0.12em 0 #05234a, 0.15em 0 #05234a, -0.15em 0 #05234a;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#63a7ff), to(#63a7ff));
    background-image: linear-gradient(#63a7ff, #63a7ff);
    background-repeat: repeat-x;
    background-position: 0% 92%;
    background-size: 1px 1px;
    color: #63a7ff;
    text-decoration: none; }
    .inquiry__text:hover::-moz-selection {
      text-shadow: 0.03em 0 initial, -0.03em 0 initial, 0 0.03em initial, 0 -0.03em initial, 0.06em 0 initial, -0.06em 0 initial, 0.09em 0 initial, -0.09em 0 initial, 0.12em 0 initial, -0.12em 0 initial, 0.15em 0 initial, -0.15em 0 initial;
      display: block;
      width: 100%;
      background: initial; }
    .inquiry__text:hover::selection {
      text-shadow: 0.03em 0 initial, -0.03em 0 initial, 0 0.03em initial, 0 -0.03em initial, 0.06em 0 initial, -0.06em 0 initial, 0.09em 0 initial, -0.09em 0 initial, 0.12em 0 initial, -0.12em 0 initial, 0.15em 0 initial, -0.15em 0 initial;
      display: block;
      width: 100%;
      background: initial; }
    .inquiry__text:hover *,
    .inquiry__text:hover *::after, .inquiry__text:hover::after,
    .inquiry__text:hover *::before, .inquiry__text:hover::before {
      text-shadow: none; }
    .inquiry__text:hover:visited {
      color: #63a7ff; }

.loader {
  display: none; }
  .loader.is-active {
    display: block;
    width: 50px;
    height: 50px;
    margin: 3.2rem auto;
    background-image: url("../images/general/loader.svg");
    -webkit-transform-origin: center;
            transform-origin: center;
    -webkit-animation: loader 0.75s 1 ease;
            animation: loader 0.75s 1 ease; }

@-webkit-keyframes loader {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg); } }

@keyframes loader {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg); } }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  margin: auto;
  padding: 5%;
  overflow: auto;
  color: #fff;
  background-color: rgba(41, 56, 78, 0.95);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-backdrop-filter: blur(0);
          backdrop-filter: blur(0); }
  html:not(.no-js) .modal {
    -webkit-transition: visibility 0ms ease 700ms, opacity 500ms ease 200ms, -webkit-backdrop-filter 500ms ease 200ms;
    transition: visibility 0ms ease 700ms, opacity 500ms ease 200ms, -webkit-backdrop-filter 500ms ease 200ms;
    transition: visibility 0ms ease 700ms, opacity 500ms ease 200ms, backdrop-filter 500ms ease 200ms;
    transition: visibility 0ms ease 700ms, opacity 500ms ease 200ms, backdrop-filter 500ms ease 200ms, -webkit-backdrop-filter 500ms ease 200ms; }
    html:not(.no-js) .modal.is-active {
      visibility: visible;
      opacity: 1;
      -webkit-backdrop-filter: blur(3px);
              backdrop-filter: blur(3px);
      -webkit-transition: visibility 0ms ease, opacity 500ms ease, -webkit-backdrop-filter 500ms ease;
      transition: visibility 0ms ease, opacity 500ms ease, -webkit-backdrop-filter 500ms ease;
      transition: visibility 0ms ease, opacity 500ms ease, backdrop-filter 500ms ease;
      transition: visibility 0ms ease, opacity 500ms ease, backdrop-filter 500ms ease, -webkit-backdrop-filter 500ms ease; }

.modal__block {
  margin: auto; }
  .modal__block--search, .modal__block--login {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0ms ease 700ms, opacity 500ms ease 200ms;
    transition: visibility 0ms ease 700ms, opacity 500ms ease 200ms; }
  .modal__block--search {
    width: 100%; }
  .modal--search .modal__block--search {
    position: initial;
    visibility: visible;
    opacity: 1;
    -webkit-transition: visibility 0ms ease, opacity 500ms ease;
    transition: visibility 0ms ease, opacity 500ms ease; }
  .modal--login .modal__block--login {
    position: initial;
    visibility: visible;
    opacity: 1;
    -webkit-transition: visibility 0ms ease, opacity 500ms ease;
    transition: visibility 0ms ease, opacity 500ms ease; }

.modal__inner {
  padding: 6.4rem 3.2rem; }
  @media (min-width: 768px) {
    .modal__inner {
      padding: 7.5% 6.4rem; } }

.modal__intro {
  margin: 0 0 3.2rem; }

.modal__title {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 4.8rem;
  font-size: 4vw;
  margin: 0; }
  @media (max-width: 840px) {
    .modal__title {
      font-size: 33.6px; } }
  @media (min-width: 1200px) {
    .modal__title {
      font-size: 48px; } }

.modal__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: -1.6rem; }
  @media (min-width: 768px) {
    .modal__cards {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; } }

.modal__card {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 calc(100% - 3.2rem);
          flex: 1 0 calc(100% - 3.2rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin: 1.6rem;
  padding: 2.4rem;
  color: #506d9b;
  text-decoration: none;
  background-color: #fff;
  border-radius: 8px;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  -webkit-transition: -webkit-box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1); }
  .modal__card:hover {
    -webkit-box-shadow: 0 7px 28px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.17);
            box-shadow: 0 7px 28px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.17); }
  @media (min-width: 768px) {
    .modal__card {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto; } }
  @media (min-width: 1024px) {
    .modal__card {
      padding: 4.8rem 3.2rem; } }

.modal__card-image-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  max-width: 100px;
  height: 60px;
  margin: 0 0 2.4rem; }

.modal__card-image {
  -o-object-fit: contain;
     object-fit: contain; }

.modal__card-title {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 2.4rem;
  font-size: 4vw;
  margin: 0 0 1.6rem; }
  @media (max-width: 420px) {
    .modal__card-title {
      font-size: 16.8px; } }
  @media (min-width: 600px) {
    .modal__card-title {
      font-size: 24px; } }

.modal__close {
  color: transparent;
  font-size: 0;
  white-space: nowrap;
  text-indent: 101%;
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  top: 2.8rem;
  right: 2.8rem;
  z-index: 100;
  display: block;
  width: 30px;
  height: 30px;
  background-color: transparent;
  border: none;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  cursor: pointer;
  opacity: 0;
  -webkit-transition: opacity 750ms, -webkit-transform 750ms;
  transition: opacity 750ms, -webkit-transform 750ms;
  transition: opacity 750ms, transform 750ms;
  transition: opacity 750ms, transform 750ms, -webkit-transform 750ms; }
  .is-active .modal__close {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; }
  .modal__close::before, .modal__close::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    position: absolute;
    width: 24px;
    height: 2px;
    margin: auto;
    background-color: #fff;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transition: -webkit-transform 400ms;
    transition: -webkit-transform 400ms;
    transition: transform 400ms;
    transition: transform 400ms, -webkit-transform 400ms;
    content: ' '; }
  .modal__close::before {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .modal__close::after {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }

.modal__search-label {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.modal__search-input {
  width: 100%;
  color: #fff;
  font-size: 10vw;
  background-color: transparent;
  border: none;
  outline: none; }
  .modal__search-input::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.2); }
  .modal__search-input::-moz-placeholder {
    color: rgba(255, 255, 255, 0.2); }
  .modal__search-input::-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.2); }
  .modal__search-input::placeholder {
    color: rgba(255, 255, 255, 0.2); }

.nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  color: #fff;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: color 300ms ease-in, -webkit-transform 250ms ease-in;
  transition: color 300ms ease-in, -webkit-transform 250ms ease-in;
  transition: color 300ms ease-in, transform 250ms ease-in;
  transition: color 300ms ease-in, transform 250ms ease-in, -webkit-transform 250ms ease-in; }
  .nav::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #093259 0%, rgba(80, 114, 155, 0) 100%), #50729b;
    -webkit-box-shadow: 0 5px 20px rgba(5, 35, 74, 0.6);
            box-shadow: 0 5px 20px rgba(5, 35, 74, 0.6);
    opacity: 0;
    -webkit-transition: opacity 250ms ease-in;
    transition: opacity 250ms ease-in;
    content: ' '; }
  .nav--filled, .nav--always-filled,
  .no-js .nav {
    color: #fff; }
    .nav--filled::after, .nav--always-filled::after,
    .no-js .nav::after {
      opacity: 1; }
  .nav--hidden {
    -webkit-transform: translateY(calc(-100% - 20px));
            transform: translateY(calc(-100% - 20px)); }
  .nav--alt {
    color: #506d9b; }
    .nav--alt.nav--filled {
      color: #fff; }

.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.8rem 2.4rem; }
  @media (min-width: 1024px) {
    .nav__inner {
      padding: 0.8rem 4.8rem; } }

.nav__logo-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
  padding: 0.8rem; }
  @media (min-width: 1024px) {
    .nav__logo-link {
      margin: 0; } }

.nav__logo {
  position: relative;
  z-index: -1;
  width: 37px;
  height: 28px;
  pointer-events: none; }

.nav__toggle {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  width: 25px;
  margin-right: -0.8rem;
  background-color: transparent;
  border: 0;
  outline: none;
  cursor: pointer; }
  @media (min-width: 1024px) {
    .nav__toggle {
      display: none; } }

.nav__toggle-box {
  position: relative;
  display: block;
  -ms-flex-item-align: center;
      align-self: center;
  width: 25px;
  height: 24px; }
  .nav__menu-item--more .nav__toggle-box {
    width: 15px;
    height: 12px;
    margin-left: 10px; }

.nav__toggle-inner {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 25px;
  height: 2px;
  margin: auto;
  background-color: #fff;
  -webkit-transition: background-color 300ms;
  transition: background-color 300ms; }
  .nav--alt .nav__toggle-inner {
    background-color: #506d9b; }
  .nav--alt.nav--filled .nav__toggle-inner {
    background-color: #fff; }
  .nav__toggle-inner::before, .nav__toggle-inner::after {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -webkit-transition: all 400ms;
    transition: all 400ms;
    content: ''; }
    .nav--alt .nav__toggle-inner::before, .nav--alt .nav__toggle-inner::after {
      background-color: #506d9b; }
    .nav--alt.nav--filled .nav__toggle-inner::before, .nav--alt.nav--filled .nav__toggle-inner::after {
      background-color: #fff; }
  .nav__toggle-inner::before {
    top: -9px; }
  .nav__toggle-inner::after {
    top: 9px; }
  .is-active .nav__toggle-inner {
    background-color: transparent; }
    .nav--alt.nav--filled .is-active .nav__toggle-inner {
      background-color: transparent; }
    .is-active .nav__toggle-inner::before {
      top: 0;
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
    .is-active .nav__toggle-inner::after {
      top: 0;
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }

.nav__menu {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: -2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  min-height: 100vh;
  margin: 0;
  padding: calc(60px + 0.4rem) 0 0;
  list-style: none;
  background: -webkit-gradient(linear, left bottom, left top, from(#020c43), to(rgba(5, 43, 89, 0))), #052b59;
  background: linear-gradient(0deg, #020c43 0%, rgba(5, 43, 89, 0) 100%), #052b59;
  -webkit-box-shadow: -5px 0 20px rgba(5, 35, 74, 0.6);
          box-shadow: -5px 0 20px rgba(5, 35, 74, 0.6);
  -webkit-transform: translateX(100%) translateX(20px);
          transform: translateX(100%) translateX(20px);
  -webkit-transition: -webkit-transform 300ms ease;
  transition: -webkit-transform 300ms ease;
  transition: transform 300ms ease;
  transition: transform 300ms ease, -webkit-transform 300ms ease; }
  .nav__toggle.is-active + .nav__menu {
    -webkit-transform: translateX(0);
            transform: translateX(0); }
  @media (min-width: 550px) {
    .nav__menu {
      top: 60px;
      z-index: 1;
      max-width: 350px;
      padding: 0.4rem 0 0; } }
  @media (min-width: 1024px) {
    .nav__menu {
      position: static;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      width: auto;
      max-width: none;
      min-height: 0;
      padding: 0;
      background: transparent;
      -webkit-box-shadow: none;
              box-shadow: none;
      -webkit-transform: translateX(0);
              transform: translateX(0); } }

.nav__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0;
  padding: 0;
  list-style: none; }
  @media (min-width: 1024px) {
    .nav__links {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      height: 60px;
      padding: 0 3.2rem; } }

.nav__link-item:hover .sub-menu {
  display: block; }

.nav__link-item + .nav__link-item {
  margin-top: 0.4rem; }
  @media (min-width: 1024px) {
    .nav__link-item + .nav__link-item {
      margin-top: 0;
      margin-left: 3.2rem; } }

.sub-menu {
  list-style: none; }
  @media (min-width: 1024px) {
    .sub-menu {
      position: absolute;
      display: none;
      padding: 0px;
      color: #fff;
      background-color: rgba(99, 167, 255, 0.6); }
      .sub-menu .nav__link-item {
        font-weight: 400;
        padding: 0 5px;
        margin-left: 0;
        background-color: rgba(99, 167, 255, 0.6);
        -webkit-transition: background-color 250ms ease;
        transition: background-color 250ms ease; }
        .sub-menu .nav__link-item:hover {
          background-color: #63a7ff; }
        .sub-menu .nav__link-item a {
          display: inline-block;
          width: 100%;
          padding: 10px 0;
          border-bottom: 1px solid #fff; }
        .sub-menu .nav__link-item:last-of-type a {
          border-bottom: none; } }
  @media (max-width: 1023px) {
    .sub-menu {
      margin-top: 0.4rem; } }

.nav__link {
  display: block; }
  @media (max-width: 1023px) {
    .nav__link {
      background-color: rgba(80, 109, 155, 0.1);
      -webkit-transition: background-color 250ms ease;
      transition: background-color 250ms ease; }
      .nav__link.nav__link {
        padding: 2.4rem 4rem; }
        .nav__link.nav__link::after {
          content: none; }
      .nav__link:hover {
        background-color: rgba(80, 109, 155, 0.25); } }
  @media (min-width: 1024px) {
    .nav__link::before {
      position: absolute;
      right: 0;
      bottom: -0.4rem;
      left: 0;
      display: block;
      width: 70%;
      height: 4px;
      margin: auto;
      background: -webkit-gradient(linear, right top, left top, from(#a9d5fc), to(#63a7ff));
      background: linear-gradient(-90deg, #a9d5fc 0%, #63a7ff 100%);
      border-radius: 2px;
      opacity: 0;
      content: ' ';
      -webkit-transition: opacity 250ms;
      transition: opacity 250ms; }
    .nav__link.is-active::before {
      opacity: 1; } }

.nav__link,
.nav__login {
  font-family: 'kyrial-sans-pro', sans-serif;
  color: inherit;
  font-weight: 300;
  font-size: 2rem;
  font-size: 4vw;
  position: relative;
  padding: 1.6rem;
  line-height: 1;
  text-decoration: none; }
  @media (max-width: 350px) {
    .nav__link,
    .nav__login {
      font-size: 14px; } }
  @media (min-width: 500px) {
    .nav__link,
    .nav__login {
      font-size: 20px; } }
  @media (min-width: 1024px) {
    .nav__link,
    .nav__login {
      font-family: 'kyrial-sans-pro', sans-serif;
      color: inherit;
      font-weight: 400;
      font-size: 1.6rem;
      font-size: 4vw; } }
  @media (min-width: 1024px) and (max-width: 280px) {
    .nav__link,
    .nav__login {
      font-size: 11.2px; } }
  @media (min-width: 1024px) and (min-width: 400px) {
    .nav__link,
    .nav__login {
      font-size: 16px; } }

.nav__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3.2rem;
  padding: 0 4rem; }
  @media (min-width: 1024px) {
    .nav__box {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-flow: row nowrap;
              flex-flow: row nowrap;
      margin-top: 0;
      padding: 0; } }

.nav__login {
  position: relative;
  margin-left: 3.2rem; }
  @media (min-width: 1024px) {
    .nav__login {
      font-weight: 600; } }

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

.nav__search-icon {
  width: 18px;
  height: 18px;
  fill: currentColor; }

.nav__btn {
  position: relative;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin: auto 0; }
  @media (max-width: 1023px) {
    .nav__btn {
      font-family: 'kyrial-sans-pro', sans-serif;
      font-weight: 400;
      font-size: 1.6rem;
      font-size: 4vw;
      padding: 1.2rem 0;
      background-color: transparent;
      border-radius: 0;
      -webkit-transition: none;
      transition: none; } }
  @media (max-width: 1023px) and (max-width: 280px) {
    .nav__btn {
      font-size: 11.2px; } }
  @media (max-width: 1023px) and (min-width: 400px) {
    .nav__btn {
      font-size: 16px; } }
  @media (max-width: 1023px) {
      .nav__btn::after {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        display: block;
        background-color: rgba(255, 255, 255, 0.1);
        opacity: 0;
        -webkit-filter: blur(10px);
                filter: blur(10px);
        -webkit-transition: opacity 200ms ease-out;
        transition: opacity 200ms ease-out;
        content: ' '; }
      .nav__btn:hover::after {
        opacity: 1; }
      .nav__btn.btn:hover {
        color: inherit;
        background-color: transparent;
        -webkit-box-shadow: none;
                box-shadow: none; } }
  .nav--alt .nav__btn {
    color: inherit; }
    @media (min-width: 1024px) {
      .nav--alt .nav__btn {
        color: #fff; } }
  @media (min-width: 1024px) {
    .nav__btn {
      -webkit-box-ordinal-group: 1;
          -ms-flex-order: 0;
              order: 0;
      margin: auto 0 auto 3.2rem;
      padding: 1.2rem 2.4rem; } }

.nav__btn-menu {
  -webkit-box-flex: 1;
      -ms-flex: 1 0 100%;
          flex: 1 0 100%;
  margin-top: 3.2rem;
  padding: 1.2rem 2.4rem; }
  @media (min-width: 1024px) {
    .nav__btn-menu {
      display: none; } }

.nav__logo-link,
.nav__login,
.nav__search,
.nav__link,
.nav__toggle {
  position: relative;
  padding: 0.8rem; }
  .nav__logo-link::after,
  .nav__login::after,
  .nav__search::after,
  .nav__link::after,
  .nav__toggle::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    background-color: rgba(255, 255, 255, 0.1);
    opacity: 0;
    -webkit-filter: blur(10px);
            filter: blur(10px);
    -webkit-transition: opacity 200ms ease-out;
    transition: opacity 200ms ease-out;
    content: ' '; }
  .nav__logo-link:hover::after,
  .nav__login:hover::after,
  .nav__search:hover::after,
  .nav__link:hover::after,
  .nav__toggle:hover::after {
    opacity: 1; }

.partners {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: calc(100% + 8rem);
  margin: 0;
  margin: -1.6rem -4rem;
  padding: 0;
  list-style: none; }
  .block__content--centered .partners {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }

.partner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 1.6rem 4rem; }
  html:not(.no-js) .partner {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    visibility: hidden;
    opacity: 0; }

.partner__image {
  width: auto;
  max-height: 125px;
  margin: 0 0 2.4rem;
  -o-object-fit: contain;
     object-fit: contain; }

.quote {
  display: block; }

.quote__content {
  display: block;
  position: relative;
  margin: auto;
  max-width: 1400px;
  padding: 30px 100px;
  color: #6DB9A3;
  -webkit-filter: drop-shadow(0 10px 40px rgba(41, 56, 78, 0.5));
          filter: drop-shadow(0 10px 40px rgba(41, 56, 78, 0.5)); }
  .quote__content::before, .quote__content::after {
    position: absolute;
    font-family: 'kyrial-sans-pro', sans-serif;
    font-weight: 700;
    font-size: 20rem;
    font-size: 4vw;
    line-height: 0; }
    @media (max-width: 3500px) {
      .quote__content::before, .quote__content::after {
        font-size: 140px; } }
    @media (min-width: 5000px) {
      .quote__content::before, .quote__content::after {
        font-size: 200px; } }
  .quote__content::before {
    top: 0;
    left: 0;
    content: open-quote; }
  .quote__content::after {
    content: close-quote;
    bottom: 0;
    right: 0; }

.quote__content--text {
  display: block;
  padding-bottom: 10px;
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 400;
  font-size: 3.8rem;
  font-size: 4vw; }
  @media (max-width: 665px) {
    .quote__content--text {
      font-size: 26.6px; } }
  @media (min-width: 950px) {
    .quote__content--text {
      font-size: 38px; } }

.quote__content--author {
  display: block;
  text-align: left;
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  font-size: 4vw; }
  @media (max-width: 315px) {
    .quote__content--author {
      font-size: 12.6px; } }
  @media (min-width: 450px) {
    .quote__content--author {
      font-size: 18px; } }

.resources {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% + 3.2rem);
  margin: 0;
  margin: -1.6rem;
  padding: 0;
  list-style: none; }
  .resources + .resources {
    margin-top: 1.6rem; }
  @media (min-width: 768px) {
    .resources {
      -webkit-box-pack: initial;
          -ms-flex-pack: initial;
              justify-content: initial; }
      .resources + .resources {
        margin-top: 4.8rem; } }

.resource {
  max-width: 500px;
  margin: 1.6rem;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.05);
  -webkit-transition: -webkit-box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: -webkit-box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1), -webkit-box-shadow 300ms cubic-bezier(0.25, 0.8, 0.25, 1); }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .resource {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 100%;
              flex: 1 0 100%;
      max-width: 400px; } }
  @media (min-width: 768px) {
    .resource {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 calc(50% - 3.2rem);
              flex: 0 0 calc(50% - 3.2rem);
      max-width: none; } }
  @media all and (min-width: 768px) and (-ms-high-contrast: none), (min-width: 768px) and (-ms-high-contrast: active) {
    .resource {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 50%;
              flex: 1 0 50%;
      max-width: calc(50% - 3.2rem); } }
  @media (min-width: 768px) {
      @supports (-ms-ime-align: auto) {
        .resource {
          -webkit-box-flex: 1;
              -ms-flex: 1 0 calc(50% - 3.2rem);
                  flex: 1 0 calc(50% - 3.2rem);
          max-width: calc(50% - 4rem); } } }
  @media (min-width: 1100px) {
    .resource {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 calc(33.333% - 3.2rem);
              flex: 0 0 calc(33.333% - 3.2rem);
      max-width: none; } }
  @media all and (min-width: 1100px) and (-ms-high-contrast: none), (min-width: 1100px) and (-ms-high-contrast: active) {
    .resource {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 33.333%;
              flex: 1 0 33.333%;
      max-width: calc(33.333% - 3.2rem); } }
  @media (min-width: 1100px) {
      @supports (-ms-ime-align: auto) {
        .resource {
          -webkit-box-flex: 1;
              -ms-flex: 1 0 calc(33.333% - 3.2rem);
                  flex: 1 0 calc(33.333% - 3.2rem);
          max-width: calc(33.333% - 4rem); } } }
  .resource.resource--featured {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 3.2rem);
            flex: 0 0 calc(100% - 3.2rem);
    margin: 1.6rem;
    -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
            box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15); }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .resource.resource--featured {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 100%;
                flex: 1 0 100%;
        max-width: calc(100% - 3.2rem); } }
    @supports (-ms-ime-align: auto) {
      .resource.resource--featured {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 calc(100% - 3.2rem);
                flex: 1 0 calc(100% - 3.2rem); } }
    @media (min-width: 768px) {
      .resource.resource--featured {
        -webkit-box-flex: 0;
            -ms-flex: 0 0 calc(50% - 3.2rem);
                flex: 0 0 calc(50% - 3.2rem);
        -webkit-box-pack: initial;
            -ms-flex-pack: initial;
                justify-content: initial;
        margin-bottom: 4.8rem; } }
  @media all and (min-width: 768px) and (-ms-high-contrast: none), (min-width: 768px) and (-ms-high-contrast: active) {
    .resource.resource--featured {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 calc(50% - 3.2rem);
              flex: 1 0 calc(50% - 3.2rem);
      max-width: calc(50% - 3.2rem); } }
    @media (min-width: 768px) {
        @supports (-ms-ime-align: auto) {
          .resource.resource--featured {
            -webkit-box-flex: 1;
                -ms-flex: 1 0 calc(50% - 3.2rem);
                    flex: 1 0 calc(50% - 3.2rem);
            max-width: calc(50% - 3.2rem); } } }
  .resource:hover {
    -webkit-box-shadow: 0 7px 28px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.17);
            box-shadow: 0 7px 28px rgba(0, 0, 0, 0.2), 0 5px 10px rgba(0, 0, 0, 0.17); }
  html:not(.no-js) .resource {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    visibility: hidden;
    opacity: 0; }

.resource__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  border-radius: 16px; }
  .resource--featured .resource__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
    @media (min-width: 1100px) {
      .resource--featured .resource__link {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row; } }

.resource__image-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 200px;
  background-color: rgba(80, 109, 155, 0.3); }
  .resource--featured .resource__image-box {
    -ms-flex-item-align: stretch;
        align-self: stretch; }
    @media (min-width: 1100px) {
      .resource--featured .resource__image-box {
        max-width: 200px;
        height: auto; } }

.resource__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; }
  html:not(.no-js) .resource__image {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-transform-origin: center;
            transform-origin: center; }

.resource__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  padding: 2.4rem; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .resource__content {
      -webkit-box-flex: 1;
          -ms-flex: auto;
              flex: auto; } }
  @media (min-width: 768px) {
    .resource__content {
      padding: 3.2rem 2.4rem; } }

@media all and (min-width: 1100px) and (-ms-high-contrast: none), (min-width: 1100px) and (-ms-high-contrast: active) {
  .resource--featured .resource__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(100% - 200px);
            flex: 1 0 calc(100% - 200px);
    max-width: calc(100% - 200px); } }
  @media (min-width: 1024px) {
    .resource__content {
      padding: 7.5% 5%; } }
  html:not(.no-js) .resource__content > * {
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
    visibility: hidden;
    opacity: 0; }

.resource__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 0 2.4rem; }

.resource__category {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 1.2rem;
  font-size: 4vw;
  margin: 0 0 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase; }
  @media (max-width: 210px) {
    .resource__category {
      font-size: 8.4px; } }
  @media (min-width: 300px) {
    .resource__category {
      font-size: 12px; } }

.resource__title {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  font-size: 4vw;
  margin: 0 0 1.6rem; }
  @media (max-width: 420px) {
    .resource__title {
      font-size: 16.8px; } }
  @media (min-width: 600px) {
    .resource__title {
      font-size: 24px; } }

.resource__author {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  font-size: 4vw;
  margin: 0; }
  @media (max-width: 245px) {
    .resource__author {
      font-size: 9.8px; } }
  @media (min-width: 350px) {
    .resource__author {
      font-size: 14px; } }

.resource__date {
  display: none;
  /* SQ: Temporary as of 9/21/2018 */
  font-family: 'kyrial-sans-pro', sans-serif;
  color: rgba(80, 109, 155, 0.5);
  font-weight: 600;
  font-size: 1.4rem;
  font-size: 4vw;
  margin: 0 0 0 1.6rem; }
  @media (max-width: 245px) {
    .resource__date {
      font-size: 9.8px; } }
  @media (min-width: 350px) {
    .resource__date {
      font-size: 14px; } }

.resource__text {
  font-family: 'kyrial-sans-pro', sans-serif;
  color: #7a818a;
  font-weight: 400;
  font-size: 1.4rem;
  font-size: 4vw;
  margin: 1.6rem 0 2.4rem;
  line-height: 1.6; }
  @media (max-width: 245px) {
    .resource__text {
      font-size: 9.8px; } }
  @media (min-width: 350px) {
    .resource__text {
      font-size: 14px; } }

.resource__btn {
  margin-top: auto; }

.resource--null {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  color: #29384e; }

.resource__results {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid #d5dbe3; }

.resource__box {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  text-align: center; }

.resource__results-image-box {
  max-width: 300px;
  margin: 6.4rem auto; }

.resource__results-text {
  margin: 0;
  font-weight: 300;
  font-size: 20px; }
  .resource__results .resource__results-text {
    font-weight: 400;
    font-size: 12px;
    text-transform: uppercase; }

.resource__results-number {
  margin-right: 0.4rem;
  font-weight: 800;
  font-size: 16px; }

.search {
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: -4.8rem;
  margin-bottom: 1.6rem;
  -webkit-transform: translateY(-35%);
          transform: translateY(-35%); }
  @media (min-width: 768px) {
    .search {
      position: relative;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      height: 45px;
      margin-top: -7.5%;
      overflow: hidden;
      background: #fff;
      border-radius: 15px;
      -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.1);
              box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.1);
      -webkit-transform: translateY(-75%);
              transform: translateY(-75%); } }

@media (max-width: 767px) {
  .search__category,
  .search__label {
    height: 45px;
    background: #fff;
    border-radius: 15px;
    -webkit-box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 8px 24px 0 rgba(0, 0, 0, 0.1); } }

.search__category {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-left: 1px solid #d8e9ff;
  -webkit-transition: background-color 200ms ease-out, color 200ms ease-out;
  transition: background-color 200ms ease-out, color 200ms ease-out; }
  .search__category:hover {
    color: #fff;
    background-color: #63a7ff; }
  @media (max-width: 767px) {
    .search__category {
      margin-top: 1.6rem; } }

.search__category-select {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  font-size: 4vw;
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0 calc(4.8rem + 11px) 0 3.2rem;
  color: inherit;
  background: transparent;
  border: none;
  border-radius: 0;
  outline: none;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  @media (max-width: 245px) {
    .search__category-select {
      font-size: 9.8px; } }
  @media (min-width: 350px) {
    .search__category-select {
      font-size: 14px; } }
  .search__category-select::-ms-expand {
    display: none; }
  .search__category-select option {
    color: #05234a; }

.search__dropdown-icon {
  position: absolute;
  top: 0;
  right: 3.2rem;
  bottom: 0;
  z-index: 1;
  width: 11px;
  height: 8px;
  margin: auto 0;
  -webkit-transition: fill 250ms ease-out;
  transition: fill 250ms ease-out;
  pointer-events: none;
  fill: currentColor; }

.search__icon {
  margin-right: 1.6rem; }

.search__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: 100%;
  padding: 0 2.4rem; }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .search__label {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto; } }

@media all and (min-width: 768px) and (-ms-high-contrast: none), (min-width: 768px) and (-ms-high-contrast: active) {
  .search__label {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(100% - 180px);
            flex: 1 0 calc(100% - 180px);
    max-width: calc(100% - 180px); } }

.search__input {
  display: block;
  font-family: 'kyrial-sans-pro', sans-serif;
  color: #506d9b;
  font-weight: 400;
  font-size: 1.4rem;
  font-size: 4vw;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none; }
  @media (max-width: 245px) {
    .search__input {
      font-size: 9.8px; } }
  @media (min-width: 350px) {
    .search__input {
      font-size: 14px; } }
  .search__input::-webkit-input-placeholder {
    color: rgba(80, 109, 155, 0.5); }
  .search__input::-moz-placeholder {
    color: rgba(80, 109, 155, 0.5); }
  .search__input::-ms-input-placeholder {
    color: rgba(80, 109, 155, 0.5); }
  .search__input::placeholder {
    color: rgba(80, 109, 155, 0.5); }

.social {
  margin: 3.2rem 0; }

.social__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none; }

.social__item {
  background-color: rgba(216, 233, 255, 0.2);
  border-radius: 50%;
  -webkit-transition: background-color 200ms ease-out, color 200ms ease-out;
  transition: background-color 200ms ease-out, color 200ms ease-out; }
  .social__item + .social__item {
    margin-left: 0.8rem; }
  .social__item:hover {
    color: #29384e;
    background-color: #fff; }

.social__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 100%;
  height: 40px;
  padding: 1.2rem;
  overflow: hidden;
  color: inherit;
  font: 0/0 a;
  text-shadow: none; }

.social__icons {
  width: 100%;
  height: auto;
  fill: currentColor; }
  .social__icons.facebook {
    width: auto;
    height: 100%; }

.staff__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100% + 3.2rem);
  margin: 0;
  margin: -1.6rem;
  padding: 0;
  list-style: none; }

.staff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(100% - 3.2rem);
          flex: 0 0 calc(100% - 3.2rem);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  max-width: 400px;
  margin: 1.6rem;
  overflow: hidden;
  background-color: #fff;
  border-radius: 16px;
  -webkit-box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.1); }
  html:not(.no-js) .staff {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    visibility: hidden;
    opacity: 0; }
  @media (min-width: 550px) {
    .staff {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 calc(50% - 3.2rem);
              flex: 0 0 calc(50% - 3.2rem); } }
  @media (min-width: 1024px) {
    .staff {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 calc(33.333% - 3.2rem);
              flex: 0 0 calc(33.333% - 3.2rem); } }
  @media (min-width: 1440px) {
    .staff {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 calc(25% - 3.2rem);
              flex: 0 0 calc(25% - 3.2rem); } }
  .staff.staff--featured {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% - 3.2rem);
            flex: 0 0 calc(100% - 3.2rem);
    margin: 1.6rem auto; }
    @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
      .staff.staff--featured {
        margin: 0; } }
    @media (min-width: 768px) {
      .staff.staff--featured {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        max-width: calc(100% - 3.2rem);
        margin: 1.6rem; } }

.staff__image-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-height: 375px;
  overflow: hidden;
  background-color: rgba(80, 109, 155, 0.3); }
  .staff--featured .staff__image-box {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 30%;
            flex: 1 0 30%;
    -ms-flex-item-align: stretch;
        align-self: stretch; }
    @media (min-width: 768px) {
      .staff--featured .staff__image-box {
        max-width: 500px;
        min-height: none; } }

.staff__image {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  font-family: 'object-fit: cover;'; }
  html:not(.no-js) .staff__image {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-transform-origin: top center;
            transform-origin: top center; }

.staff__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: stretch;
      align-self: stretch;
  width: 100%;
  padding: 2.4rem;
  text-align: center; }
  .staff--featured .staff__content {
    text-align: start; }
    @media (min-width: 768px) {
      .staff--featured .staff__content {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 70%;
                flex: 1 0 70%;
        max-width: 70%;
        text-align: left; } }
    @media (min-width: 1024px) {
      .staff--featured .staff__content {
        padding: 5% 5%; } }
  @media (min-width: 768px) {
    .staff__content {
      padding: 3.2rem; } }
  html:not(.no-js) .staff__content > * {
    -webkit-transform: translateY(20px);
            transform: translateY(20px); }
  @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .staff__content {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 auto;
              flex: 1 0 auto; } }

.staff__name {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 2.4rem;
  font-size: 4vw;
  margin: 0 0 1.6rem; }
  @media (max-width: 420px) {
    .staff__name {
      font-size: 16.8px; } }
  @media (min-width: 600px) {
    .staff__name {
      font-size: 24px; } }
  .staff--featured .staff__name {
    font-size: 32px; }

.staff__role {
  font-family: 'kyrial-sans-pro', sans-serif;
  color: rgba(80, 109, 155, 0.5);
  font-weight: 600;
  font-size: 1.4rem;
  font-size: 4vw;
  margin: 0;
  letter-spacing: 1.5px;
  text-transform: uppercase; }
  @media (max-width: 245px) {
    .staff__role {
      font-size: 9.8px; } }
  @media (min-width: 350px) {
    .staff__role {
      font-size: 14px; } }

.staff__bio {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  font-size: 4vw;
  margin: 1.6rem 0 0;
  line-height: 1.6; }
  @media (max-width: 280px) {
    .staff__bio {
      font-size: 11.2px; } }
  @media (min-width: 400px) {
    .staff__bio {
      font-size: 16px; } }

.stats {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 110%;
  margin: -1.6rem -5%;
  padding: 0;
  list-style: none; }

.stat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 160px;
          flex: 0 0 160px;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: 160px;
  margin: 1.6rem 5%; }
  html:not(.no-js) .stat {
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
    visibility: hidden;
    opacity: 0; }
  @media (min-width: 1024px) {
    .stat {
      width: 100%;
      min-width: 160px;
      max-width: 33.333%; } }

.stat__number {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 8rem;
  font-size: 4vw;
  margin: 0 0 1.6rem;
  line-height: 1; }
  @media (max-width: 1400px) {
    .stat__number {
      font-size: 56px; } }
  @media (min-width: 2000px) {
    .stat__number {
      font-size: 80px; } }
  .stat__number::after {
    content: '%';
    font-weight: 300; }
  .stat:last-of-type .stat__number::after {
    content: '+'; }

.stat__text {
  font-family: 'kyrial-sans-pro', sans-serif;
  font-weight: 300;
  font-size: 1.6rem;
  font-size: 4vw;
  width: 100%;
  margin: 0;
  line-height: 1.8; }
  @media (max-width: 280px) {
    .stat__text {
      font-size: 11.2px; } }
  @media (min-width: 400px) {
    .stat__text {
      font-size: 16px; } }

.wysiwyg__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%; }
  @media (min-width: 925px) {
    .wysiwyg__row {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row; }
      .wysiwyg__row--reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse; } }

.wysiwyg__image-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  min-height: 400px;
  margin-top: 3.2rem; }
  @media (min-width: 925px) {
    .wysiwyg__image-box {
      min-height: none;
      margin-top: 0; } }
  .wysiwyg__row .wysiwyg__image-box {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 calc(50% - 3.2rem);
            flex: 1 0 calc(50% - 3.2rem); }
  .wysiwyg__image-box img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    font-family: 'object-fit: cover;';
    background-color: rgba(80, 109, 155, 0.3); }

.wysiwyg {
  width: 100%; }
  @media (min-width: 925px) {
    .wysiwyg__row .wysiwyg {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 calc(50% - 3.2rem);
              flex: 1 0 calc(50% - 3.2rem);
      margin-right: 6.4rem; } }
  @media all and (min-width: 925px) and (-ms-high-contrast: none), (min-width: 925px) and (-ms-high-contrast: active) {
    .wysiwyg__row .wysiwyg {
      width: 100%;
      max-width: calc(50% - 3.2rem); } }
  @media (min-width: 925px) {
    .wysiwyg__row--reverse .wysiwyg {
      margin-right: 0;
      margin-left: 6.4rem; } }
  .article .wysiwyg {
    color: #4a4a4a; }
  .wysiwyg h2 {
    font-family: 'kyrial-sans-pro', sans-serif;
    font-weight: 600;
    font-size: 3.2rem;
    font-size: 4vw;
    margin: 0 0 0.8rem; }
    @media (max-width: 560px) {
      .wysiwyg h2 {
        font-size: 22.4px; } }
    @media (min-width: 800px) {
      .wysiwyg h2 {
        font-size: 32px; } }
  .wysiwyg h3 {
    font-family: 'kyrial-sans-pro', sans-serif;
    font-weight: 600;
    font-size: 2.4rem;
    font-size: 4vw;
    margin: 0 0 0.8rem; }
    @media (max-width: 420px) {
      .wysiwyg h3 {
        font-size: 16.8px; } }
    @media (min-width: 600px) {
      .wysiwyg h3 {
        font-size: 24px; } }
  .wysiwyg h4 {
    font-family: 'kyrial-sans-pro', sans-serif;
    font-weight: 600;
    font-size: 1.6rem;
    font-size: 4vw;
    margin: 0 0 0.8rem; }
    @media (max-width: 280px) {
      .wysiwyg h4 {
        font-size: 11.2px; } }
    @media (min-width: 400px) {
      .wysiwyg h4 {
        font-size: 16px; } }
  .wysiwyg h5 {
    font-family: 'kyrial-sans-pro', sans-serif;
    font-weight: 400;
    font-size: 2rem;
    font-size: 4vw;
    margin: 0 0 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase; }
    @media (max-width: 350px) {
      .wysiwyg h5 {
        font-size: 14px; } }
    @media (min-width: 500px) {
      .wysiwyg h5 {
        font-size: 20px; } }
  .wysiwyg p + h1,
  .wysiwyg p + h2,
  .wysiwyg p + h3,
  .wysiwyg p + h4,
  .wysiwyg p + h5 {
    margin-top: 4rem; }
  .wysiwyg p {
    font-family: 'kyrial-sans-pro', sans-serif;
    font-weight: 300;
    font-size: 1.6rem;
    font-size: 4vw;
    margin: 0;
    line-height: 1.7; }
    @media (max-width: 280px) {
      .wysiwyg p {
        font-size: 11.2px; } }
    @media (min-width: 400px) {
      .wysiwyg p {
        font-size: 16px; } }
    .wysiwyg p + p {
      margin-top: 2.4rem; }
    .wysiwyg p:last-child {
      margin-bottom: 0; }
  .wysiwyg ul,
  .wysiwyg ol {
    padding-left: 3.2rem; }
  .wysiwyg ol li {
    padding-left: 0.8rem; }
  .wysiwyg li {
    font-family: 'kyrial-sans-pro', sans-serif;
    font-weight: 300;
    font-size: 1.6rem;
    font-size: 4vw; }
    @media (max-width: 280px) {
      .wysiwyg li {
        font-size: 11.2px; } }
    @media (min-width: 400px) {
      .wysiwyg li {
        font-size: 16px; } }
    .wysiwyg li + li {
      margin-top: 0.8rem; }
  .wysiwyg figure {
    margin: 6.4rem 0; }
  .wysiwyg img {
    width: 100%; }
  .wysiwyg figcaption {
    font-family: 'kyrial-sans-pro', sans-serif;
    font-weight: 300;
    font-size: 1.2rem;
    font-size: 4vw;
    margin-top: 0.8rem; }
    @media (max-width: 210px) {
      .wysiwyg figcaption {
        font-size: 8.4px; } }
    @media (min-width: 300px) {
      .wysiwyg figcaption {
        font-size: 12px; } }
  .wysiwyg blockquote {
    margin: 6.4rem 0; }
    .wysiwyg blockquote p {
      font-family: 'kyrial-sans-pro', sans-serif;
      font-weight: 600;
      font-size: 2.8rem;
      font-size: 4vw; }
      @media (max-width: 490px) {
        .wysiwyg blockquote p {
          font-size: 19.6px; } }
      @media (min-width: 700px) {
        .wysiwyg blockquote p {
          font-size: 28px; } }
    .block__content .wysiwyg blockquote {
      max-width: 900px;
      margin-right: auto;
      margin-left: auto;
      padding: 0 10%;
      text-align: center; }
      .block__content .wysiwyg blockquote p {
        font-family: 'kyrial-sans-pro', sans-serif;
        font-weight: 300;
        font-size: 2.4rem;
        font-size: 4vw; }
        @media (max-width: 420px) {
          .block__content .wysiwyg blockquote p {
            font-size: 16.8px; } }
        @media (min-width: 600px) {
          .block__content .wysiwyg blockquote p {
            font-size: 24px; } }
  .wysiwyg hr {
    margin: 6.4rem 0;
    border-color: rgba(74, 74, 74, 0.2); }
  .wysiwyg a {
    color: #63a7ff;
    font-weight: 400;
    text-decoration: none; }
    .wysiwyg a:hover {
      text-shadow: 0.03em 0 #fff, -0.03em 0 #fff, 0 0.03em #fff, 0 -0.03em #fff, 0.06em 0 #fff, -0.06em 0 #fff, 0.09em 0 #fff, -0.09em 0 #fff, 0.12em 0 #fff, -0.12em 0 #fff, 0.15em 0 #fff, -0.15em 0 #fff;
      background-image: -webkit-gradient(linear, left top, left bottom, from(#63a7ff), to(#63a7ff));
      background-image: linear-gradient(#63a7ff, #63a7ff);
      background-repeat: repeat-x;
      background-position: 0% 92%;
      background-size: 1px 1px;
      color: #63a7ff;
      text-decoration: none; }
      .wysiwyg a:hover::-moz-selection {
        text-shadow: 0.03em 0 initial, -0.03em 0 initial, 0 0.03em initial, 0 -0.03em initial, 0.06em 0 initial, -0.06em 0 initial, 0.09em 0 initial, -0.09em 0 initial, 0.12em 0 initial, -0.12em 0 initial, 0.15em 0 initial, -0.15em 0 initial;
        display: block;
        width: 100%;
        background: initial; }
      .wysiwyg a:hover::selection {
        text-shadow: 0.03em 0 initial, -0.03em 0 initial, 0 0.03em initial, 0 -0.03em initial, 0.06em 0 initial, -0.06em 0 initial, 0.09em 0 initial, -0.09em 0 initial, 0.12em 0 initial, -0.12em 0 initial, 0.15em 0 initial, -0.15em 0 initial;
        display: block;
        width: 100%;
        background: initial; }
      .wysiwyg a:hover *,
      .wysiwyg a:hover *::after, .wysiwyg a:hover::after,
      .wysiwyg a:hover *::before, .wysiwyg a:hover::before {
        text-shadow: none; }
      .wysiwyg a:hover:visited {
        color: #63a7ff; }

.bg__blue-whale {
  color: #fff;
  background-color: #05234a; }

.bg__gradient--blue {
  color: #fff;
  background: linear-gradient(45deg, #093259 0%, rgba(80, 114, 155, 0) 100%), #50729b; }
  .bg__gradient--blue#features {
    background: -webkit-gradient(linear, left bottom, left top, from(#093259), to(rgba(80, 114, 155, 0))), #50729b;
    background: linear-gradient(0deg, #093259 0%, rgba(80, 114, 155, 0) 100%), #50729b; }

.bg__gradient--dark-blue {
  color: #fff;
  background: radial-gradient(rgba(5, 43, 89, 0), #020c43), #052b59; }

.bg__gradient--teal-blue {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#12293D), color-stop(25%, #0E3A4C), color-stop(50%, #0B4A5B), to(#03717E)), #07184c;
  background: linear-gradient(90deg, #12293D 0%, #0E3A4C 25%, #0B4A5B 50%, #03717E 100%), #07184c; }

.bg__gradient--green {
  color: #fff;
  background: -webkit-gradient(linear, left bottom, left top, from(#88c19b), to(rgba(167, 208, 116, 0))), #a7d074;
  background: linear-gradient(0deg, #88c19b 0%, rgba(167, 208, 116, 0) 100%), #a7d074; }

.bg__gradient--green-2 {
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(rgba(167, 208, 116, 0)), color-stop(50%, #a6c978), to(#1e8871)), #c3d058;
  background: linear-gradient(90deg, rgba(167, 208, 116, 0) 0%, #a6c978 50%, #1e8871 100%), #c3d058; }

.bg__gradient--gray {
  background: -webkit-gradient(linear, left top, right top, from(#e8eef4), to(rgba(250, 251, 252, 0))), #fafbfc;
  background: linear-gradient(90deg, #e8eef4 0%, rgba(250, 251, 252, 0) 100%), #fafbfc; }

.bg__gradient--dark-gray {
  background: linear-gradient(45deg, #d5dbe3 0%, rgba(232, 238, 244, 0) 100%), #e8eef4; }

.bg__gradient--badges {
  color: #fff;
  background: linear-gradient(45deg, rgba(30, 136, 113, 0.15) 0%, rgba(116, 119, 252, 0.15) 30.92%, rgba(120, 161, 66, 0.15) 74.23%, rgba(52, 101, 142, 0.35) 100%), linear-gradient(45deg, rgba(60, 174, 219, 0.75) 0%, rgba(41, 93, 189, 0.75) 100%), #0e1f37; }

.bg__stars {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -webkit-transform: scale(0.85);
          transform: scale(0.85);
  -webkit-transform-origin: center;
          transform-origin: center;
  opacity: 0; }
  .bg__stars::after {
    display: block;
    width: 100%;
    background: url("../images/stars.svg") center center/cover no-repeat;
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .no-js .bg__stars {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1; }

.bg__grid.bg__gradient--green::after {
  display: block;
  width: 100%;
  background: linear-gradient(#1e8871 1px, transparent 1px), linear-gradient(90deg, #1e8871 1px, transparent 1px), linear-gradient(#1e8871 1px, transparent 1px), linear-gradient(90deg, #1e8871 1px, transparent 1px);
  background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
  background-size: 90px 90px, 90px 90px, 15px 15px, 15px 15px;
  opacity: 0.15;
  content: ' ';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.bg__grid.bg__gradient--dark-blue::after {
  display: block;
  width: 100%;
  background: linear-gradient(#020c43 1px, transparent 1px), linear-gradient(90deg, #020c43 1px, transparent 1px), linear-gradient(#020c43 1px, transparent 1px), linear-gradient(90deg, #020c43 1px, transparent 1px);
  background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
  background-size: 90px 90px, 90px 90px, 15px 15px, 15px 15px;
  opacity: 0.15;
  content: ' ';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.bg__radial-grid {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .bg__radial-grid::after {
    display: block;
    width: 100%;
    height: auto;
    margin: auto auto 0;
    background: url("../images/radial-grid.svg") no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.25;
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }

.bg__clouds {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  .bg__clouds::after {
    display: block;
    width: 100%;
    height: 100%;
    margin: auto auto 0;
    background: url("../images/clouds.svg") center center/cover no-repeat;
    opacity: 0.2;
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }

.bg__feature-clouds,
.bg__feature-birds,
.bg__feature-stars {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  max-width: 1600px;
  height: calc(100% - 20em);
  margin: 0 auto auto;
  -webkit-transform-origin: top center;
          transform-origin: top center; }

.bg__wave {
  padding-bottom: 5em; }
  .bg__wave::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 5em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 1440 160'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='-196.73' x2='-197.73' y1='837.94' y2='837.94' gradientTransform='matrix(1440 0 0 -160 284730.37 134150.78)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23fafbfc'/%3E%3Cstop offset='1' stop-color='%23e8eef4'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg data-name='Layer 2'%3E%3Cpath fill='url(%23a)' d='M0 27.37c231.35-37 479.15-40 637.5 13.11 163.78 55 273.68 75.75 370.23 67.37S1165.86 80.7 1233 80.7c114.29 0 207 35.53 207 35.53V160H0z' data-name='Layer 1'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    content: ' ';
    -webkit-transform: translateY(1px);
            transform: translateY(1px); }
  @media (min-width: 768px) {
    .bg__wave {
      padding-bottom: 10em; }
      .bg__wave::after {
        height: 10em; } }

.bg__wave--green {
  padding-bottom: 10em !important; }
  .bg__wave--green::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 1440 160'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='-196.73' x2='-197.73' y1='837.94' y2='837.94' gradientTransform='matrix(1440 0 0 -160 284730.37 134150.78)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%234383A0'/%3E%3Cstop offset='1' stop-color='%2372A895'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg data-name='Layer 2'%3E%3Cpath fill='url(%23a)' d='M0 27.37c231.35-37 479.15-40 637.5 13.11 163.78 55 273.68 75.75 370.23 67.37S1165.86 80.7 1233 80.7c114.29 0 207 35.53 207 35.53V160H0z' data-name='Layer 1'/%3E%3C/g%3E%3C/svg%3E"); }

.bg__hill {
  padding-bottom: 10em; }
  .bg__hill::before {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 10em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 1440 320'%3E%3Cg data-name='Layer 2'%3E%3Cpath fill='%23203959' d='M1440 58.09V320H0v-55q108.17-138 264.68-104.6C840.47 283.29 993.12-151.62 1440 58.09z' data-name='Layer 1'/%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    content: ' ';
    opacity: 0.2; }
  @media (min-width: 768px) {
    .bg__hill {
      padding-bottom: 20em; }
      .bg__hill::before {
        height: 15em; } }

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 62.5%; }

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

body {
  width: 100%;
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  font-size: 1.6rem;
  font-family: 'kyrial-sans-pro', sans-serif; }
  body.no-scroll {
    overflow: hidden; }

::-moz-selection {
  background: rgba(80, 109, 155, 0.5); }

::selection {
  background: rgba(80, 109, 155, 0.5); }

.svg__spritesheet {
  display: none; }

.wrapper {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1441px;
  margin: 0 auto; }

.ratio-box {
  position: relative;
  display: block;
  width: 100%;
  height: 0; }
  .ratio-box > *:not(.block__image--absolute) {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%; }

@-webkit-keyframes fadeIn {
  75% {
    opacity: 1; }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; } }

@keyframes fadeIn {
  75% {
    opacity: 1; }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1; } }

@-webkit-keyframes fadeGrid {
  from {
    opacity: 0; }
  to {
    opacity: 0.25; } }

@keyframes fadeGrid {
  from {
    opacity: 0; }
  to {
    opacity: 0.25; } }

/* Captions */
figure {
  display: block;
  position: relative;
  float: left;
  overflow: hidden;
  /* margin: 0 20px 20px 0; */
  margin: 0; }

figure img {
  width: 100%; }

figcaption {
  position: absolute;
  width: 100%;
  background: black;
  background: rgba(0, 0, 0, 0.75);
  color: white;
  padding: 15px 25px;
  opacity: 0;
  -webkit-transition: all 0.6s ease;
  -moz-transition: all 0.6s ease;
  -o-transition: all 0.6s ease; }

figcaption.big-text {
  font-size: 20px; }

figure:hover figcaption {
  opacity: 1; }

.cap-bot:before {
  bottom: 10px;
  left: 10px; }

.cap-bot figcaption {
  left: 0;
  bottom: -30%; }

.cap-bot:hover figcaption {
  bottom: 0; }

.cap-bot-static:before {
  bottom: 10px;
  left: 10px; }

.cap-bot-static figcaption {
  opacity: 1;
  left: 0;
  bottom: 0; }

/* Basic Lightbox */
/* Style the Image Used to Trigger the Modal */
.popup-modal-base-img {
  border-radius: 5px;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s; }

.popup-modal-base-img:hover {
  opacity: 0.7; }

/* The Modal (background) */
.popup-modal {
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 4;
  /* Sit on top */
  padding-top: 100px;
  /* Location of the box */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  overflow: auto;
  /* Enable scroll if needed */
  background-color: black;
  /* Fallback color */
  background-color: rgba(0, 0, 0, 0.9);
  /* Black w/ opacity */ }

/* Modal Content (Image) */
.popup-modal-content {
  margin: auto;
  display: block;
  max-height: 80vh;
  /*width: 90%;*/
  /*max-width: 700px;*/ }

/* Caption of Modal Image (Image Text) - Same Width as the Image 
.popup-modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}
*/
/* Add Animation - Zoom in the Modal */
.popup-modal-content, .popup-modal-caption {
  -webkit-animation-name: zoom;
          animation-name: zoom;
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s; }

@-webkit-keyframes zoom {
  from {
    -webkit-transform: scale(0);
            transform: scale(0); }
  to {
    -webkit-transform: scale(1);
            transform: scale(1); } }

@keyframes zoom {
  from {
    -webkit-transform: scale(0);
            transform: scale(0); }
  to {
    -webkit-transform: scale(1);
            transform: scale(1); } }

/* The Close Button */
.popup-modal-close {
  z-index: 5;
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 50px;
  color: #f1f1f1;
  font-size: 100px;
  font-weight: bold;
  -webkit-transition: 0.3s;
  transition: 0.3s; }

.popup-modal-close:hover,
.popup-modal-close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer; }

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
  .popup-modal-content {
    width: 100%; }
  .popup-modal-close {
    font-size: 50px; } }

/* Post Launch Event */
.post-launch-header.hero {
  min-height: 65vh;
  background: -webkit-gradient(linear, left top, right top, from(#d2e4ff), to(rgba(250, 251, 252, 0))), #ebf5ff;
  background: linear-gradient(90deg, #d2e4ff 0%, rgba(250, 251, 252, 0) 100%), #ebf5ff; }

.post-launch-header .hero__inner {
  padding-top: 10px;
  padding-bottom: 10px; }

.post-launch-header .hero__content-box--wide {
  max-width: 700px; }

.post-launch-header h1.hero__title {
  font-size: 46px;
  margin-bottom: 18px; }

.post-launch-header h2.hero__title {
  text-align: left;
  color: #506d9b;
  line-height: 36px;
  font-size: 24px; }

/* Smaller font on smaller screens */
@media only screen and (max-width: 700px) {
  .post-launch-header.hero {
    min-height: 55vh; }
  .post-launch-header h1.hero__title {
    font-size: 28px;
    margin-bottom: 16px; }
  .post-launch-header h2.hero__title {
    line-height: 28px;
    font-size: 18px; } }

.post-launch-body a {
  color: #42c7a9;
  font-size: inherit; }

.post-launch-body a:visited {
  color: #42c7a9; }

.post-launch-body .card__content {
  padding: 0; }

.post-launch-body .post-launch-card-footer {
  margin: 0;
  margin-top: -3px;
  width: 100%;
  text-align: center;
  background-color: #3868aa; }

.post-launch-body .post-launch-card-footer a {
  display: block;
  padding: 10px 15px;
  color: white;
  background-color: #3868aa;
  -webkit-transition: background-color .25s;
  transition: background-color .25s; }

.post-launch-body .post-launch-card-footer a:hover {
  background-color: #4a80c9; }

/* Fresh Start Contact-Us Page Template */
.hero.hero--fresh-start-contact-us {
  min-height: calc(40vh + 100px); }

.hero--fres-start-contact-us .block__content {
  display: initial; }

/* Fresh Start Page Template */
.page-template-fresh-start-tmpl #change .block__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 calc(50% - 2.4rem);
          flex: 0 0 calc(50% - 2.4rem);
  width: calc(100% + 2.4rem);
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-flow: row wrap;
      flex-flow: row wrap;
  -ms-flex-pack: distribute;
      justify-content: space-around; }
  .page-template-fresh-start-tmpl #change .block__content .block__intro, .page-template-fresh-start-tmpl #change .block__content .block__image {
    display: block;
    width: 45%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column; }
  .page-template-fresh-start-tmpl #change .block__content .block__intro {
    max-width: 900px; }
  .page-template-fresh-start-tmpl #change .block__content .block__image {
    max-width: 800px; }

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