@charset "UTF-8";
* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

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, sub, sup, tt, var, center,
dl, dt, dd,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, 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;
}

article, aside, details, figcaption, figure, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  margin: 0;
  overflow-x: hidden;
}

blockquote, q {
  quotes: none;
}

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

:root {
  --app-height: 100%;
  --container: 1128px;
  --container-wide: 1440px;
  --margin: 8px;
  --color-green: #5AC8AE;
  --color-green-rgb: 90, 200, 174;
  --color-darkgreen: #267764;
  --color-new-yellow: #fbd884;
  --color-bege: #FFFBF2;
  --color-bege-rgb: 255, 251, 242;
  --color-orange: #E29A60;
  --color-lightgreen: #F4FFFC;
  --color-grey: #768C99;
  --color-black: #24292C;
  --color-black-rgb: 36, 41, 44;
  --color-white: #FFFFFF;
  --color-white-rgb: 255, 255, 255;
  --color-darkerblue: #0B3162;
  --color-darkerblue-rgb: 6, 39, 66;
  --color-darkblue: #0B3162;
  --color-lightblue: #40B3E2;
  --color-lightblue-rgb: 54, 186, 255;
  --color-lightestblue: #F4FCFF;
  --color-yellow: #FCDA62;
  --fast-transition: .2s;
  --transition: .4s;
  --slow-transition: .6s;
  --slowest-transition: 1s;
  --primary-font: "Outfit", "sans-serif";
  --button-primary-background: var(--color-white);
  --button-primary-color: var(--color-green);
  --button-secondary-background: var(--color-darkblue);
  --button-secondary-color: var(--color-white);
  --button-tertiary-background: var(--color-green);
  --button-tertiary-color: var(--color-white);
}

.container {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 1440px) {
  .container {
    padding: 0;
  }
}
.container--wide {
  max-width: var(--container-wide);
}
.container--lightestblue {
  background-color: var(--color-lightgreen) !important;
}

@font-face {
  font-family: "Outfit";
  src: url(../../assets/fonts/Outfit-Regular.woff2);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Outfit";
  src: url(../../assets/fonts/Outfit-Bold.woff2);
  font-weight: 700;
  font-style: normal;
}
svg,
svg > * {
  font-family: var(--primary-font);
}

.bounce {
  animation-name: bounce;
  animation-timing-function: cubic-bezier(0.28, 0.84, 0.42, 1);
}

