@font-face {
  font-family: "DM Sans";
  src: url(../fonts/DMSans-VariableFont_opsz\,wght.ttf);
  font-display: swap;
}
:root {
  --primary-color: #004aad;
  --primary-color-dark: #002556;
  --primary-text-color: white;
  --primary-filter: brightness(0) saturate(100%) invert(15%) sepia(88%) saturate(3437%) hue-rotate(206deg) brightness(94%) contrast(102%);
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  line-height: 1.3;
}
.map {
  filter: var(--primary-filter);
}
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  color: #000;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
a {
  text-decoration: none;
  color: inherit;
}
#flex-body-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
main {
  flex: 1;
}
header {
  background-color: #043c5e;
  border: none;
  position: relative;
  text-align: center;
  z-index: 2;
}
#header--container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 95%;
  width: 1140px;
}
#header--logo {
  color: var(--primary-color);
  font-weight: bold;
  text-align: left;
}
#header--logo img {
  max-height: 100px;
  padding: 16px 0;
}
#header--right {
  display: flex;
  align-items: center;
}
#header--images {
  display: flex;
  align-items: center;
}
#header--images img {
  padding: 0 8px;
  max-height: 22px;
}
.advertorial_top {
  font-size: 0.7rem;
  font-style: italic;
  opacity: 0.7;
  margin-left: 15px;
  color: white;
}
[data-pagetype=article] main {
  margin: 0 auto;
  max-width: 90%;
  width: 790px;
}
.article-author {
  font-size: 0.6rem;
  color: #666;
  margin-top: 25px;
}
.article-author+h1 {
  margin-top: 0;
}
h1 {
  color: #000;
  font-family: "Segoe UI", "Segoe WP", Arial, sans-serif;
  font-size: 2.5rem;
  line-height: 1.1;
  margin: 10px 0;
}
p {
  margin: 1em 0;
}
p a {
  color: var(--primary-color);
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-color: #9f9f9f;
}
.wp-block-image {
  margin: 1em 0;
}
.wp-block-image img {
  display: block;
  margin: 0 auto;
}
.background-box {
  margin-bottom: 12px;
  padding: 10px 15px;
}
.bgc-primary {
  background-color: var(--primary-color) !important;
}
.c-white {
  color: #fff !important;
}
.text-center {
  text-align: center !important;
}
.centered-primary {
  color: var(--primary-color);
  font-size: 130%;
  font-weight: bold;
  margin: 2em 0;
}
.picker {
  margin: 1em 0;
  width: 100%;
}
.desktop-picker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.mobile-picker {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
}
.picker-option {
  align-items: center;
  background: var(--primary-color);
  border-radius: 4px;
  color: var(--primary-text-color) !important;
  cursor: pointer;
  display: flex;
  justify-content: center;
  margin: 2px;
  min-width: 125px;
  padding: 10px;
  text-align: center;
  opacity: 0.85;
  flex: 1 0 auto;
}
.picker[data-columns="4"] .desktop-picker .picker-option {
  flex-basis: calc(25% - 4px);
}
.picker[data-mobile-columns="2"] .mobile-picker .picker-option {
  flex-basis: calc(50% - 4px);
}
.map {
  margin: 1em 0;
}
.map a {
  display: block;
}
.map img {
  display: block;
  margin: 0 auto;
}
.cta-button {
  background: var(--primary-color);
  border-radius: 12px;
  border: none;
  box-shadow: 0 6px 0 0 var(--primary-color-dark);
  color: #fff !important;
  cursor: pointer;
  display: block;
  font-size: 120%;
  font-weight: bold;
  margin-bottom: 16px;
  padding: 16px 24px;
  text-align: center;
  text-decoration: none;
}
ol {
  counter-reset: list-item;
  padding-left: 50px;
  margin: 0 0 16px;
}
ol li {
  counter-increment: list-item;
  list-style-type: none;
  min-height: 40px;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 8px;
}
ol li::before {
  background: var(--primary-color);
  border-radius: 50%;
  color: #fff;
  content: counter(list-item);
  display: block;
  font-size: 0.8rem;
  font-weight: bold;
  height: 30px;
  left: -40px;
  line-height: 30px;
  position: absolute;
  text-align: center;
  top: -2px;
  width: 30px;
}
footer {
  background-color: #868686;
  color: #fff;
  font-size: 0.8em;
  margin-top: 16px;
  padding: 16px;
  text-align: center;
}
#footer-legal {
  margin-bottom: 10px;
}
.menu-footer-container {
  display: inline-block;
}
footer ul {
  padding: 0;
  margin: 0;
}
footer ul li {
  display: inline-block;
  color: #fff;
  border-right: solid 1px #fff;
  padding: 0 10px;
}
footer ul li:last-child {
  border: none;
}
footer ul li a {
  color: #fff;
}
footer ul li:hover a {
  color: var(--primary-color);
}
@media screen and (max-width: 700px) {
  header img {
    max-height: 60px;
    padding: 8px 0;
  }
  #header--images {
    display: none;
  }
  h1 {
    font-size: 1.65rem;
  }
  .desktop-picker {
    display: none;
  }
  .mobile-picker {
    display: flex;
  }
  footer ul {
    border-top: dashed 1px #bbb;
    margin-top: 10px;
    padding-top: 12px;
  }
  footer ul li {
    border: none;
    display: block;
    padding: 4px 0;
  }
}