/*********************
BREAKPOINTS
*********************/
html,
body {
  position: relative;
  background: #F0F0F0;
  overflow-y: overlay;
  overflow-x: hidden;
  /* Optional: show position indicator in red */ }
  html.full-height,
  body.full-height {
    height: 100%;
    background: transparent; }
    @media (max-width: 768px) {
      html.full-height,
      body.full-height {
        background: #F0F0F0; } }
  html#form-body,
  body#form-body {
    overflow-y: hidden; }
  html::-webkit-scrollbar,
  body::-webkit-scrollbar {
    position: absolute;
    width: 12px;
    height: 8px;
    margin-right: 6px;
    /* Remove scrollbar space */
    background: transparent;
    /* Optional: just make scrollbar invisible */ }
  html::-webkit-scrollbar-thumb,
  body::-webkit-scrollbar-thumb {
    background: #2777D4;
    border-radius: 12px; }

nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 12px 0px;
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
  z-index: 999999; }
  nav .nav-container {
    width: 80%;
    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;
    margin: 0px 50px;
    margin: auto;
    position: relative; }
    @media (max-width: 550px) {
      nav .nav-container {
        width: 90%;
        margin: auto; } }
  nav .nav-logo {
    position: absolute;
    left: 0;
    font-size: 32px;
    font-family: "Jost", "Futura", "Times New Roman", serif;
    font-weight: 500;
    text-decoration: none;
    color: #2777D4; }
    @media (max-width: 1280px) {
      nav .nav-logo {
        position: relative; } }
    @media (max-width: 550px) {
      nav .nav-logo {
        display: none; } }
  nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    font-family: "Jost", "Futura", "Times New Roman", serif;
    font-weight: 600;
    -webkit-padding-start: 0;
    padding-inline-start: 0;
    margin: auto;
    -ms-flex-pack: distribute;
    justify-content: space-around; }
    @media (max-width: 960px) {
      nav ul {
        position: absolute;
        right: 0;
        display: inline-block;
        margin: 0; } }
    @media (max-width: 550px) {
      nav ul {
        position: relative;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: auto;
        width: 100%; } }
    nav ul a {
      text-decoration: none; }
    nav ul .nav-item {
      text-decoration: none;
      font-size: 22px;
      -webkit-box-flex: 0;
      -ms-flex: 0 0 10px;
      flex: 0 0 10px;
      -webkit-padding-start: 0;
      padding-inline-start: 0;
      list-style: none;
      margin: 0px 50px;
      color: #8C8C8C;
      -webkit-transition: all 0.4s;
      -o-transition: all 0.4s;
      transition: all 0.4s; }
      nav ul .nav-item.active {
        color: #2777D4;
        border-bottom: 3px solid #2777D4; }
      nav ul .nav-item:hover {
        color: #4DA8FD; }
      @media (max-width: 1280px) {
        nav ul .nav-item {
          margin: 0px 35px; } }
      @media (max-width: 960px) {
        nav ul .nav-item {
          display: inline-block;
          margin-right: 0;
          margin-left: 50px; } }
      @media (max-width: 768px) {
        nav ul .nav-item {
          margin-right: 0;
          margin-left: 40px; } }
      @media (max-width: 550px) {
        nav ul .nav-item {
          margin-right: 0;
          margin-left: 0px;
          font-size: 18px; } }
  nav #logos {
    position: absolute;
    right: 0px;
    left: unset;
    top: unset; }
    nav #logos img {
      height: 35px; }
      @media (max-width: 1280px) {
        nav #logos img {
          height: 30px; } }
      nav #logos img:nth-child(1) {
        margin-right: 15px; }
        @media (max-width: 1280px) {
          nav #logos img:nth-child(1) {
            margin-right: 10px; } }
    @media (max-width: 1280px) {
      nav #logos {
        position: relative; } }
    @media (max-width: 960px) {
      nav #logos {
        display: none; } }