@keyframes bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-8px);
  }
  50% {
    transform: scale(1.05, 0.95) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(-4px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}
.footer {
  color: var(--color-darkblue);
  background-color: var(--color-bege);
  padding: 50px 0;
  position: relative;
  /*
      Social Media
  */
  /*
      Absolute Image
  */
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  grid-template-rows: 1fr auto;
  gap: 30px;
}
@media (min-width: 768px) {
  .footer__grid {
    gap: 60px 30px;
  }
}
.footer__column {
  position: relative;
  z-index: 2;
}
.footer__column:first-child {
  grid-row: span 2;
}
@media (max-width: 669px) {
  .footer__column:first-child {
    display: grid;
    grid-template-columns: 1fr minmax(100px, 1fr);
    grid-template-rows: auto auto auto auto;
  }
  .footer__column:first-child > .footer__title,
  .footer__column:first-child > .footer__list {
    grid-column-start: 1;
    grid-column-end: 2;
  }
  .footer__column:first-child > .footer__social,
  .footer__column:first-child > .footer__copyright {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .footer__column:first-child > .footer__image {
    grid-column-start: 2;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 4;
  }
}
.footer__title {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .footer__title {
    font-size: 20px;
    line-height: 30px;
  }
}
.footer__list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer__item:not(:last-child) {
  margin-bottom: 12px;
}
.footer__link {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: inherit;
  text-decoration: none;
}
.footer__link:hover {
  color: var(--color-green);
}
@media (min-width: 768px) {
  .footer__link {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 26px;
  }
}
.footer__copyright {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  margin-top: 30px;
  color: var(--color-green);
}
.footer__social {
  display: flex;
  gap: 10px;
  margin-top: 30px;
}
.footer__socialLink {
  padding: 5px;
  display: inline-block;
  color: var(--color-darkblue);
}
.footer__socialLink:hover {
  color: var(--color-darkblue);
  transform: scale(1.1);
}
.footer__image {
  max-width: 380px;
  transform: translateX(-60px);
}
@media (max-width: 1023px) {
  .footer__image {
    position: relative;
    right: auto;
    bottom: auto;
    max-width: min(250px, 100%);
    transform: translateX(0);
  }
}

.navigation {
  --navigation-height: 100px;
  --navigation-light: var(--color-white-rgb);
  --navigation-container: 1300px;
  --navigation-padding: 30px;
  --navigation-padding-mobile: 20px;
  --navigation-theme: var(--color-white);
  --navigation-theme-secondary: var(--color-darkgreen);
  --innerLink-color: var(--color-white-rgb);
  --logo-color--primary: var(--color-white);
  --logo-color--secondary: var(--color-white);
  z-index: 11;
  position: absolute;
  left: 0;
  right: 0;
  padding-inline: var(--navigation-padding);
  height: var(--navigation-height);
  /*
      SUBMENU
  */
  /*
      Mobile Toggle
  */
  /*
      Social Media
  */
  /*
      Modifiers
  */
}
@media (max-width: 1300px) {
  .navigation {
    padding-inline: var(--navigation-padding-mobile);
  }
}
.navigation .container {
  max-width: var(--navigation-container);
}
.navigation__logoWrapper {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
}
@media (min-width: 1301px) {
  .navigation__logoWrapper {
    flex-grow: 0;
  }
}
.navigation__logoWrapper svg {
  width: 200px;
}
.navigation__logo--primary-color {
  fill: var(--logo-color--primary) !important;
}
.navigation__logo--secondary-color {
  fill: var(--logo-color--secondary) !important;
}
.navigation__wrapper {
  display: flex;
  gap: 36px;
  height: var(--navigation-height);
}
.navigation__actionableMenu {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  flex-grow: 1;
  gap: 24px;
}
.navigation__actionableMenu .navigation__column,
.navigation__actionableMenu .navigation__linkWrapper,
.navigation__actionableMenu .navigation__listItem,
.navigation__actionableMenu .navigation__link {
  height: 100%;
}
@media (max-width: 1300px) {
  .navigation__actionableMenu {
    position: absolute;
    left: 0;
    top: var(--navigation-height);
    right: 0;
    bottom: 0;
    height: calc(100vh - var(--navigation-height));
    width: 100vw;
    background-color: var(--navigation-theme-secondary);
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow-y: auto;
    padding-bottom: 140px;
    pointer-events: none;
    opacity: 0;
  }
  .navigation__actionableMenu .navigation__column,
  .navigation__actionableMenu .navigation__linkWrapper,
  .navigation__actionableMenu .navigation__listItem,
  .navigation__actionableMenu .navigation__link {
    height: auto;
  }
}
.navigation__linkWrapper {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}
@media (max-width: 1300px) {
  .navigation__linkWrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}
.navigation__link {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: var(--navigation-theme);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
}
@media (min-width: 1024px) {
  .navigation__link {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 1300px) {
  .navigation__link {
    justify-content: flex-start;
  }
}
.navigation__link:hover {
  color: var(--color-green);
}
@media (max-width: 1300px) {
  .navigation__link:hover {
    color: var(--navigation-theme);
  }
}
.navigation__link--has-dropdown {
  position: relative;
}
@media (max-width: 1300px) {
  .navigation__link--has-dropdown {
    justify-content: space-between;
  }
}
.navigation__link--has-dropdown:after {
  content: "";
  display: inline-block;
  aspect-ratio: 9/16;
  width: 12px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center 3px;
  background-image: url("data:image/svg+xml, <svg width='16' height='16' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='rgb(255%2C255%2C255)' stroke-width='2' class='bi bi-chevron-up'><path fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/></svg>");
  transform: rotate(180deg);
  margin-left: 10px;
  transition: var(--transition);
}
@media (min-width: 1301px) {
  .navigation__link--has-dropdown:hover + .navigation__submenu {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 1300px) {
  .navigation__link {
    padding: 0 20px;
  }
}
.navigation__listItem {
  /* MOBILE ACTIVE */
}
@media (max-width: 1300px) {
  .navigation__listItem {
    width: 100%;
  }
}
@media (min-width: 1301px) {
  .navigation__listItem--has-dropdown:hover .navigation__submenu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .navigation__listItem--has-dropdown:hover .navigation__link--has-dropdown {
    color: var(--color-green);
  }
  .navigation__listItem--has-dropdown:hover .navigation__link--has-dropdown:after {
    background-image: url("data:image/svg+xml, <svg width='16' height='16' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='rgb(90%2C200%2C174)' stroke-width='2' class='bi bi-chevron-up'><path fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/></svg>");
    transform: rotate(0) translateY(2px);
  }
}
.navigation__listItem--active .navigation__link--has-dropdown:after {
  transform: rotate(0) translateY(2px);
}
.navigation__listItem--active .navigation__submenu {
  pointer-events: auto;
  opacity: 1;
  height: 100%;
}
@media (max-width: 1300px) {
  .navigation__column {
    width: 100%;
  }
  .navigation__column:first-child .navigation__link {
    font-family: var(--primary-font);
    font-style: normal;
    font-size: 33px;
    line-height: 42px;
  }
  .navigation__column:last-child .navigation__link {
    font-size: 20px;
  }
}
.navigation__submenu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100px;
  background-color: var(--color-lightgreen);
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
  z-index: 10;
  overflow: hidden;
}
@media (max-width: 1300px) {
  .navigation__submenu {
    position: static;
    background-color: transparent;
    height: 0;
  }
}
.navigation__subgrid {
  display: grid;
  grid-template-columns: 264px 1fr;
  gap: min(108px, 8vw);
  padding-block: 50px;
  align-items: center;
  place-items: start;
}
@media (max-width: 1300px) {
  .navigation__subgrid {
    padding-block: 20px 0;
    grid-template-columns: 1fr;
    place-items: start;
  }
}
@media (max-width: 1300px) {
  .navigation__subgrid .navigation__subcolumn:first-child {
    display: none;
  }
}
.navigation__subgrid--4-cols {
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
@media (max-width: 1300px) {
  .navigation__subgrid--4-cols {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
@media (max-width: 1300px) {
  .navigation__subgrid--4-cols .navigation__subcolumn:first-child {
    display: none;
  }
}
.navigation__subcolumn-3 > .navigation__title:first-child {
  margin-top: 0 !important;
}
.navigation__title {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--color-darkblue);
  margin-bottom: 8px;
}
@media (max-width: 1300px) {
  .navigation__title {
    color: var(--color-white);
  }
}
.navigation__title + .navigation__innerLink {
  display: block;
  margin-bottom: 0;
}
@media (max-width: 1300px) {
  .navigation__title + .navigation__innerLink {
    margin-bottom: 10px;
  }
}
.navigation__text {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  margin-bottom: 8px;
}
.navigation__innerLink {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  color: var(--color-green);
  text-decoration: none;
}
.navigation__innerLink + .navigation__innerLink {
  margin-top: 10px;
  display: block;
}
.navigation__innerLink + .navigation__title {
  margin-top: 20px;
}
@media (max-width: 1300px) {
  .navigation__innerLink {
    color: rgba(var(--innerLink-color), 0.75);
  }
  .navigation__innerLink:hover {
    color: var(--navigation-theme);
  }
}
.navigation__innerLink--small {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-decoration: underline;
}
.navigation__cta {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  margin-top: 30px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: var(--color-white);
  display: flex;
  align-items: flex-end;
  cursor: pointer;
  text-decoration: none;
  max-width: 235px;
}
@media (min-width: 1024px) {
  .navigation__cta {
    font-size: 20px;
    line-height: 30px;
  }
}
.navigation__cta:hover {
  color: var(--color-white);
}
.navigation__cta:hover .navigation__ctaText:after {
  transform: translateY(-50%) translateX(5px);
}
.navigation__cta--large {
  margin-top: 0;
  min-height: 185px;
}
.navigation__ctaText {
  position: relative;
  padding: 15px 80px 15px 15px;
}
.navigation__ctaText:after {
  content: "";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  aspect-ratio: 9/16;
  width: 16px;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='10.167' height='36.331'><path fill='none' stroke='rgb(255%2C255%2C255)' stroke-width='1' d='m.911.422 8.156 17.516-8.156 17.98'/></svg>");
  transition: var(--transition);
}
.navigation__sublist {
  columns: 2;
  column-gap: 38px;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 1300px) {
  .navigation__sublist {
    columns: auto;
  }
}
.navigation__sublist a {
  margin-bottom: 9px;
  display: block;
}
.navigation__toggle {
  background-image: url("data:image/svg+xml, <svg width='28' height='16' viewBox='0 0 28 16' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0.666504 13.3333V16H27.3332V13.3333H0.666504ZM0.666504 6.66667V9.33333H27.3332V6.66667H0.666504ZM0.666504 0V2.66667H27.3332V0H0.666504Z' fill='rgb(255%2C255%2C255)'></path></svg>");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center right;
  width: 24px;
  aspect-ratio: 4/3;
  cursor: pointer;
}
@media (min-width: 1301px) {
  .navigation__toggle {
    display: none;
  }
}
.navigation__social {
  padding: 0 20px;
  display: none;
  gap: 10px;
  margin-top: 25px;
}
@media (max-width: 1300px) {
  .navigation__social {
    display: flex;
  }
}
.navigation__socialLink {
  padding: 5px;
  display: inline-block;
  color: var(--navigation-theme);
}
.navigation__socialLink:hover {
  color: var(--navigation-theme);
  transform: scale(1.1);
}
.navigation--open {
  background-color: var(--navigation-theme-secondary);
}
.navigation--open:before {
  content: "";
  background-image: url("../../assets/images/noise.png");
  background-repeat: repeat;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  mix-blend-mode: soft-light;
  opacity: 0;
  pointer-events: none;
}
.navigation--open .navigation__actionableMenu {
  opacity: 1;
  pointer-events: auto;
}
.navigation--open .navigation__actionableMenu:before {
  content: "";
  background-image: url("../../assets/images/noise.png");
  background-repeat: repeat;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  mix-blend-mode: soft-light;
  opacity: 0.19;
  pointer-events: none;
}
.navigation--open .navigation__toggle {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='16.518' height='16.519'><g fill='rgb(255%2C255%2C255)'><path data-name='Path 468' d='M2.795 16.01a.7.7 0 0 1-.51.223.7.7 0 0 1-.507-.224L.505 14.736a.7.7 0 0 1-.224-.507.7.7 0 0 1 .224-.507L13.721.507a.7.7 0 0 1 .507-.224.7.7 0 0 1 .507.224l1.272 1.273a.7.7 0 0 1 .224.507.7.7 0 0 1-.224.507Z'/><path data-name='Path 469' d='M.509 2.796a.7.7 0 0 1-.224-.51.7.7 0 0 1 .224-.507L1.782.506a.7.7 0 0 1 .507-.224.7.7 0 0 1 .507.224L16.01 13.722a.7.7 0 0 1 .224.507.7.7 0 0 1-.224.507l-1.273 1.272a.7.7 0 0 1-.507.224.7.7 0 0 1-.507-.224Z'/></g></svg>");
}
.navigation--bg-white {
  --navigation-theme: var(--color-darkblue);
  --navigation-theme-secondary: var(--color-white);
  --innerLink-color: var(--color-black-rgb);
  --logo-color--primary: var(--color-green);
  --logo-color--secondary: var(--color-darkblue);
  background-color: var(--color-white);
  position: relative;
}
.navigation--bg-white .navigation__toggle {
  background-image: url("data:image/svg+xml, <svg width='28' height='16' viewBox='0 0 28 16' fill='none' xmlns='http://www.w3.org/2000/svg'><path d='M0.666504 13.3333V16H27.3332V13.3333H0.666504ZM0.666504 6.66667V9.33333H27.3332V6.66667H0.666504ZM0.666504 0V2.66667H27.3332V0H0.666504Z' fill='rgb(11%2C59%2C91)'></path></svg>");
}
.navigation--bg-white.navigation--open .navigation__toggle {
  background-image: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='16.518' height='16.519'><g fill='rgb(11%2C59%2C91)'><path data-name='Path 468' d='M2.795 16.01a.7.7 0 0 1-.51.223.7.7 0 0 1-.507-.224L.505 14.736a.7.7 0 0 1-.224-.507.7.7 0 0 1 .224-.507L13.721.507a.7.7 0 0 1 .507-.224.7.7 0 0 1 .507.224l1.272 1.273a.7.7 0 0 1 .224.507.7.7 0 0 1-.224.507Z'/><path data-name='Path 469' d='M.509 2.796a.7.7 0 0 1-.224-.51.7.7 0 0 1 .224-.507L1.782.506a.7.7 0 0 1 .507-.224.7.7 0 0 1 .507.224L16.01 13.722a.7.7 0 0 1 .224.507.7.7 0 0 1-.224.507l-1.273 1.272a.7.7 0 0 1-.507.224.7.7 0 0 1-.507-.224Z'/></g></svg>");
}
.navigation--bg-white .navigation__link--has-dropdown:after {
  background-image: url("data:image/svg+xml, <svg width='16' height='16' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='rgb(11%2C59%2C91)' stroke-width='2' class='bi bi-chevron-up'><path fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/></svg>");
}

.three-columns__header {
  text-align: left;
}
.three-columns__header + .three-columns__layout {
  margin-top: 50px;
}
.three-columns__title {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 20px;
  color: var(--color-darkblue);
}
@media (min-width: 1024px) {
  .three-columns__title {
    font-size: 34px;
    line-height: 41px;
  }
}
.three-columns__description {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  max-width: 996px;
}
@media (min-width: 1024px) {
  .three-columns__description {
    font-size: 20px;
    line-height: 30px;
  }
}
.three-columns__description p + p,
.three-columns__description p + ul,
.three-columns__description p + ol,
.three-columns__description p + h1,
.three-columns__description p + h2,
.three-columns__description p + h3,
.three-columns__description p + h4,
.three-columns__description p + h5,
.three-columns__description p + h6,
.three-columns__description h1 + p,
.three-columns__description h2 + p,
.three-columns__description h3 + p,
.three-columns__description h4 + p,
.three-columns__description h5 + p,
.three-columns__description h6 + p,
.three-columns__description ul + p,
.three-columns__description ol + p {
  margin-top: 20px;
}
.three-columns__description h2 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 36px;
}
@media (min-width: 1024px) {
  .three-columns__description h2 {
    font-size: 34px;
    line-height: 41px;
  }
}
.three-columns__description h3 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
}
@media (min-width: 1024px) {
  .three-columns__description h3 {
    font-size: 28px;
    line-height: 34px;
  }
}
.three-columns__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}
@media (min-width: 768px) {
  .three-columns__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
}
.three-columns__column {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
}
@media (min-width: 1024px) {
  .three-columns__column {
    font-size: 20px;
    line-height: 30px;
  }
}
.three-columns ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.three-columns li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 14px;
}
.three-columns li:before {
  content: "›";
  position: absolute;
  left: 0;
  color: var(--color-darkblue);
}
.three-columns__layout {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  margin-top: 100px;
}
@media (min-width: 1024px) {
  .three-columns__layout {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 768px) {
  .three-columns__layout {
    columns: 3;
    column-gap: 50px;
  }
}
@media (min-width: 768px) {
  .three-columns--two-columns .three-columns__layout {
    columns: 2;
  }
}

.three-columns-bg {
  padding: 0 0 50px 0;
  color: var(--color-white);
  background-size: cover;
  background-position: center center;
  margin-top: 34px;
}
@media (min-width: 768px) {
  .three-columns-bg {
    padding: 100px 0;
  }
}
.three-columns-bg__header {
  text-align: left;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .three-columns-bg__header {
    margin-bottom: 50px;
  }
}
.three-columns-bg__title {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .three-columns-bg__title {
    font-size: 34px;
    line-height: 41px;
  }
}
@media (min-width: 768px) {
  .three-columns-bg__title {
    width: calc(100% - 250px);
  }
}
.three-columns-bg__description {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  max-width: 996px;
}
@media (min-width: 1024px) {
  .three-columns-bg__description {
    font-size: 20px;
    line-height: 30px;
  }
}
.three-columns-bg__description p + p,
.three-columns-bg__description p + ul,
.three-columns-bg__description p + ol,
.three-columns-bg__description p + h1,
.three-columns-bg__description p + h2,
.three-columns-bg__description p + h3,
.three-columns-bg__description p + h4,
.three-columns-bg__description p + h5,
.three-columns-bg__description p + h6,
.three-columns-bg__description h1 + p,
.three-columns-bg__description h2 + p,
.three-columns-bg__description h3 + p,
.three-columns-bg__description h4 + p,
.three-columns-bg__description h5 + p,
.three-columns-bg__description h6 + p,
.three-columns-bg__description ul + p,
.three-columns-bg__description ol + p {
  margin-top: 20px;
}
.three-columns-bg__description h2 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 36px;
}
@media (min-width: 1024px) {
  .three-columns-bg__description h2 {
    font-size: 34px;
    line-height: 41px;
  }
}
.three-columns-bg__description h3 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
}
@media (min-width: 1024px) {
  .three-columns-bg__description h3 {
    font-size: 28px;
    line-height: 34px;
  }
}
.three-columns-bg__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 768px) {
  .three-columns-bg__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
  }
}
.three-columns-bg__column {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
}
@media (min-width: 1024px) {
  .three-columns-bg__column {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 767px) {
  .three-columns-bg__column {
    font-size: 20px;
  }
}
.three-columns-bg__subtitle {
  font-weight: bold;
  margin-bottom: 20px;
}
.three-columns-bg__text {
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .three-columns-bg__text {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .three-columns-bg__subtitle, .three-columns-bg__text, .three-columns-bg__title {
    max-width: 92%;
  }
}
.three-columns-bg__imageWrapper {
  margin-bottom: -14px;
  transform: translateY(-34px);
}
@media (min-width: 768px) {
  .three-columns-bg__imageWrapper {
    margin-bottom: inherit;
    transform: none;
    position: absolute;
    top: -134px;
    right: 0;
  }
}
.three-columns-bg__imageWrapper img {
  display: block;
  margin-left: auto;
  margin-right: 0;
  max-width: 250px;
  object-fit: contain;
}
.three-columns-bg .button {
  width: 100%;
  text-align: center;
}
@media (min-width: 480px) {
  .three-columns-bg .button {
    width: auto;
  }
}
.three-columns-bg .button.button--white {
  background-color: var(--color-orange);
  color: var(--color-white);
}
.three-columns-bg .button.button--white:hover {
  background-color: var(--color-white);
  color: var(--color-orange);
}
.three-columns-bg--bottom .three-columns-bg__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  height: 100%;
}
.three-columns-bg--bottom .three-columns-bg__text {
  flex-grow: 1;
}
.three-columns-bg--noImage {
  padding: 50px 0;
  margin-top: 0;
}

.key-stats {
  background-color: var(--color-lightblue);
  padding: 50px 0 0 0;
  color: var(--color-white);
  position: relative;
}
.key-stats:before {
  content: "";
  background-image: url("../../assets/images/noise.png");
  background-repeat: repeat;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  mix-blend-mode: soft-light;
  opacity: 0.19;
}
@media (min-width: 768px) {
  .key-stats {
    padding: 60px 0 0 0;
  }
}
.key-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px 20px;
  margin-bottom: 30px;
}
@media (min-width: 1280px) {
  .key-stats__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 50px;
  }
}
.key-stats__item:only-child .key-stats__label {
  max-width: 9999px;
}
.key-stats__value {
  font-weight: 300;
  font-size: 60px;
  margin-bottom: 8px;
  word-break: break-all;
}
@media (min-width: 768px) {
  .key-stats__value {
    font-size: 100px;
  }
}
.key-stats__description {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .key-stats__description {
    margin-bottom: 40px;
  }
}
.key-stats__description a {
  color: var(--color-white);
}
.key-stats__description p + p,
.key-stats__description p + h2,
.key-stats__description p + h3,
.key-stats__description p + h4,
.key-stats__description p + h5,
.key-stats__description p + h6,
.key-stats__description h1 + p,
.key-stats__description h2 + p,
.key-stats__description h3 + p,
.key-stats__description h4 + p,
.key-stats__description h5 + p,
.key-stats__description h6 + p {
  margin-bottom: 20px;
  margin-top: 20px;
}
.key-stats__actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .key-stats__actions {
    padding-bottom: 60px;
  }
}
.key-stats__label {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
  opacity: 0.75;
  max-width: 290px;
}
@media (min-width: 1024px) {
  .key-stats__label {
    font-size: 20px;
    line-height: 30px;
  }
}
.key-stats__content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .key-stats__content {
    flex-wrap: nowrap;
    gap: 40px;
  }
}
.key-stats__column {
  width: 100%;
}
@media (min-width: 768px) {
  .key-stats__column {
    width: auto;
    max-width: calc(100% - 400px);
  }
}
.key-stats__column:last-child {
  display: flex;
  align-items: flex-end;
  max-width: 400px;
  width: 100%;
}
.key-stats__image {
  display: block;
  margin: 0 auto -30px auto;
  max-width: 100%;
}
@media (max-width: 767px) {
  .key-stats .button {
    width: 100%;
  }
}
.key-stats .button.button--white {
  color: var(--color-lightblue);
}
.key-stats .button.button--white:hover {
  border-color: var(--color-white);
  color: var(--color-white);
  background-color: var(--color-lightblue);
}
.key-stats--darkblue {
  background-color: var(--color-green);
}
.key-stats--darkblue .button.button--darkblue {
  background-color: var(--color-darkblue);
}
.key-stats--darkblue .button.button--darkblue:hover {
  background-color: var(--color-white);
  color: var(--color-darkblue);
}
.key-stats--darkblue .button.button--white {
  color: var(--color-green);
}
.key-stats--darkblue .button.button--white:hover {
  background-color: var(--color-green);
  color: var(--color-white);
  border-color: var(--color-white);
}
.key-stats[data-items-4-or-more=false] .key-stats__grid {
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 1280px) {
  .key-stats[data-items-4-or-more=false] .key-stats__grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    margin-bottom: 50px;
  }
}
.key-stats--small .key-stats__value {
  font-size: 40px;
}
@media (min-width: 768px) {
  .key-stats--small .key-stats__value {
    font-size: 60px;
  }
}

