html {
  font-family: "paralucent", sans-serif;
  font-size: 16px;
  padding: 0;
  margin: 0;
}
@media (max-width: 1279px) {
  html.menu-open {
    overflow: hidden;
    position: relative;
    height: 100%;
  }
  html.menu-open #header-logo path {
    fill: #FFFFFF;
  }
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
body.show-focus-outlines a:focus, body.show-focus-outlines input:focus, body.show-focus-outlines textarea:focus, body.show-focus-outlines select:focus, body.show-focus-outlines button:focus {
  outline: limegreen solid 1px;
}

h1, h2, h3, p, ul, a {
  color: #27336A;
  margin: 0;
  padding: 0;
}

h1, h2, h3 {
  line-height: 1.4;
}

p, ul, a {
  line-height: 1.6;
}
@media (max-width: 767px) {
  p, ul, a {
    line-height: 1.5;
  }
}

a, div {
  text-decoration: none;
  transition: background-color 0.25s, color 0.25s, opacity 0.25s;
}
a.button, div.button {
  background-color: #27336A;
  padding: 5px 18px;
  min-height: 36px;
  border-radius: 15px;
  color: #FFFFFF;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 400;
  outline: none;
  border: 2px solid #27336A;
  cursor: pointer;
}
a:after, a:before, div:after, div:before {
  transition: transform 0.25s;
}
a:hover, div:hover {
  transition: background-color 0.25s, color 0.25s, opacity 0.25s;
}
a:hover:after, a:hover:before, div:hover:after, div:hover:before {
  transition: transform 0.25s;
}
a.with-arrow, a.with-chevron, div.with-arrow, div.with-chevron {
  display: inline-flex;
  align-items: center;
}
a.with-arrow svg, div.with-arrow svg {
  position: relative;
  margin-left: 10px;
}
a.with-arrow:hover, div.with-arrow:hover {
  background-color: #FFFFFF;
  color: #27336A;
  border: 2px solid #27336A;
}
a.with-arrow:hover svg path, div.with-arrow:hover svg path {
  fill: #27336A;
}
a.with-arrow:hover svg line, div.with-arrow:hover svg line {
  stroke: #27336A;
}
a.with-chevron:after, div.with-chevron:after {
  margin-left: 10px;
  content: url("/img/chevron-right.svg");
}
a.with-chevron.reverse:after, div.with-chevron.reverse:after {
  margin-left: 0;
  content: none;
}
a.with-chevron.reverse:before, div.with-chevron.reverse:before {
  margin-right: 10px;
  content: url("/img/chevron-left.svg");
}
a.with-chevron.reverse:hover:before, div.with-chevron.reverse:hover:before {
  display: block;
  position: relative;
  transform: translateX(-2px);
}
a.with-chevron:hover:after, div.with-chevron:hover:after {
  display: block;
  position: relative;
  transform: translateX(2px);
}

img {
  max-width: 100%;
}

header {
  padding-top: 10px;
}
header #header-wrapper {
  margin-top: 70px;
  position: relative;
}
@media (max-width: 767px) {
  header #header-wrapper {
    margin-top: 64px;
  }
}
header svg#header-strip {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
}
header a:hover {
  opacity: 0.8;
}
header a img#header-logo {
  position: relative;
  z-index: 20;
}
@media (max-width: 767px) {
  header a img#header-logo {
    width: 180px;
  }
}