.sidebar {
  text-align: center; }
  .sidebar #step-list {
    width: 100%;
    background: #FFFFFF;
    border-radius: 10px;
    -webkit-box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 35px;
    text-align: left; }
    .sidebar #step-list .step {
      position: relative;
      color: #8C8C8C;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      min-height: 68px;
      padding: 0px 15px;
      cursor: pointer; }
      .sidebar #step-list .step.active {
        color: #fff; }
        .sidebar #step-list .step.active .step-icon {
          -webkit-filter: invert(1);
          filter: invert(1);
          opacity: 1; }
      .sidebar #step-list .step .step-icon {
        height: 38px;
        opacity: 0.5;
        -webkit-filter: invert(0);
        filter: invert(0);
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s; }
      .sidebar #step-list .step .step-content {
        margin-left: 20px;
        z-index: 99;
        -webkit-transition: all 0.4s;
        -o-transition: all 0.4s;
        transition: all 0.4s; }
        .sidebar #step-list .step .step-content h1 {
          font-family: "Jost", "Futura", "Times New Roman", serif;
          font-weight: 600;
          font-size: 21px;
          line-height: 33px;
          margin: 0; }
        .sidebar #step-list .step .step-content p {
          font-family: "Martel Sans", "Helvetica", "arial", sans-serif;
          font-weight: bold;
          font-size: 15px;
          margin: 0; }
    .sidebar #step-list #active-bg {
      position: absolute;
      top: 0;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      width: 100%;
      height: 100%;
      background: #2777D4;
      margin-left: -15px;
      z-index: 0;
      -webkit-transition: all 0.4s;
      -o-transition: all 0.4s;
      transition: all 0.4s; }
  .sidebar.form-steps #step-list .step .step-content {
    margin-left: 6px; }
  .sidebar.form-steps .content p {
    font-size: 14px; }
  .sidebar #lhub-link {
    color: #4DA8FD;
    font-family: "Jost", "Futura", "Times New Roman", serif;
    font-size: 22px;
    font-weight: 600;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s; }
    .sidebar #lhub-link:hover {
      color: #2777D4; }

.content {
  color: #373A40; }
  .content .section {
    margin-bottom: 120px;
    display: none; }
    .content .section.form {
      display: block;
      opacity: 1; }
      .content .section.form.init {
        display: none;
        opacity: 1; }
    @media (max-width: 960px) {
      .content .section {
        text-align: center; } }
    .content .section.form {
      margin-bottom: 0;
      text-align: center; }
      .content .section.form p {
        max-width: none; }
    .content .section#overview, .content .section#form1 {
      display: block; }
    .content .section #thirdparty {
      display: none; }
    .content .section .content-block {
      margin-bottom: 50px; }
    .content .section .form-container {
      position: relative;
      width: 100%;
      height: 80vh;
      border: none; }
      .content .section .form-container button {
        font-family: "Martel Sans", "Helvetica", "arial", sans-serif;
        font-weight: 600;
        font-size: 12px;
        border: none;
        position: absolute;
        top: 3px;
        right: 4px;
        padding: 4px;
        background: #2777D4;
        color: white; }
        .content .section .form-container button img {
          height: 16px;
          margin-left: 6px;
          vertical-align: sub; }
    .content .section iframe {
      width: 100%;
      height: 100%;
      border: none; }
  .content .illustration {
    max-width: 250px;
    position: absolute;
    bottom: 250px;
    right: 80px; }
    .content .illustration.portrait {
      max-height: 300px; }
    @media (max-width: 1440px) {
      .content .illustration {
        position: relative;
        bottom: unset;
        right: unset;
        margin-top: 50px;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%); } }
    @media (max-width: 960px) {
      .content .illustration {
        left: unset;
        -webkit-transform: unset;
        -ms-transform: unset;
        transform: unset; } }
  .content a {
    color: #4DA8FD;
    font-weight: 600;
    text-decoration: none;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s; }
    .content a:hover {
      color: #2777D4; }
  .content h1 {
    font-family: "Jost", "Futura", "Times New Roman", serif;
    font-weight: 400;
    text-align: left; }
    @media (max-width: 550px) {
      .content h1 {
        font-size: 1.6em; } }
  .content p,
  .content li {
    font-family: "Martel Sans", "Helvetica", "arial", sans-serif;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
    max-width: 610px;
    text-align: left; }
  .content ul.comparison {
    width: 90%; }
    .content ul.comparison li {
      -webkit-transition: all 0.4s;
      -o-transition: all 0.4s;
      transition: all 0.4s;
      min-height: 60px;
      padding: 8px; }
      @media (max-width: 550px) {
        .content ul.comparison li {
          padding: 0px;
          min-height: 120px;
          font-size: 14px; } }
      .content ul.comparison li.comparing {
        background: rgba(0, 0, 0, 0.1);
        color: #373A40; }
  .content ul.no-style {
    -webkit-padding-start: 0;
    padding-inline-start: 0; }
    .content ul.no-style li {
      list-style: none; }
  .content .mepp-comparison {
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    transition: all 0.2s;
    color: #8C8C8C; }
    .content .mepp-comparison.active {
      color: #373A40; }
      .content .mepp-comparison.active h1 {
        color: #2777D4; }
    .content .mepp-comparison h1 {
      padding: 8px;
      padding-top: 0px;
      color: #8C8C8C;
      -webkit-transition: all 0.4s;
      -o-transition: all 0.4s;
      transition: all 0.4s; }
      @media (max-width: 1280px) {
        .content .mepp-comparison h1 {
          font-size: 1.9em; } }
      @media (max-width: 550px) {
        .content .mepp-comparison h1 {
          font-size: 20px;
          min-height: 40px;
          padding: 0; } }
  .content .resource-block {
    margin-bottom: 55px; }
    .content .resource-block .resource-link {
      font-family: "Jost", "Futura", "Times New Roman", serif;
      font-weight: 400;
      font-size: 22px; }

.accordion {
  position: relative;
  text-align: left; }
  .accordion h2 {
    display: inline-block;
    margin: 20px 0px;
    color: #2777D4;
    font-family: "Jost", "Futura", "Times New Roman", serif;
    font-weight: 600;
    cursor: pointer;
    text-align: left; }
  .accordion .accordion-content {
    position: relative;
    display: none;
    cursor: initial;
    margin-bottom: 20px; }
  .accordion .accordion-icon {
    width: 20px;
    display: inline-block;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s; }
  .accordion ul.checks {
    list-style-image: url(../img/check.svg); }
  .accordion ul.half {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 50%;
    float: left; }
    .accordion ul.half li {
      min-width: unset;
      margin-bottom: 12px; }
  .accordion.expanded .accordion-icon {
    -webkit-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    transform: rotate(-180deg); }

#homepage {
  position: absolute;
  width: 100vw;
  height: 100vh;
  overflow-y: scroll; }
  @media (max-width: 550px) {
    #homepage {
      overflow-y: auto; } }
  #homepage #video-container {
    background: #57b1fd;
    position: fixed;
    right: 0;
    width: 55vw;
    height: 100vh;
    background-image: url(../img/bg.png);
    background-size: cover;
    background-position: right;
    background-repeat: no-repeat;
    z-index: -99; }
    @media (max-width: 768px) {
      #homepage #video-container {
        display: none; } }
    #homepage #video-container video {
      position: absolute;
      right: 0px;
      max-height: 100vh; }
  #homepage #slash {
    position: fixed;
    top: 0;
    left: -30%;
    width: 100%;
    height: 100vh;
    -webkit-transform: skewX(25deg);
    -ms-transform: skewX(25deg);
    transform: skewX(25deg);
    background: #F0F0F0;
    -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.35);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.35); }
    @media (max-width: 768px) {
      #homepage #slash {
        display: none; } }