.jobs-table {
  --p-paragraph-color: #768C99;
  --p-background-color: #FFFBF2;
}
@media (max-width: 767px) {
  .jobs-table {
    --p-paragraph-color: #446981;
  }
}
.jobs-table__title,
.jobs-table h2 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 36px;
  color: var(--color-darkerblue);
  margin-bottom: 0;
}
@media (min-width: 1024px) {
  .jobs-table__title,
  .jobs-table h2 {
    font-size: 34px;
    line-height: 41px;
  }
}
@media (min-width: 768px) {
  .jobs-table__title,
  .jobs-table h2 {
    margin-bottom: 5px;
  }
}
.jobs-table__desktop {
  display: none;
}
@media (min-width: 1024px) {
  .jobs-table__desktop {
    display: table;
    color: var(--color-darkerblue);
  }
}
@media (min-width: 1024px) {
  .jobs-table__mobile {
    display: none;
  }
}
.jobs-table__mobile tr {
  min-width: 0 !important;
  width: 100%;
  max-width: 100%;
  padding-block: 20px;
}
.jobs-table__mobile tr:not(:first-child) {
  border-top: 1px solid rgba(var(--color-green-rgb), 0.25);
}
.jobs-table__mobile tr > * {
  padding: 20px;
}
@media (max-width: 1023px) {
  .jobs-table__attribute {
    width: max(269px, 80%);
  }
}
.jobs-table__attribute:not(:first-child) {
  margin-top: 16px;
}
.jobs-table__innerText {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  color: var(--p-paragraph-color);
  margin-top: 5px;
}
.jobs-table__innerTitle {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 26px;
  font-weight: bold;
  margin-bottom: 5px;
  color: var(--color-darkerblue);
}
.jobs-table__innerValue {
  color: var(--color-darkerblue);
}
.jobs-table table {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}
@media (min-width: 1024px) {
  .jobs-table table {
    font-size: 20px;
    line-height: 30px;
  }
}
.jobs-table th, .jobs-table td {
  overflow-wrap: break-word; /* Breaks the word and wraps onto next line */
}
@media (min-width: 1024px) {
  .jobs-table th, .jobs-table td {
    padding: 20px 20px;
  }
}
.jobs-table th {
  border-bottom: 1px solid var(--color-green);
  padding: 20px 22px;
}
@media (min-width: 1024px) {
  .jobs-table td:first-child {
    min-width: 280px;
  }
}
@media (min-width: 1024px) {
  .jobs-table td {
    min-width: 200px;
  }
}
@media (min-width: 1024px) {
  .jobs-table tbody tr:nth-child(4n+3),
  .jobs-table tbody tr:nth-child(4n+4) {
    background: var(--p-background-color);
  }
}
@media (min-width: 1024px) {
  .jobs-table tbody tr:nth-child(4n+2) td,
  .jobs-table tbody tr:nth-child(4n+4) td {
    padding-top: 0;
  }
}
.jobs-table thead th {
  font-weight: bold;
}
.jobs-table tbody, .jobs-table thead {
  --table-container: 20px;
}
@media (min-width: 1104px) {
  .jobs-table tbody, .jobs-table thead {
    --table-container: calc(var(--container) - 40px);
  }
}
@media (min-width: 1440px) {
  .jobs-table tbody, .jobs-table thead {
    --table-container: var(--container);
  }
}
@media (min-width: 1143px) {
  .jobs-table tbody td:first-child,
  .jobs-table tbody th:first-child, .jobs-table thead td:first-child,
  .jobs-table thead th:first-child {
    padding-left: calc((100vw - var(--table-container)) / 2 - 5px);
  }
}
@media (min-width: 1143px) {
  .jobs-table tbody td:last-child,
  .jobs-table tbody th:last-child, .jobs-table thead td:last-child,
  .jobs-table thead th:last-child {
    padding-right: calc((100vw - var(--table-container)) / 2 - 5px);
  }
}
.jobs-table .full-width-text {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 16px;
  line-height: 25px;
  color: var(--p-paragraph-color);
}
.jobs-table tr:not(.jobs-table__mobile) {
  display: none;
}
@media (min-width: 1024px) {
  .jobs-table tr:not(.jobs-table__mobile) {
    display: table-row;
  }
}

