/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1.2; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* z-index values */
/* media query mixin */
@keyframes show-flex {
  0% {
    display: none;
    opacity: 0; }
  100% {
    opacity: 1;
    display: flex; } }

@keyframes show-block {
  0% {
    display: none;
    opacity: 0; }
  100% {
    opacity: 1;
    display: block; } }

/* style guide styles */
/* headers */
.header-1 {
  font-size: 55px;
  font-weight: bold;
  letter-spacing: -0.55px; }
  @media (max-width: 575px) {
    .header-1 {
      font-size: 40px; } }

.header-2 {
  font-size: 40px;
  font-weight: bold;
  letter-spacing: -0.55px; }
  @media (max-width: 575px) {
    .header-2 {
      font-size: 30px; } }

.header-3 {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: -0.55px; }

.header-4 {
  font-size: 24px;
  font-weight: bold; }

/* sub header */
.subheader {
  font-size: 18px; }
  .subheader p {
    font-size: 18px; }

p.body-text-large {
  font-size: 22px; }
  @media (max-width: 991px) {
    p.body-text-large {
      font-size: 18px; } }

p.text-black {
  color: #000000; }

p.text-white {
  color: #ffffff; }

p.narrow {
  max-width: 800px; }

p.narrow-preview {
  max-width: 950px; }

p.centered {
  margin: 0 auto; }

/* buttons */
.button {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  text-decoration: none;
  white-space: nowrap; }

.button-primary {
  -webkit-appearance: none;
  cursor: pointer;
  margin: 5px 0;
  padding: 15px 30px;
  border-radius: 25px;
  background-color: #147a9e;
  color: #fff;
  font-weight: bold;
  transition: background-color 400ms ease;
  max-width: 100%;
  text-align: center; }
  .button-primary:hover, .button-primary:active, .button-primary:focus {
    color: #fff;
    background-color: #1D485D; }
  .button-primary:visited {
    color: #fff; }
  .button-primary.bordered {
    border: 1px solid #47aaca; }
  .button-primary.dark {
    background-color: #1b475e;
    border: 1px solid transparent; }
    .button-primary.dark:hover, .button-primary.dark:active, .button-primary.dark:focus {
      background-color: #000; }
  .button-primary .icon {
    display: inline-block;
    color: #fff;
    margin-left: 10px;
    margin-right: -5px; }
  @media (max-width: 575px) {
    .button-primary {
      width: 100%;
      padding: 15px 5px; } }

.button-outline {
  -webkit-appearance: none;
  cursor: pointer;
  border: solid 1px #85c1d6;
  border-radius: 25px;
  color: #02698c;
  margin: 5px 0;
  padding: 15px 30px;
  font-weight: bold;
  text-align: center;
  transition: background-color 400ms ease; }
  .button-outline:visited {
    color: #02698c; }
  .button-outline:hover, .button-outline:active, .button-outline:focus {
    color: #fff;
    background-color: #1D485D;
    border: solid 1px #1D485D; }
  @media (max-width: 575px) {
    .button-outline {
      width: 100%;
      padding: 15px 5px; } }

/* forms */
.form-field {
  margin: 30px 0; }
  .form-field-label {
    display: block;
    margin-bottom: 15px;
    font-weight: bold; }

.form-input {
  border: 1px solid #ccc;
  box-shadow: inset 0 1px 3px #ddd;
  border-radius: 5px;
  padding: 15px;
  width: 100%; }
  .form-input:focus {
    outline: none;
    border: 1px solid #333; }
  .form-input::placeholder {
    font-style: italic; }
  .form-input.error {
    border: 2px solid #c82018; }

.form-select {
  position: relative; }
  .form-select select {
    width: 100%;
    padding: 15px;
    padding-right: 50px;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
    .form-select select:focus {
      outline: none;
      border: 1px solid #333; }
    .form-select select::-ms-expand {
      display: none; }
  .form-select:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: '\f107';
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    pointer-events: none;
    color: #0679a0; }

.form-radio {
  margin: 20px 0;
  display: flex;
  flex-direction: row; }
  .form-radio input[type="radio"] {
    position: absolute;
    opacity: 0; }
    .form-radio input[type="radio"] + .form-radio-label {
      flex: 1;
      margin-right: 20px; }
      .form-radio input[type="radio"] + .form-radio-label:before {
        content: '';
        background: #f4f4f4;
        border-radius: 100%;
        border: 1px solid #b4b4b4;
        display: inline-block;
        width: 25px;
        height: 25px;
        position: relative;
        top: 0;
        vertical-align: middle;
        cursor: pointer;
        text-align: center;
        margin-right: 10px; }
    .form-radio input[type="radio"]:checked + .form-radio-label:before {
      background-color: #0679a0;
      box-shadow: inset 0 0 0 4px #f4f4f4; }
    .form-radio input[type="radio"]:focus + .form-radio-label:before {
      border-color: #0679a0;
      border: 2px solid #333; }
    .form-radio input[type="radio"]:disabled + .form-radio-label:before {
      box-shadow: inset 0 0 0 4px #f4f4f4;
      border-color: #b4b4b4;
      background: #b4b4b4; }

.form-checkbox {
  margin: 20px 0;
  text-align: left;
  line-height: 1.5; }
  .form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0; }
    .form-checkbox input[type="checkbox"] + .form-checkbox-label {
      display: flex; }
      .form-checkbox input[type="checkbox"] + .form-checkbox-label:before {
        content: "";
        background: #f4f4f4;
        border-radius: 4px;
        border: 1px solid #b4b4b4;
        display: inline-block;
        width: 20px;
        height: 20px;
        position: relative;
        top: 0;
        vertical-align: middle;
        cursor: pointer;
        text-align: center;
        margin-right: 10px;
        flex-shrink: 0; }
    .form-checkbox input[type="checkbox"]:checked + .form-checkbox-label:before {
      background-color: #0679a0;
      color: #fff;
      font-family: "Font Awesome 5 Free";
      font-weight: 900;
      font-size: 10px;
      line-height: 1.7;
      content: "\f00c"; }
    .form-checkbox input[type="checkbox"]:focus + .form-checkbox-label:before {
      border-color: #0679a0;
      border: 1px solid #333; }
    .form-checkbox input[type="checkbox"]:disabled + .form-checkbox-label:before {
      border-color: #b4b4b4;
      background: #b4b4b4; }

.sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute; }

html {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

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

html,
body {
  padding: 0;
  margin: 0;
  font-family: "Public Sans", sans-serif;
  font-size: 16px; }

input, ::placeholder {
  font-family: "Public Sans", sans-serif;
  font-size: 16px; }

button {
  background: none;
  border: 0; }

strong {
  font-weight: bold; }

a {
  color: #0679a0; }
  a:visited {
    color: #0679a0; }
  a:hover, a:active, a:focus {
    color: #02698c; }
  a.white {
    color: #fff; }
    a.white:visited {
      color: #fff; }
    a.white:hover, a.white:active, a.white:focus {
      color: #fff; }

p {
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: -0.4px;
  margin-bottom: 10px; }

em {
  font-style: italic; }

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

.debug {
  border: 1px solid red; }

.container {
  max-width: 1560px;
  margin: 0 auto;
  padding: 0; }

.uppercase {
  text-transform: uppercase; }

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

.hidden {
  display: none; }

.editable-content h1, .editable-content h2, .editable-content h3, .editable-content h4 {
  line-height: 1;
  margin: 15px auto; }

.editable-content ul {
  list-style-type: disc;
  list-style-position: outside;
  margin-left: 15px; }
  .editable-content ul li {
    line-height: 1.5; }

.editable-content ol {
  list-style-type: decimal;
  list-style-position: outside;
  margin-left: 15px; }
  .editable-content ol li {
    line-height: 1.5; }

.margin-top-20 {
  margin-top: 20px; }

.reduce-margin-50 {
  margin-top: -50px; }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0;
  margin-right: 0; }
  .row > * {
    padding-left: 0;
    padding-right: 0; }
  .row > .umb-grid {
    width: 100%; }
  .row > .col-md-12 {
    width: 100%; }
  .row > .col-md-6 {
    width: 50%; }
  @media screen and (max-width: 1020px) {
    .row > .col-md-6 {
      width: 100%; }
    .row > .col-sm-12 {
      width: 100%; }
    .row > .col-sm-6 {
      width: 50%; } }
  @media screen and (max-width: 700px) {
    .row > .col-sm-6 {
      width: 100%; } }

.gray-bg {
  background-color: #f6f7f9;
  height: 100%; }

.light-bg {
  background-color: #f6f6f6; }

.pad-content {
  padding: 50px; }
  @media screen and (max-width: 700px) {
    .pad-content {
      padding: 20px; } }

.divider {
  margin: 15px 0;
  height: 1px;
  background-color: #e1e1e1; }

.body-wrap {
  background-color: #f6f6f6;
  padding: 60px 50px; }
  .body-wrap > div {
    padding: 50px 220px;
    background-color: #fff;
    border-top: 6px solid #e1e1e1;
    box-shadow: -0.2px 2px 6px 0 rgba(0, 0, 0, 0.06); }
  .body-wrap.wide > div {
    padding: 50px; }

@media screen and (max-width: 1400px) {
  .body-wrap > div {
    padding: 50px 100px; } }

@media screen and (max-width: 1000px) {
  .body-wrap > div {
    padding: 50px; } }

@media screen and (max-width: 700px) {
  .body-wrap {
    padding: 20px 0; }
    .body-wrap > div {
      padding: 20px; }
    .body-wrap.wide > div {
      padding: 20px; } }

.grid-section .row .col-md-6 {
  padding-top: 5px;
  padding-bottom: 5px; }

.grid-section .width-full {
  padding-left: 30px;
  padding-right: 30px; }
  .grid-section .width-full.edge-to-edge {
    padding-left: 0px;
    padding-right: 0px; }
  .grid-section .width-full > .container {
    max-width: none; }

.grid-section .width-full-bg {
  padding-left: 30px;
  padding-right: 30px; }

.grid-section .bg-center {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

.grid-section .margin-negative-top {
  margin-top: -25px !important; }

.grid-section .margin-negative-top-50 {
  margin-top: -50px !important; }

.grid-section .margin-negative-top-150 {
  margin-top: -150px !important; }

.grid-section .margin-none {
  margin-top: 0;
  margin-bottom: 0; }

.grid-section .margin-small {
  margin-top: 25px;
  margin-bottom: 25px; }

.grid-section .margin-large {
  margin-top: 100px;
  margin-bottom: 100px; }
  @media (max-width: 575px) {
    .grid-section .margin-large {
      margin-top: 50px;
      margin-bottom: 50px; } }

.grid-section .padding-small {
  padding-top: 25px;
  padding-bottom: 25px; }

.grid-section .padding-medium {
  padding-top: 50px;
  padding-bottom: 50px; }

.grid-section .padding-large {
  padding-top: 100px;
  padding-bottom: 100px; }

.grid-section .padded-50 .row {
  padding-left: 50px;
  padding-right: 50px; }
  @media (max-width: 991px) {
    .grid-section .padded-50 .row {
      padding-left: 30px;
      padding-right: 30px; } }

.grid-section .padded-100 .row {
  padding-left: 100px;
  padding-right: 100px; }
  @media (max-width: 1199px) {
    .grid-section .padded-100 .row {
      padding-left: 50px;
      padding-right: 50px; } }
  @media (max-width: 991px) {
    .grid-section .padded-100 .row {
      padding-left: 30px;
      padding-right: 30px; } }

.grid-section .padded-200 .row {
  padding-left: 200px;
  padding-right: 200px; }
  @media (max-width: 1199px) {
    .grid-section .padded-200 .row {
      padding-left: 100px;
      padding-right: 100px; } }
  @media (max-width: 991px) {
    .grid-section .padded-200 .row {
      padding-left: 30px;
      padding-right: 30px; } }

.grid-section > div {
  margin-top: 50px;
  margin-bottom: 50px; }

.grid-section > div:first-child {
  margin-top: 0; }

.grid-section > div:last-child {
  margin-bottom: 0; }

@media (max-width: 991px) {
  .grid-section .two-col-padded .row {
    gap: 20px; } }

.grid-section .two-col-padded .row .column > div {
  padding: 50px;
  height: 100%; }

@media (max-width: 991px) {
  .grid-section .two-col-padded .row .column {
    width: 100%; } }

@media (max-width: 575px) {
  .grid-section .two-col-padded .row .column > div {
    padding: 20px; } }

.grid-section .two-col-padded-between .row .column:first-child > div {
  padding-right: 50px; }

.grid-section .two-col-padded-between .row .column:last-child > div {
  padding-left: 50px; }

.grid-section .two-col-padded-between .row .column > div {
  height: 100%; }

@media (max-width: 991px) {
  .grid-section .two-col-padded-between .row .column {
    width: 100%; }
    .grid-section .two-col-padded-between .row .column:first-child > div {
      padding-right: 0;
      padding-bottom: 20px; }
    .grid-section .two-col-padded-between .row .column:last-child > div {
      padding-left: 0;
      padding-top: 20px; } }

.grid-section .two-col .row {
  flex-wrap: nowrap;
  column-gap: 50px;
  justify-content: space-between; }
  @media (max-width: 991px) {
    .grid-section .two-col .row {
      flex-wrap: wrap; } }
  .grid-section .two-col .row .col-md-8 {
    width: 100%;
    flex-shrink: 1; }
    @media (max-width: 991px) {
      .grid-section .two-col .row .col-md-8 {
        margin-bottom: 50px; } }
  .grid-section .two-col .row .col-md-4 {
    min-width: 430px;
    width: 430px;
    padding: 30px;
    background-color: #f5f5f5; }
    @media (max-width: 991px) {
      .grid-section .two-col .row .col-md-4 {
        min-width: auto;
        width: 100%; } }
    @media (max-width: 575px) {
      .grid-section .two-col .row .col-md-4 {
        padding: 15px; } }
    .grid-section .two-col .row .col-md-4.column > div {
      height: 100%; }

.grid-section .two-col .clearfix:after {
  display: none; }

@media (max-width: 767px) {
  .grid-section .three-col-padded .row {
    gap: 20px; } }

.grid-section .three-col-padded .row .column > div {
  padding: 50px;
  height: 100%; }

.grid-section .cell__text-white {
  color: white; }

.notification {
  background-color: #ffe060;
  display: flex; }
  .notification > div {
    padding: 10px; }
  .notification.hidden {
    display: none; }

.notification-icon .icon {
  margin-left: 40px;
  margin-top: 2px;
  width: 20px;
  height: 20px;
  font-size: 20px; }

.notification-content {
  width: 100%; }
  .notification-content strong {
    font-weight: bold; }
  .notification-content p {
    display: inline;
    line-height: 1.5; }

.notification-close {
  cursor: pointer; }
  .notification-close .icon {
    width: 20px;
    height: 20px;
    font-size: 25px; }

@media screen and (max-width: 1023px) {
  .notification-icon .icon {
    margin-left: 0px; } }

.nav {
  position: relative;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  background-color: #0679a0; }

.nav-header {
  position: relative;
  display: flex;
  margin: 0 40px;
  color: #fff;
  width: 100%; }
  @media screen and (max-width: 1200px) {
    .nav-header {
      display: block;
      margin-top: 25px; } }
  @media screen and (max-width: 1025px) {
    .nav-header {
      margin: 0px; } }

.nav-header__logo {
  padding-right: 40px;
  padding-left: 15px;
  display: flex;
  align-items: center; }
  .nav-header__logo img {
    width: 220px; }
  .nav-header__logo-img {
    display: flex;
    align-items: flex-end; }
  .nav-header__logo-search, .nav-header__logo-bars {
    display: none; }
    .nav-header__logo-search .icon, .nav-header__logo-bars .icon {
      padding: 10px;
      font-size: 22px;
      cursor: pointer;
      width: 70px;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: show-flex 400ms ease; }
      .nav-header__logo-search .icon.close, .nav-header__logo-bars .icon.close {
        display: none;
        font-size: 25px;
        color: white;
        background-color: #02698c; }
    .nav-header__logo-search.open .icon, .nav-header__logo-bars.open .icon {
      display: none; }
    .nav-header__logo-search.open .close, .nav-header__logo-bars.open .close {
      display: flex; }
  @media screen and (max-width: 1200px) {
    .nav-header__logo img {
      width: 180px; } }
  @media screen and (max-width: 1025px) {
    .nav-header__logo {
      padding-right: 0; }
      .nav-header__logo > div {
        flex: 1;
        align-items: center; }
      .nav-header__logo img {
        width: 140px; }
      .nav-header__logo-search {
        display: flex; }
      .nav-header__logo-img {
        justify-content: flex-start; }
      .nav-header__logo-bars {
        display: flex;
        justify-content: flex-end; } }

.nav-header__content {
  width: 100%;
  display: flex;
  gap: 40px; }
  .nav-header__content > div {
    display: flex;
    align-items: center; }
  @media screen and (max-width: 1200px) {
    .nav-header__content {
      padding-top: 0; } }
  @media screen and (max-width: 1025px) {
    .nav-header__content {
      display: none; }
      .nav-header__content.open {
        gap: 0;
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        background-color: #02698c;
        z-index: 100;
        color: white;
        animation: show-flex 400ms ease;
        box-shadow: 1px 3px 6px 0px rgba(0, 0, 0, 0.12); } }

.nav-header__content-user {
  display: none !important;
  flex-direction: column;
  align-items: flex-start !important;
  padding: 25px; }
  .nav-header__content-user > div {
    padding: 5px 0; }
  .nav-header__content-user a {
    color: #000; }
  @media screen and (max-width: 1025px) {
    .nav-header__content-user {
      display: flex !important; } }

.nav-header__content-lang {
  flex-shrink: 0; }
  @media screen and (max-width: 1025px) {
    .nav-header__content-lang {
      position: relative;
      padding: 20px 25px;
      right: 0;
      border-bottom: 1px solid #2093be; } }

@media screen and (min-width: 1026px) {
  html[lang="tl"] .nav-header__content-list > ul > li a, html[lang="tl"] .nav-header__content-list > ul > li button {
    padding: 15px 10px; } }

.nav-header__content-list {
  width: 100%; }
  .nav-header__content-list > ul {
    display: flex; }
    .nav-header__content-list > ul > li {
      position: relative;
      flex: 1;
      white-space: nowrap;
      display: flex;
      align-items: center;
      justify-content: center; }
      .nav-header__content-list > ul > li.active a {
        border-bottom: 7px solid #47aaca; }
      .nav-header__content-list > ul > li a, .nav-header__content-list > ul > li button {
        padding: 15px 25px;
        display: block;
        border: none;
        background-color: #0679a0;
        color: #fff;
        text-decoration: none;
        font-weight: 600;
        transition: background-color 400ms ease; }
        @media screen and (max-width: 1366px) {
          .nav-header__content-list > ul > li a, .nav-header__content-list > ul > li button {
            padding: 15px; } }
      .nav-header__content-list > ul > li a {
        font-size: 18px;
        padding: 60px 25px;
        border-bottom: 7px solid transparent;
        transition: all 500ms ease; }
        @media screen and (max-width: 1200px) {
          .nav-header__content-list > ul > li a {
            padding: 25px; } }
        .nav-header__content-list > ul > li a:hover {
          border-bottom: 7px solid #47aaca; }
      .nav-header__content-list > ul > li ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 101;
        min-width: 300px;
        animation: show-block 400ms ease; }
        .nav-header__content-list > ul > li ul a {
          font-weight: normal; }
      .nav-header__content-list > ul > li .icon {
        display: none; }
      .nav-header__content-list > ul > li.open button {
        background-color: #f6f5f5;
        color: #000; }
      .nav-header__content-list > ul > li.open ul {
        display: block; }
        .nav-header__content-list > ul > li.open ul a {
          background-color: #f6f5f5;
          color: #000; }
          .nav-header__content-list > ul > li.open ul a:hover {
            color: #0679a0; }
  @media screen and (max-width: 1025px) {
    .nav-header__content-list > ul {
      display: block;
      width: 100%; }
      .nav-header__content-list > ul > li {
        border-bottom: 1px solid #2093be;
        justify-content: flex-start;
        flex-direction: column;
        position: relative; }
        .nav-header__content-list > ul > li a, .nav-header__content-list > ul > li button {
          width: 100%;
          background-color: transparent;
          color: white;
          padding: 20px 25px;
          text-align: left; }
          .nav-header__content-list > ul > li a:hover, .nav-header__content-list > ul > li button:hover {
            background-color: transparent; }
        .nav-header__content-list > ul > li a {
          border-bottom: none !important;
          font-size: 20px; }
        .nav-header__content-list > ul > li ul {
          width: 100%;
          position: relative;
          animation: show-flex 400ms ease; }
          .nav-header__content-list > ul > li ul a {
            padding: 20px 40px; }
        .nav-header__content-list > ul > li .icon {
          display: block;
          position: absolute;
          top: 20px;
          font-size: 20px;
          right: 30px;
          color: #999;
          pointer-events: none; }
        .nav-header__content-list > ul > li.open button {
          background-color: transparent; }
        .nav-header__content-list > ul > li.open ul a {
          background-color: transparent; }
        .nav-header__content-list > ul > li.open .icon {
          transform: rotate(90deg);
          transition: transform 400ms ease; } }

@media screen and (min-width: 1026px) {
  html[lang="tl"] .nav-header__content-search, html[lang="fr"] .nav-header__content-search, html[lang="de"] .nav-header__content-search, html[lang="ja"] .nav-header__content-search, html[lang="km"] .nav-header__content-search, html[lang="ru"] .nav-header__content-search, html[lang="es"] .nav-header__content-search, html[lang="vi"] .nav-header__content-search {
    justify-content: flex-end;
    padding-right: 0; } }

@media screen and (min-width: 1026px) {
  html[lang="tl"] .nav-header__content-search {
    padding: 0; } }

.nav-header__content-search {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 30px; }
  .nav-header__content-search button {
    border: none;
    background-color: transparent; }
  .nav-header__content-search .icon {
    color: #fff;
    font-size: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: 70px;
    height: 70px;
    animation: show-flex 400ms ease; }
    .nav-header__content-search .icon.fa-times {
      display: none;
      font-size: 30px;
      background-color: #02698c; }
  .nav-header__content-search.open .icon.fa-search {
    display: none; }
  .nav-header__content-search.open .icon.fa-times {
    display: flex; }
  @media screen and (max-width: 1025px) {
    .nav-header__content-search {
      display: none !important; } }

@media screen and (min-width: 1026px) {
  html[lang="tl"] .nav-header__content-account, html[lang="fr"] .nav-header__content-account, html[lang="de"] .nav-header__content-account, html[lang="ja"] .nav-header__content-account, html[lang="km"] .nav-header__content-account, html[lang="ru"] .nav-header__content-account, html[lang="es"] .nav-header__content-account, html[lang="vi"] .nav-header__content-account {
    position: absolute;
    right: 150px;
    top: -10px; } }

.nav-header__content-account {
  justify-content: flex-end; }
  @media screen and (max-width: 1025px) {
    .nav-header__content-account {
      justify-content: center;
      padding: 15px; } }
  @media screen and (max-width: 600px) {
    .nav-header__content-account a {
      width: 100%;
      text-align: center; } }

.nav-searchbar {
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
  position: absolute;
  top: 125px;
  width: 100%;
  height: 100px;
  background: white;
  padding: 10px;
  z-index: 100;
  background-color: #02698c;
  animation: show-flex 400ms ease; }
  .nav-searchbar.open {
    display: flex; }
  .nav-searchbar form {
    position: relative;
    width: 700px; }
    .nav-searchbar form input {
      padding-right: 70px;
      border-radius: 8px; }
    .nav-searchbar form button {
      cursor: pointer;
      position: absolute;
      top: 50%;
      right: 20px;
      border: none;
      transform: translateY(-50%);
      background-color: transparent; }
      .nav-searchbar form button:hover .icon {
        color: #0679a0; }
      .nav-searchbar form button .icon {
        font-size: 25px; }
  @media screen and (max-width: 1200px) {
    .nav-searchbar {
      top: 140px; } }
  @media screen and (max-width: 1025px) {
    .nav-searchbar {
      top: 70px;
      background-color: #fff;
      height: auto;
      box-shadow: 1px 3px 6px 0px rgba(0, 0, 0, 0.12); }
      .nav-searchbar form {
        width: 100%; }
        .nav-searchbar form input {
          background-color: #f5f5f5;
          border: 0;
          box-shadow: none; } }

.nav-account {
  background-color: #02698c;
  color: #fff;
  display: flex;
  justify-content: flex-end;
  padding-right: 30px; }
  .nav-account > div {
    padding: 20px; }
  .nav-account a {
    color: #fff; }
  @media screen and (max-width: 1025px) {
    .nav-account {
      display: none; } }

.footer {
  background-color: #0679a0;
  color: #fff;
  display: flex;
  flex-direction: row-reverse;
  padding: 40px 60px;
  gap: 40px; }
  @media (max-width: 767px) {
    .footer {
      flex-direction: column;
      padding: 30px; } }

.footer-left {
  width: 100%; }

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

.footer-top a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px 30px;
  text-decoration: none;
  color: white;
  text-transform: uppercase;
  white-space: nowrap; }
  @media (max-width: 767px) {
    .footer-top a {
      text-align: left;
      padding: 10px 5px; } }

.footer-button {
  margin-top: 25px; }
  .footer-button a {
    color: white;
    padding: 15px 30px; }
    @media (max-width: 767px) {
      .footer-button a {
        width: 100%; } }

.footer-content {
  display: flex; }
  .footer-content-icons {
    white-space: nowrap;
    flex-shrink: 0; }
    .footer-content-icons img {
      width: 75px;
      height: 75px;
      margin-right: 30px;
      margin-bottom: 30px; }
  .footer-content-text {
    width: 100%;
    font-style: italic;
    max-width: 300px; }
    .footer-content-text p {
      font-size: 16px; }

.footer-copy p {
  font-size: 16px; }

.footer-copy strong {
  font-weight: bold;
  display: block;
  margin-bottom: 30px; }

.footer-copy a {
  color: #fff;
  text-decoration: underline; }

/*
@media screen and (max-width: 1200px) {
  .footer {
  }

  .footer-content {
    display: block;
  }

  .footer-content-text {
    p {
      max-width: 320px;
    }
  }

  .footer-copy {

    p {
      max-width: 320px;
    }
  }
}


@media screen and (max-width: 1000px) {
  .footer {
  }

  .footer-right {
    display: block;
  }

  .footer-button {
    padding: 0;
    text-align: right;
    margin-top: 40px;
  }
}

@media screen and (max-width: 750px) {
  .footer {
    flex-direction: column;
  }
}

@media screen and (max-width: 600px) {
  .footer {
    padding: 0 20px;
  }

  .footer-button {
  
    a {
      width: 100%;
    }
  }

}
*/
.wa-table {
  overflow: hidden;
  margin: 20px auto; }
  .wa-table table {
    overflow: visible;
    border-spacing: 0;
    border-collapse: collapse; }
    .wa-table table p {
      margin: 0; }
    .wa-table table tr {
      border-bottom: 1px solid #ccc; }
    .wa-table table thead th {
      padding: 10px 20px;
      text-align: center;
      background-color: #0679a0;
      color: white;
      border: none;
      border-left: 1px solid #ccc;
      border-right: 1px solid #ccc; }
      .wa-table table thead th:first-child {
        text-align: left;
        background-color: #0679a0;
        color: white;
        border-left: 1px solid #0679a0; }
      .wa-table table thead th:last-child {
        border-right: none; }
    .wa-table table tbody td {
      padding: 10px 20px;
      text-align: center;
      border: none;
      border-left: 1px solid #ccc;
      border-right: 1px solid #ccc; }
      .wa-table table tbody td:first-child {
        text-align: left;
        color: white;
        background-color: #4c6973; }
    .wa-table table tbody tr:nth-child(even) {
      background-color: #f6f7f9; }
  .wa-table.mobile table thead th {
    display: none; }
    .wa-table.mobile table thead th:first-child {
      display: block;
      width: 100% !important;
      border: none; }
  .wa-table.mobile table th, .wa-table.mobile table tr {
    display: block; }
    .wa-table.mobile table th td, .wa-table.mobile table tr td {
      display: block; }
      .wa-table.mobile table th td:before, .wa-table.mobile table tr td:before {
        display: block;
        content: attr(data-label);
        font-weight: bold;
        line-height: 1.5; }
      .wa-table.mobile table th td:empty, .wa-table.mobile table tr td:empty {
        display: none; }
      .wa-table.mobile table th td:first-child, .wa-table.mobile table tr td:first-child {
        border: none; }
        .wa-table.mobile table th td:first-child:before, .wa-table.mobile table tr td:first-child:before {
          display: none; }
      .wa-table.mobile table th td:first-child, .wa-table.mobile table tr td:first-child {
        background-color: #4c6973;
        color: white; }
        .wa-table.mobile table th td:first-child a, .wa-table.mobile table tr td:first-child a {
          color: white !important; }
  .wa-table.mobile table tbody tr:nth-child(even) {
    background-color: transparent; }

.email-signup {
  background: #02698c;
  color: white;
  padding: 80px;
  text-align: center; }
  @media (max-width: 991px) {
    .email-signup {
      padding: 80px; } }
  @media (max-width: 575px) {
    .email-signup {
      padding: 80px 30px; } }
  @media (max-width: 469px) {
    .email-signup {
      padding: 50px 30px; } }
  .email-signup p {
    margin: 20px 0; }
  .email-signup input[type="email"] {
    max-width: 475px; }
  .email-signup .form-checkbox {
    display: inline-block; }

.rotator {
  overflow: hidden;
  margin-left: -32px;
  margin-right: -32px;
  text-align: center; }
  .rotator--hidden {
    display: none; }
  @media (max-width: 1199px) {
    .rotator {
      margin-left: -25px;
      margin-right: -25px; } }
  @media (max-width: 991px) {
    .rotator {
      margin-left: -20px;
      margin-right: -20px; } }
  @media (max-width: 767px) {
    .rotator {
      margin-right: -30px; } }
  @media (max-width: 767px) {
    .rotator-slick {
      margin-right: 20%; } }
  @media (max-width: 767px) {
    .rotator .slick-list {
      overflow: visible; } }
  .rotator .slick-track {
    display: flex !important; }
  .rotator .slick-slide {
    height: inherit !important; }
  .rotator .slick-arrow {
    position: absolute;
    width: 15px;
    height: 27px;
    top: 50%;
    transform: translateY(-50%); }
    .rotator .slick-arrow:after {
      content: '';
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0;
      background-repeat: no-repeat; }
  .rotator .slick-prev {
    left: 0; }
    .rotator .slick-prev.slick-disabled:after {
      background-image: url("/dist/images/icon-Chevron-Left-Disabled.svg") !important; }
    .rotator .slick-prev:after {
      background-image: url("/dist/images/icon-Chevron-Left.svg") !important; }
  .rotator .slick-next {
    right: 0; }
    .rotator .slick-next.slick-disabled:after {
      background-image: url("/dist/images/icon-Chevron-Right-Disabled.svg") !important; }
    .rotator .slick-next:after {
      background-image: url("/dist/images/icon-Chevron-Right.svg") !important; }
  .rotator .slick-dots {
    margin: 0;
    padding: 0;
    list-style: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto; }
    .rotator .slick-dots li {
      margin: 0;
      padding: 0;
      display: flex;
      align-items: center; }
      .rotator .slick-dots li.slick-active button {
        background-color: #000000;
        border: 1px solid #000000; }
      .rotator .slick-dots li button {
        border-radius: 100px;
        border: 1px solid #707070;
        font-size: 0;
        width: 12px;
        height: 12px;
        margin: 2px 8px; }
        @media (max-width: 575px) {
          .rotator .slick-dots li button {
            margin: 2px 5px; } }
  .rotator .rotator-controls {
    display: inline-block;
    position: static;
    margin: 0 auto;
    position: relative; }
    .rotator .rotator-controls .rotator-arrows {
      position: absolute;
      top: 0;
      width: 100%; }
      .rotator .rotator-controls .rotator-arrows:not(:empty) {
        height: 40px; }
      .rotator .rotator-controls .rotator-arrows .slick-prev {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        left: 0; }
      .rotator .rotator-controls .rotator-arrows .slick-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: 0; }
    .rotator .rotator-controls .rotator-dots {
      margin: 0 40px; }
      .rotator .rotator-controls .rotator-dots:not(:empty) {
        height: 40px; }
      .rotator .rotator-controls .rotator-dots .slick-dots {
        position: relative;
        top: 50%;
        transform: translateY(-50%); }

.rotator-item {
  padding: 0 32px;
  width: 400px;
  text-align: left; }
  @media (max-width: 1199px) {
    .rotator-item {
      padding: 0 25px; } }
  @media (max-width: 991px) {
    .rotator-item {
      padding: 0 20px; } }
  @media (max-width: 767px) {
    .rotator-item {
      width: 540px; } }
  .rotator-item--template {
    display: none; }
  .rotator-item__thumb {
    display: block;
    background-color: gray;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    margin-bottom: 20px;
    border-radius: 10px;
    padding-bottom: 70%; }
  .rotator-item__title {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    line-height: 1.4; }
    @media (max-width: 575px) {
      .rotator-item__title {
        margin-bottom: 10px; } }
    .rotator-item__title a {
      text-decoration: none; }
      .rotator-item__title a:hover, .rotator-item__title a:active, .rotator-item__title a:focus {
        text-decoration: underline; }
  .rotator-item__summary {
    line-height: 1.4; }
    @media (max-width: 575px) {
      .rotator-item__summary {
        display: none; } }

.my-accordion .accordion-item {
  margin: 10px 0;
  border-radius: 10px;
  border-top: 1px solid #e0e0e0 !important;
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 10px !important; }

.my-accordion .accordion-button {
  flex-direction: row-reverse;
  align-items: flex-start;
  border-top-left-radius: 10px !important;
  border-top-right-radius: 10px !important;
  border-bottom-left-radius: 10px !important;
  border-bottom-right-radius: 10px !important;
  background-color: transparent !important;
  box-shadow: none !important; }
  .my-accordion .accordion-button.collapsed {
    border-radius: 10px; }
  .my-accordion .accordion-button::after {
    margin-left: 0 !important;
    margin-right: 15px;
    margin-top: 5px;
    color: #555;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: none !important;
    transform: none !important;
    content: "\f055";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 25px; }
  .my-accordion .accordion-button:not(.collapsed)::after {
    content: "\f056"; }
  .my-accordion .accordion-button div {
    flex-grow: 1; }

.my-accordion .accordion-header__title {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.3;
  color: #000; }
  @media (max-width: 575px) {
    .my-accordion .accordion-header__title {
      font-size: 20px; } }

.my-accordion .accordion-header__caption {
  font-size: 16px;
  color: #000000; }

.my-accordion .accordion-body {
  padding: 20px 55px; }
  @media (max-width: 469px) {
    .my-accordion .accordion-body {
      padding: 10px 20px; } }
  .my-accordion .accordion-body ul li {
    padding: 7px 0; }
  .my-accordion .accordion-body--media {
    display: flex;
    gap: 40px; }
    @media (max-width: 767px) {
      .my-accordion .accordion-body--media {
        flex-direction: column-reverse;
        flex-wrap: wrap;
        gap: 30px; } }
    .my-accordion .accordion-body--media > div {
      width: 50%; }
      @media (max-width: 767px) {
        .my-accordion .accordion-body--media > div {
          width: 100%; } }
    .my-accordion .accordion-body--media img {
      border-radius: 10px;
      width: 100%; }

.icon-collection-row-items {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 40px; }

.icon-collection-row-item {
  width: 33.33333%;
  text-align: center;
  padding: 50px 20px;
  padding-bottom: 0;
  display: flex;
  flex-direction: column; }
  @media (max-width: 991px) {
    .icon-collection-row-item {
      width: 50%; } }
  @media (max-width: 575px) {
    .icon-collection-row-item {
      width: 100%; } }
  .icon-collection-row-item__icon {
    margin: 0 auto;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border-radius: 100px; }
    .icon-collection-row-item__icon img {
      height: 40px;
      width: auto; }
  .icon-collection-row-item__title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.44;
    margin: 15px 0; }
    .icon-collection-row-item__title--large {
      font-size: 30px; }
      @media (max-width: 1199px) {
        .icon-collection-row-item__title--large {
          font-size: 22px; } }
  .icon-collection-row-item__description {
    margin: 0 auto;
    margin-bottom: 30px;
    max-width: 300px;
    font-size: 18px; }
  .icon-collection-row-item__button {
    margin: 0 auto;
    margin-top: auto;
    max-width: 300px; }

.image-content {
  display: flex;
  flex-wrap: wrap; }
  .image-content--right {
    flex-direction: row-reverse; }
  .image-content > div {
    width: 50%; }
    @media (max-width: 767px) {
      .image-content > div {
        width: 100%; } }
  .image-content--white .image-content__img--image {
    padding-top: 0;
    padding-bottom: 0; }
  .image-content--white .image-content__text-content {
    padding-top: 0;
    padding-bottom: 0; }
  @media (max-width: 767px) {
    .image-content--white > div:first-child {
      padding-bottom: 15px; }
    .image-content--white > div:last-child > div {
      padding-top: 15px; } }

.image-content__img--image {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 50px; }
  @media (max-width: 991px) {
    .image-content__img--image {
      padding: 50px; } }
  @media (max-width: 575px) {
    .image-content__img--image {
      padding: 30px; } }
  .image-content__img--image img {
    max-height: 450px; }

.image-content__img--bg {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat; }
  @media (max-width: 767px) {
    .image-content__img--bg {
      padding-top: 80%; } }

.image-content__text {
  color: #000000;
  display: flex;
  align-items: center;
  justify-content: center; }
  .image-content__text--dark {
    color: #ffffff; }
  .image-content__text-content {
    padding: 150px 150px; }
    @media (max-width: 1399px) {
      .image-content__text-content {
        padding: 120px 150px; } }
    @media (max-width: 1199px) {
      .image-content__text-content {
        padding: 90px 50px; } }
    @media (max-width: 991px) {
      .image-content__text-content {
        padding: 50px; } }
    @media (max-width: 575px) {
      .image-content__text-content {
        padding: 30px; } }
    .image-content__text-content .button {
      margin-top: 20px; }
  .image-content__text-title {
    margin: 0;
    margin-bottom: 30px; }
    @media (max-width: 575px) {
      .image-content__text-title {
        margin-bottom: 15px; } }
  .image-content__text p {
    font-size: 18px; }

.map-legend {
  background-color: #394a57;
  color: #ffffff;
  padding: 20px; }
  .map-legend-label {
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 5px; }

.map-legend-items {
  display: flex;
  flex-wrap: wrap; }
  @media (max-width: 575px) {
    .map-legend-items {
      display: block; } }

.map-legend-item {
  margin-top: 10px;
  margin-right: 30px;
  display: flex;
  font-size: 16px;
  align-items: center; }
  @media (max-width: 575px) {
    .map-legend-item {
      margin-right: 0; } }
  .map-legend-item > div:first-child {
    flex-shrink: 0; }
  .map-legend-item img {
    width: 30px;
    height: 30px;
    margin-right: 5px; }

.map-embed {
  overflow: hidden; }
  .map-embed iframe {
    width: 100%; }

.embedded-youtube__video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden; }
  .embedded-youtube__video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

.partner-logos-header {
  text-align: center;
  margin-bottom: 20px; }

.partner-logos {
  display: flex;
  flex-wrap: wrap; }

.partner-logos__logo {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  width: 100%; }
  .partner-logos__logo--2 {
    width: 50%; }
  .partner-logos__logo--3 {
    width: 33.3333%; }
  .partner-logos__logo--4 {
    width: 25%; }
  .partner-logos__logo--5 {
    width: 20%; }
  .partner-logos__logo--6 {
    width: 16.66666666666667%; }
  .partner-logos__logo--7 {
    width: 14.2857142%; }
  .partner-logos__logo--8 {
    width: 12.5%; }
  .partner-logos__logo--9 {
    width: 11.1111111111%; }
  .partner-logos__logo--10 {
    width: 10%; }
  @media (max-width: 1399px) {
    .partner-logos__logo--6, .partner-logos__logo--7 {
      width: 16.66666666666667%; } }
  @media (max-width: 1399px) {
    .partner-logos__logo--8, .partner-logos__logo--9, .partner-logos__logo--10 {
      width: 12.5%; } }
  @media (max-width: 991px) {
    .partner-logos__logo--8, .partner-logos__logo--9, .partner-logos__logo--10 {
      width: 16.66666666666667%; } }
  @media (max-width: 991px) {
    .partner-logos__logo--4, .partner-logos__logo--5, .partner-logos__logo--6, .partner-logos__logo--7, .partner-logos__logo--8, .partner-logos__logo--9, .partner-logos__logo--10 {
      width: 25%; } }
  @media (max-width: 767px) {
    .partner-logos__logo--4, .partner-logos__logo--5, .partner-logos__logo--6, .partner-logos__logo--7, .partner-logos__logo--8, .partner-logos__logo--9, .partner-logos__logo--10 {
      width: 33.3333%; } }
  @media (max-width: 575px) {
    .partner-logos__logo {
      width: 50%;
      padding: 10px; } }
  .partner-logos__logo-image {
    display: flex;
    align-items: center;
    justify-content: center; }
    .partner-logos__logo-image img {
      width: auto;
      height: 100px;
      object-fit: contain; }
      @media (max-width: 469px) {
        .partner-logos__logo-image img {
          height: 50px; } }
  .partner-logos__logo-caption {
    margin-top: 10px;
    text-align: center; }

.home-hero {
  display: flex;
  gap: 80px; }
  @media (max-width: 1199px) {
    .home-hero {
      gap: 40px; } }
  @media (max-width: 991px) {
    .home-hero {
      flex-direction: column-reverse;
      flex-wrap: wrap;
      gap: 0; }
      .home-hero > div {
        width: 100% !important; } }
  .home-hero-text {
    width: 45%;
    padding: 80px 30px 80px 140px; }
    @media (max-width: 1399px) {
      .home-hero-text {
        padding: 60px 0 60px 60px; } }
    @media (max-width: 991px) {
      .home-hero-text {
        padding: 30px 60px 0 60px; } }
    @media (max-width: 575px) {
      .home-hero-text {
        padding: 15px 30px 0px 30px; } }
    .home-hero-text h1 {
      margin: 20px 0;
      font-size: 72px;
      line-height: 1.2; }
      @media (max-width: 1399px) {
        .home-hero-text h1 {
          font-size: 55px; } }
      @media (max-width: 575px) {
        .home-hero-text h1 {
          font-size: 40px; } }
      @media (max-width: 575px) {
        .home-hero-text h1 {
          margin: 10px 0; } }
    .home-hero-text__btns {
      display: flex;
      gap: 20px;
      margin-top: 50px; }
      .home-hero-text__btns .button.play {
        padding-left: 60px; }
        .home-hero-text__btns .button.play span {
          position: relative;
          display: inline-block; }
          .home-hero-text__btns .button.play span img {
            position: absolute;
            left: -30px;
            top: 50%;
            transform: translateY(-50%); }
      @media (max-width: 767px) {
        .home-hero-text__btns {
          margin-top: 20px; } }
      @media (max-width: 575px) {
        .home-hero-text__btns {
          flex-direction: column;
          gap: 5px; }
          .home-hero-text__btns > div {
            flex: 1; } }
  .home-hero-image {
    width: 55%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-size: contain;
    background-position: top right; }
    @media (max-width: 991px) {
      .home-hero-image {
        background-image: none !important; }
        .home-hero-image__mobile {
          display: block !important; } }
    .home-hero-image__mobile {
      display: none; }

@media (min-width: 576px) {
  .home-hero-modal .modal-dialog {
    width: 1000px;
    max-width: 90%; } }

.home-hero-modal .modal-header {
  border-bottom: 0; }

.home-when {
  background: #02698c;
  color: white;
  padding: 20px 140px; }
  @media (max-width: 1399px) {
    .home-when {
      padding: 20px 80px; } }
  @media (max-width: 1199px) {
    .home-when {
      padding: 20px 60px; } }
  @media (max-width: 767px) {
    .home-when {
      padding: 30px; } }
  .home-when-heading {
    margin-bottom: 20px; }
  .home-when-cols {
    display: flex;
    gap: 40px; }
    @media (max-width: 991px) {
      .home-when-cols {
        flex-wrap: wrap;
        gap: 20px; } }
  .home-when-date {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 40%; }
    @media (max-width: 767px) {
      .home-when-date {
        width: 100%; } }
    .home-when-date__icon {
      flex-shrink: 0; }
      .home-when-date__icon img {
        width: 45px;
        height: 45px; }
    .home-when-date__divider {
      margin-left: 30px; }
      @media (max-width: 1199px) {
        .home-when-date__divider {
          display: none; } }
    .home-when-date strong {
      display: block;
      text-transform: uppercase;
      margin-bottom: 5px; }
    .home-when-date > div {
      white-space: nowrap; }
      .home-when-date > div:last-child {
        width: 100%;
        height: 1px;
        background: #47aaca; }
  .home-when-btn {
    width: 20%;
    min-width: 250px; }
    @media (max-width: 991px) {
      .home-when-btn {
        width: 100%; } }

.sub-intro-small {
  background-color: #f5f5f5;
  display: flex;
  align-items: center; }
  @media (max-width: 767px) {
    .sub-intro-small {
      flex-direction: column;
      text-align: center; } }
  .sub-intro-small > div {
    width: 100%;
    padding: 50px 60px; }
    @media (max-width: 767px) {
      .sub-intro-small > div {
        padding: 50px 30px; } }
  .sub-intro-small__right {
    text-align: right;
    width: auto !important; }
    @media (max-width: 767px) {
      .sub-intro-small__right {
        text-align: center;
        width: 100% !important;
        padding-top: 0 !important; } }
  .sub-intro-small p {
    font-size: 20px; }

.sub-intro {
  display: flex;
  align-items: center;
  padding: 50px 140px;
  gap: 100px;
  background: #f6f5f5; }
  @media (max-width: 1201px) {
    .sub-intro {
      padding: 50px;
      gap: 80px; } }
  @media (max-width: 992px) {
    .sub-intro {
      align-items: flex-start; } }
  @media (max-width: 800px) {
    .sub-intro {
      flex-direction: column;
      gap: 40px; } }
  @media (max-width: 575px) {
    .sub-intro {
      padding: 30px; } }
  @media (max-width: 469px) {
    .sub-intro {
      gap: 20px; } }
  .sub-intro__text {
    width: 50%; }
    @media (max-width: 800px) {
      .sub-intro__text {
        width: 100%; } }
    .sub-intro__text h1 {
      margin-bottom: 30px; }
    .sub-intro__text-subheader {
      font-size: 22px;
      font-weight: bold;
      margin-bottom: 15px; }
  .sub-intro__box {
    background: white;
    display: inline-flex;
    padding: 20px;
    gap: 15px;
    align-items: center;
    border-radius: 20px;
    margin-top: 30px; }
    @media (max-width: 800px) {
      .sub-intro__box {
        width: 100%; } }
    @media (max-width: 575px) {
      .sub-intro__box {
        gap: 10px;
        border-radius: 10px; } }
    @media (max-width: 469px) {
      .sub-intro__box {
        align-items: flex-start;
        padding: 15px;
        margin-top: 10px; } }
    .sub-intro__box-icon img {
      width: 50px;
      height: 50px; }
      @media (max-width: 469px) {
        .sub-intro__box-icon img {
          width: 25px;
          height: 25px; } }
    .sub-intro__box-text {
      padding-right: 20px; }
      @media (max-width: 469px) {
        .sub-intro__box-text {
          padding-right: 0; } }
      .sub-intro__box-text strong {
        display: block;
        margin-bottom: 5px;
        text-transform: uppercase; }
      .sub-intro__box-text a {
        display: block; }
  .sub-intro__image {
    width: 50%; }
    @media (max-width: 800px) {
      .sub-intro__image {
        width: 100%; } }
    .sub-intro__image img {
      width: 100%; }

.how-toll-policy {
  background-color: gray;
  padding: 100px 60px;
  text-align: center; }
  @media (max-width: 1399px) {
    .how-toll-policy {
      padding: 80px 30px; } }
  @media (max-width: 1200px) {
    .how-toll-policy {
      padding: 40px 140px; } }
  @media (max-width: 991px) {
    .how-toll-policy {
      padding: 40px 30px; } }
  @media (max-width: 768px) {
    .how-toll-policy {
      padding: 40px 100px; } }
  @media (max-width: 700px) {
    .how-toll-policy {
      padding: 40px 30px; } }
  @media (max-width: 500px) {
    .how-toll-policy {
      padding: 30px; } }
  .how-toll-policy .how-toll-policy__items {
    display: flex;
    gap: 3%;
    align-items: stretch; }
    .how-toll-policy .how-toll-policy__items > div {
      width: 17.6%; }
    @media (max-width: 1399px) {
      .how-toll-policy .how-toll-policy__items {
        gap: 2%; }
        .how-toll-policy .how-toll-policy__items > div {
          width: 18.4%; } }
    @media (max-width: 1200px) {
      .how-toll-policy .how-toll-policy__items {
        flex-wrap: wrap;
        gap: 3%; }
        .how-toll-policy .how-toll-policy__items > div {
          width: 31.3333333%; } }
    @media (max-width: 768px) {
      .how-toll-policy .how-toll-policy__items {
        gap: 5%; }
        .how-toll-policy .how-toll-policy__items > div {
          width: 47.5%; } }
    @media (max-width: 500px) {
      .how-toll-policy .how-toll-policy__items {
        flex-direction: column;
        gap: 0; }
        .how-toll-policy .how-toll-policy__items > div {
          width: 100%; } }
  .how-toll-policy .how-toll-policy-item {
    text-align: left;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    margin: 15px 0; }
    .how-toll-policy .how-toll-policy-item__inner {
      height: 100%;
      padding: 0;
      border-radius: 20px;
      background-color: #005d7c;
      color: white;
      display: flex;
      flex-direction: column; }
    .how-toll-policy .how-toll-policy-item__top {
      padding: 30px; }
      @media (max-width: 768px) {
        .how-toll-policy .how-toll-policy-item__top {
          display: flex;
          align-items: center; } }
      @media (max-width: 600px) {
        .how-toll-policy .how-toll-policy-item__top {
          padding: 20px; } }
      .how-toll-policy .how-toll-policy-item__top-icon {
        width: 60px;
        height: 60px;
        padding: 10px;
        background-color: #0679a0;
        border-radius: 100px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        justify-content: center; }
        @media (max-width: 768px) {
          .how-toll-policy .how-toll-policy-item__top-icon {
            margin-right: 10px;
            margin-bottom: 0; } }
        .how-toll-policy .how-toll-policy-item__top-icon img {
          height: 30px; }
      .how-toll-policy .how-toll-policy-item__top-title {
        font-size: 20px;
        font-weight: bold; }
        @media (max-width: 1399px) {
          .how-toll-policy .how-toll-policy-item__top-title {
            font-size: 18px; } }
      .how-toll-policy .how-toll-policy-item__top-sub {
        font-size: 16px;
        font-style: italic;
        color: #b8e5f4; }
    .how-toll-policy .how-toll-policy-item__spacer {
      height: 0px; }
    .how-toll-policy .how-toll-policy-item__bottom {
      padding: 30px;
      display: block;
      height: 100%;
      background-color: white;
      color: black;
      margin-top: auto;
      border-radius: 20px;
      border-top-right-radius: 0;
      border-top-left-radius: 0; }
      .how-toll-policy .how-toll-policy-item__bottom > div:first-child {
        padding-bottom: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid #d3d3d3; }
      .how-toll-policy .how-toll-policy-item__bottom strong {
        display: block;
        margin-bottom: 5px; }
      .how-toll-policy .how-toll-policy-item__bottom span {
        display: block; }

.how-numbers {
  text-align: center;
  padding: 0 30px; }
  .how-numbers-cols {
    display: flex;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 30px; }
    @media (max-width: 575px) {
      .how-numbers-cols {
        flex-direction: column; } }
    .how-numbers-cols > div {
      border-right: 1px solid #d8d8d8;
      width: 33.333333%;
      padding: 0 40px; }
      .how-numbers-cols > div:last-child {
        border-right: 0; }
      @media (max-width: 767px) {
        .how-numbers-cols > div {
          padding: 0 20px; } }
      @media (max-width: 575px) {
        .how-numbers-cols > div {
          width: 100%;
          border-right: 0;
          border-bottom: 1px solid #d8d8d8;
          display: flex;
          align-items: center;
          gap: 20px;
          padding: 10px 0; }
          .how-numbers-cols > div > div {
            width: 100%;
            text-align: left; }
            .how-numbers-cols > div > div:first-child {
              min-width: 75px;
              width: auto;
              text-align: center; } }
    .how-numbers-cols strong {
      font-size: 48px;
      font-weight: bold;
      color: #0679a0; }
    .how-numbers-cols p {
      margin-top: 10px; }

.how-2col .icon-collection-row-items {
  display: flex;
  justify-content: center; }
  @media (max-width: 575px) {
    .how-2col .icon-collection-row-items {
      width: 100%; } }

.how-2col .icon-collection-row-item {
  width: 50%;
  max-width: 380px; }
  @media (max-width: 575px) {
    .how-2col .icon-collection-row-item {
      width: 100%;
      max-width: none; } }
  .how-2col .icon-collection-row-item__icon {
    background-color: #f5f5f5; }
  .how-2col .icon-collection-row-item__description {
    max-width: 350px; }

.about-funding {
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 30px; }
  @media (max-width: 575px) {
    .about-funding {
      padding: 0; } }
  .about-funding h2 {
    margin: 0;
    margin-bottom: 30px; }
  .about-funding h3 {
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    margin-top: 20px;
    margin-bottom: 5px; }
  .about-funding p {
    margin: 0 auto;
    margin-bottom: 40px;
    max-width: 800px; }

.about-funding__graph {
  text-align: left; }
  .about-funding__graph > div {
    overflow: hidden; }
    .about-funding__graph > div:first-child .about-funding__graph-bar > div {
      flex: 1 0 85%;
      height: 11px;
      border-radius: 2px;
      background-color: #015ea7; }
    .about-funding__graph > div:first-child strong {
      flex: 1 0 15%; }
    .about-funding__graph > div:nth-child(2) .about-funding__graph-bar > div {
      flex: 1 0 6%;
      height: 11px;
      border-radius: 2px;
      background-color: #0d89e8; }
    .about-funding__graph > div:nth-child(2) strong {
      flex: 1 0 40%; }
    .about-funding__graph > div:nth-child(3) .about-funding__graph-bar > div {
      flex: 1 0 44%;
      height: 11px;
      border-radius: 2px;
      background-color: #22c467; }
    .about-funding__graph > div:nth-child(3) strong {
      flex: 1 0 90%; }
    .about-funding__graph > div:last-child .about-funding__graph-bar > div {
      flex: 1 0 3%;
      height: 11px;
      border-radius: 2px;
      background-color: #2eacff; }
    .about-funding__graph > div:last-child strong {
      flex: 1 0 90%; }

.about-funding__graph-bar {
  display: flex;
  align-items: center; }
  .about-funding__graph-bar > div {
    flex: 1 1 100%; }
  .about-funding__graph-bar strong {
    margin-left: 5px; }

@media (max-width: 600px) {
  .about-funding__graph-bar {
    display: block; }
    .about-funding__graph-bar strong {
      display: block;
      margin-top: 10px;
      margin-left: 0; }
  .about-funding__graph > div:nth-child(2) .about-funding__graph-bar > div {
    width: 8%; }
  .about-funding__graph > div:nth-child(3) .about-funding__graph-bar > div {
    width: 4%; }
  .about-funding__graph > div:last-child .about-funding__graph-bar > div {
    width: 55%; } }

.about-partner-logos {
  max-width: 700px;
  margin: 0 auto; }

.about-orgs {
  display: flex;
  gap: 40px;
  padding: 50px 100px; }
  @media (max-width: 767px) {
    .about-orgs {
      flex-wrap: wrap;
      padding: 50px; } }
  @media (max-width: 469px) {
    .about-orgs {
      padding: 10px; } }
  .about-orgs > div {
    width: 50%; }
    @media (max-width: 767px) {
      .about-orgs > div {
        width: 100%; } }
  .about-orgs strong {
    display: block;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px; }
  .about-orgs__list {
    column-count: 2;
    column-gap: 40px; }
    @media (max-width: 991px) {
      .about-orgs__list {
        column-count: 1; } }

@keyframes "stayConnectedFadeIn" {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

.stay-connected-modal {
  animation: stayConnectedFadeIn 2s;
  padding-left: 10px !important;
  padding-right: 10px !important;
  line-height: 1.2; }
  .stay-connected-modal .modal-dialog {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    width: 800px;
    max-width: 100%; }
  .stay-connected-modal .modal-content {
    width: 100%;
    box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.16);
    border-radius: 0;
    border: 0;
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 50%; }
  .stay-connected-modal .modal-header {
    display: block;
    text-align: right;
    padding-bottom: 0;
    border-bottom: 0;
    margin-bottom: -5px; }
    .stay-connected-modal .modal-header i {
      font-size: 20px;
      cursor: pointer; }
  .stay-connected-modal .modal-body {
    padding: 50px 70px;
    padding-top: 10px; }
    .stay-connected-modal .modal-body .stay-connected-modal-logo {
      width: 140px;
      height: 45px;
      margin-bottom: 20px;
      max-width: 100%; }
    .stay-connected-modal .modal-body h1 {
      font-size: 48px;
      font-weight: bold;
      margin: 0;
      margin-bottom: 10px;
      color: #000; }
    .stay-connected-modal .modal-body p {
      font-size: 20px;
      margin: 0;
      margin-bottom: 20px;
      line-height: 1.2; }
    .stay-connected-modal .modal-body input.stay-connected-modal-email {
      border: 1px solid #a8a8a8;
      border-radius: 5px;
      padding: 10px;
      width: 420px;
      margin-bottom: 20px;
      max-width: 100%;
      font-size: 16px; }
    .stay-connected-modal .modal-body input::placeholder {
      font-style: italic; }
    .stay-connected-modal .modal-body .stay-connected-modal-checkbox-wrap {
      display: flex;
      align-items: flex-start;
      margin-bottom: 20px;
      text-align: left;
      max-width: 230px; }
      .stay-connected-modal .modal-body .stay-connected-modal-checkbox-wrap input {
        margin-right: 7px;
        margin-top: 2px; }
    .stay-connected-modal .modal-body label {
      font-size: 14px;
      font-weight: normal;
      line-height: 1.2; }
    .stay-connected-modal .modal-body .stay-connected-modal-btn {
      margin-bottom: 20px; }
      .stay-connected-modal .modal-body .stay-connected-modal-btn span {
        width: 260px; }
    .stay-connected-modal .modal-body .stay-connected-modal-links a {
      display: block;
      margin-bottom: 10px; }
  .stay-connected-modal a {
    color: #000 !important;
    text-decoration: underline !important; }
    .stay-connected-modal a:hover {
      color: #0069bc !important; }
    .stay-connected-modal a:focus {
      color: #0069bc !important; }
    .stay-connected-modal a:active {
      color: #0069bc !important; }
  .stay-connected-modal .stay-connected-modal-thanks {
    display: none; }
  .stay-connected-modal .stay-connected-modal-error {
    color: red;
    margin-bottom: 20px;
    display: none; }

@media only screen and (max-width: 600px) {
  .stay-connected-modal .modal-content {
    background-image: none !important; }
  .stay-connected-modal .modal-body {
    text-align: center;
    padding: 20px 30px; }
    .stay-connected-modal .modal-body h1 {
      font-size: 24px; }
    .stay-connected-modal .modal-body p {
      font-size: 18px; }
    .stay-connected-modal .modal-body input.stay-connected-modal-email {
      width: 100%; }
    .stay-connected-modal .modal-body .stay-connected-modal-btn {
      width: 100%; } }

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