#logos {
  position: absolute;
  left: 0;
  top: 0; }
  @media (max-width: 550px) {
    #logos {
      margin-bottom: 15px; } }
  #logos img {
    height: 55px;
    margin: 0px 12px;
    display: inline-block; }
    @media (max-width: 550px) {
      #logos img {
        height: 35px; } }

#landing {
  position: relative;
  margin: inherit;
  left: 18%;
  max-width: 500px;
  text-align: center; }
  @media (max-width: 1280px) {
    #landing {
      left: 10%; } }
  @media (max-width: 768px) {
    #landing {
      max-width: none;
      left: unset;
      margin: auto; } }
  #landing #title-bar {
    margin-bottom: 25px;
    position: relative;
    z-index: 999; }
    #landing #title-bar h1 {
      font-family: "Jost", "Futura", "Times New Roman", serif;
      font-weight: 400;
      font-size: 160px;
      color: #2777D4;
      margin-bottom: 0px;
      text-align: center; }
      @media (max-width: 1440px) {
        #landing #title-bar h1 {
          margin-top: 45px; } }
      @media (max-width: 550px) {
        #landing #title-bar h1 {
          font-size: 100px;
          margin-top: 35px; } }
    #landing #title-bar p {
      font-family: "Jost", "Futura", "Times New Roman", serif;
      margin: 0;
      color: #373A40;
      font-weight: 600;
      font-size: 22px;
      text-align: center; }
      @media (max-width: 550px) {
        #landing #title-bar p {
          font-size: 16px;
          margin-top: -10px; } }
  #landing button#view-process {
    cursor: pointer;
    padding: 20px 25px;
    font-family: "Jost", "Futura", "Times New Roman", serif;
    font-weight: 500;
    font-size: 30px;
    color: #2777D4;
    border: 3px solid #2777D4;
    background: transparent;
    -webkit-box-shadow: 0px 4px 0px #2777D4;
    box-shadow: 0px 4px 0px #2777D4;
    border-radius: 10px;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s; }
    @media (max-width: 550px) {
      #landing button#view-process {
        font-size: 20px; } }
    #landing button#view-process:hover {
      background: #4DA8FD;
      color: white; }
  #landing #landing-content {
    position: relative;
    z-index: 999; }
  #landing #blurb {
    margin-bottom: 25px;
    text-align: center; }
    @media (max-width: 550px) {
      #landing #blurb {
        margin-bottom: 50px; } }
    @media (max-width: 550px) {
      #landing #blurb p {
        font-size: 14px;
        text-align: center; } }
  #landing #cta {
    text-align: center; }
    #landing #cta p {
      max-width: none;
      text-align: center; }
      @media (max-width: 550px) {
        #landing #cta p {
          font-size: 14px;
          margin-top: 25px;
          text-align: center; } }
  #landing #additional-links {
    position: relative;
    z-index: 999;
    margin-top: 50px;
    text-align: center; }
    #landing #additional-links p {
      max-width: none;
      text-align: center; }
      @media (max-width: 550px) {
        #landing #additional-links p {
          font-size: 14px;
          text-align: center; } }