.text-image__grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .text-image__grid {
    gap: min(58px, 5vw);
    grid-template-columns: minmax(336px, 1fr) 1fr;
  }
}
@media (min-width: 1280px) {
  .text-image__grid {
    gap: min(108px, 10vw);
    grid-template-columns: minmax(436px, 1fr) 1fr;
  }
}
@media (min-width: 1440px) {
  .text-image__grid {
    grid-template-columns: minmax(536px, 1fr) 1fr;
  }
}
.text-image__grid:not(:first-of-type) {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .text-image__grid:not(:first-of-type) {
    margin-top: 70px;
  }
}
@media (min-width: 768px) {
  .text-image__grid--single-column {
    gap: min(58px, 5vw);
    grid-template-columns: minmax(55%, 436px);
  }
}
@media (min-width: 1280px) {
  .text-image__grid--single-column {
    gap: min(108px, 10vw);
    grid-template-columns: minmax(55%, 536px);
  }
}
@media (min-width: 1440px) {
  .text-image__grid--single-column {
    grid-template-columns: minmax(55%, 636px);
  }
}
.text-image__image:not(.text-image__absolute) {
  max-width: calc(100% + 40px);
  width: calc(100% + 40px);
  display: block;
  object-fit: cover;
  height: 100%;
  max-height: 100%;
  aspect-ratio: 15/16;
  margin-left: -20px;
}
@media (min-width: 768px) {
  .text-image__image:not(.text-image__absolute) {
    aspect-ratio: inherit;
    width: 100%;
    max-width: 100%;
    margin-left: inherit;
    opacity: 0;
    height: 0;
  }
}
.text-image img:not(.text-image__absolute):not(.text-image__image) {
  width: 100%;
  height: auto;
  display: block;
}
.text-image img:not(.text-image__absolute):not(.text-image__image) + * {
  margin-top: 30px;
}
.text-image img:not(.text-image__absolute):not(.text-image__image):last-child {
  margin-bottom: -5px;
  position: relative;
  z-index: 1;
}
.text-image__absolute {
  position: absolute;
  right: -10px;
  top: 0;
  height: 120px;
  width: 190px;
  transform: translateY(-54%);
  object-fit: contain;
}
@media (min-width: 768px) {
  .text-image__absolute {
    right: 55px;
  }
}
.text-image__column {
  background-size: cover;
  position: relative;
}
@media (max-width: 767px) {
  .text-image__column {
    background-image: none;
  }
}
@media (min-width: 1280px) {
  .text-image__column:only-child {
    width: 610px;
  }
}
.text-image__column--center {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none !important;
}
.text-image__column--center .text-image__image {
  width: inherit;
  height: inherit;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: inherit;
  margin: 0 auto;
  object-fit: inherit;
  opacity: 1;
}
.text-image__column--bottom {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-image: none !important;
}
.text-image__column--bottom .text-image__image {
  width: inherit;
  height: inherit;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: inherit;
  margin: 0 auto;
  object-fit: inherit;
  opacity: 1;
}
.text-image__column--top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-image: none !important;
}
.text-image__column--top .text-image__image {
  width: inherit;
  height: inherit;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: inherit;
  margin: 0 auto;
  object-fit: inherit;
  opacity: 1;
}
.text-image h2 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 20px;
  color: var(--color-darkblue);
}
@media (min-width: 1024px) {
  .text-image h2 {
    font-size: 34px;
    line-height: 41px;
  }
}
.text-image h3 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 20px;
  color: var(--color-green);
}
@media (min-width: 1024px) {
  .text-image h3 {
    font-size: 28px;
    line-height: 34px;
  }
}
.text-image strong {
  color: var(--color-green);
}
.text-image ol {
  counter-reset: section;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.text-image ol li:before {
  content: counters(section, ".") ". ";
  counter-increment: section;
  color: var(--color-green);
  font-weight: bold;
  font-size: inherit;
  min-width: 18px;
  display: inline-block;
  margin-right: 4px;
}
.text-image ol ol {
  margin-left: 30px;
  margin-top: 30px;
}
.text-image ol ul {
  margin-left: 30px;
}
.text-image ol + p {
  margin-top: 30px;
}
.text-image ul {
  margin: 0;
  padding: 30px 20px;
  list-style-type: disc;
}
.text-image ul:last-child {
  padding-bottom: 0;
}
.text-image ul li:before {
  content: none;
}
.text-image li {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .text-image li {
    font-size: 20px;
    line-height: 30px;
  }
}
.text-image li:last-child {
  margin-bottom: 0;
}
.text-image p {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
}
@media (min-width: 1024px) {
  .text-image p {
    font-size: 20px;
    line-height: 30px;
  }
}
.text-image p + * {
  margin-top: 30px;
}
.text-image p + img {
  margin-top: 60px;
}
.text-image p + p {
  margin-top: 20px;
}
.text-image p + ul {
  margin-top: 0;
}
.text-image__tableWrapper {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .text-image__tableWrapper {
    margin-top: 100px;
  }
}
.text-image--darkblue {
  background-color: var(--color-grey);
  color: var(--color-white);
}
.text-image--darkblue h2 {
  color: var(--color-white);
}
.text-image--darkblue a:hover {
  color: var(--color-lightgreen);
}
.text-image--darkerblue {
  background-color: var(--color-darkerblue);
  color: var(--color-white);
}
.text-image--darkerblue h2 {
  color: var(--color-white);
}
.text-image--darkerblue a:hover {
  color: var(--color-lightgreen);
}
.text-image--lightestblue {
  background-color: var(--color-lightgreen);
}
.text-image--lightblue {
  background-color: var(--color-green);
  color: var(--color-white);
}
.text-image--lightblue strong,
.text-image--lightblue h3,
.text-image--lightblue h2,
.text-image--lightblue a {
  color: var(--color-darkerblue);
}
.text-image--lightblue a:hover {
  color: var(--color-grey);
}
.text-image--lightblue ol li:before {
  color: var(--color-darkerblue);
}
@media (min-width: 768px) {
  .text-image--reversed .text-image__column:nth-child(2) {
    order: -1;
  }
}
@media (max-width: 767px) {
  .text-image--column-has-absolute-image .text-image__grid:last-child {
    gap: 120px;
  }
}
.text-image--container-has-absolute-image .text-image__grid {
  position: relative;
  z-index: 1;
}
.text-image--container-has-absolute-image .container > img {
  z-index: 1;
}
.text-image--container-has-absolute-image .text-image__absolute {
  transform: translateY(-100%);
  max-height: 140px;
}
@media (min-width: 768px) {
  .text-image--container-has-absolute-image .text-image__absolute {
    transform: translateY(calc(-100px - 40%));
    max-height: initial;
  }
}
.text-image--content-space-top .text-image__column:first-child {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .text-image--content-space-top .text-image__column:first-child {
    padding-top: 100px;
  }
}
@media (min-width: 768px) {
  .text-image--content-space-bottom .text-image__column:first-child:not(:only-child) {
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .text-image--large-content .text-image__grid {
    gap: min(58px, 5vw);
    grid-template-columns: minmax(336px, 1fr) 1fr;
  }
}
@media (min-width: 1280px) {
  .text-image--large-content .text-image__grid {
    gap: min(108px, 10vw);
    grid-template-columns: minmax(720px, 1fr) 1fr;
  }
}
@media (min-width: 1280px) {
  .text-image--large-content .text-image__grid {
    gap: min(108px, 10vw);
    grid-template-columns: minmax(720px, 1fr) 1fr;
  }
}
@media (min-width: 768px) {
  .text-image--large-content.text-image--reversed .text-image__grid {
    gap: min(58px, 5vw);
    grid-template-columns: 1fr minmax(336px, 1fr);
  }
}
@media (min-width: 1280px) {
  .text-image--large-content.text-image--reversed .text-image__grid {
    gap: min(108px, 10vw);
    grid-template-columns: 1fr minmax(720px, 1fr);
  }
}
@media (min-width: 1440px) {
  .text-image--large-content.text-image--reversed .text-image__grid {
    grid-template-columns: 1fr minmax(720px, 1fr);
  }
}
@media (min-width: 1280px) {
  .text-image--large-content .text-image__column:only-child {
    width: 996px;
  }
}
.text-image--pushover-next-element {
  margin-bottom: -65px;
}
.text-image--text-light {
  color: var(--color-white);
}
.text-image--text-light h2 {
  color: var(--color-white);
}
.text-image .table-with-dropdown .container {
  padding: 0;
  margin: 0 -20px;
}
.text-image .table-with-dropdown__mobile {
  margin: 0 -20px;
}

.spacer {
  height: 20px;
}
.spacer--xs {
  height: 20px;
}
@media (min-width: 768px) {
  .spacer--xs {
    height: 40px;
  }
}
.spacer--s {
  height: 30px;
}
@media (min-width: 768px) {
  .spacer--s {
    height: 60px;
  }
}
.spacer--m {
  height: 40px;
}
@media (min-width: 768px) {
  .spacer--m {
    height: 80px;
  }
}
.spacer--l {
  height: 50px;
}
@media (min-width: 768px) {
  .spacer--l {
    height: 100px;
  }
}
@media (max-width: 767px) {
  .spacer--xs-mobile {
    height: 20px;
  }
}
@media (max-width: 767px) {
  .spacer--s-mobile {
    height: 30px;
  }
}
@media (max-width: 767px) {
  .spacer--m-mobile {
    height: 40px;
  }
}
@media (max-width: 767px) {
  .spacer--l-mobile {
    height: 50px;
  }
}
.spacer--xs-desktop {
  height: 0;
}
@media (min-width: 768px) {
  .spacer--xs-desktop {
    height: 40px;
  }
}
.spacer--s-desktop {
  height: 0;
}
@media (min-width: 768px) {
  .spacer--s-desktop {
    height: 60px;
  }
}
.spacer--m-desktop {
  height: 0;
}
@media (min-width: 768px) {
  .spacer--m-desktop {
    height: 80px;
  }
}
.spacer--l-desktop {
  height: 0;
}
@media (min-width: 768px) {
  .spacer--l-desktop {
    height: 100px;
  }
}
.spacer--lightblue {
  background: var(--color-green);
}
.spacer--lightestblue {
  background: var(--color-lightgreen);
}
.spacer--darkblue {
  background: var(--color-grey);
}
.spacer--darkerblue {
  background: var(--color-darkerblue);
}

.testimonial {
  background-color: var(--color-green);
  color: var(--color-white);
  padding: 50px 0;
  position: relative;
}
.testimonial:before {
  content: "";
  background-image: url("../../assets/images/noise.png");
  background-repeat: repeat;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  mix-blend-mode: soft-light;
  opacity: 0.19;
  pointer-events: none;
}
@media (min-width: 768px) {
  .testimonial {
    padding: 120px 0;
  }
}
.testimonial .container {
  max-width: 912px;
}
.testimonial__imageWrapper {
  display: none;
}
@media (min-width: 1280px) {
  .testimonial__imageWrapper {
    display: block;
    position: absolute;
    right: 98%;
    height: calc(100% + 140px);
  }
}
.testimonial__imageWrapper img {
  max-width: 220px;
  object-fit: contain;
  height: 100%;
}
.testimonial__content {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  position: relative;
}
@media (min-width: 1024px) {
  .testimonial__content {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 768px) {
  .testimonial__content {
    padding-left: 100px;
  }
}
.testimonial__content:before {
  content: url("data:image/svg+xml, <svg xmlns='http://www.w3.org/2000/svg' width='68.628' height='52.408'><path fill='%23fff' d='M0 52.408V36.837a38.446 38.446 0 0 1 2.6-13.553 59.346 59.346 0 0 1 6.848-13.048A50.5 50.5 0 0 1 18.675-.001l13.553 8a69.641 69.641 0 0 0-6.6 13.264 44.206 44.206 0 0 0-2.559 15.427v15.718zm36.4 0V36.837A38.446 38.446 0 0 1 39 23.284a59.346 59.346 0 0 1 6.848-13.048A50.5 50.5 0 0 1 55.075-.001l13.553 8a69.641 69.641 0 0 0-6.6 13.264 44.206 44.206 0 0 0-2.559 15.427v15.718z'/></svg>");
  display: block;
  color: inherit;
  font-family: inherit;
  margin-top: 0;
  margin-bottom: 15px;
  margin-left: 0;
}
@media (min-width: 768px) {
  .testimonial__content:before {
    position: absolute;
    left: 0;
    top: -10px;
    margin: auto;
  }
}
.testimonial__text {
  margin-bottom: 20px;
}
.testimonial__text a {
  color: var(--color-darkblue);
}
.testimonial__text a:hover {
  color: var(--color-lightgreen);
}
.testimonial__author {
  font-weight: bold;
}

.table .container {
  padding: 0;
}
.table__title {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 36px;
  padding: 0 20px;
  color: var(--color-darkblue);
}
@media (min-width: 1024px) {
  .table__title {
    font-size: 34px;
    line-height: 41px;
  }
}
@media (min-width: 1440px) {
  .table__title {
    padding: 0;
  }
}
.table table {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  margin-top: 10px;
}
@media (min-width: 1024px) {
  .table table {
    font-size: 20px;
    line-height: 30px;
  }
}
.table table th, .table table td {
  padding: 0 20px;
  text-align: left;
}
@media (min-width: 1024px) {
  .table table th, .table table td {
    padding: 20px;
  }
}
.table table th:nth-child(odd), .table table td:nth-child(odd) {
  padding-top: 20px;
}
@media (min-width: 1440px) {
  .table table th:nth-child(odd), .table table td:nth-child(odd) {
    padding-left: 0;
  }
}
.table table th:nth-child(even), .table table td:nth-child(even) {
  padding-top: 10px;
  padding-bottom: 20px;
}
@media (max-width: 767px) {
  .table table th:nth-child(even), .table table td:nth-child(even) {
    border-bottom: 1px solid rgba(var(--color-green-rgb), 0.25);
  }
}
@media (min-width: 1024px) {
  .table table th:nth-child(even), .table table td:nth-child(even) {
    padding: 20px;
  }
}
@media (min-width: 1024px) {
  .table table th, .table table td {
    border-bottom: 1px solid rgba(var(--color-green-rgb), 0.25);
  }
}
.table table th {
  font-weight: bold;
  display: none;
}
.table table tbody > tr:last-child:nth-child(even):after,
.table table tbody > tr:last-child:nth-child(even):before,
.table table tbody > tr:last-child > td {
  border-bottom: none;
}
.table table tbody tr {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .table table tbody tr {
    flex-direction: row;
  }
}
.table table tbody tr:nth-child(even) {
  background-color: var(--color-lightgreen);
}
.table table tbody tr:nth-child(even):before, .table table tbody tr:nth-child(even):after {
  position: absolute;
  top: -1px;
  bottom: 0;
  background-color: var(--color-lightgreen);
  z-index: -1; /* Position it behind the actual table content */
  border-bottom: 1px solid rgba(var(--color-green-rgb), 0.25);
  border-top: 1px solid rgba(var(--color-green-rgb), 0.25);
}
@media (min-width: 768px) {
  .table table tbody tr:nth-child(even):before, .table table tbody tr:nth-child(even):after {
    content: "";
  }
}
.table table tbody tr:nth-child(even):before {
  left: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .table table tbody tr:nth-child(even):before {
    left: -100vw;
    right: 100%;
  }
}
.table table tbody tr:nth-child(even):after {
  left: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .table table tbody tr:nth-child(even):after {
    left: 100%;
    right: -100vw;
  }
}
.table table tbody td:first-child {
  font-weight: bold;
  color: var(--color-darkblue);
}
@media (min-width: 768px) {
  .table table tbody td:first-child {
    min-width: inherit;
    width: 260px;
  }
}
@media (min-width: 768px) {
  .table table tbody td:last-child {
    min-width: inherit;
    width: calc(100% - 240px);
  }
}
.table--has-head .table thead {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .table--has-head .table thead {
    flex-direction: row;
  }
}
.table--has-head .table thead tr:before, .table--has-head .table thead tr:after {
  position: absolute;
  top: -1px;
  bottom: 0;
  z-index: -1; /* Position it behind the actual table content */
  border-bottom: 1px solid rgba(var(--color-green-rgb), 0.15);
}
@media (min-width: 768px) {
  .table--has-head .table thead tr:before, .table--has-head .table thead tr:after {
    content: "";
  }
}
.table--has-head .table thead tr:before {
  left: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .table--has-head .table thead tr:before {
    left: -100vw;
    right: 100%;
  }
}
.table--has-head .table thead tr:after {
  left: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .table--has-head .table thead tr:after {
    left: 100%;
    right: -100vw;
  }
}
@media (min-width: 768px) {
  .table--has-head .table thead tr:last-child {
    min-width: inherit;
    width: calc(100% - 240px);
  }
}
.table--has-head .table thead tr:last-child th {
  padding-left: 20px;
}
@media (min-width: 768px) {
  .table--has-head .table thead tr:first-child {
    min-width: inherit;
    width: 260px;
  }
}
.table--has-head .table thead tr th {
  display: flex;
}

.inner-hero {
  padding-block: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
.inner-hero:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: transparent linear-gradient(241deg, rgba(11, 59, 91, 0) 0%, #0B3B5B 100%) 0% 0% no-repeat padding-box;
}
@media (min-width: 768px) {
  .inner-hero {
    padding-block: 70px;
  }
}
.inner-hero__grid {
  display: flex;
  flex-direction: row;
  gap: min(60px, 4vw);
  align-items: flex-end;
  min-height: 360px;
}
@media (min-width: 768px) {
  .inner-hero__grid {
    min-height: 180px;
  }
}
.inner-hero__column {
  flex: 1;
}
.inner-hero__column:last-child:not(:only-child) {
  display: none;
}
.inner-hero__column:not(:only-child):last-child {
  max-width: 329px;
}
.inner-hero__column:last-child:not(:only-child) img {
  transform: translateY(110px);
}
@media (min-width: 768px) {
  .inner-hero__column:last-child:not(:only-child) {
    display: block;
  }
}
.inner-hero__title {
  font-family: var(--primary-font);
  font-style: normal;
  font-size: 33px;
  line-height: 42px;
  color: var(--color-white);
  max-width: 904px;
}
@media (min-width: 1024px) {
  .inner-hero__title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (min-width: 1280px) {
  .inner-hero__title {
    font-size: 50px;
    line-height: 60px;
  }
}
.inner-hero__date {
  color: var(--color-white);
  display: block;
  margin-top: 16px;
}
@media (max-width: 767px) {
  .inner-hero__date {
    margin-top: 10px;
    font-size: 14px;
  }
}
.inner-hero__image {
  max-width: 100%;
  object-fit: contain;
  display: block;
}
@media (min-width: 768px) {
  .inner-hero--large .inner-hero__grid {
    min-height: 360px;
  }
}

.hero .container {
  max-width: 1228px;
}
.hero__background {
  height: 400px;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  .hero__background {
    height: 768px;
  }
}
.hero__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__grid {
  background-color: var(--color-green);
  padding: 20px;
  border-top-right-radius: 130px;
  margin-top: -150px;
}
@media (min-width: 768px) {
  .hero__grid {
    background-color: rgba(var(--color-green-rgb), 0.9);
    padding: 50px 50px 80px 50px;
    border-top-right-radius: 28% 78%;
    margin-top: -342px;
  }
}
.hero__title {
  font-family: var(--primary-font);
  font-style: normal;
  font-size: 33px;
  line-height: 42px;
  color: var(--color-white);
  margin-bottom: 30px;
  max-width: 85%;
}
@media (min-width: 1024px) {
  .hero__title {
    font-size: 60px;
    line-height: 70px;
  }
}
@media (min-width: 768px) {
  .hero__title {
    margin-bottom: 40px;
    max-width: 85%;
  }
}
.hero a {
  color: var(--color-white);
}
.hero__form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 768px) {
  .hero__form {
    gap: 16px;
  }
}
.hero fieldset {
  flex: 1;
}
.hero input, .hero select {
  min-width: 240px;
}
@media (min-width: 480px) {
  .hero input, .hero select {
    min-width: 300px;
  }
}
.hero .actions {
  display: flex;
  flex-wrap: wrap;
  flex-grow: 1;
  justify-content: flex-end;
  gap: 10px 0;
}
@media (min-width: 480px) {
  .hero .actions {
    gap: 10px;
  }
}
@media (min-width: 768px) {
  .hero .actions {
    gap: 16px;
    min-width: 352px;
  }
}
@media (min-width: 1280px) {
  .hero .actions {
    flex-grow: 0;
  }
}
.hero .button {
  padding: 13px 15px;
  flex-grow: 1;
}
@media (max-width: 767px) {
  .hero .button {
    font-size: 16px;
    line-height: 20px;
  }
}
@media (min-width: 480px) {
  .hero .button {
    flex: 1;
  }
}
@media (min-width: 768px) {
  .hero .button {
    padding: 16px 6px;
    line-height: 22px;
  }
}
.hero .button[type=submit] {
  background-color: var(--color-yellow);
  color: var(--color-darkblue);
}
.hero .button[type=submit]:hover {
  background-color: var(--color-darkblue);
  color: var(--color-white);
}
.hero--background-right .hero__background {
  background-position: center right;
}

.featured-employers__title {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 36px;
  color: var(--color-darkblue);
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .featured-employers__title {
    font-size: 34px;
    line-height: 41px;
  }
}
@media (min-width: 768px) {
  .featured-employers__title {
    margin-bottom: 48px;
  }
}
.featured-employers__item {
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 35px;
  height: 200px;
}
.featured-employers img {
  max-width: 200px;
  max-height: 200px;
  object-fit: contain;
}

@media (min-width: 841px) {
  #widget_wrapper_aQad5VGFK3cSpeGcNMdWYeSaoYGyNCUN {
    margin-left: auto;
  }
}
.search-bar {
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1529411765);
  position: sticky;
  top: 0;
  z-index: 98;
}
@media (min-width: 768px) {
  .search-bar {
    background-color: var(--color-green);
    padding: 5px 0;
  }
}
@media (max-width: 1023px) {
  .search-bar .container {
    padding-inline: 0;
  }
}
.search-bar__form {
  display: flex;
  align-items: center;
  flex: 1;
}
.search-bar__input {
  height: 50px;
  padding: 12px;
}
@media (min-width: 768px) {
  .search-bar__input {
    padding: 12px 20px;
  }
}
.search-bar__input::placeholder {
  color: transparent;
}
.search-bar__input:focus ~ .placeholder-text, .search-bar__input:not(:placeholder-shown) ~ .placeholder-text {
  opacity: 0;
}
.search-bar .desktop-placeholder {
  display: block;
}
@media (max-width: 767px) {
  .search-bar .desktop-placeholder {
    display: none;
  }
}
.search-bar .mobile-placeholder {
  display: none;
}
@media (max-width: 767px) {
  .search-bar .mobile-placeholder {
    display: block;
  }
}
.search-bar .fieldset-placeholder {
  position: relative;
}
.search-bar .placeholder-text {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  color: #0B3B5B;
  transition: color 0.3s ease;
  /* Initial style when input is not focused and not empty */
  opacity: 1;
  pointer-events: none;
}
.search-bar fieldset:not(:last-child) {
  flex: 1;
}
.search-bar fieldset:nth-child(2) {
  display: block;
}
.search-bar input, .search-bar select {
  border: 2px solid #D5DEE4;
  border-radius: 0;
}
.search-bar .button {
  padding: 13px 10px;
  font-size: 14px;
  line-height: 20px;
  max-width: 120px;
  height: 50px;
  background-color: var(--color-yellow);
  color: var(--color-darkblue);
}
@media (min-width: 768px) {
  .search-bar .button {
    max-width: 100%;
    min-width: 213px;
    font-size: 20px;
  }
}
.search-bar .button:hover {
  background-color: var(--color-darkblue);
  color: var(--color-yellow);
}

.text-large-numbers__grid {
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .text-large-numbers__grid {
    gap: 20px;
    grid-template-columns: minmax(336px, 1fr) minmax(230px, 300px);
  }
}
@media (min-width: 1280px) {
  .text-large-numbers__grid {
    grid-template-columns: minmax(436px, 1fr) minmax(230px, 300px);
  }
}
@media (min-width: 1440px) {
  .text-large-numbers__grid {
    grid-template-columns: minmax(910px, 1fr) minmax(calc(100% - 930px), 300px);
  }
}
.text-large-numbers__grid:not(:first-child) {
  margin-top: 50px;
}
@media (min-width: 768px) {
  .text-large-numbers__grid:not(:first-child) {
    margin-top: 100px;
  }
}
.text-large-numbers__grid .text-large-numbers__column:only-child {
  grid-column: 1/-1;
}
@media (min-width: 1280px) {
  .text-large-numbers__row {
    display: flex;
    gap: 30px;
  }
}
.text-large-numbers__row:not(:last-child) {
  margin-bottom: 50px;
}
.text-large-numbers__number {
  font-size: 150px;
  color: var(--color-green);
  min-width: 194px;
  max-width: 30%;
  word-break: break-all;
  display: none;
}
@media (min-width: 1280px) {
  .text-large-numbers__number {
    display: block;
  }
}
.text-large-numbers__content {
  flex: 1;
}
.text-large-numbers__content p:first-child {
  font-weight: bold;
}
.text-large-numbers img {
  max-width: calc(100% + 40px);
  width: calc(100% + 40px);
  display: block;
  object-fit: cover;
  height: 100%;
  max-height: 100%;
  aspect-ratio: 15/16;
  margin-left: -20px;
}
@media (min-width: 768px) {
  .text-large-numbers img {
    aspect-ratio: inherit;
    width: 100%;
    max-width: 100%;
    margin-left: inherit;
    opacity: 0;
    height: 0;
  }
}
.text-large-numbers__column {
  background-size: cover;
}
.text-large-numbers__column--center {
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: none !important;
}
.text-large-numbers__column--center img {
  width: inherit;
  height: inherit;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: inherit;
  margin: 0 auto;
  object-fit: inherit;
  opacity: 1;
}
.text-large-numbers__column--bottom {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background-image: none !important;
}
.text-large-numbers__column--bottom img {
  width: inherit;
  height: inherit;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: inherit;
  margin: 0 auto;
  object-fit: inherit;
  opacity: 1;
}
.text-large-numbers__column--top {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background-image: none !important;
}
.text-large-numbers__column--top img {
  width: inherit;
  height: inherit;
  max-width: 100%;
  max-height: 100%;
  aspect-ratio: inherit;
  margin: 0 auto;
  object-fit: inherit;
  opacity: 1;
}
.text-large-numbers h1 {
  font-family: var(--primary-font);
  font-style: normal;
  font-size: 33px;
  line-height: 42px;
  color: var(--color-darkblue);
}
@media (min-width: 1024px) {
  .text-large-numbers h1 {
    font-size: 60px;
    line-height: 70px;
  }
}
.text-large-numbers h2 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 36px;
  color: var(--color-darkblue);
}
@media (min-width: 1024px) {
  .text-large-numbers h2 {
    font-size: 34px;
    line-height: 41px;
  }
}
@media (min-width: 1024px) {
  .text-large-numbers h2 {
    font-size: 40px;
  }
}
.text-large-numbers h3 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
  color: var(--color-green);
}
@media (min-width: 1024px) {
  .text-large-numbers h3 {
    font-size: 28px;
    line-height: 34px;
  }
}
.text-large-numbers h4 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 27px;
  color: var(--color-green);
}
@media (min-width: 1024px) {
  .text-large-numbers h4 {
    font-size: 26px;
    line-height: 32px;
  }
}
.text-large-numbers h5, .text-large-numbers h6 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 26px;
  color: var(--color-green);
}
@media (min-width: 1024px) {
  .text-large-numbers h5, .text-large-numbers h6 {
    font-size: 24px;
    line-height: 30px;
  }
}
.text-large-numbers h1, .text-large-numbers h2, .text-large-numbers h3, .text-large-numbers h4, .text-large-numbers h5, .text-large-numbers h6 {
  margin-bottom: 20px;
}
.text-large-numbers h1 + ol,
.text-large-numbers h1 + ul, .text-large-numbers h2 + ol,
.text-large-numbers h2 + ul, .text-large-numbers h3 + ol,
.text-large-numbers h3 + ul, .text-large-numbers h4 + ol,
.text-large-numbers h4 + ul, .text-large-numbers h5 + ol,
.text-large-numbers h5 + ul, .text-large-numbers h6 + ol,
.text-large-numbers h6 + ul {
  padding-top: 0;
}
.text-large-numbers strong {
  color: var(--color-green);
}
.text-large-numbers ol {
  counter-reset: section;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.text-large-numbers ol li:before {
  content: counters(section, ".") ". ";
  counter-increment: section;
  color: var(--color-green);
  font-weight: bold;
  font-size: inherit;
  min-width: 18px;
  display: inline-block;
  margin-right: 4px;
}
.text-large-numbers ol ol {
  margin-left: 30px;
  margin-top: 30px;
}
.text-large-numbers ol ul {
  margin-left: 30px;
}
.text-large-numbers ol + p {
  margin-top: 30px;
}
.text-large-numbers ul {
  margin: 0;
  padding: 20px;
  list-style-type: disc;
}
.text-large-numbers ul li:before {
  content: none;
}
.text-large-numbers li {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .text-large-numbers li {
    font-size: 20px;
    line-height: 30px;
  }
}
.text-large-numbers li:last-child {
  margin-bottom: 0;
}
.text-large-numbers p {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
}
@media (min-width: 1024px) {
  .text-large-numbers p {
    font-size: 20px;
    line-height: 30px;
  }
}
.text-large-numbers p + * {
  margin-top: 30px;
}
.text-large-numbers p + img {
  margin-top: 60px;
}
.text-large-numbers p + p {
  margin-top: 20px;
}
.text-large-numbers p + ul {
  margin-top: 0;
}
.text-large-numbers--darkblue {
  background-color: var(--color-grey);
  color: var(--color-white);
}
.text-large-numbers--darkblue h1,
.text-large-numbers--darkblue h2 {
  color: var(--color-green);
}
.text-large-numbers--darkblue a:hover {
  color: var(--color-lightgreen);
}
.text-large-numbers--darkerblue {
  background-color: var(--color-darkerblue);
  color: var(--color-white);
}
.text-large-numbers--darkerblue h1,
.text-large-numbers--darkerblue h2 {
  color: var(--color-green);
}
.text-large-numbers--darkerblue a:hover {
  color: var(--color-lightgreen);
}
.text-large-numbers--lightblue {
  background-color: var(--color-green);
  color: var(--color-white);
}
.text-large-numbers--lightblue .text-large-numbers__number {
  color: var(--color-darkblue);
}
.text-large-numbers--lightblue h1,
.text-large-numbers--lightblue h2,
.text-large-numbers--lightblue h3,
.text-large-numbers--lightblue h4,
.text-large-numbers--lightblue h5,
.text-large-numbers--lightblue h6,
.text-large-numbers--lightblue strong {
  color: var(--color-darkblue);
}
.text-large-numbers--lightblue a {
  color: var(--color-grey);
}
.text-large-numbers--lightblue ol li:before {
  color: var(--color-darkblue);
}
.text-large-numbers--lightestblue {
  background-color: var(--color-lightgreen);
}
.text-large-numbers--content-space-top .text-large-numbers__column:first-child {
  padding-top: 50px;
}
@media (min-width: 768px) {
  .text-large-numbers--content-space-top .text-large-numbers__column:first-child {
    padding-top: 100px;
  }
}
@media (min-width: 768px) {
  .text-large-numbers--content-space-bottom .text-large-numbers__column:first-child:not(:only-child) {
    padding-bottom: 100px;
  }
}

.writter-widget-layout__grid {
  display: grid;
  gap: 50px 86px;
}
@media (min-width: 1024px) {
  .writter-widget-layout__grid {
    grid-template-columns: minmax(588px, 1fr) 1fr;
  }
}
.writter-widget-layout .noBullet {
  list-style: none;
}
.writter-widget-layout strong {
  color: var(--color-green);
}
.writter-widget-layout h2 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 36px;
  margin-bottom: 20px;
  color: var(--color-darkblue);
}
@media (min-width: 1024px) {
  .writter-widget-layout h2 {
    font-size: 34px;
    line-height: 41px;
  }
}
.writter-widget-layout h2 + ul {
  padding-top: 0;
}
.writter-widget-layout h3 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
  margin-bottom: 20px;
  color: var(--color-green);
}
@media (min-width: 1024px) {
  .writter-widget-layout h3 {
    font-size: 28px;
    line-height: 34px;
  }
}
.writter-widget-layout p {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
}
@media (min-width: 1024px) {
  .writter-widget-layout p {
    font-size: 20px;
    line-height: 30px;
  }
}
.writter-widget-layout p + * {
  margin-top: 30px;
}
.writter-widget-layout p + p {
  margin-top: 20px;
}
.writter-widget-layout ol {
  counter-reset: section;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.writter-widget-layout ol li:before {
  content: counters(section, ".") ". ";
  counter-increment: section;
  color: var(--color-green);
  font-weight: bold;
  font-size: inherit;
  min-width: 18px;
  display: inline-block;
}
.writter-widget-layout ol ol {
  margin-left: 30px;
  margin-top: 30px;
}
.writter-widget-layout ol ul {
  margin-left: 30px;
  margin-top: 30px;
}
.writter-widget-layout ol + p {
  margin-top: 30px;
}
.writter-widget-layout ul {
  margin: 0;
  padding: 20px;
  list-style-type: disc;
}
.writter-widget-layout ul li:before {
  content: none;
}
.writter-widget-layout ul li:has(ul) {
  list-style: none;
}
.writter-widget-layout ul ul {
  padding: 0 12px;
}
.writter-widget-layout li {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .writter-widget-layout li {
    font-size: 20px;
    line-height: 30px;
  }
}
.writter-widget-layout li:last-child {
  margin-bottom: 0;
}
.writter-widget-layout li:has(a) {
  color: var(--color-green);
}
@media (min-width: 1024px) {
  .writter-widget-layout--reversed .writter-widget-layout__grid {
    grid-template-columns: 1fr minmax(588px, 1fr);
  }
}
@media (min-width: 768px) {
  .writter-widget-layout--reversed .writter-widget-layout__column:nth-child(2) {
    order: -1;
  }
}

.table-with-big-numbers .container {
  padding: 0;
}
.table-with-big-numbers__header {
  padding: 0 20px;
  margin-bottom: 30px;
}
.table-with-big-numbers__header:empty {
  margin-bottom: 0;
}
.table-with-big-numbers__title {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 36px;
}
@media (min-width: 1024px) {
  .table-with-big-numbers__title {
    font-size: 34px;
    line-height: 41px;
  }
}
.table-with-big-numbers__description {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
}
@media (min-width: 1024px) {
  .table-with-big-numbers__description {
    font-size: 20px;
    line-height: 30px;
  }
}
.table-with-big-numbers__subtitle {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  font-weight: bold;
  color: var(--color-darkblue);
  margin-bottom: 2px;
}
@media (min-width: 1024px) {
  .table-with-big-numbers__subtitle {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 768px) {
  .table-with-big-numbers__subtitle {
    margin-bottom: 10px;
  }
}
.table-with-big-numbers__schedule {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
@media (min-width: 768px) {
  .table-with-big-numbers__schedule {
    justify-content: flex-end;
  }
}
.table-with-big-numbers__time {
  font-size: 40px;
  line-height: 26px;
  color: var(--color-green);
}
.table-with-big-numbers__duration {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-darkblue);
}
@media (min-width: 1024px) {
  .table-with-big-numbers__duration {
    font-size: 20px;
    line-height: 30px;
  }
}
.table-with-big-numbers__text {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  max-width: 812px;
}
@media (min-width: 1024px) {
  .table-with-big-numbers__text {
    font-size: 20px;
    line-height: 30px;
  }
}
.table-with-big-numbers table {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  display: flex;
  flex-direction: column;
  width: 100%;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
}
@media (min-width: 1024px) {
  .table-with-big-numbers table {
    font-size: 20px;
    line-height: 30px;
  }
}
.table-with-big-numbers table th, .table-with-big-numbers table td {
  padding: 0 20px;
  text-align: left;
}
@media (min-width: 1024px) {
  .table-with-big-numbers table th, .table-with-big-numbers table td {
    padding: 40px 20px;
  }
}
.table-with-big-numbers table th:nth-child(odd), .table-with-big-numbers table td:nth-child(odd) {
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  .table-with-big-numbers table th:nth-child(odd), .table-with-big-numbers table td:nth-child(odd) {
    padding-left: 20px;
    padding-top: 40px;
  }
}
.table-with-big-numbers table th:nth-child(even), .table-with-big-numbers table td:nth-child(even) {
  padding-top: 20px;
  padding-bottom: 15px;
}
@media (min-width: 768px) {
  .table-with-big-numbers table th:nth-child(even), .table-with-big-numbers table td:nth-child(even) {
    padding: 40px 20px;
  }
}
.table-with-big-numbers table th {
  display: none;
}
.table-with-big-numbers table tbody > tr:last-child:nth-child(even):after,
.table-with-big-numbers table tbody > tr:last-child:nth-child(even):before,
.table-with-big-numbers table tbody > tr:last-child > td {
  border-bottom: none;
}
.table-with-big-numbers table tbody tr {
  width: 100%;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .table-with-big-numbers table tbody tr {
    flex-direction: row;
  }
}
.table-with-big-numbers table tbody tr:nth-child(even) {
  background-color: var(--color-lightgreen);
}
.table-with-big-numbers table tbody tr:nth-child(even):before, .table-with-big-numbers table tbody tr:nth-child(even):after {
  position: absolute;
  top: -1px;
  bottom: 0;
  background-color: var(--color-lightgreen);
  z-index: -1; /* Position it behind the actual table content */
}
@media (min-width: 768px) {
  .table-with-big-numbers table tbody tr:nth-child(even):before, .table-with-big-numbers table tbody tr:nth-child(even):after {
    content: "";
  }
}
.table-with-big-numbers table tbody tr:nth-child(even):before {
  left: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .table-with-big-numbers table tbody tr:nth-child(even):before {
    left: -100vw;
    right: 100%;
  }
}
.table-with-big-numbers table tbody tr:nth-child(even):after {
  left: 0;
  right: 0;
}
@media (min-width: 1024px) {
  .table-with-big-numbers table tbody tr:nth-child(even):after {
    left: 100%;
    right: -100vw;
  }
}
@media (min-width: 1024px) {
  .table-with-big-numbers table tbody tr:first-child td {
    padding-top: 0;
  }
}
.table-with-big-numbers table tbody td {
  color: var(--color-darkblue);
}
@media (min-width: 768px) {
  .table-with-big-numbers table tbody td:first-child {
    min-width: inherit;
    width: calc(100% - 220px);
  }
}
.table-with-big-numbers table tbody td:last-child {
  order: -1;
}
@media (min-width: 768px) {
  .table-with-big-numbers table tbody td:last-child {
    order: initial;
    min-width: inherit;
    width: 220px;
  }
}

.table-with-dropdown {
  --component-color: var(--color-darkerblue);
  --component-bg-color: var(--color-darkerblue-rgb);
}
.table-with-dropdown table {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
@media (min-width: 1024px) {
  .table-with-dropdown table {
    font-size: 20px;
    line-height: 30px;
  }
}
.table-with-dropdown thead {
  display: none;
}
.table-with-dropdown thead th {
  padding: 20px;
  color: var(--component-color);
  font-weight: bold;
  text-align: left;
  border-bottom: 1px solid var(--component-color);
  position: relative;
}
.table-with-dropdown thead th:last-child {
  border-right: none;
}
.table-with-dropdown thead th:first-child:before {
  content: "";
  position: absolute;
  left: -100vw;
  width: 100vw;
  height: 100%;
  top: 0;
  border-bottom: 1px solid var(--component-color);
}
.table-with-dropdown thead th:last-child:after {
  content: "";
  position: absolute;
  right: -100vw;
  width: 100vw;
  height: 100%;
  top: 0;
  border-bottom: 1px solid var(--component-color);
}
@media (min-width: 1024px) {
  .table-with-dropdown thead {
    display: table-header-group;
  }
}
.table-with-dropdown tbody td {
  padding: 27px 20px;
  color: var(--component-color);
  text-align: left;
}
@media (min-width: 768px) {
  .table-with-dropdown tbody td {
    padding: 24px 20px;
  }
}
.table-with-dropdown tbody td:last-child {
  border-right: none;
}
.table-with-dropdown tbody td span {
  display: none;
}
@media (max-width: 1023px) {
  .table-with-dropdown tbody td span {
    font-family: var(--primary-font);
    font-style: normal;
    font-weight: normal;
    font-size: 18px;
    line-height: 28px;
    margin-bottom: 10px;
    display: block;
    font-weight: bold;
  }
}
@media (max-width: 1023px) and (min-width: 1024px) {
  .table-with-dropdown tbody td span {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 1023px) {
  .table-with-dropdown tbody tr {
    display: none;
  }
}
.table-with-dropdown tbody tr:nth-child(even) {
  background-color: rgba(var(--component-bg-color), 0.1);
  position: relative;
}
.table-with-dropdown tbody tr:nth-child(even) td:first-child:before {
  content: "";
  position: absolute;
  left: -100vw;
  width: 100vw;
  height: 100%;
  top: 0;
  background-color: rgba(var(--component-bg-color), 0.1);
}
.table-with-dropdown tbody tr:nth-child(even) td:last-child:after {
  content: "";
  position: absolute;
  right: -100vw;
  width: 100vw;
  height: 100%;
  top: 0;
  background-color: rgba(var(--component-bg-color), 0.1);
}
.table-with-dropdown__dropdown {
  padding-inline: 20px;
  border-bottom: 1px solid rgba(var(--component-bg-color), 0.2);
}
.table-with-dropdown__dropdown--active .table-with-dropdown__body {
  transform: translateY(-10px);
  max-height: 9999px;
  transition: max-height 0.6s ease-in-out, transform 0.6s;
}
.table-with-dropdown__dropdown--active .table-with-dropdown__header:after {
  transform: rotate(0) translateY(1px);
}
.table-with-dropdown__dropdown:nth-child(even) {
  background-color: rgba(var(--component-bg-color), 0.1);
}
.table-with-dropdown__header {
  color: var(--color-green);
  font-size: 24px;
  line-height: 30px;
  padding-block: 20px;
  display: flex;
  justify-content: space-between;
  cursor: pointer;
}
.table-with-dropdown__header:after {
  content: "";
  display: inline-block;
  aspect-ratio: 9/16;
  width: 12px;
  flex-shrink: 0;
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: center 8px;
  background-image: url("data:image/svg+xml, <svg width='16' height='16' xmlns='http://www.w3.org/2000/svg' fill='none' stroke='rgb(90%2C200%2C174)' stroke-width='2' class='bi bi-chevron-up'><path fill-rule='evenodd' d='M7.646 4.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1-.708.708L8 5.707l-5.646 5.647a.5.5 0 0 1-.708-.708l6-6z'/></svg>");
  transform: rotate(180deg);
  margin-left: 10px;
  transition: var(--transition);
}
.table-with-dropdown__body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 20px;
  line-height: 24px;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out, transform 0.2s 0.1s;
}
.table-with-dropdown__body > div:last-child {
  margin-bottom: 10px;
}
.table-with-dropdown__body span {
  font-weight: bold;
  display: block;
  margin-bottom: 10px;
}
.table-with-dropdown__mobile {
  color: var(--component-color);
}
@media (min-width: 1024px) {
  .table-with-dropdown__mobile {
    display: none;
  }
}
.table-with-dropdown--overflow-hidden {
  overflow: hidden;
}
.table-with-dropdown--darkblue {
  background-color: var(--color-darkblue);
  --component-color: var(--color-white);
  --component-bg-color: var(--color-white-rgb);
}
.table-with-dropdown--text-light {
  --component-color: var(--color-white);
  --component-bg-color: var(--color-white-rgb);
}

.block-container {
  background-size: cover;
  background-repeat: no-repeat;
}
.block-container--content-space-top {
  padding-top: 60px;
}
@media (min-width: 768px) {
  .block-container--content-space-top {
    padding-top: 100px;
  }
}
.block-container--content-space-bottom {
  padding-bottom: 60px;
}
@media (min-width: 768px) {
  .block-container--content-space-bottom {
    padding-bottom: 100px;
  }
}

.teaser__imageWrapper img {
  display: inline-block;
  max-width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}
.teaser__imageWrapper + * {
  margin-top: 30px;
}
.teaser__imageWrapper:last-child {
  margin-top: 30px;
}
.teaser h1 {
  font-family: var(--primary-font);
  font-style: normal;
  font-size: 33px;
  line-height: 42px;
}
@media (min-width: 1024px) {
  .teaser h1 {
    font-size: 60px;
    line-height: 70px;
  }
}
.teaser h2 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 36px;
}
@media (min-width: 1024px) {
  .teaser h2 {
    font-size: 34px;
    line-height: 41px;
  }
}
.teaser h3 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
}
@media (min-width: 1024px) {
  .teaser h3 {
    font-size: 28px;
    line-height: 34px;
  }
}
.teaser h4 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 27px;
}
@media (min-width: 1024px) {
  .teaser h4 {
    font-size: 26px;
    line-height: 32px;
  }
}
.teaser h5 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 26px;
}
@media (min-width: 1024px) {
  .teaser h5 {
    font-size: 24px;
    line-height: 30px;
  }
}
.teaser h6 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 26px;
}
@media (min-width: 1024px) {
  .teaser h6 {
    font-size: 22px;
    line-height: 28px;
  }
}
.teaser h1,
.teaser h2,
.teaser h3,
.teaser h4,
.teaser h5,
.teaser h6 {
  padding-bottom: 20px;
  color: var(--color-darkblue);
}
.teaser p {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
}
@media (min-width: 1024px) {
  .teaser p {
    font-size: 20px;
    line-height: 30px;
  }
}
.teaser p + p,
.teaser p + h1,
.teaser p + h2,
.teaser p + h3,
.teaser p + h4,
.teaser p + h5,
.teaser p + h6 {
  margin-top: 20px;
}
.teaser strong {
  color: var(--color-green);
}
.teaser ol {
  counter-reset: section;
  list-style-type: none;
  margin: 0;
  padding: 30px 0;
}
.teaser ol li:before {
  content: counters(section, ".") ". ";
  counter-increment: section;
  color: var(--color-green);
  font-weight: bold;
  font-size: inherit;
  min-width: 18px;
  display: inline-block;
  margin-right: 4px;
}
.teaser ol ol {
  margin-left: 30px;
  margin-top: 30px;
}
.teaser ol ul {
  margin-left: 30px;
}
.teaser ol + ul,
.teaser ol + ol {
  padding-top: 15px;
}
.teaser ol:last-child {
  padding-bottom: 0;
}
.teaser ul {
  margin: 0;
  padding: 30px 20px;
  list-style-type: disc;
}
.teaser ul:last-child {
  padding-bottom: 0;
}
.teaser ul li:before {
  content: none;
}
.teaser ul + ul,
.teaser ul + ol {
  padding-top: 15px;
}
.teaser ul:last-child {
  padding-bottom: 0;
}
.teaser li {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .teaser li {
    font-size: 20px;
    line-height: 30px;
  }
}
.teaser li:last-child {
  margin-bottom: 0;
}
.teaser--small {
  max-width: 800px;
  margin: 0 auto;
}
.teaser--lightestblue {
  background-color: var(--color-lightgreen);
}
.teaser--darkblue {
  background-color: var(--color-grey);
  color: var(--color-white);
}
.teaser--darkblue h1,
.teaser--darkblue h2,
.teaser--darkblue h3,
.teaser--darkblue h4,
.teaser--darkblue h5,
.teaser--darkblue h6 {
  color: var(--color-white);
}
.teaser--darkblue a:hover {
  color: var(--color-lightgreen);
}
.teaser--darkerblue {
  background-color: var(--color-darkerblue);
  color: var(--color-white);
}
.teaser--darkerblue h1,
.teaser--darkerblue h2,
.teaser--darkerblue h3,
.teaser--darkerblue h4,
.teaser--darkerblue h5,
.teaser--darkerblue h6 {
  color: var(--color-white);
}
.teaser--darkerblue strong {
  color: var(--color-green);
}
.teaser--darkerblue a:hover {
  color: var(--color-lightgreen);
}
.teaser--lightblue {
  background-color: var(--color-green);
  color: var(--color-white);
}
.teaser--lightblue h1,
.teaser--lightblue h2,
.teaser--lightblue h3,
.teaser--lightblue h4,
.teaser--lightblue h5,
.teaser--lightblue h6,
.teaser--lightblue strong,
.teaser--lightblue a {
  color: var(--color-darkerblue);
}
.teaser--lightblue a:hover {
  color: var(--color-grey);
}
.teaser--lightblue ol li:before {
  color: var(--color-darkerblue);
}

