/* source/index.scss */
.header {
  position: sticky;
  top: 0;
  height: 80px;
  z-index: 1000;
  background-color: #fff;
}
body.admin-bar .header {
  top: 46px;
}
@media screen and (min-width: 782px) {
  body.admin-bar .header {
    top: 32px;
  }
}
.header__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: inherit;
  padding: 12px 1rem;
  box-sizing: border-box;
  max-width: var(--site-max-width);
  margin: 0 auto;
}
.header__return {
  text-decoration: none;
}
.header__logo {
  display: block;
}
.header__logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.header__drawer {
  display: none;
  position: absolute;
  top: 80px;
  left: 100%;
  width: 100%;
  height: calc(100vh - 120px);
  padding: 4rem 1rem;
  box-sizing: border-box;
  background-color: var(--light-gray);
  z-index: 100;
  overflow: scroll;
}
.header__drawer .custom-button {
  display: block;
  margin: 0 auto;
}
.header__button-cta {
  display: block;
  margin: 0 auto;
}
.menu-header-menu-container ul {
  margin: 0;
  padding-left: 0;
}
.menu-header-menu-container li {
  list-style-type: none;
}
.menu-header-menu-container a {
  text-decoration: none;
}
#menu-header-menu > li {
  text-align: center;
  margin-bottom: 24px;
}
#menu-header-menu > li > a {
  display: inline-block;
  font-family: var(--font-family-1);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.8;
  color: var(--dark-blue);
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 14px 20px 12px 20px;
  box-sizing: border-box;
}
#menu-header-menu > li > .sub-menu > li {
  background-color: #fff;
  border-bottom: 2px solid var(--lime-green);
}
#menu-header-menu > li > .sub-menu > li > a {
  display: inline-block;
  font-family: var(--font-family-1);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark-blue);
  text-transform: uppercase;
  padding: 14px 20px 12px 20px;
  box-sizing: border-box;
}
.header__button {
  width: 30px;
  height: 20px;
  padding: 0;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.header__button .header__hamburger {
  position: relative;
  width: 100%;
  height: 100%;
}
.header__button .header__hamburger div {
  position: absolute;
  width: 100%;
  height: 3px;
  border-radius: 50px;
  background-color: var(--dark-blue);
  transition: transform 200ms ease-in-out, background 200ms ease-in-out;
}
.header__button .header__hamburger div:nth-child(1) {
  top: 0%;
}
.header__button .header__hamburger div:nth-child(2) {
  top: 50%;
}
.header__button .header__hamburger div:nth-child(3) {
  top: 100%;
}
.header__button.open .header__hamburger div:nth-child(2) {
  background-color: transparent;
}
.header__button.open .header__hamburger div:nth-child(1) {
  transform: translate(0, 8px) rotate(33.69deg);
}
.header__button.open .header__hamburger div:nth-child(3) {
  transform: translate(0, -12px) rotate(-33.69deg);
}
@media screen and (min-width: 1200px) {
  .header__button {
    display: none;
  }
  .header__drawer {
    position: initial;
    top: initial;
    left: initial;
    width: initial;
    height: initial;
    padding: initial;
    box-sizing: initial;
    background-color: initial;
    z-index: initial;
  }
  .header__button-cta {
    display: initial;
    margin: initial;
  }
  .header__content {
    display: flex;
    gap: 32px;
  }
  .header__drawer {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%;
  }
  #menu-header-menu {
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .header__drawer {
    overflow: unset;
  }
  .header__drawer .custom-button {
    display: unset;
    margin: unset;
  }
}
@media screen and (min-width: 1200px) {
  #menu-header-menu > li {
    margin: initial;
  }
  #menu-header-menu > li > a {
    margin: initial;
  }
  #menu-header-menu > li > a {
    font-size: 1rem;
  }
  #menu-header-menu > li {
    position: relative;
  }
  #menu-header-menu > li > a {
    border-bottom: 2px solid #fff;
    transition: background 100ms ease-in-out, border 100ms ease-in-out;
  }
  #menu-header-menu > li > a:hover,
  #menu-header-menu > li > a:focus {
    background-color: #F2F4F8;
    border-bottom: 2px solid var(--lime-green);
  }
  #menu-header-menu > li > .sub-menu {
    display: none;
    width: max-content;
    text-align: left;
  }
  #menu-header-menu > li:hover > a + .sub-menu,
  #menu-header-menu > li:focus-within > a + .sub-menu {
    display: block;
    position: absolute;
    top: 56px;
    left: 0px;
  }
  #menu-header-menu > li > .sub-menu > li {
    border-bottom: unset;
  }
  #menu-header-menu > li > a + .sub-menu > li > a {
    width: 100%;
    background-color: #fff;
    border-bottom: 2px solid #fff;
    transition: background 100ms ease-in-out, border 100ms ease-in-out;
  }
  #menu-header-menu > li > a + .sub-menu > li > a:hover,
  #menu-header-menu > li > a + .sub-menu > li > a:focus {
    background-color: #F2F4F8;
    border-bottom: 2px solid var(--lime-green);
  }
}
.footer {
  border-bottom: 14px solid var(--lime-green);
}
.footer__content {
  padding: 4rem 1rem 2rem 1rem;
  max-width: var(--site-max-width);
  margin: 0 auto;
}
.menu-footer-menu-container {
  margin-bottom: 32px;
}
.menu-footer-menu-container ul {
  margin: 0;
  padding-left: 0;
}
.menu-footer-menu-container li {
  list-style-type: none;
}
.menu-footer-menu-container a {
  text-decoration: none;
}
.menu-footer-menu-container a:hover {
  text-decoration: underline;
}
#menu-footer-menu > li {
  text-align: center;
  margin-bottom: 24px;
}
#menu-footer-menu > li > a {
  display: inline-block;
  font-family: var(--font-family-1);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark-blue);
  text-transform: uppercase;
  margin-bottom: 12px;
}
#menu-footer-menu > li > ul > li > a {
  display: inline-block;
  font-family: var(--font-family-1);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark-blue);
}
.footer__logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.footer__logo a,
.footer__logo span {
  text-decoration: none;
  color: var(--dark-blue);
}
.footer__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}
.footer__info a {
  text-align: center;
  line-height: 160%;
  color: var(--dark-blue);
  text-decoration: none;
}
.footer__info a:hover {
  text-decoration: underline;
}
.footer__socials {
  margin: 0;
  padding-left: 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.footer__socials li {
  list-style-type: none;
}
.footer__socials a {
  text-decoration: none;
}
.footer__socials i {
  font-size: 24px;
  color: #595959;
  transition: color 200ms ease-in-out;
}
.footer__socials a:hover i {
  color: var(--dark-blue);
}
.footer__legal {
  margin-bottom: 48px;
}
.footer__legal p {
  text-align: center;
  color: var(--dark-blue);
}
.footer__legal a {
  color: var(--dark-blue);
  text-decoration: none;
}
.footer__legal a:hover {
  text-decoration: underline;
}
.footer__legal p:nth-child(1) {
  font-size: 1rem;
}
.footer__legal p:nth-child(2) {
  font-size: 14px;
}
.footer__legal p:nth-child(3) {
  font-size: 14px;
  text-transform: uppercase;
}
.footer__info--title {
  display: none;
}
@media screen and (min-width: 768px) {
  .menu-footer-menu-container {
    grid-area: navigation;
  }
  .footer__logo {
    grid-area: logo;
  }
  .footer__info {
    grid-area: info;
  }
  .footer__socials {
    grid-area: socials;
  }
  .footer__legal {
    grid-area: legal;
  }
  .footer__dots {
    grid-area: dots;
  }
  #menu-footer-menu li {
    text-align: start;
  }
  .footer__info {
    align-items: unset;
    justify-content: unset;
  }
  .footer__info a {
    text-align: left;
  }
  .footer__socials {
    justify-content: unset;
    align-items: start;
  }
  .footer__info--title {
    display: inline-block;
    font-family: var(--font-family-1);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--dark-blue);
    text-transform: uppercase;
    margin-bottom: 12px;
  }
  .footer__logo {
    justify-content: unset;
    align-items: unset;
    margin-bottom: 0;
  }
  .menu-footer-menu-container,
  .footer__info,
  .footer__socials,
  .footer__logo {
    margin-bottom: 0;
  }
  .footer__content {
    display: grid;
    gap: 16px 32px;
    grid-template-areas: "logo navigation" "info navigation" "socials navigation" "legal legal" "dots dots";
  }
}
@media screen and (min-width: 1080px) {
  #menu-footer-menu {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
  }
  .footer__socials {
    margin-bottom: 3rem;
  }
  .footer__legal {
    max-width: 640px;
    margin: 0 auto;
  }
  .footer__content {
    grid-template-areas: "logo navigation info" "logo navigation socials" "legal legal legal" "dots dots dots";
  }
}
.mc-imprint {
  --imprint-scale: 1;
  --imprint-speed: 1;
  --imprint-dot-size: 1;
  --imprint-text-size: 1;
  --imprint-container-color: var(--global--color-zeus);
  --imprint-text-color: #414042;
  --imprint-dot1-color: #6469A6;
  --imprint-dot2-color: #E74E3D;
  --imprint-dot3-color: #56B6B2;
  --imprint-dot4-color: #96A774;
  position: relative;
  text-decoration: none;
  height: calc(2rem * var(--imprint-scale));
  width: calc(9.03125rem * var(--imprint-scale));
  display: block;
  margin: 0 auto !important;
}
.mc-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.mc-imprint #logo .letter {
  fill: var(--imprint-text-color);
}
.mc-imprint #logo {
  --imprint-text-width: calc(12.03125rem * var(--imprint-text-size));
  --imprint-text-height: calc(1.25rem * var(--imprint-text-size));
  height: calc(var(--imprint-text-height) * var(--imprint-scale));
  width: calc(var(--imprint-text-width) * var(--imprint-scale));
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  background-color: var(--imprint-container-color);
  opacity: 0;
  transition: opacity calc(250ms * var(--imprint-speed)) ease-in-out 187.5ms;
}
@media (hover: none) and (pointer: coarse), (hover: none) and (pointer: fine) {
  .mc-imprint .mc-dots {
    display: none;
  }
  .mc-imprint #logo {
    opacity: 1;
  }
}
@media (hover: hover) and (pointer: coarse), (hover: hover) and (pointer: fine) {
  .mc-imprint .mc-dots {
    --imprint-dots-width: calc(8rem * var(--imprint-dot-size));
    --imprint-dots-height: calc(1rem * var(--imprint-dot-size));
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translate(-50%, 30%);
    width: calc(var(--imprint-dots-width) * var(--imprint-scale));
    height: calc(var(--imprint-dots-height) * var(--imprint-scale));
  }
  .mc-imprint .mc-dots .mc-dot {
    --imprint-size: calc(1rem * var(--imprint-dot-size));
    --imprint-margin: calc(var(--imprint-size) * 0.25);
    width: calc(var(--imprint-size) * var(--imprint-scale));
    height: calc(var(--imprint-size) * var(--imprint-scale));
    border-radius: 100%;
    display: inline-block;
    margin: 0 calc(var(--imprint-margin) * var(--imprint-scale));
    transform: translateY(0rem);
    opacity: 1;
  }
  .mc-imprint .mc-dots .mc-dot:nth-of-type(1) {
    background-color: var(--imprint-dot1-color);
    transition: transform 250ms ease-in-out 0ms, opacity 250ms ease-in-out 250ms;
  }
  .mc-imprint .mc-dots .mc-dot:nth-of-type(2) {
    background-color: var(--imprint-dot2-color);
    transition: transform 250ms ease-in-out 62.5ms, opacity 250ms ease-in-out 250ms;
  }
  .mc-imprint .mc-dots .mc-dot:nth-of-type(3) {
    background-color: var(--imprint-dot3-color);
    transition: transform 250ms ease-in-out 125ms, opacity 250ms ease-in-out 250ms;
  }
  .mc-imprint .mc-dots .mc-dot:nth-of-type(4) {
    background-color: var(--imprint-dot4-color);
    transition: transform 250ms ease-in-out 187.5ms, opacity 250ms ease-in-out 250ms;
  }
  .mc-imprint:hover .mc-dot {
    --imprint-offset: calc(-1.5rem * var(--imprint-dot-size));
    transform: translateY(calc(var(--imprint-offset) * var(--imprint-scale)));
    opacity: 0;
  }
  .mc-imprint:hover #logo {
    opacity: 1;
  }
}
.custom-button {
  display: inline-flex;
  align-items: center;
  width: max-content;
  padding: 20px 28px 16px 28px;
  border-radius: 100px;
  font-family: var(--font-family-1);
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: background 300ms ease-in-out, color 300ms ease-in-out;
}
.custom-button--primary {
  background-color: var(--dark-blue);
  border: 2px solid var(--dark-blue);
  color: #fff;
}
.custom-button--primary:hover {
  background-color: #fff;
  color: var(--dark-blue);
}
.custom-button--alt {
  background-color: #fff;
  border: 2px solid var(--dark-blue);
  color: var(--dark-blue);
}
.custom-button--alt:hover {
  background-color: var(--dark-blue);
  color: #fff;
}
:root {
  --site-max-width: 1340px;
  --site-narrow-width: 740px;
  --dark-blue: #282E66;
  --lime-green: #84C441;
  --white: #FFF;
  --light-gray: #F2F4F8;
  --medium-gray: #868C97;
  --font-family-1: "Josefin Sans", sans-serif;
}
html,
body {
  margin: 0;
}
html:not(.wp-toolbar),
body:not(.wp-admin) {
  font-family: var(--font-family-1);
}
.wp-block {
  max-width: 90%;
}
.wp-block[data-align=wide] {
  max-width: 90%;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/*# sourceMappingURL=index.build.css.map */
