/* 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;
  font-size: 100%;
  font: inherit;
  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; }

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 */
@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-family: 'Economica', sans-serif;
  font-size: 65px;
  font-weight: bold;
  line-height: 0.92;
  letter-spacing: -1.63px;
  text-transform: uppercase; }

.header-2 {
  font-family: 'Economica', sans-serif;
  font-size: 48px;
  font-weight: bold;
  line-height: 0.75;
  letter-spacing: -1.2px;
  text-transform: uppercase; }

.header-3 {
  font-family: 'Economica', sans-serif;
  font-size: 30px;
  font-weight: bold;
  line-height: 0.93;
  letter-spacing: -0.3px; }

.header-4 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: -0.2px; }

/* sub header */
.subheader {
  font-size: 18px; }
  .subheader p {
    font-size: 18px; }

/* buttons */
button, .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 40px;
  border-radius: 25px;
  background-color: #02698c;
  border: 1px solid #41a9cc;
  color: #fff;
  font-weight: bold;
  transition: background-color 400ms ease;
  max-width: 100%;
  text-align: center; }
  .button-primary.light {
    background-color: #0679a0; }
    .button-primary.light:hover, .button-primary.light:active, .button-primary.light:focus {
      background-color: #41a9cc; }
  .button-primary.dark-blue {
    background-color: #004860;
    border: 1px solid transparent; }
    .button-primary.dark-blue:hover, .button-primary.dark-blue:active, .button-primary.dark-blue:focus {
      background-color: #00232e; }
  /*.button-primary.dark {
    background-color: #000;
    border: 0px; }*/
  .button-primary:hover, .button-primary:active, .button-primary:focus {
    color: #fff;
    background-color: #017AA1; }
  .button-primary:visited {
    color: #fff; }
  .button-primary .icon {
    display: inline-block;
    color: #fff;
    margin-left: 10px;
    margin-right: -5px; }
  @media screen and (max-width: 600px) {
    .button-primary {
      width: 100%;
      padding: 15px 5px; } }

.button-outline {
  -webkit-appearance: none;
  cursor: pointer;
  border: solid 1px #85c1d6;
  border-radius: 25px;
  color: #000;
  padding: 15px 40px;
  font-weight: bold; }

/* 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: 4px;
  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;
  display: flex;
  flex-direction: row; }
  .form-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0; }
    .form-checkbox input[type="checkbox"] + .form-checkbox-label {
      flex: 1;
      margin-right: 20px; }
      .form-checkbox input[type="checkbox"] + .form-checkbox-label:before {
        content: "";
        background: #f4f4f4;
        border-radius: 4px;
        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-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: 14px;
      line-height: 1.7;
      content: "\f00c"; }
    .form-checkbox input[type="checkbox"]:focus + .form-checkbox-label:before {
      border-color: #0679a0;
      border: 2px solid #333;
      line-height: 1.5; }
    .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: "Open Sans", sans-serif;
  font-size: 16px; }

input, ::placeholder {
  font-family: "Open Sans", sans-serif;
  font-size: 16px; }

button {
  background: none;
  border: 0; }

strong {
  font-weight: bold; }

a {
  color: #000; }
  a:visited {
    color: #000; }
  a:hover, a:active, a:focus {
    color: #0679a0; }
  a.white {
    color: #fff; }
    a.white:visited {
      color: #fff; }
    a.white:hover, a.white:active, a.white:focus {
      color: #fff; }

p {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.4px;
  margin-bottom: 10px; }

em {
  font-style: italic; }

.debug {
  border: 1px solid red; }

.container {
  max-width: 1460px;
  margin: 0 auto; }

.uppercase {
  text-transform: uppercase; }

.no-wrap {
  white-space: nowrap; }

.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; }
  .row > .umb-grid {
    width: 100%; }
  .row > .col-md-12 {
    width: 100%; }
  .row > .col-md-6 {
    width: 50%; }
  .row > .col-md-4 {
    width: 25%; }    
  @media screen and (max-width: 1020px) {
    .row > .col-md-6 {
      width: 100%; }
      .row > .col-md-4 {
      width: 50%; }
    .row > .col-sm-12 {
      width: 100%; }
    .row > .col-sm-6 {
      width: 50%; } }
  @media screen and (max-width: 700px) {
    .row > .col-sm-6 {
      width: 100%; } 
    .row > .col-md-4 {
      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; } }

.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: 25px 40px;
  color: #fff; }
  @media screen and (max-width: 1200px) {
    .nav-header {
      display: block; } }
  @media screen and (max-width: 1025px) {
    .nav-header {
      margin: 0px; } }

.nav-header__logo {
  padding-right: 80px;
  padding-bottom: 20px;
  display: flex; }
  .nav-header__logo img {
    width: 180px; }
  .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: 60px;
      height: 60px;
      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: 30px;
        color: #000;
        background-color: #fff; }
    .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: 1366px) {
    .nav-header__logo {
      padding-right: 40px; }
      .nav-header__logo img {
        width: 140px; } }
  @media screen and (max-width: 1200px) {
    .nav-header__logo {
      padding-left: 20px;
      padding-bottom: 0; } }
  @media screen and (max-width: 1025px) {
    .nav-header__logo {
      padding-right: 0;
      padding-left: 0; }
      .nav-header__logo > div {
        flex: 1;
        align-items: center; }
      .nav-header__logo img {
        width: 100px; }
      .nav-header__logo-search {
        display: flex; }
      .nav-header__logo-img {
        justify-content: center; }
      .nav-header__logo-bars {
        display: flex;
        justify-content: flex-end; } }

.nav-header__content {
  width: 100%;
  display: flex;
  padding-top: 30px; }
  .nav-header__content > div {
    flex: 1;
    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 {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 60px;
        background-color: #fff;
        z-index: 100;
        color: #000;
        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 {
  position: absolute;
  top: 0;
  right: 10px; }
  @media screen and (max-width: 1025px) {
    .nav-header__content-lang {
      position: relative;
      padding: 20px 25px;
      right: 0;
      border-top: 1px solid #e6e5e5; } }

@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 > 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 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:hover {
      background-color: #02698c; }
    .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%;
    border-bottom: 1px solid #e6e5e5; }
    .nav-header__content-list > ul > li {
      border-top: 1px solid #e6e5e5;
      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: #000;
        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 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: 60px;
      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: 0 60px; }
  .footer > div {
    flex: 1;
    margin: 40px 50px; }

.footer-right {
  display: flex; }
  .footer-right > div {
    flex: 1; }

.footer-links {
  padding-right: 50px;
  min-width: 210px; }
  .footer-links ul {
    display: block; }
    .footer-links ul li {
      margin-bottom: 10px; }
      .footer-links ul li a {
        color: #fff; }

.footer-button {
  text-align: center; }
  .footer-button a {
    text-align: center;
    color: #fff;
    padding: 15px 60px; }

.footer-content {
  display: flex;
  margin-bottom: 30px; }

.footer-content-icons {
  white-space: nowrap; }
  .footer-content-icons img {
    width: 75px;
    height: 75px;
    margin-right: 50px;
    margin-bottom: 30px; }

.footer-content-text {
  width: 100%;
  font-style: italic; }

.footer-copy strong {
  font-weight: bold;
  display: block;
  margin-bottom: 30px; }

.footer-copy p {
  font-style: italic; }

.footer-copy a {
  color: #fff;
  text-decoration: underline; }

@media screen and (max-width: 1200px) {
  .footer > div {
    margin: 40px 0; }
  .footer-content {
    display: block; }
  .footer-content-text p {
    max-width: 320px; }
  .footer-copy p {
    max-width: 320px; } }

@media screen and (max-width: 1000px) {
  .footer > div {
    margin: 40px 0; }
    .footer > div:first-child {
      margin-left: 80px; }
  .footer-right {
    display: block; }
  .footer-button {
    padding: 0;
    text-align: left;
    margin-top: 40px; } }

@media screen and (max-width: 750px) {
  .footer {
    flex-direction: column; }
    .footer > div:first-child {
      margin-left: 0;
      margin-bottom: 20px; } }

@media screen and (max-width: 600px) {
  .footer {
    padding: 0 20px; }
  .footer-button a {
    width: 100%; } }

.home-header {
  text-align: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
  background-position: center top; 
  /*background-position: 80% 95%; 
  background-blend-mode: darken;
  background-color: #00000087;*/

}

.home-header-text {
  margin: 0 auto;
  margin-bottom: 100px; }
  .home-header-text h1 {
    font-size: 72px;
    text-transform: uppercase;
    margin-bottom: 40px; 
      /*color:white;*/
  }
  .home-header-text p {
    margin: 0 auto;
    margin-bottom: 40px;
    max-width: 580px; 
      /*color:white;*/
  }

.home-header-boxes {
  display: flex;
  justify-content: center;
  margin: 0 auto; }
  .home-header-boxes > a {
    display: block;
    background-color: #fff;
    flex: 1;
    max-width: 325px;
    margin: 15px;
    padding: 40px;
    border-radius: 6px;
    text-decoration: none; }
    .home-header-boxes > a:hover, .home-header-boxes > a:focus {
      color: inherit; }
  .home-header-boxes img {
    width: 50px;
    margin-bottom: 10px; }
  .home-header-boxes h2 {
    margin-bottom: 15px; }
  .home-header-boxes p {
    margin-bottom: 0; }

@media screen and (max-width: 1025px) {
  .home-header-text h1 {
    font-size: 65px; }
  .home-header-boxes > a {
    max-width: 290px;
    margin: 10px;
    padding: 40px 20px; }
  .home-header-boxes img {
    margin-bottom: 20px; } }

@media screen and (max-width: 769px) {
  .home-header-text {
    margin-bottom: 80px; }
    .home-header-text p {
      max-width: 490px; }
  .home-header-boxes {
    flex-direction: column;
    align-items: center; }
    .home-header-boxes > a {
      max-width: none;
      width: 320px; } }

@media screen and (max-width: 600px) {
  .home-header {
    padding: 60px 0; }
  .home-header-text {
    margin-bottom: 60px;
    padding: 0 15px; }
    .home-header-text h1 {
      font-size: 40px;
      margin-bottom: 25px; }
    .home-header-text p {
      margin-bottom: 25px;
      max-width: none; }
    .home-header-text a {
      width: 100%;
      padding: 15px 10px; }
  .home-header-boxes > a {
    width: calc(100% - 70px);
    margin: 20px; }
  .home-header-boxes img {
    margin-bottom: 10px; }
  .home-header-boxes h2 {
    margin-bottom: 5px; } }

.search-header {
  max-width: 730px;
  padding-right: 60px;
  margin: 80px auto;
  text-align: center; }
  .search-header h1 {
    margin-bottom: 40px;
    text-transform: uppercase; }
  .search-header p {
    font-size: 19px;
    margin-bottom: 50px; }
  .search-header .search-input {
    position: relative;
    height: 55px;
    margin-bottom: 35px;
    width: 100%; }
    .search-header .search-input input {
      padding-right: 60px;
      font-size: 19px;
      border: solid 1px #757575; }
      .search-header .search-input input::placeholder {
        font-style: italic; }
    .search-header .search-input .icon {
      position: absolute;
      top: 15px;
      right: 20px;
      width: 23px;
      height: 23px;
      font-size: 30px; }
  .search-header .search-button button {
    width: 280px; }

.search-results {
  background-color: #f6f7f9;
  padding: 80px 0; }
  .search-results > div {
    max-width: 730px; }

.search-results-count {
  margin: 0 auto;
  font-size: 19px; }
  .search-results-count strong {
    font-style: italic;
    font-weight: bold; }

.search-results-list {
  margin: 0 auto;
  margin-bottom: 60px; }
  .search-results-list-item {
    margin: 60px auto; }
    .search-results-list-item h2 {
      margin-bottom: 15px; }
    .search-results-list-item p {
      font-size: 18px;
      line-height: 1.67;
      margin-bottom: 15px; }
    .search-results-list-item a {
      font-size: 18px;
      color: #000; }

.search-pagination {
  margin: 0 auto;
  display: flex;
  flex: 1;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  align-content: stretch; }
  .search-pagination button {
    width: 150px; }
  .search-pagination-links {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center; }
    .search-pagination-links a {
      display: inline-block;
      padding: 15px;
      color: #0679a0; }
      .search-pagination-links a.active {
        font-weight: bold;
        text-decoration: none;
        cursor: default; }
  .search-pagination .icon {
    display: none;
    align-items: center;
    justify-content: center; }

@media screen and (max-width: 1025px) {
  .search-header {
    padding-right: 0; }
    .search-header h1 {
      font-size: 55px; } }

@media screen and (max-width: 769px) {
  .search-header {
    margin-left: 50px;
    margin-right: 50px;
    max-width: none; }
  .search-results {
    padding-left: 50px;
    padding-right: 50px; }
    .search-results > div {
      max-width: none; } }

@media screen and (max-width: 600px) {
  .search-header {
    margin: 60px 15px;
    font-size: 40px; }
    .search-header h1 {
      margin-bottom: 25px; }
    .search-header p {
      margin-bottom: 25px; }
      .search-header p span {
        display: inline-block; }
    .search-header .search-input {
      margin-bottom: 30px; }
    .search-header .search-button button {
      width: 100%;
      margin: 0; }
  .search-results {
    padding: 60px 15px; }
  .search-results-list-item {
    margin: 40px auto; }
  .search-pagination button {
    width: 50px;
    padding: 15px 25px; }
  .search-pagination .button-outline-text {
    display: none; }
  .search-pagination .icon {
    display: flex; } }

.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; }

.account-types {
  background-color: #f6f6f6;
  padding: 60px 50px; }

@media screen and (max-width: 1200px) {
  .account-types {
    padding: 60px 30px; } }

@media screen and (max-width: 600px) {
  .account-types {
    padding: 60px 15px; } }

.publications-header {
  /*padding: 80px;*/
  padding: 60px 0 30px;
  text-align: center; }

.publications-container {
  padding: 50px;
  background-color: #f6f7f9; }
  .publications-container h2 {
    margin-bottom: 10px; }

.publications-row {
  display: flex;
  margin: 0 -10px; }
  .publications-row > div {
    flex: 1;
    padding: 50px;
    background-color: #fff;
    margin: 0 10px; }

.publications-reports {
  margin-bottom: 20px; }

.publications-reports-content {
  display: flex; }
  .publications-reports-content > div {
    padding: 50px;
    width: 50%;
    background-color: #fff; }
    .publications-reports-content > div:last-child {
      padding-top: 120px; }

.publications-reports-block {
  display: flex;
  margin: 0 -25px;
  flex-wrap: wrap; }
  .publications-reports-block > div {
    text-align: center;
    width: 50%; }
    .publications-reports-block > div a {
      display: block;
      padding: 15px 0; }
    .publications-reports-block > div img {
      /*width: 100%;*/
      margin-bottom: 10px; }
    .publications-reports-block > div strong {
      font-weight: bold;
      text-decoration: underline; }

.publications-reports-past h3 {
  padding-bottom: 20px;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 30px; }

.publications-reports-past-years {
  display: flex;
  flex-wrap: wrap; }
  .publications-reports-past-years > div {
    width: 50%;
    margin-bottom: 50px;
    padding-right: 10px; }
    .publications-reports-past-years > div strong {
      display: block;
      margin-bottom: 20px; }
    .publications-reports-past-years > div a {
      display: block;
      margin-bottom: 10px; }

@media screen and (max-width: 1200px) {
  .publications-header {
    padding: 60px; }
    .publications-header h1 {
      font-size: 55px; }
  .publications-reports-content {
    display: block;
    margin: 0; }
    .publications-reports-content > div {
      margin: 0;
      width: 100%;
      padding: 50px 200px; }
      .publications-reports-content > div:last-child {
        padding-top: 0; }
  .publications-row {
    display: block;
    margin: 0; }
    .publications-row > div {
      margin: 0;
      padding: 50px 200px;
      margin-bottom: 20px; } }

@media screen and (max-width: 1000px) {
  .publications-reports-content > div {
    padding: 50px 80px; }
  .publications-row > div {
    padding: 50px 80px; } }

@media screen and (max-width: 750px) {
  .publications-header h1 {
    font-size: 40px; }
  .publications-container {
    padding: 20px; }
  .publications-reports-content > div {
    padding: 50px 20px; }
  .publications-row > div {
    padding: 50px 20px; }
  .publications-reports-block > div {
    width: 100%; }
  .publications-reports-past-years > div {
    width: 100%; }
    .publications-reports-past-years > div:last-child {
      margin-bottom: 0; } }

.tollschedules-header {
  text-align: center;
  padding: 80px;
  padding-bottom: 0; }
  .tollschedules-header h1 {
    margin-bottom: 40px; }
  .tollschedules-header p {
    font-size: 18px;
    margin: 0 50px; }

.tollschedules-header-tabs {
  display: flex;
  justify-content: center;
  margin: 40px 0; }
  .tollschedules-header-tabs > div {
    position: relative;
    flex: 0 1 auto;
    border: 1px solid transparent;
    padding: 30px;
    margin: 10px;
    width: 400px;
    font-size: 20px;
    font-weight: bold;
    background-color: #f6f7f9;
    cursor: pointer; }
    .tollschedules-header-tabs > div.active {
      background-color: #fff;
      border: 1px solid #bbb;
      cursor: default; }
      .tollschedules-header-tabs > div.active:after, .tollschedules-header-tabs > div.active:before {
        display: block;
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-style: solid; }
      .tollschedules-header-tabs > div.active:after {
        z-index: 1;
        border-width: 15px 15px 0 15px;
        border-color: #fff transparent transparent transparent; }
      .tollschedules-header-tabs > div.active:before {
        z-index: 0;
        border-width: 16px 16px 0 16px;
        border-color: #bbb transparent transparent transparent; }

.tollschedules-content {
  background-color: #f6f7f9;
  padding: 30px 120px;
  text-align: center; }
  .tollschedules-content > div {
    display: none;
    animation: show-block 400ms ease; }
    .tollschedules-content > div.active {
      display: block; }

.tollschedules-content-subheader h2 {
  padding: 30px 0; }

.tollschedules-content-subheader-legend {
  margin-bottom: 20px;
  display: flex;
  justify-content: center; }
  .tollschedules-content-subheader-legend > div {
    margin: 20px;
    font-weight: bold; }
    .tollschedules-content-subheader-legend > div:first-child:before {
      background-color: #F9973E; }
    .tollschedules-content-subheader-legend > div:before {
      content: '';
      display: inline-block;
      vertical-align: middle;
      width: 100px;
      height: 25px;
      margin-right: 10px;
      background-color: #13ACE5; }

.tollschedules-content-main {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px; }
  .tollschedules-content-main > div {
    width: 50%; }

.tollschedules-content-holiday {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  margin-top: 30px;
  margin-bottom: 30px; }
  .tollschedules-content-holiday.riverside > div {
    width: 50%; }
  .tollschedules-content-holiday > div {
    width: 33.3333%; }

.tollschedules-content-block {
  background-color: #f6f7f9;
  padding: 10px; }
  .tollschedules-content-block > div {
    background-color: #fff;
    padding: 30px;
    height: 100%; }
  .tollschedules-content-block h3 {
    margin-bottom: 20px;
    letter-spacing: 1.5px;
    line-height: 1.1;
    font-weight: bold;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center; }
  .tollschedules-content-block p {
    font-size: 24px;
    margin-bottom: 20px; }
  .tollschedules-content-block .icon {
    margin-bottom: 30px;
    color: #4c6973; }
  .tollschedules-content-block img {
    width: 100%;
    max-width: 100%; }

.tollschedules-disclaimer {
  text-align: left;
  font-style: italic;
  padding: 15px; }

@media screen and (max-width: 1350px) {
  .tollschedules-content {
    padding: 30px 60px; } }

@media screen and (max-width: 1200px) {
  .tollschedules-content-block {
    padding: 5px; }
  .tollschedules-content-holiday > div {
    width: 50%; } }

@media screen and (max-width: 800px) {
  .tollschedules-content {
    padding: 30px 15px; } }

@media screen and (max-width: 750px) {
  .tollschedules-content-main > div {
    width: 100%; }
  .tollschedules-content-holiday.riverside > div {
    width: 100%; }
  .tollschedules-content-holiday > div {
    width: 100%; } }

@media screen and (max-width: 600px) {
  .tollschedules-content {
    padding: 30px 10px; }
  .tollschedules-content-block > div {
    padding: 30px 10px; }
  .tollschedules-content-block h3 {
    font-size: 24px;
    height: auto; }
  .tollschedules-content-block p {
    font-size: 16px; }
  .tollschedules-header {
    padding: 60px 10px 0 10px; }
    .tollschedules-header h1 {
      font-size: 40px; }
    .tollschedules-header p {
      margin: 0; }
  .tollschedules-header-tabs > div {
    font-size: 16px;
    padding: 20px 15px;
    margin: 5px;
    letter-spacing: -0.4px;
    width: auto; }
  .tollschedules-content-subheader {
    padding: 10px; }
    .tollschedules-content-subheader h2 {
      padding: 20px 0;
      font-size: 30px; }
    .tollschedules-content-subheader a {
      display: block; }
    .tollschedules-content-subheader-legend > div {
      margin: 10px; }
      .tollschedules-content-subheader-legend > div:before {
        display: block;
        margin-right: 0;
        margin-bottom: 10px; } }

.blue-banner {
  display: flex;
  height: 160px; }
  .blue-banner > div:first-child {
    width: 30%;
    padding-left: 80px;
    position: relative; }
    .blue-banner > div:first-child:after {
      content: '';
      position: absolute;
      top: 0;
      right: -35px;
      z-index: 1;
      width: 35px;
      height: 100%;
      border-style: solid;
      border-width: 80px 0 80px 35px;
      border-color: #02698c #02698c #02698c #0679a0; }
  .blue-banner > div:last-child {
    width: 70%;
    padding-left: 80px;
    padding-right: 80px; }

.blue-banner-icons {
  display: flex;
  background-color: #0679a0;
  color: #fff;
  text-align: center;
  white-space: nowrap; }
  .blue-banner-icons > div {
    flex: 1;
    padding: 40px 10px;
    position: relative; }
    .blue-banner-icons > div:first-child:after {
      content: '+';
      font-size: 26px;
      position: absolute;
      top: 50%;
      right: -10px;
      transform: translateY(-50%); }
  .blue-banner-icons img {
    width: 80px;
    height: 50px;
    margin-bottom: 20px; }

.blue-banner-triangle {
  display: none;
  height: 35px;
  width: 100%;
  position: relative;
  background-color: #02698c; }
  .blue-banner-triangle svg {
    height: 100%;
    width: 100%;
    position: absolute; }
    .blue-banner-triangle svg .triangle-path {
      fill: #0679a0; }

.blue-banner-text {
  display: flex;
  background-color: #02698c;
  align-items: center;
  justify-content: center;
  color: #fff; }
  .blue-banner-text a {
    color: #fff; }
  .blue-banner-text > div {
    display: flex;
    flex-direction: column;
    padding: 0 10px; }
    .blue-banner-text > div:first-child {
      width: 65%; }
    .blue-banner-text > div:last-child {
      width: 35%;
      align-items: center; }
    .blue-banner-text > div.single {
      width: 100%;
      align-items: flex-start; }
  .blue-banner-text h2 {
    margin-bottom: 15px; }
    .blue-banner-text h2 span {
      display: inline-block; }
    @media screen and (max-width: 1367px) {
      .blue-banner-text h2 {
        font-size: 26px; } }

@media screen and (max-width: 1200px) {
  .blue-banner {
    height: 190px; }
    .blue-banner > div:first-child {
      padding-left: 40px; }
      .blue-banner > div:first-child:after {
        width: 35px;
        border-width: 95px 0 95px 35px; }
    .blue-banner > div:last-child {
      padding-right: 40px; }
  .blue-banner-text {
    flex-direction: column;
    align-items: flex-start; }
    .blue-banner-text > div:first-child {
      width: auto;
      margin-bottom: 15px; }
    .blue-banner-text > div:last-child {
      width: auto;
      padding: 0; }
    .blue-banner-text > div.single {
      margin-bottom: 0; } }

@media screen and (max-width: 900px) {
  .blue-banner {
    display: block;
    height: auto; }
    .blue-banner > div:first-child {
      width: auto;
      padding-left: 0; }
      .blue-banner > div:first-child:after {
        display: none; }
    .blue-banner > div:last-child {
      width: auto;
      padding-left: 15px;
      padding-right: 15px; }
  .blue-banner-icons {
    justify-content: center; }
    .blue-banner-icons > div {
      max-width: 150px; }
  .blue-banner-triangle {
    display: block; }
  .blue-banner-text {
    padding: 30px;
    align-items: center;
    text-align: center; }
    .blue-banner-text h2 {
      font-size: 28px;
      line-height: 1; } }

.get-started {
  text-align: center;
  margin: 80px auto; }
  .get-started h2 {
    margin-bottom: 60px; }

.get-started-steps {
  display: flex;
  justify-content: center; }
  .get-started-steps > div {
    flex: 1;
    margin: 0 40px;
    max-width: 315px; }
  .get-started-steps-image {
    width: 315px;
    height: 210px;
    margin-bottom: 50px;
    border-radius: 6px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; }
  .get-started-steps h3 {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center; }
    .get-started-steps h3 span:first-child {
      font-size: 13px;
      background-color: #0679a0;
      display: inline-block;
      color: #fff;
      padding: 5px 8px;
      border-radius: 100px;
      line-height: 1;
      margin-right: 10px; }

@media screen and (max-width: 1200px) {
  .get-started h2 {
    margin-bottom: 80px; }
  .get-started-steps > div {
    margin: 0 15px;
    max-width: 290px; }
  .get-started-steps-image {
    width: 290px;
    height: 190px; }
  .get-started-steps h3 {
    display: block; }
    .get-started-steps h3 span:last-child {
      display: block;
      margin-top: 10px; } }

@media screen and (max-width: 1000px) {
  .get-started-steps {
    flex-direction: column;
    align-items: center; }
    .get-started-steps > div {
      max-width: 315px;
      margin-bottom: 60px; }
    .get-started-steps-image {
      width: 315px;
      height: 210px;
      margin-bottom: 20px; }
    .get-started-steps h3 {
      margin-bottom: 15px; } }

@media screen and (max-width: 600px) {
  .get-started {
    margin: 60px auto; }
    .get-started h2 {
      margin-bottom: 60px;
      font-size: 34px; }
  .get-started-steps > div {
    max-width: none; }
  .get-started-steps-image {
    width: 100%; }
  .get-started-steps h3 {
    font-size: 19px; } }

.two-column-hero {
  display: flex; }
  .two-column-hero > div {
    width: 50%; }
  .two-column-hero-inline .two-column-hero-content {
    padding: 40px 80px; }
  .two-column-hero-inline .two-column-hero-image {
    padding: 80px; }
    .two-column-hero-inline .two-column-hero-image img {
      width: 100%;
      max-width: 100%; }

.two-column-hero-content {
  padding: 80px; }
  .two-column-hero-content h1 {
    margin-bottom: 30px; }
    .two-column-hero-content h1 span {
      display: inline-block; }

.two-column-hero-text {
  max-width: 430px; }

.two-column-hero-link {
  margin-top: 50px; }

.two-column-hero-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; }

@media screen and (max-width: 1200px) {
  .two-column-hero-content {
    padding: 90px 60px; }
    .two-column-hero-content h1 {
      font-size: 55px; }
  .two-column-hero-text {
    max-width: 370px; } }

@media screen and (max-width: 1000px) {
  .two-column-hero > div {
    width: auto; }
  .two-column-hero-text {
    max-width: 600px; }
  .two-column-hero-image {
    display: none; } }

@media screen and (max-width: 600px) {
  .two-column-hero-inline .two-column-hero-content {
    padding: 20px; }
  .two-column-hero-content {
    padding: 40px 20px; }
    .two-column-hero-content h1 {
      font-size: 40px; }
  .two-column-hero-link {
    margin-top: 30px; } }

.accordion-parent {
  background-color: #f6f6f6;
  padding: 60px 50px; }

.accordion-wide .accordion-body {
  padding: 20px 0; }

.accordion-body {
  padding: 50px 220px;
  background-color: #fff;
  border-top: 6px solid #e1e1e1;
  box-shadow: -0.2px 2px 6px 0 rgba(0, 0, 0, 0.06); }

.accordion-item:first-child .accordion-item-header {
  border-top: none; }

.accordion-item.open .accordion-item-header:after {
  transform: translateY(-50%) rotate(90deg); }

.accordion-item.open .accordion-item-content {
  display: block; }

.accordion-item-header {
  position: relative;
  cursor: pointer;
  padding: 40px 120px 40px 80px;
  border-top: 1px solid #e1e1e1;
  text-transform: uppercase; }
  .accordion-item-header:after {
    font-family: "Font Awesome 5 Free";
    font-size: 15px;
    position: absolute;
    top: 50%;
    right: 40px;
    transform: translateY(-50%) rotate(0deg);
    content: '\f105';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #0679a0;
    border-radius: 50%;
    color: #fff; }

.accordion-item-content {
  /*padding: 20px 80px 40px 80px;*/
  padding: 0 60px 30px 60px;
  display: none;
  animation: show-block 400ms ease; }

.accordion-item-content img {
  width: 100%;
  height: auto;
  max-width: 100%; }

@media screen and (max-width: 1400px) {
  .accordion-body {
    padding: 50px 100px; } }

@media screen and (max-width: 1000px) {
  .accordion-body {
    padding: 50px; } }

@media screen and (max-width: 800px) {
  .accordion-body {
    padding: 20px; }
  .accordion-item-header {
    padding: 40px 120px 40px 30px;
    font-size: 22px; }
  .accordion-item-content {
    padding: 20px 30px; } }

@media screen and (max-width: 600px) {
  .accordion-parent {
    padding: 20px 0; }
  .accordion-wide .accordion-body {
    padding: 0; }
  .accordion-body {
    padding: 0; } }

.accordion-with-heading .accordion-heading {
  text-transform: uppercase;
  margin: 20px 25px; }

.accordion-with-heading .accordion-item-header {
  text-transform: none;
  padding: 40px 120px 40px 25px; }

.accordion-with-heading .accordion-item-content {
  padding: 20px 80px 40px 25px; }

.accordion-with-heading .show-enlarge-text:after {
  content: 'Click to enlarge';
  display: block; }

@media screen and (max-width: 800px) {
  .accordion-with-heading .accordion-item-header {
    font-size: 20px; } }

@media screen and (max-width: 600px) {
  .accordion-with-heading .accordion-heading {
    padding: 20px;
    margin: 20px 5px 0 5px; }
  .accordion-with-heading .accordion-item-header {
    font-size: 16px; }
  .accordion-with-heading .accordion-item-content {
    padding: 20px 20px 40px 25px; } }

@media screen and (max-width: 400px) {
  .accordion-with-heading .accordion-item-header {
    padding: 20px 100px 20px 25px; } }

.account-types-list {
  display: flex;
  align-items: flex-start;
  margin-bottom: 100px; }
  .account-types-list > div {
    flex: 1; }
    .account-types-list > div:first-child {
      border-top: 6px solid #35b5e2; }
    .account-types-list > div:nth-child(2) {
      border-top: 6px solid #1e90b8; }
    .account-types-list > div:last-child {
      border-top: 6px solid #056283; }

.account-types-list-item {
  padding: 10px 20px;
  background-color: #ffffff;
  margin: 0 20px;
  border-radius: 6px;
  box-shadow: -0.2px 2px 6px 0 rgba(0, 0, 0, 0.06); }

.account-types-list-block {
  padding: 25px 20px; }
  .account-types-list-block:first-child {
    border-bottom: 1px solid #e6e5e5; }
  .account-types-list-block__heading {
    margin-bottom: 10px; }
    .account-types-list-block__heading h2 {
      font-size: 24px;
      font-family: "Open Sans", sans-serif;
      font-weight: bold; }
  .account-types-list-block__subheading {
    font-style: italic; }
  .account-types-list-block__link a {
    width: 100%;
    text-align: center; 
    display:none !important;
  }

.account-types-list-block__text p {
  margin-bottom: 15px; }

.account-types-list-block__more-text {
  display: none;
  animation: show-flex 400ms ease; }
  .account-types-list-block__more-text p {
    margin-bottom: 15px; }

.account-types-list-block__more-less {
  display: none; }

.account-types-list-block__more.open .account-types-list-block__more-text {
  display: block; }

.account-types-list-block__more.open .account-types-list-block__more-more {
  display: none; }

.account-types-list-block__more.open .account-types-list-block__more-less {
  display: block; }

.account-types-list-block__more .icon {
  background-color: #0679a0;
  border-radius: 100%;
  width: 25px;
  height: 25px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  float: left; }

.account-types-list-block__more button {
  margin-left: -5px;
  margin-top: 20px;
  margin-bottom: 40px;
  cursor: pointer;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .account-types-list-block__more button a {
    text-decoration: underline;
    margin-left: 10px; }

@media screen and (max-width: 1200px) {
  .account-types-list-item {
    margin: 0;
    margin-right: 30px; }
    .account-types-list-item:last-child {
      margin-right: 0; }
  .account-types-list-block {
    padding: 20px 5px; } }

@media screen and (max-width: 1000px) {
  .account-types-list {
    flex-direction: column;
    align-items: stretch; }
  .account-types-list-item {
    margin-bottom: 20px;
    margin-right: 0; } }

@media screen and (max-width: 600px) {
  .account-types-list {
    margin-bottom: 50px; }
  .account-types-list-block__link a {
    padding: 15px; display:none !important;} }

.header-anchors {
  text-align: center;
  padding: 80px 40px 40px; }
  .header-anchors h1 {
    text-transform: uppercase;
    margin: 0 auto; }

.header-anchors-description {
  margin: 0 auto;
  margin-top: 40px;
  max-width: 820px; }
  .header-anchors-description p {
    font-size: 19px; }

.header-anchors-links {
  margin-top: 40px;
  white-space: nowrap; }
  .header-anchors-links a {
    display: inline-block;
    border: 1px solid #b9bdc8;
    padding: 20px 50px;
    margin: 5px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: -0.4px; }

@media screen and (max-width: 1450px) {
  .header-anchors-links a {
    padding: 20px 30px; } }

@media screen and (max-width: 1250px) {
  .header-anchors-links a {
    padding: 20px 10px; } }

@media screen and (max-width: 1050px) {
  .header-anchors-links {
    white-space: normal; }
    .header-anchors-links a {
      display: block; } }

@media screen and (max-width: 600px) {
  .header-anchors {
    padding: 40px 20px; }
    .header-anchors h1 {
      font-size: 40px; }
  .header-anchors-description p {
    font-size: 16px; } }

.contact-us {
  padding: 80px; }
  .contact-us h1 {
    margin-bottom: 40px; }
  .contact-us-subheading p {
    font-size: 19px; }
  .contact-us hr {
    border: 0;
    height: 1px;
    background: #e1e1e1;
    margin: 40px 0; }
  .contact-us h2 {
    margin-bottom: 40px; }
  .contact-us-subheading2 p {
    font-size: 20px; }

@media screen and (max-width: 1020px) {
  .contact-us {
    padding: 80px; } }

@media screen and (max-width: 600px) {
  .contact-us {
    padding: 40px 20px; }
    .contact-us h1 {
      font-size: 48px; } }

.contact-method {
  padding: 60px 100px; }

.contact-method-item {
  display: flex;
  background-color: #fff;
  margin: 10px;
  padding: 20px; }
  .contact-method-item > div {
    padding: 20px; }
    .contact-method-item > div:last-child {
      width: 100%; }
  .contact-method-item img {
    width: 50px; }
  .contact-method-item h2 {
    margin: 10px 0 20px 0; }
  .contact-method-item hr {
    border: 0;
    height: 1px;
    background: #e1e1e1;
    margin: 40px 0; }

@media screen and (max-width: 1200px) {
  .contact-method {
    padding: 60px; } }

@media screen and (max-width: 1020px) {
  .contact-method {
    padding: 30px 60px; } }

@media screen and (max-width: 600px) {
  .contact-method {
    padding: 20px 10px; }
  .contact-method-item {
    display: block; }
    .contact-method-item > div {
      padding: 10px; }
      .contact-method-item > div:first-child img {
        width: 40px; }
    .contact-method-item h2 {
      margin-top: 0; } }

.contact-accordion-item.open .contact-accordion-item-header:after {
  color: #0679a0;
  transform: translateY(-50%); }

.contact-accordion-item-header {
  position: relative;
  cursor: pointer;
  padding: 10px 10px 10px 45px;
  font-size: 16px;
  font-weight: normal;
  text-transform: none;
  border: none; }
  .contact-accordion-item-header:after {
    font-family: "Font Awesome 5 Free";
    font-size: 13px;
    font-weight: 900;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    content: '\f111';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 25px;
    height: 25px;
    border: 1px solid #bbb;
    border-radius: 50%;
    background: none;
    color: #fff; }

.contact-accordion-item-content {
  /*padding: 20px 30px;*/
  margin-left: 30px;
  padding: 20px 40px;
  display: none;
  animation: show-block 400ms ease;
  background-color: #f6f7f9; }

.contact-accordion-item-content img {
  width: 100%;
  height: auto;
  max-width: 100%; }

@media screen and (max-width: 800px) {
  .contact-accordion-item-header {
    padding: 10px 10px 10px 45px;
    font-size: 16px; }
  .contact-accordion-item-content {
    padding: 20px 40px; } }

@media screen and (max-width: 600px) {
  .contact-accordion-item-content {
    margin-left: 0px;
    padding: 30px;
    word-break: break-word; } }

.contact-form {
  margin: -10px -20px; }
  .contact-form label {
    display: block;
    font-weight: bold;
    margin-bottom: 10px;
    font-size: 14px; }
  .contact-form p {
    font-size: 14px; }
  .contact-form input[type='text'],
  .contact-form input[type='email'] {
    padding: 5px; }
  .contact-form input::file-selector-button {
    cursor: pointer;
    border: solid 1px #85c1d6;
    border-radius: 25px;
    color: #000;
    padding: 15px 40px;
    font-weight: bold;
    font-size: 14px; }
  .contact-form .button-outline {
    margin-left: 20px; }
  @media screen and (max-width: 600px) {
    .contact-form .button-outline {
      width: 100%;
      margin-left: 0; } }

.contact-form-help {
  font-size: 16px !important; }

.contact-form-message p {
  font-weight: bold;
  font-size: 16px; }

.contact-form-message .success {
  color: green; }

.contact-form-message .error {
  color: red; }

.contact-form-col {
  padding: 10px; }

.contact-form-2col {
  display: flex;
  flex-wrap: wrap; }

.contact-form-2col > div {
  width: 50%;
  padding: 10px; }

@media screen and (max-width: 600px) {
  .contact-form-2col > div {
    width: 100%; } }

.tab-header {
  display: flex;
  justify-content: center;
  margin: 40px 0;
  text-align: center; }
  .tab-header > div {
    position: relative;
    flex: 0 1 auto;
    border: 1px solid transparent;
    padding: 30px;
    margin: 10px;
    width: 400px;
    font-size: 20px;
    font-weight: bold;
    background-color: #f6f7f9;
    cursor: pointer; }
    .tab-header > div.active {
      background-color: #fff;
      border: 1px solid #bbb;
      cursor: default; }
      .tab-header > div.active:after, .tab-header > div.active:before {
        display: block;
        content: '';
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-style: solid; }
      .tab-header > div.active:after {
        z-index: 1;
        border-width: 15px 15px 0 15px;
        border-color: #fff transparent transparent transparent; }
      .tab-header > div.active:before {
        z-index: 0;
        border-width: 16px 16px 0 16px;
        border-color: #bbb transparent transparent transparent; }

.tab-content {
  display: none; }
  .tab-content.active {
    display: block; }

.anchor-links {
  text-align: center;
  padding-top: 50px; }
  .anchor-links-title {
    margin-bottom: 30px; }
  .anchor-links-item {
    display: inline-block;
    font-weight: bold;
    font-size: 18px;
    margin: 5px 20px;
    color: #0679a0; }
    .anchor-links-item:hover, .anchor-links-item:focus {
      text-decoration: none; }

@media screen and (max-width: 600px) {
  .anchor-links {
    padding-top: 30px; }
    .anchor-links-item {
      display: block; } }

.tabbed-content {
  text-align: center;
  padding: 50px; }
  .tabbed-content-title {
    margin-bottom: 30px; }
  .tabbed-content-links {
    margin-bottom: 50px; }
  .tabbed-content-link {
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    font-size: 18px;
    margin: 5px 20px;
    color: #0679a0;
    padding: 15px; }
    .tabbed-content-link.active {
      color: #000;
      border: 1px solid #ccc; }
    .tabbed-content-link:hover, .tabbed-content-link:focus {
      text-decoration: none; }
  .tabbed-content-body {
    padding: 50px;
    background-color: #fff;
    border-top: 6px solid #e1e1e1;
    box-shadow: -0.2px 2px 6px 0 rgba(0, 0, 0, 0.06); }
  .tabbed-content-text {
    display: none; }
    .tabbed-content-text.active {
      display: block; }

@media screen and (max-width: 1000px) {
  .tabbed-content-body {
    padding: 30px; } }

@media screen and (max-width: 600px) {
  .tabbed-content {
    padding: 30px 0px; }
    .tabbed-content-links {
      margin-bottom: 30px; }
    .tabbed-content-link {
      display: block; } }

/*# sourceMappingURL=site.css.map */
/* new added */
.regular-text-page{width:100%; padding:50px; background-color: #f6f7f9;}
.regular-text-page-content{width:100%; padding:15px; background-color: #fff;}
.list-alpha{list-style-type:lower-alpha !important; margin-left:2.2rem !important;}
.list-alpha li{margin-bottom:7px !important;}
.list-roman{list-style-type:lower-roman !important; margin-left:2.2rem !important;}
.list-roman li{margin-bottom:7px !important;}
.page-padding {padding:0 15px;}
ul.pp {margin-left: 2.2rem !important;}
li.privacypolicy{list-style:circle !important; list-style-position:outside; line-height:1.5rem; overflow-wrap:break-word;}
.header-spacing {padding:15px 0px 10px;}
#errorcontent {padding:0px 25px;}
#errorcontent ul {list-style:auto; padding:10px 50px; line-height:25px;}
.publications-reports-block > div img {width:100% !important; padding: 10px;}

@media screen and (max-width: 800px) {
   .regular-text-page{padding:20px; } 
   .regular-text-page-content{padding:8px; }
}
@media screen and (max-width: 600px) {
    .regular-text-page{padding:5px;}
    .regular-text-page-content{padding:14px; }
}
.row-hover tr:hover td { background-color: #99d5fd; color: #000000; font-weight:600;}

.VeteranDiscount {padding:20px 80px;}
.VeteranPlate{padding:10px; text-align:center; line-height:intial;}
@media screen and (max-width: 800px) {
    .VeteranDiscount {padding:20px;}
}
.notification > div {
    display: inline-grid;
}
.notification-icon .icon{ display:none;}
.notification {
    background-color: #fff5ac;}
    
.header-ODS {
  font-family: 'Economica', sans-serif;
  font-size: 45px;
  font-weight: bold;
  line-height: 0.76;
  letter-spacing: -1.63px;
  text-transform: uppercase; 
  margin-top:-30px;
  margin-bottom: 30px;
}    

@media screen and (max-width: 1200px) {
  .header-ODS {font-size:36px !important;}
     }