.staff-writer-widget {
  background-color: var(--color-bege);
  padding: 20px;
}
@media (min-width: 768px) {
  .staff-writer-widget {
    padding: 38px 30px;
  }
}
.staff-writer-widget .container {
  padding: 0;
}
.staff-writer-widget__header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
.staff-writer-widget__title {
  color: var(--color-darkblue);
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  word-break: break-word;
}
@media (min-width: 768px) {
  .staff-writer-widget__title {
    font-size: 18px;
    line-height: 30px;
  }
}
@media (min-width: 768px) {
  .staff-writer-widget .wp-block-column .staff-writer-widget__title {
    font-size: 16px;
  }
}
.staff-writer-widget__text {
  color: var(--color-black);
  opacity: 0.75;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .staff-writer-widget__text {
    font-size: 18px;
    line-height: 26px;
  }
}
.staff-writer-widget__icon {
  width: 56px;
  height: 56px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .staff-writer-widget__icon {
    width: 68px;
    height: 68px;
  }
}

.wp-block-column .block-staff-writer-widget {
  padding: 20px;
}

@media (min-width: 782px) {
  .wp-block-column .staff-writer-widget__header {
    flex-direction: column;
  }
}
@media (min-width: 1024px) {
  .wp-block-column .staff-writer-widget__header {
    flex-direction: row;
  }
}
@media (min-width: 1120px) {
  .wp-block-column .staff-writer-widget__title {
    font-size: 18px;
  }
  .wp-block-column .block-staff-writer-widget {
    padding: 38px 30px;
  }
}
/* MAP */
.wp-block-group.margin-top-100 iframe {
  width: 100%;
}