#subnav {
  margin-bottom: 40px; }
  #subnav .subnav-item {
    display: inline-block;
    color: #8C8C8C;
    font-weight: 600;
    font-family: "Jost", "Futura", "Times New Roman", serif;
    font-size: 22px;
    margin-right: 50px;
    cursor: pointer; }
    @media (max-width: 960px) {
      #subnav .subnav-item {
        margin: 0px 12px;
        margin-bottom: 12px; } }
    #subnav .subnav-item.active {
      color: #2777D4; }

#resources-img {
  width: 250px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

.container {
  width: 80%;
  max-width: 1280px;
  margin: auto; }
  @media (max-width: 550px) {
    .container {
      width: 90%;
      margin: auto; } }
  .container.resource-container {
    max-width: 550px; }
    .container.resource-container.content p {
      max-width: none; }
    .container.resource-container.content .title-icon {
      display: inline-block;
      height: 30px;
      margin-left: 5px;
      vertical-align: top; }
      @media (max-width: 550px) {
        .container.resource-container.content .title-icon {
          height: 25px; } }
  .container.spaced {
    margin-top: 100px; }
    @media (max-width: 550px) {
      .container.spaced {
        margin-top: 75px; } }
  .container .sidebar {
    position: fixed;
    width: 350px;
    float: left; }
    @media (max-width: 960px) {
      .container .sidebar {
        position: relative;
        width: 100%; } }
  .container .aside {
    text-align: left; }
  .container .process-content {
    width: 70%;
    float: left;
    padding: 0px 50px;
    margin-left: 350px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }
    .container .process-content.form-content {
      width: 75%;
      position: relative;
      padding-right: 0px; }
    @media (max-width: 960px) {
      .container .process-content {
        width: 100%;
        margin: 0;
        padding: 0;
        margin-top: 50px; } }
    .container .process-content #form-loader {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      margin: 0px 50px;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      height: 100vh;
      background: #f2f2f2;
      text-align: center;
      -webkit-animation: lazyload 3s linear infinite;
      animation: lazyload 3s linear infinite; }

@-webkit-keyframes lazyload {
  0% {
    background: #f2f2f2; }
  70% {
    background: #ffffff; }
  100% {
    background: #f2f2f2; } }

@keyframes lazyload {
  0% {
    background: #f2f2f2; }
  70% {
    background: #ffffff; }
  100% {
    background: #f2f2f2; } }
      .container .process-content #form-loader h3 {
        margin-top: 50px;
        font-family: "Martel Sans", "Helvetica", "arial", sans-serif; }
      .container .process-content #form-loader .lds-dual-ring {
        position: absolute;
        top: 25%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        display: inline-block;
        width: 64px;
        height: 64px; }
      .container .process-content #form-loader .lds-dual-ring:after {
        content: " ";
        display: block;
        width: 100px;
        height: 100px;
        margin: 1px;
        border-radius: 50%;
        border: 5px solid #2777D4;
        border-color: #2777D4 transparent #2777D4 transparent;
        -webkit-animation: lds-dual-ring 1.2s linear infinite;
        animation: lds-dual-ring 1.2s linear infinite; }

@-webkit-keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes lds-dual-ring {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg); } }
  .container .flex-30 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 30%;
    flex: 1 1 30%; }
    @media (max-width: 960px) {
      .container .flex-30 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%; } }
  .container .flex-50 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%; }
  .container .flex-70 {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 70%;
    flex: 1 1 70%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 75px; }
    @media (max-width: 960px) {
      .container .flex-70 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        padding: 0; } }

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex; }
  @media (max-width: 960px) {
    .flex.adaptable {
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
      -ms-flex-direction: column;
      flex-direction: column; } }

.mobile {
  display: none; }
  @media (max-width: 960px) {
    .mobile {
      display: block; } }
