@font-face {
  font-family: "Inter var";
  src: url("../fonts/inter.woff2") format("woff2");
  font-weight: 1 999;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Crimson Pro";
  src: url("../fonts/CrimsonPro-VariableFont_wght.woff2") format("woff2");
  font-weight: 1 999;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Crimson Pro";
  src: url("../fonts/CrimsonPro-Italic-VariableFont_wght.woff2") format("woff2");
  font-weight: 1 999;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-Light.woff2") format("woff2");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-LightItalic.woff2") format("woff2");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-Italic.woff2") format("woff2");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-Bold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Din Pro";
  src: url("../fonts/DINPro-BoldItalic.woff2") format("woff2");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
@font-face {
  font-family: "Hemic Icons";
  src: url("../fonts/Hemic-Icons.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
}
[class*=icon-]:before {
  display: inline-block;
  vertical-align: middle;
  font-family: "Hemic Icons";
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-down:before {
  content: "A";
}

.icon-arrow-left:before {
  content: "B";
}

.icon-arrow-right:before {
  content: "C";
}

.icon-arrow-up:before {
  content: "D";
}

.icon-lock:before {
  content: "E";
}

.icon-search:before {
  content: "F";
}

.icon-phone:before {
  content: "H";
}

.icon-facebook:before {
  content: "I";
}

.icon-twitter:before {
  content: "J";
}

.icon-youtube:before {
  content: "K";
}

.icon-linkedin:before {
  content: "L";
}

.icon-envelope-open:before {
  content: "M";
}

.icon-envelope-closed:before {
  content: "N";
}

.icon-location:before {
  content: "O";
}

.icon-menu:before {
  content: "P";
}

.icon-external-link:before {
  content: "Q";
}

.icon-checkmark:before {
  content: "R";
}

.icon-close:before {
  content: "S";
}

.icon-doc-icon:before {
  content: "T";
}

.icon-docx-icon:before {
  content: "T";
}

.icon-pdf-icon:before {
  content: "U";
}

.icon-link:before {
  content: "V";
}

.grid-item {
  border: 1px solid white;
  background-color: #717171;
  padding: 1rem;
  min-height: 300px;
}

.grid-item.tall {
  min-height: 600px;
}

.fixed-content {
  position: fixed;
}

.sticky-content {
  position: sticky;
  top: 0;
}

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

.sr-only {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.btn-dark-blue {
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  font-family: "Din Pro";
  font-size: 1em;
  font-weight: 400;
  color: white;
  background-color: #0E1D6F;
  border: 1px solid #0E1D6F;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
}
.btn-dark-blue > i[class*=icon-]:first-child {
  margin-right: 0.4rem;
}
.btn-dark-blue:visited {
  color: white;
}
.btn-dark-blue:hover {
  color: #0E1D6F;
  background-color: transparent;
}
@media (max-width: 768px) {
  .btn-dark-blue:hover {
    color: white;
    background-color: #0E1D6F;
  }
}

.btn-white-outline {
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  font-family: "Din Pro";
  font-size: 1em;
  font-weight: 400;
  color: white;
  border: 1px solid white;
  transition: background-color 0.2s ease-in, border-color 0.2s ease-in, color 0.2s ease-in;
}
.btn-white-outline > i[class*=icon-]:first-child {
  margin-right: 0.4rem;
}
.btn-white-outline:visited {
  color: white;
}
.btn-white-outline:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: white;
}
@media (max-width: 768px) {
  .btn-white-outline:hover {
    color: white;
    background-color: transparent;
  }
}

.btn-dark-blue-outline {
  border-radius: 9999px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  font-family: "Din Pro";
  font-size: 1em;
  font-weight: 400;
  color: #0E1D6F;
  border: 1px solid #0E1D6F;
  background-color: transparent;
  transition: background-color 0.2s ease-in, color 0.2s ease-in;
}
.btn-dark-blue-outline > i[class*=icon-]:first-child {
  margin-right: 0.4rem;
}
.btn-dark-blue-outline:visited {
  color: #0E1D6F;
}
.btn-dark-blue-outline:hover {
  color: white;
  background-color: #0E1D6F;
  border: 1px solid #0E1D6F;
}
.btn-dark-blue-outline :checked {
  color: white;
  background-color: #0E1D6F;
  border: 1px solid #0E1D6F;
}
@media (max-width: 768px) {
  .btn-dark-blue-outline:hover {
    color: #0E1D6F;
    border: 1px solid #0E1D6F;
    background-color: transparent;
  }
}

ul.link-list {
  list-style-type: none;
}
ul.link-list li a {
  text-decoration: none;
}
ul.link-list li a:hover {
  text-decoration: underline;
}

body {
  margin: 0;
  color: #0A0909;
  font-size: 14px;
  line-height: 1.4;
  display: grid;
  grid-template-columns: minmax(max(245px, 20%), 1fr) minmax(max(815px, 75%), 4fr);
  grid-template-areas: "nav header" "nav main" "nav footer";
}
body[data-search-open] {
  overflow: hidden;
}
body.no-sidebar-header {
  grid-template-columns: 100%;
  grid-template-areas: "main" "footer";
}
body.no-footer {
  grid-template-columns: minmax(max(245px, 20%), 1fr) minmax(max(815px, 75%), 4fr);
  grid-template-areas: "nav header" "nav main";
}
body.no-sidebar-header.no-footer {
  grid-template-columns: 100%;
  grid-template-areas: "main";
}
@media only screen and (max-width: 1075px) {
  body {
    grid-template-columns: 100%;
    grid-template-areas: "header" "main" "footer";
  }
  body[data-mobile-menu-open] {
    overflow: hidden;
  }
}

.alert[role=alert] {
  grid-area: main;
  grid-row-start: 1;
  position: sticky;
  top: 7rem;
  color: white;
  background-color: #b34330;
  margin: 0 30px;
  padding: 1rem 2rem;
  border-radius: 4px;
  height: -moz-fit-content;
  height: fit-content;
  overflow: scroll;
  z-index: 800;
}
.alert[role=alert]:target {
  display: none;
}
@media only screen and (max-width: 1075px) {
  .alert[role=alert] {
    top: 7rem;
  }
}
.alert[role=alert] .alert-close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}
.alert[role=alert] .alert-close .alert-close-btn {
  color: white;
  background-color: transparent;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.25s ease-out;
}
.alert[role=alert] .alert-close .alert-close-btn:hover {
  color: #0A0909;
}
.alert[role=alert] .alert-title {
  font-weight: bold;
}
.alert[role=alert] .alert-body {
  margin-top: 1rem;
}

.search-area {
  position: fixed;
  height: 100%;
  width: 100%;
  transform: translateX(100%);
  opacity: 0;
  background-color: white;
  z-index: 800;
  overflow: scroll;
  transition: transform 0.25s ease-in, opacity 0.25s ease-in;
}
body[data-search-open] .search-area {
  transform: translateX(0%);
  opacity: 1;
}
.search-area .search-title {
  font-size: 1.4rem;
}
.search-area form .pillbox-input > button:first-child[form=search] {
  right: 1.5ch;
  left: auto;
  top: 12px;
}
.search-area .search-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
}
.search-area .search-close .search-close-btn {
  border: none;
  font-size: 2rem;
  cursor: pointer;
  background-color: transparent;
}
.search-area .search-close .search-close-btn:hover {
  color: #0E1D6F;
}
.search-area .search-area-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: 1075px;
  margin: 15% auto 0;
  padding: 0 2rem;
}
.search-area .search-area-wrapper > * {
  flex: initial;
  width: 100%;
}
.search-area .search-area-wrapper .pillbox-input {
  margin: 2rem 0;
}
.search-area .search-area-wrapper .pillbox-input input {
  width: 100%;
}
.search-area .search-area-wrapper [type=reset] {
  color: gray;
}
.search-area .search-area-wrapper .quick-links-wrapper {
  margin-top: 3em;
}
.search-area .search-area-wrapper .quick-links-wrapper > * + * {
  margin-top: 1rem;
}
.search-area .search-area-wrapper .quick-links-wrapper p {
  text-transform: uppercase;
}
.search-area .search-area-wrapper .quick-links-wrapper .link-list {
  padding-left: 0;
  margin: 2em 0;
}
.search-area .search-area-wrapper .quick-links-wrapper .link-list li + li {
  margin-top: 1rem;
}
.search-area .search-area-wrapper .quick-links-wrapper .link-list a {
  color: #0E1D6F;
}
.search-area .search-area-wrapper .quick-links-wrapper .login-link {
  display: inline-block;
}
.search-area .search-area-wrapper .search-results-wrapper {
  margin-top: 2em;
}
.search-area .search-area-wrapper .search-results-wrapper .search-results-filters {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  font-size: 0.8rem;
  margin-top: 1rem;
}
@media only screen and (max-width: 600px) {
  .search-area .search-area-wrapper .search-results-wrapper .search-results-filters {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.search-area .search-area-wrapper .search-results-wrapper .search-results-filters form.search {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  flex: auto;
}
@media only screen and (max-width: 600px) {
  .search-area .search-area-wrapper .search-results-wrapper .search-results-filters form.search {
    justify-content: center;
    align-self: center;
  }
  .search-area .search-area-wrapper .search-results-wrapper .search-results-filters form.search > * {
    flex: 0 0 50%;
    margin-top: 1rem;
  }
}
.search-area .search-area-wrapper .search-results-wrapper .search-results-filters form.search label {
  margin-left: 2rem;
  display: flex;
}
@media only screen and (max-width: 600px) {
  .search-area .search-area-wrapper .search-results-wrapper .search-results-filters form.search label {
    margin-left: 0;
  }
}
.search-area .search-area-wrapper .search-results-wrapper .search-results-filters form.search input {
  margin-right: 0.5rem;
}
.search-area .search-area-wrapper .search-results-wrapper .search-results-filters form.search button[type=submit] {
  margin-left: 1.6rem;
}
@media only screen and (max-width: 600px) {
  .search-area .search-area-wrapper .search-results-wrapper .search-results-filters form.search button[type=submit] {
    margin-top: 1rem;
    margin-left: 0;
  }
}
.search-area .search-results-listing {
  margin-top: 1.8rem;
}
.search-area .search-results-listing ul {
  list-style-type: none;
  padding-left: 0;
}
.search-area .search-results-listing .search-result {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.search-area .search-results-listing .search-result + .search-result {
  margin-top: 4rem;
}
.search-area .search-results-listing .search-result img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  object-position: center;
  aspect-ratio: 1;
}
.search-area .search-results-listing .search-result .search-result-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-left: 1.5rem;
}
.search-area .search-results-listing .search-result .search-result-info small {
  color: #3a414f;
}
.search-area .search-results-listing .search-result .search-result-info .categories {
  margin-top: 1rem;
}
.search-area .search-results-listing .search-result .search-result-info > a {
  display: inline-block;
  margin: 0.5em 0 0.2em;
  color: #0E1D6F;
  font-weight: 800;
}

aside.side-bar {
  grid-area: nav;
  background-color: white;
  color: black;
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.333);
  z-index: 400;
  position: relative;
}
aside.side-bar > * {
  display: flex;
  flex-direction: column;
  height: 100vh;
  padding: 2rem 3rem;
  transition: height 0.25s ease-out;
}
aside.side-bar .logo {
  max-width: 250px;
  width: 100%;
}
aside.side-bar li a {
  color: #0E1D6F;
}
aside.side-bar .business-lines {
  display: none;
}
aside.side-bar .business-lines ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #717171;
  overflow: scroll;
  padding-left: 0;
}
aside.side-bar .business-lines ul li {
  flex: initial;
  padding-bottom: 0.4rem;
  text-transform: uppercase;
  margin-right: 1em;
  white-space: nowrap;
}
aside.side-bar .business-lines ul li.active {
  border-bottom: 4px solid white;
}
aside.side-bar .business-lines ul li:not(.active) {
  padding-bottom: calc(0.4rem + 4px);
}
aside.side-bar .business-lines ul li a {
  text-decoration: none;
}
aside.side-bar .primary-nav {
  margin-top: 3.5rem;
  font-family: "Din Pro";
  font-weight: 600;
  font-size: 1em;
  transition: left 0.3s;
}
@media only screen and (min-width: 1365px) {
  aside.side-bar .primary-nav {
    font-size: 1.25em;
  }
}
aside.side-bar .primary-nav li + * {
  margin-top: 1rem;
}
aside.side-bar .primary-nav .btn-dark-blue {
  font-weight: 600;
}
aside.side-bar .related-links {
  font-family: "Din Pro";
  font-weight: 500;
  margin-top: auto;
  font-size: 1em;
  margin-left: 1em;
}
@media only screen and (max-width: 1075px) {
  aside.side-bar .related-links {
    margin-bottom: 14em;
  }
}
aside.side-bar .related-links ul {
  padding-left: 0;
}
aside.side-bar .related-links li {
  line-height: 1.8;
}
aside.side-bar .related-links .login-link {
  text-decoration: none;
}
aside.side-bar .related-links .login-link > * {
  margin-right: 0.4rem;
}
aside.side-bar .related-links .link-list {
  margin-top: 1.6rem;
}
@media only screen and (max-width: 1075px) {
  aside.side-bar {
    grid-area: main;
    height: calc(100vh - 73px);
    top: 73px;
    width: 100%;
    position: fixed;
    transform: translateX(100%);
    opacity: 0;
    background-color: #3a414f;
    z-index: 700;
    transition: transform 0.25s ease-in, opacity 0.25s ease-in;
  }
  body[data-mobile-menu-open] aside.side-bar {
    transform: translateX(0%);
    opacity: 1;
    overflow: scroll;
  }
  aside.side-bar > * {
    height: auto;
  }
  aside.side-bar li a {
    color: white;
  }
  aside.side-bar .business-lines {
    display: block;
  }
  aside.side-bar .logo {
    display: none;
  }
  aside.side-bar .primary-nav {
    margin-top: 2rem;
    margin-left: 1rem;
    font-size: 1.2rem;
  }
}