.financejobs-map-container {
  position: relative;
  background: linear-gradient(var(--color-white), var(--color-darkblue));
}
.financejobs-map-container:before {
  content: "";
  background-image: url(/wp-content/themes/financejobs/assets/images/noise.png);
  background-repeat: repeat;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  mix-blend-mode: soft-light;
  opacity: 0.19;
}
.financejobs-map-container .teaser h2 {
  margin: 0;
  padding-bottom: 10px;
}
.financejobs-map-container .teaser p {
  color: #446981;
  font-size: 16px;
}

.button {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 21px;
  padding: 13px 20px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  width: auto;
  font-family: var(--primary-font);
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
}
@media (min-width: 1024px) {
  .button {
    font-size: 20px;
    line-height: 24px;
  }
}
@media (min-width: 767px) {
  .button {
    padding: 16px 30px;
  }
}
.button--white {
  background-color: var(--button-primary-background);
  color: var(--button-primary-color);
}
.button--white:hover {
  background-color: var(--color-green);
  color: var(--color-white);
}
.button--darkblue {
  background-color: var(--button-secondary-background);
  color: var(--button-secondary-color);
}
.button--darkblue:hover {
  background-color: var(--color-white);
  color: var(--color-darkblue);
}
.button--lightblue {
  background-color: var(--button-tertiary-background);
  color: var(--button-tertiary-color);
}
.button--lightblue:hover {
  background-color: var(--color-white);
  color: var(--color-green);
}
.button--outline-white {
  border-color: var(--color-white);
  background-color: transparent;
  color: var(--color-white);
}
.button--outline-white:hover {
  border-color: var(--color-darkblue);
  color: var(--color-darkblue);
}
.button--square {
  border-radius: 0;
}
.button.disabled, .button:disabled {
  background-color: var(--color-black) !important;
  color: var(--color-white) !important;
  border-color: var(--color-black) !important;
  opacity: 0.5;
  pointer-events: none;
}