main {
  flex: 1;
  margin: 70px 0 175px 0;
}
@media (max-width: 1023px) {
  main {
    margin: 60px 0 120px;
  }
}
@media (max-width: 767px) {
  main {
    margin: 40px 0 100px;
  }
}
main #breadcrumb-container {
  margin-bottom: 40px;
}
main section .content-container {
  max-width: 920px;
  margin: 0 auto;
}
main section .content-container * {
  color: #27336A;
}
main section .content-container h1 {
  font-size: 28px;
  margin-bottom: 38px;
}
@media (max-width: 767px) {
  main section .content-container h1 {
    font-size: 26px;
  }
}
main section .content-container p.with-underline {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 20px;
}
main section .content-container p.with-underline:after {
  position: absolute;
  content: "";
  width: 52px;
  height: 2px;
  border-radius: 20px;
  bottom: 0;
  background-color: #BF2480;
}
main section .content-container p.find-out-more {
  padding-top: 10px;
}
@media (max-width: 767px) {
  main section .content-container p.find-out-more {
    padding-top: 0;
  }
}
main section .content-container p, main section .content-container ul {
  font-size: 16px;
  font-weight: 300;
}
main section .content-container p li, main section .content-container ul li {
  margin-left: 15px;
}
main section .content-container a {
  text-decoration: underline;
}
main section .content-container *:not(li) {
  margin-bottom: 38px;
}
main section .content-container *:not(li).medium {
  font-weight: 400;
}
main section .content-container *:not(li).mb-0 {
  margin-bottom: 0;
}
main section .content-container.with-left-margin {
  margin-left: 45px;
}
@media (max-width: 1023px) {
  main section .content-container.with-left-margin {
    margin-left: 33px;
  }
}
@media (max-width: 767px) {
  main section .content-container.with-left-margin {
    margin-left: 0;
  }
}
main section .content-container.max-w-756px {
  max-width: 756px;
}
main section .content-container.home p {
  font-size: 20px;
}
@media (max-width: 767px) {
  main section .content-container.home p {
    font-size: 18px;
  }
}
main section .visit-websites-container {
  margin: 90px auto 0 auto;
  max-width: 687px;
  width: 100%;
  gap: 60px;
}
main section .visit-websites-container .website {
  display: flex;
  flex-direction: column;
}
main section .visit-websites-container .website .logo-container,
main section .visit-websites-container .website .button-container {
  display: flex;
  justify-content: center;
  flex: 1;
}
main section .visit-websites-container .website .logo-container {
  margin-bottom: 38px;
  min-height: 106px;
}
@media (max-width: 767px) {
  main section .visit-websites-container .website .logo-container {
    min-height: auto;
  }
}
main section .visit-websites-container .website .button-container button {
  margin-top: auto;
}
@media (max-width: 1023px) {
  main section .visit-websites-container {
    margin-top: 80px;
  }
}
@media (max-width: 767px) {
  main section .visit-websites-container {
    margin-top: 76px;
  }
}

footer {
  border-top: 1px solid #27336A;
  padding: 66px 0 62px 0;
  background-color: #F8F8F8;
}
@media (max-width: 767px) {
  footer {
    padding: 40px 0 78px 0;
  }
}
footer #footer-logo-container {
  margin-right: 56px;
}
@media (max-width: 767px) {
  footer #footer-logo-container {
    margin-right: 0;
  }
}
footer #footer-logo-container a:hover {
  opacity: 0.8;
}
footer #footer-logo-container a img#footer-logo {
  max-width: 160px;
}
@media (max-width: 767px) {
  footer #footer-logo-container a img#footer-logo {
    max-width: 100%;
    width: 140px;
  }
}
footer #footer-text-container {
  padding-top: 30px;
}
footer #footer-text-container a.menu-link {
  margin-bottom: 20px;
}
footer #footer-text-container .company-address {
  margin-top: auto;
}

.wrapper {
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 1366px) and (min-width: 1024px) {
  .wrapper {
    padding: 0 30px;
  }
}
@media (max-width: 1023px) {
  .wrapper {
    padding: 0 60px;
  }
}
@media (max-width: 767px) {
  .wrapper {
    padding: 0 30px;
  }
}
@media (max-width: 320px) {
  .wrapper {
    padding: 0 15px;
  }
}
@media (min-width: 1280px) {
  .wrapper {
    max-width: 1240px;
  }
}

.flex {
  display: flex;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-direction-col {
  flex-direction: column;
}

.flex-direction-row {
  flex-direction: row;
}

@media (max-width: 767px) {
  .flex-direction-col-mob {
    flex-direction: column;
  }
}

@media (max-width: 767px) {
  .items-center-mob {
    align-items: center;
  }
}

@media (max-width: 767px) {
  .align-self-flex-start-mob {
    align-self: center;
  }
}

@media (min-width: 768px) {
  .align-self-flex-start-desk {
    align-self: flex-start;
  }
}

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

@media (max-width: 767px) {
  .text-center-mob {
    text-align: center;
  }
}

.justify-flex-start {
  justify-content: flex-start;
}

.justify-flex-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-space-between {
  justify-content: space-between;
}

.justify-space-around {
  justify-content: space-around;
}

.justify-space-evenly {
  justify-content: space-evenly;
}

.items-flex-start {
  align-items: flex-start;
}

.items-flex-end {
  align-items: flex-end;
}

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

.items-baseline {
  align-items: baseline;
}

.align-self-flex-start {
  align-self: flex-start;
}

.align-self-flex-end {
  align-self: flex-end;
}

.align-self-stretch {
  align-self: stretch;
}

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

.align-self-baseline {
  align-self: baseline;
}

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