#sidebar-nav-container {
  position: relative;
  overflow: hidden;
  height: 100vh;
  margin-top: 2em;
}
@media only screen and (max-width: 1075px) {
  #sidebar-nav-container {
    height: auto;
  }
}
#sidebar-nav-container nav {
  margin-bottom: 2em;
}
#sidebar-nav-container ul {
  padding-left: 0;
}

.secondary-nav {
  left: 0;
  transition: left 0.3s;
}
.secondary-nav > a.nav-back {
  display: inline-block;
  color: #717171;
  font-size: 0.75em;
  margin-bottom: 2em;
}
@media (max-width: 1075px) {
  .secondary-nav > a.nav-back {
    color: white;
  }
}
.secondary-nav > a.parent-link {
  display: block;
  font-family: "Din Pro";
  font-weight: 600;
  font-size: 1.25em;
  color: #0E1D6F;
  margin-bottom: 0.5em;
}
@media (max-width: 1075px) {
  .secondary-nav > a.parent-link {
    color: white;
  }
}
.secondary-nav .view-all {
  margin-top: 2em;
  font-size: 12px;
}
.secondary-nav ul {
  font-family: "Din Pro";
}
.secondary-nav ul li {
  line-height: 1.4;
  margin-bottom: 0.666em;
}
.secondary-nav ul li.active a {
  color: #0E1D6F;
  text-decoration: underline;
}
.secondary-nav ul li a {
  color: #717171;
  text-decoration: none;
}
@media (max-width: 1075px) {
  .secondary-nav ul li a {
    color: white;
  }
}
.secondary-nav + .primary-nav {
  left: -100%;
  position: absolute;
}
.secondary-nav.subnav-closed {
  left: 100%;
  position: absolute;
}
.secondary-nav.subnav-closed + .primary-nav {
  left: 0;
}

