.buttonBasics {
  display: inline-block;
  font-size: clamp(1rem, 0.22547914vw + 0.94461669rem, 1.125rem);
  line-height: clamp(1.1875rem, 0.33821871vw + 1.10442503rem, 1.375rem);
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  color: var(--btnColor);
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  position: relative;
  transition: all 0.2s ease-in;
}
.buttonBasics:before {
  content: '';
  position: absolute;
  top: 8px;
  width: 27px;
  height: 16px;
  mask-size: 100% 100%;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/arrow-right.svg);
  background-color: var(--btnArrowColor);
  transition: all 0.2s ease-in;
}
.buttonBasics:after {
  content: '';
  position: absolute;
  top: 0px;
  width: 31px;
  height: 31px;
  mask-size: 100% 100%;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/circle.svg);
  background-color: var(--btnCircleColor);
  transition: all 0.2s ease-in;
}
@media (max-width: 767px) {
  .buttonBasics:before {
    top: 8px;
    width: 27px;
    height: 16px;
  }
  .buttonBasics:after {
    top: 0px;
    width: 30px;
    height: 30px;
  }
}
.button {
  display: inline-block;
  font-size: clamp(1rem, 0.22547914vw + 0.94461669rem, 1.125rem);
  line-height: clamp(1.1875rem, 0.33821871vw + 1.10442503rem, 1.375rem);
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  color: var(--btnColor);
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  position: relative;
  transition: all 0.2s ease-in;
  padding: 5px 61px 4px 0;
}
.button:before {
  content: '';
  position: absolute;
  top: 8px;
  width: 27px;
  height: 16px;
  mask-size: 100% 100%;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/arrow-right.svg);
  background-color: var(--btnArrowColor);
  transition: all 0.2s ease-in;
}
.button:after {
  content: '';
  position: absolute;
  top: 0px;
  width: 31px;
  height: 31px;
  mask-size: 100% 100%;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/circle.svg);
  background-color: var(--btnCircleColor);
  transition: all 0.2s ease-in;
}
@media (max-width: 767px) {
  .button:before {
    top: 8px;
    width: 27px;
    height: 16px;
  }
  .button:after {
    top: 0px;
    width: 30px;
    height: 30px;
  }
}
.button:before {
  right: 28px;
}
.button:after {
  right: 15px;
}
@media (min-width: 1200px) {
  .button:hover,
  .button:focus {
    padding-right: 52px;
    padding-left: 9px;
    color: var(--btnColorHover);
  }
  .button:hover:before,
  .button:focus:before {
    right: 0;
    background-color: var(--btnArrowColorHover);
  }
  .button:hover:after,
  .button:focus:after {
    transform: rotate(180deg);
    background-color: var(--btnCircleColorHover);
  }
}
@media (max-width: 767px) {
  .button {
    padding: 6px 60px 5px 0;
  }
  .button:before {
    right: 28px;
  }
  .button:after {
    right: 15px;
  }
}
@media (min-width: 1200px) {
  .buttonHover {
    padding-right: 52px;
    padding-left: 9px;
    color: var(--btnColorHover);
  }
  .buttonHover:before {
    right: 0;
    background-color: var(--btnArrowColorHover);
  }
  .buttonHover:after {
    transform: rotate(180deg);
    background-color: var(--btnCircleColorHover);
  }
}
.buttonIconBefore {
  display: inline-block;
  font-size: clamp(1rem, 0.22547914vw + 0.94461669rem, 1.125rem);
  line-height: clamp(1.1875rem, 0.33821871vw + 1.10442503rem, 1.375rem);
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  color: var(--btnColor);
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  position: relative;
  transition: all 0.2s ease-in;
  padding: 5px 0 4px 61px;
}
.buttonIconBefore:before {
  content: '';
  position: absolute;
  top: 8px;
  width: 27px;
  height: 16px;
  mask-size: 100% 100%;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/arrow-right.svg);
  background-color: var(--btnArrowColor);
  transition: all 0.2s ease-in;
}
.buttonIconBefore:after {
  content: '';
  position: absolute;
  top: 0px;
  width: 31px;
  height: 31px;
  mask-size: 100% 100%;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/circle.svg);
  background-color: var(--btnCircleColor);
  transition: all 0.2s ease-in;
}
@media (max-width: 767px) {
  .buttonIconBefore:before {
    top: 8px;
    width: 27px;
    height: 16px;
  }
  .buttonIconBefore:after {
    top: 0px;
    width: 30px;
    height: 30px;
  }
}
.buttonIconBefore:before {
  left: 28px;
  transform: rotate(180deg);
}
.buttonIconBefore:after {
  left: 15px;
  transform: rotate(180deg);
}
@media (min-width: 1200px) {
  .buttonIconBefore:hover,
  .buttonIconBefore:focus {
    padding-left: 52px;
    padding-right: 9px;
    color: var(--btnColorHover);
  }
  .buttonIconBefore:hover:before,
  .buttonIconBefore:focus:before {
    left: 0;
    background-color: var(--btnArrowColorHover);
  }
  .buttonIconBefore:hover:after,
  .buttonIconBefore:focus:after {
    transform: rotate(0);
    background-color: var(--btnCircleColorHover);
  }
}
@media (max-width: 767px) {
  .buttonIconBefore {
    padding: 6px 0 5px 60px;
  }
  .buttonIconBefore:before {
    left: 28px;
  }
  .buttonIconBefore:after {
    left: 15px;
  }
}
@media (min-width: 1200px) {
  .buttonIconBeforeHover {
    padding-left: 52px;
    padding-right: 9px;
    color: var(--btnColorHover);
  }
  .buttonIconBeforeHover:before {
    left: 0;
    background-color: var(--btnArrowColorHover);
  }
  .buttonIconBeforeHover:after {
    transform: rotate(0);
    background-color: var(--btnCircleColorHover);
  }
}
.quicklink {
  width: 100%;
  display: inline-block;
  font-size: clamp(2.125rem, 1.24013529vw + 1.82039177rem, 2.8125rem);
  line-height: clamp(2.4375rem, 1.24013529vw + 2.13289177rem, 3.125rem);
  font-family: inherit;
  font-weight: 400;
  cursor: pointer;
  color: var(--btnColor);
  padding: 23px 120px 22px 0;
  appearance: none;
  border-radius: 0;
  box-sizing: border-box;
  text-decoration: none;
  border: none;
  position: relative;
  transition: all 0.2s ease-in;
}
.quicklink:before {
  content: '';
  position: absolute;
  top: 38px;
  right: 56px;
  width: 52px;
  height: 32px;
  mask-size: 100% 100%;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/arrow-right.svg);
  background-color: var(--btnArrowColor);
  transition: all 0.2s ease-in;
}
.quicklink:after {
  content: '';
  position: absolute;
  top: 23px;
  right: 30px;
  width: 60px;
  height: 62px;
  mask-size: 100% 100%;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/circle.svg);
  background-color: var(--btnCircleColor);
  transition: all 0.2s ease-in;
}
@media (min-width: 1200px) {
  .quicklink:hover,
  .quicklink:focus {
    color: var(--btnColorHover);
  }
  .quicklink:hover:before,
  .quicklink:focus:before {
    right: 0;
  }
  .quicklink:hover:after,
  .quicklink:focus:after {
    transform: rotate(180deg);
  }
}
@media (max-width: 767px) {
  .quicklink {
    padding: 14px 52px 14px 0;
  }
  .quicklink:before {
    top: 36px;
    right: 13px;
    width: 25px;
    height: 15px;
  }
  .quicklink:after {
    top: 29px;
    right: 0;
    width: 30px;
    height: 30px;
  }
}
.teaserLinkIcon:before {
  content: '';
  position: absolute;
  bottom: 16px;
  left: 0px;
  width: 52px;
  height: 32px;
  mask-size: 100% 100%;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/arrow-right.svg);
  background-color: var(--btnArrowColor);
  transition: all 0.2s ease-in;
  z-index: 3;
}
.teaserLinkIcon:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 18px;
  width: 60px;
  height: 62px;
  mask-size: 100% 100%;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/circle.svg);
  background-color: var(--btnCircleColor);
  transition: all 0.2s ease-in;
  z-index: 3;
}
@media (max-width: 767px) {
  .teaserLinkIcon:before {
    bottom: 8px;
    width: 25px;
    height: 15px;
  }
  .teaserLinkIcon:after {
    left: 8px;
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 1200px) {
  .teaserLinkIconHover:before {
    left: 58px;
  }
  .teaserLinkIconHover:after {
    transform: rotate(180deg);
  }
}
.clearfix {
  *zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: '';
}
.clearfix:after {
  clear: both;
}
.navigation div.navi {
  float: left;
}
.navigation div.navi > .item {
  float: left;
}
.navigation div.navi > .item > .menu {
  display: block;
}
@media (min-width: 1200px) {
  .togglenavigation,
  .mobile-navigation {
    display: none;
  }
}
.navigation div.sub1 {
  display: flex;
  gap: 40px;
  margin-bottom: 28px;
}
.navigation div.sub1 > .item {
  position: relative;
}
.navigation div.sub1 > .item > .menu {
  box-sizing: border-box;
  padding: 3px 10px 6px;
  font-size: 25px;
  line-height: 1.2;
  font-weight: bold;
  color: #24388B;
  transition: all 0.2s ease-in;
  position: relative;
  isolation: isolate;
}
.navigation div.sub1 > .item > .menu:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background-color: #24388B;
  opacity: 0;
  transition: all 0.2s ease-in;
  z-index: -1;
}
.navigation div.sub1 > .item > .menu.path {
  color: #000;
}
.navigation div.sub1 > .item:hover > .menu,
.navigation div.sub1 > .item:focus > .menu {
  color: #F5C84B;
}
.navigation div.sub1 > .item:hover > .menu:before,
.navigation div.sub1 > .item:focus > .menu:before {
  width: 100%;
  opacity: 1;
}
.navigation div.sub1 > .item:hover > .menu {
  color: #F5C84B;
}
.navigation div.sub1 > .item:hover > .menu:before {
  width: 100%;
  opacity: 1;
}
.navigation div.sub2 {
  width: 286px;
  height: 0;
  position: absolute;
  opacity: 0;
  pointer-events: none;
  left: 0;
  top: 100%;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 15px 19px 19px;
  isolation: isolate;
  transition: all 0.2s ease-in;
  overflow: hidden;
}
.navigation div.sub2:before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  width: 100%;
  height: calc(100% - 5px);
  background-color: #24388B;
  z-index: -1;
}
.navigation div.sub2 > .item {
  border-bottom: 2px solid #fff;
  transform: translateY(-20px);
  opacity: 0;
  transition: all 0.2s ease-in;
}
.navigation div.sub2 > .item > .menu {
  font-size: 18px;
  line-height: 1.22222222;
  color: #F5C84B;
  box-sizing: border-box;
  padding: 9px 0;
  position: relative;
  transition: all 0.2s ease-in;
}
.navigation div.sub2 > .item > .menu:before {
  content: '';
  position: absolute;
  top: 15px;
  right: 13px;
  width: 17px;
  height: 10px;
  mask-size: 100% 100%;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/arrow-right.svg);
  background-color: #F5C84B;
  transition: all 0.2s ease-in;
}
.navigation div.sub2 > .item > .menu:after {
  content: '';
  position: absolute;
  top: 10px;
  right: 5px;
  width: 20px;
  height: 20px;
  mask-size: 100% 100%;
  mask-position: 50% 50%;
  mask-repeat: no-repeat;
  mask-image: url(/images/circle.svg);
  background-color: #fff;
  transition: all 0.2s ease-in;
}
.navigation div.sub2 > .item > .menu:hover,
.navigation div.sub2 > .item > .menu:focus {
  color: #fff;
}
.navigation div.sub2 > .item > .menu:hover:before,
.navigation div.sub2 > .item > .menu:focus:before {
  right: 0;
}
.navigation div.sub2 > .item > .menu:hover:after,
.navigation div.sub2 > .item > .menu:focus:after {
  right: 11px;
  transform: rotate(180deg);
}
.navigation div.sub1 > .item:hover > div.sub2 {
  opacity: 1;
  pointer-events: all;
  height: var(--js-elementHeight);
}
.navigation div.sub1 > .item:hover > div.sub2 > .item {
  opacity: 1;
  transform: translateY(0);
}
.logo {
  height: 180px;
  margin-bottom: -57px;
}
.cb-scroll-triggered--active .logo {
  height: 123px;
}
@media (max-width: 1400px) {
  .logo {
    height: 140px;
    margin-bottom: -30px;
  }
}
#head {
  margin-top: 0;
}
.layout2 #head {
  width: calc(100% + 190px);
}
.layout2 .container--mood {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 0;
}
.layout1 .mood__image {
  height: 750px;
}
.layout2 .mood__image {
  grid-column: span 1;
  width: calc(100% + var(--fluidSize));
  --fluidSize: clamp(0rem, 25.75757576vw + -20.28409091rem, 10.625rem);
}
.layout1 .mood__content {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 40px 0;
}
.layout2 .mood__content {
  grid-column: span 1;
}
.jobBox {
  flex-direction: column;
  right: 0;
  top: unset;
  bottom: -189px;
  padding: 30px 16px 30px 30px;
}
.jobBox__icon {
  width: 80px;
  height: 80px;
}
.footarea {
  margin: 97px 0 100px;
  grid-template-columns: 2fr 1fr 1fr;
}
.footpart {
  grid-column: span 1;
}
.footpart--wide {
  box-sizing: border-box;
  padding-right: 110px;
}
.unit--footLinksOne .unit__body {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footpart--last .unit--footLinksOne .unit__body {
  align-items: flex-end;
}
.unit--footLinksTwo {
  margin-top: 40px;
}
.footpart--last .unit--footLinksTwo .unit__body {
  justify-content: flex-end;
}
.area--one .unitOne--1-4 {
  grid-column: span 3;
}
.area--one .unitOne--1-4 + .unitOne--1-4 + .unitOne--1-4 + .unitOne--1-4 + .unitOne--1-4 {
  margin-top: 0;
}
/*# sourceMappingURL=./screen-large.css.map */