.form-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 767px) {
  .form-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.input-wrapper:nth-child(7) {
  grid-column: span 2;
}
@media (max-width: 767px) {
  .input-wrapper:nth-child(7) {
    grid-column: 1;
  }
}
.input-wrapper .label-text {
  margin-bottom: 12px;
  display: block;
}
@media (max-width: 767px) {
  .input-wrapper .label-text {
    margin-bottom: 0;
    margin-top: 8px;
  }
}
.input-wrapper input,
.input-wrapper textarea {
  border: 2px solid var(--color-black);
  color: var(--color-black);
  width: 100%;
  border-radius: 0;
}
.input-wrapper textarea {
  outline: none;
  padding: 17px 20px;
  font-size: 20px;
}
@media (max-width: 767px) {
  .input-wrapper textarea {
    padding: 13px 20px;
  }
}
@media (max-width: 1023px) {
  .input-wrapper textarea {
    font-size: 16px;
  }
}
.input-wrapper .wpcf7-not-valid-tip {
  position: absolute;
  bottom: -26px;
}
@media (max-width: 767px) {
  .input-wrapper label {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    align-items: center;
  }
}

.button-wrapper {
  grid-column: 2;
  text-align: right;
}
@media (max-width: 767px) {
  .button-wrapper {
    text-align: center;
    grid-column: 1;
  }
}
.button-wrapper p {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}
@media (max-width: 767px) {
  .button-wrapper p {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
  }
}
.button-wrapper .wpcf7-spinner {
  order: -1;
}
@media (max-width: 767px) {
  .button-wrapper .wpcf7-spinner {
    display: none;
  }
}
.button-wrapper input {
  font-family: var(--primary-font);
  font-size: 18px;
  line-height: 21px;
  padding: 13px 20px;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
  width: auto;
  font-family: var(--primary-font);
  border-radius: 30px;
  border: 2px solid transparent;
  cursor: pointer;
  text-align: center;
  background-color: var(--button-secondary-background);
  color: var(--button-secondary-color);
  border-radius: 0;
  min-width: 280px;
  max-width: 100%;
  transition: 0.3s;
}
.button-wrapper input:hover {
  background-color: var(--color-green);
}

.wpcf7 form.invalid .wpcf7-response-output, .wpcf7 form.unaccepted .wpcf7-response-output, .wpcf7 form.payment-required .wpcf7-response-output, .wpcf7 form.sent .wpcf7-response-output {
  border: none;
  margin: 2em 0 1em;
  padding: 0;
}

.wpcf7-not-valid-tip {
  font-size: 14px;
}

.wpcf7-form-control-wrap {
  display: flex;
  flex-direction: column;
}

@media (max-width: 1439px) {
  #wpcf7-f5536-p41-o1,
  .wp-block-group.margin-top-100 {
    padding: 0 20px;
  }
}
* {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html, body {
  position: relative;
  font-family: var(--primary-font);
}

html {
  scroll-behavior: smooth;
}
html.stop-scroll {
  overflow: hidden;
  height: calc(var(--app-height) - 1px);
}
html.stop-scroll body {
  overflow: hidden;
}

body {
  min-height: 100vh;
  color: var(--color-black);
}

header.site-header {
  position: relative;
  z-index: 99;
}

.site-header,
.footer {
  margin: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

.site-header {
  display: block;
  padding: 0;
}

.site {
  display: flex;
  min-height: 100dvh;
  flex-direction: column;
}

.site-main {
  flex: 1 1 auto;
  min-height: 600px;
}

.margin-top-100 {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .margin-top-100 {
    margin-top: 40px;
  }
}

.slick-dots li {
  list-style: none;
}

input,
textarea,
select {
  font-family: var(--primary-font);
}

a {
  color: var(--color-green);
  transition: var(--transition);
}
a:hover {
  color: var(--color-darkblue);
}

/* Form Elements */
input, select {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  border: 2px solid var(--color-white);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 13px 20px;
  color: var(--color-darkblue);
  outline: none;
  width: 100%;
  min-width: 100%;
  font-size: 16px;
  line-height: 20px;
}
@media (min-width: 1024px) {
  input, select {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (min-width: 768px) {
  input, select {
    padding: 17px 20px;
    line-height: 22px;
  }
}

input::placeholder {
  color: inherit;
}
input::-moz-placeholder {
  color: inherit;
}
input::-webkit-input-placeholder {
  color: inherit;
}

select {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-right: 50px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='19.174' height='11.708'><path fill='none' stroke='%230b3b5b' stroke-width='3' d='m1.061 1.061 8.526 8.526 8.526-8.526' data-name='down arrow'/></svg>");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 20px);
  background-position-y: 50%;
}

.entry-content > :not(.financejobs-block) h1 {
  font-family: var(--primary-font);
  font-style: normal;
  font-size: 33px;
  line-height: 42px;
}
@media (min-width: 1024px) {
  .entry-content > :not(.financejobs-block) h1 {
    font-size: 60px;
    line-height: 70px;
  }
}
.entry-content > :not(.financejobs-block) h2 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 30px;
  line-height: 36px;
}
@media (min-width: 1024px) {
  .entry-content > :not(.financejobs-block) h2 {
    font-size: 34px;
    line-height: 41px;
  }
}
.entry-content > :not(.financejobs-block) h3 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 24px;
  line-height: 29px;
}
@media (min-width: 1024px) {
  .entry-content > :not(.financejobs-block) h3 {
    font-size: 28px;
    line-height: 34px;
  }
}
.entry-content > :not(.financejobs-block) h4 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 22px;
  line-height: 27px;
}
@media (min-width: 1024px) {
  .entry-content > :not(.financejobs-block) h4 {
    font-size: 26px;
    line-height: 32px;
  }
}
.entry-content > :not(.financejobs-block) h5 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 26px;
}
@media (min-width: 1024px) {
  .entry-content > :not(.financejobs-block) h5 {
    font-size: 24px;
    line-height: 30px;
  }
}
.entry-content > :not(.financejobs-block) h6 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 20px;
  line-height: 26px;
}
@media (min-width: 1024px) {
  .entry-content > :not(.financejobs-block) h6 {
    font-size: 22px;
    line-height: 28px;
  }
}
.entry-content > :not(.financejobs-block) h1,
.entry-content > :not(.financejobs-block) h2,
.entry-content > :not(.financejobs-block) h3,
.entry-content > :not(.financejobs-block) h4,
.entry-content > :not(.financejobs-block) h5,
.entry-content > :not(.financejobs-block) h6 {
  margin-bottom: 20px;
  color: var(--color-darkblue);
}
.entry-content > :not(.financejobs-block) p {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
}
@media (min-width: 1024px) {
  .entry-content > :not(.financejobs-block) p {
    font-size: 20px;
    line-height: 30px;
  }
}
.entry-content > :not(.financejobs-block) p + p {
  margin-top: 20px;
}
.entry-content > :not(.financejobs-block) strong {
  color: var(--color-green);
}
.entry-content > :not(.financejobs-block) ol {
  counter-reset: section;
  list-style-type: none;
  margin: 0;
  padding: 30px 0;
}
.entry-content > :not(.financejobs-block) ol li:before {
  content: counters(section, ".") ". ";
  counter-increment: section;
  color: var(--color-green);
  font-weight: bold;
  font-size: inherit;
  min-width: 18px;
  display: inline-block;
  margin-right: 4px;
}
.entry-content > :not(.financejobs-block) ol ol {
  margin-left: 30px;
  margin-top: 30px;
}
.entry-content > :not(.financejobs-block) ol ul {
  margin-left: 30px;
}
.entry-content > :not(.financejobs-block) ol + ul,
.entry-content > :not(.financejobs-block) ol + ol {
  padding-top: 15px;
}
.entry-content > :not(.financejobs-block) ol:last-child {
  padding-bottom: 0;
}
.entry-content > :not(.financejobs-block) ul {
  margin: 0;
  padding: 30px 20px;
  list-style-type: disc;
}
.entry-content > :not(.financejobs-block) ul:last-child {
  padding-bottom: 0;
}
.entry-content > :not(.financejobs-block) ul li:before {
  content: none;
}
.entry-content > :not(.financejobs-block) ul + ul,
.entry-content > :not(.financejobs-block) ul + ol {
  padding-top: 15px;
}
.entry-content > :not(.financejobs-block) ul:last-child {
  padding-bottom: 0;
}
.entry-content > :not(.financejobs-block) li {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: normal;
  font-size: 18px;
  line-height: 28px;
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .entry-content > :not(.financejobs-block) li {
    font-size: 20px;
    line-height: 30px;
  }
}
.entry-content > :not(.financejobs-block) li:last-child {
  margin-bottom: 0;
}

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