#skip-to-main {
  position: absolute;
  height: 0;
  top: 0;
  left: 3em;
  overflow: hidden;
  z-index: 1000;
}
#skip-to-main:focus {
  height: auto;
}

header.header {
  grid-area: header;
  z-index: 700;
  animation: header-background-scroll 1s linear;
  animation-play-state: paused;
  animation-delay: calc(var(--scroll) * -1s);
  animation-iteration-count: infinite;
  animation-direction: alternate;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
@media only screen and (max-width: 1075px) {
  header.header {
    background: white;
    animation: none;
  }
}
header.header > * {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
}
header.header .desktop-header {
  padding: 1.5rem 2.5rem;
  background-color: rgba(14, 29, 111, 0);
  transition: background-color 0.25s ease-out;
}
header.header .desktop-header:hover {
  background-color: #0e1d6f;
}
@media only screen and (max-width: 1075px) {
  header.header .desktop-header {
    display: none;
  }
}
@media (max-width: 1200px) {
  header.header .desktop-header .business-line-number a {
    height: 42px;
    width: 42px;
    background: rgb(239, 239, 239);
    border-radius: 50%;
    display: inline-block;
    overflow: hidden;
    color: black;
    padding: 3px 0 0 8px;
  }
  header.header .desktop-header .business-line-number a:before {
    content: "H";
    font-weight: 400;
    font-family: "Hemic Icons";
    font-size: 1.8rem;
    display: block;
  }
}
header.header .mobile-header {
  display: none;
  padding: 1rem 2rem;
}
@media only screen and (max-width: 1075px) {
  header.header .mobile-header {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
  }
}
header.header .mobile-header .caption {
  text-transform: uppercase;
  color: #717171;
  font-size: 0.7rem;
  text-align: center;
  margin-top: 0.3rem;
}
header.header .mobile-header .logo {
  width: 150px;
}
header.header .mobile-header .logo,
header.header .mobile-header .site-search,
header.header .mobile-header .business-line-number,
header.header .mobile-header .menu-btn {
  flex: none;
  margin: 0;
}
header.header .mobile-header .business-line-number,
header.header .mobile-header .menu-btn {
  margin-left: 0.4rem;
}
header.header .mobile-header .site-search {
  margin-left: auto;
}
header.header .mobile-header .site-search .search-btn {
  background-color: transparent;
  padding: 0.6rem;
  padding-bottom: 0;
}
header.header .mobile-header .site-search .search-btn i {
  color: #0E1D6F;
}
header.header .mobile-header .business-line-number i {
  font-size: 2rem;
  color: #0E1D6F;
}
header.header .mobile-header .menu-btn button {
  border: none;
  background-color: transparent;
  padding: 0.6rem;
  padding-bottom: 0;
  cursor: pointer;
}
header.header .mobile-header .menu-btn button i {
  font-size: 1.4rem;
  color: #0E1D6F;
}
header.header .business-lines {
  flex: auto;
}
header.header .business-lines ul {
  list-style-type: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  letter-spacing: 1;
}
header.header .business-lines ul li {
  flex: none;
}
header.header .business-lines ul li + li {
  margin-left: 1rem;
}
header.header .business-lines ul li.active a {
  border: 1px solid white;
}
header.header .business-lines ul li a {
  color: white;
  display: inline-block;
  width: 100%;
  text-decoration: none;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 9999px;
  padding: 1rem;
  transition: border 0.25s ease-out;
}
header.header .business-lines ul li a:hover {
  border: 1px solid white;
}
header.header .header-utils {
  flex: none;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
header.header .business-line-number,
header.header .site-search {
  flex: auto;
}
header.header .business-line-number {
  margin-right: 1.4rem;
}
@media (max-width: 1075px) {
  header.header .business-line-number span {
    display: none;
  }
}
header.header .business-line-number a {
  color: white;
  text-decoration: none;
  letter-spacing: 1;
}
header.header .business-line-number a:hover::before {
  content: "H";
  font-weight: 400;
  font-family: "Hemic Icons";
  line-height: 0;
}
@media (max-width: 1075px) {
  header.header .business-line-number a:hover::before {
    content: none;
  }
}
header.header .site-search .search-btn {
  border: none;
  border-radius: 999px;
  padding: 0.8rem;
  font-size: 1.4rem;
  cursor: pointer;
  transition: color 0.25s ease-out;
}
header.header .site-search .search-btn:hover {
  color: #0E1D6F;
}

@keyframes header-background-scroll {
  30% {
    background: #0e1d6f;
  }
}
main.main {
  grid-area: main;
  grid-row-start: 1;
}
@media only screen and (max-width: 1075px) {
  main.main {
    grid-row-start: initial;
  }
}

section.content {
  position: relative;
  background-color: #F8F6F2;
}
section.content p {
  min-height: 20px;
}
section.content article {
  padding: 2rem 4rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
section.content article .title {
  font-style: italic;
  font-weight: normal;
  margin-bottom: 1rem;
}

footer.footer {
  grid-area: footer;
  display: flex;
  flex-direction: column;
  font-size: 0.8rem;
}
footer.footer ul {
  list-style: none;
  flex: initial;
}
footer.footer ul li {
  display: inline-block;
}
@media only screen and (max-width: 1075px) {
  footer.footer ul {
    text-align: center;
  }
}

.newsletter-sign-up {
  background-color: white;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: space-between;
  padding: 1rem;
  font-size: 1rem;
}
@media only screen and (max-width: 1075px) {
  .newsletter-sign-up {
    flex-direction: column;
    flex-wrap: nowrap;
    padding: 2rem 1rem;
  }
}
.newsletter-sign-up .newsletter-main-cta {
  flex: initial;
  margin-right: 2em;
}
@media (max-width: 1225px) {
  .newsletter-sign-up .newsletter-main-cta {
    margin-bottom: 2em;
  }
}
.newsletter-sign-up .newsletter-main-cta .icon-envelope-open {
  font-size: 2.8rem;
  color: #0E1D6F;
  display: inline-block;
  vertical-align: middle;
}
.newsletter-sign-up .newsletter-main-cta p {
  font-size: 1.2rem;
  display: inline-block;
  vertical-align: -0.4ch;
  margin-left: 1.5rem;
}
@media only screen and (max-width: 1075px) {
  .newsletter-sign-up .newsletter-main-cta {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    margin: 0 4em;
  }
  .newsletter-sign-up .newsletter-main-cta .icon-envelope-open {
    display: block;
    text-align: center;
  }
  .newsletter-sign-up .newsletter-main-cta p {
    display: block;
    text-align: center;
    margin-top: 1rem;
    margin-left: 0;
  }
}
.newsletter-sign-up .newsletter-sign-up-ctas {
  flex: initial;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 1075px) {
  .newsletter-sign-up .newsletter-sign-up-ctas {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .newsletter-sign-up .newsletter-sign-up-ctas > * + * {
    margin-top: 1rem;
  }
}
.newsletter-sign-up .newsletter-sign-up-ctas > * + * {
  margin-left: 1rem;
}
@media only screen and (max-width: 1075px) {
  .newsletter-sign-up .newsletter-sign-up-ctas > * + * {
    margin-left: 0;
  }
}
.newsletter-sign-up .newsletter-sign-up-ctas > * {
  display: inline-block;
}
.newsletter-sign-up .newsletter-sign-up-ctas .btn-dark-blue-outline {
  padding: 0.5rem 1.5rem;
}
@media only screen and (max-width: 1075px) {
  .newsletter-sign-up .newsletter-sign-up-ctas {
    margin-top: 1rem;
    width: 100%;
  }
}
.newsletter-sign-up .newsletter-sign-up-ctas .sign-up-copy {
  font-family: "Crimson Pro";
  font-style: italic;
  font-size: 1.5rem;
  margin-right: 1rem;
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 1075px) {
  .newsletter-sign-up .newsletter-sign-up-ctas .sign-up-copy {
    display: block;
    text-align: center;
    margin: 0;
  }
}

.footer-info {
  padding: 1.4rem 1rem;
  background-color: #F8F6F2;
}
@media only screen and (max-width: 1075px) {
  .footer-info {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 2rem;
  }
}

.footer-image-links {
  background-color: #F8F6F2;
  padding: 34px 0 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4em;
}
@media only screen and (max-width: 600px) {
  .footer-image-links {
    flex-direction: column;
  }
}

.footer-links {
  flex: auto;
  display: flex;
  align-items: center;
  font-size: 1.2em;
  font-weight: 600;
  justify-content: center;
}
.footer-links a {
  color: #0A0909;
  text-decoration: none;
}
.footer-links a:hover {
  text-decoration: underline;
}
.footer-links .copyright:after,
.footer-links li + li:before {
  content: "|";
  padding: 0 0.5rem;
}
.footer-links .copyright {
  flex: initial;
}
@media only screen and (max-width: 1075px) {
  .footer-links {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .footer-links .copyright:after {
    content: none;
  }
}

.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  padding: 1em;
}
.social-links li + li {
  margin-left: 1rem;
}
.social-links a {
  color: #0E1D6F;
}
@media only screen and (max-width: 1075px) {
  .social-links {
    margin-top: 1rem;
    font-size: 1.4rem;
  }
}

form label {
  position: relative;
  display: block;
  cursor: pointer;
}
form label.hidden-label {
  display: none;
}
form .pillbox-input {
  position: relative;
}
form .pillbox-input > i[class*=icon-],
form .pillbox-input > button {
  position: absolute;
  top: 0.8em;
  border: none;
  background-color: transparent;
  font-size: 1.4rem;
  cursor: pointer;
}
form .pillbox-input > i[class*=icon-]:hover,
form .pillbox-input > button:hover {
  color: #0E1D6F;
}
form .pillbox-input > i[class*=icon-]:first-child,
form .pillbox-input > button:first-child {
  left: 1.5ch;
}
form .pillbox-input > i[class*=icon-]:last-child,
form .pillbox-input > button:last-child {
  right: 1.5ch;
}
form .pillbox-input input[type=text],
form .pillbox-input input[type=email],
form .pillbox-input input[type=tel],
form .pillbox-input select {
  font-size: 1rem;
  padding: 1rem;
  padding-left: 2rem;
  border: none;
  border-radius: 9999px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1882352941);
  width: 100%;
  -webkit-appearance: none;
}
form .pillbox-input select {
  color: gray;
  appearance: none;
  -webkit-appearance: none;
}
form .pillbox-input select ~ i {
  position: absolute;
  height: 1ch;
  bottom: 3.25ch;
  right: 2ch;
  font-size: 0.8rem;
  pointer-events: none;
}
form .pillbox-input textarea {
  font-family: "Inter var", sans-serif;
  font-size: 1.4rem;
  padding: 1rem;
  padding-left: 3.2rem;
  border: none;
  border-radius: 40px;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1882352941);
  width: 100%;
}
form .input-group {
  display: grid;
  grid-template-columns: 50% 50%;
}
form .input-group span {
  display: block;
}
form .input-group label {
  display: inline-block;
  margin: 0.5em 1em 0.5em 0;
}
form .input-group label input {
  margin-right: 0.5em;
}
form [type=submit] {
  padding: 0.5rem 1.5rem;
}

.form-three-col {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2em 6em;
  width: 100%;
}
@media (max-width: 768px) {
  .form-three-col {
    display: flex;
    flex-direction: column;
  }
}
.form-three-col .pillbox-input {
  width: 100%;
}
.form-three-col .pillbox-input label span {
  display: block;
  padding-left: 1em;
  margin-bottom: 1em;
}
.form-three-col .full-width {
  grid-column-start: 1;
  grid-column-end: 4;
}
.form-three-col .center-column {
  grid-column-start: 2;
  grid-column-end: 3;
}
.form-three-col [type=submit] {
  margin-top: 2em;
}

*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  font-family: "Inter var", sans-serif;
  font-size: 14px;
  line-height: 1.4;
  text-rendering: optimizeLegibility;
  hyphens: none;
  font-feature-settings: "calt" on, "dlig" on, "kern", "locl";
  font-variant-ligatures: discretionary-ligatures;
}

[hidden] {
  display: none !important;
}

h1,
h2,
h3,
h4 {
  font-family: "Crimson Pro", serif;
}

h5,
h6 {
  font-family: "Din Pro", serif;
}

img {
  max-width: 100%;
  height: auto;
  box-sizing: content-box;
}
img.kapa-bar {
  min-height: 75px;
  object-fit: cover;
}

a {
  color: #097880;
}
a:active, a:hover {
  color: #b34330;
}
a:visited {
  color: #0E1D6F;
}

iframe {
  max-width: 100%;
}

fieldset {
  border: none;
}

ul {
  padding-left: 15px;
}
ul.carousel {
  padding-left: 0;
}

.listing-grid + .btn-dark-blue {
  margin: 2rem auto 0;
  display: inline-block;
}

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