.hidden {
  display: none !important;
}

/* Employer Newsletter */
#post-6822 .formkit-form[data-uid="492661b890"] {
  max-width: 100%;
  margin-bottom: 32px;
}

.featured-employee-content {
  padding: 30px 0;
}

.featured-employee-content img {
  float: left;
  margin: 0 20px 20px 0;
}

.featured-employee-content > *:not(.financejobs-block) {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

@media (min-width: 1440px) {
  .featured-employee-content > *:not(.financejobs-block) {
    padding: 0;
  }
}
body.single-featured-employers .site {
  min-height: 0dvh;
}

.featured-employee-content .jobs-table {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .featured-employee-content img {
    clear: both;
    display: block;
    float: none;
    margin: 0 auto;
  }
}
/* Widgets */
he-qdf {
  --button-background-color: var(--color-green);
  --button-background-color-hover: var(--color-darkblue);
}

he-qdf::part(button) {
  transition: 0.3s;
}

.esy_btn {
  box-sizing: border-box !important;
  background-color: var(--color-green) !important;
  transition: 0.3s;
}

.esy_btn:hover {
  background-color: var(--color-darkblue) !important;
}

/* Home */
@media (min-width: 768px) {
  .home .block-three-columns-bg .three-columns-bg__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Featured Employees */
.single-featured-employers .inner-hero:before {
  background: transparent linear-gradient(241deg, var(--color-darkerblue) 0%, var(--color-green) 100%) 0% 0% no-repeat padding-box;
}