/* Anti alias */
html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  color: #292929;
  background-color: #f5f5f5;
}

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1250px;
}

input {
  accent-color: #EF3B24;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.rotate180 {
  transform: rotate(180deg);
}

.no-scrollY {
  overflow-y: hidden;
}

li.inactive::marker {
  color: #7C7969;
}

.header__desktop {
  padding-top: 20px;
  padding-bottom: 23px;
  height: 185px;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 99;
  transition: all ease 0.4s;
}
.header__desktop__wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.header__desktop__top {
  display: flex;
  justify-content: space-between;
}
.header__desktop__top__logo-holder {
  width: 351px;
  transition: all ease 0.4s;
}
.header__desktop__top__logo-holder svg {
  position: relative;
  left: -33px;
}
.header__desktop__top__logo-holder .header-svg .a {
  stroke-width: 0;
}
.header__desktop__top__logo-holder .header-svg .a {
  fill: #EF3B24;
}
.header__desktop__top__languages-holder {
  color: #7C7969;
  text-transform: uppercase;
  padding-top: 20px;
}
.header__desktop__top__languages-holder a {
  display: inline-block;
  margin-right: 1ch;
  line-height: 17px;
}
.header__desktop__top__languages-holder a:last-child {
  margin-right: 0;
}
.header__desktop__top__languages-holder a.gap {
  margin-right: 100px;
}
.header__desktop__top__languages-holder a.altnav {
  color: #000;
}
.header__desktop__top__languages-holder a.active, .header__desktop__top__languages-holder a:hover {
  color: #EF3B24;
}
.header__desktop__top__languages-holder a.altnavblog {
  color: #fff;
  background-color: #EF3B24;
  padding: 5px 15px;
  border-radius: 5px;
}
.header__desktop__top__languages-holder a.altnavblog:hover {
  background-color: #000;
}
.header__desktop.scrolled {
  height: 141px;
}
.header__desktop.scrolled .header__desktop__top__logo-holder {
  width: 217px;
}
.header__desktop__navigation {
  color: #7C7969;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 24px;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
}
.header__desktop__navigation a:hover, .header__desktop__navigation a.active {
  color: #EF3B24;
}

.header__mobile {
  display: none;
  padding: 20px 17px 34px 25px;
  height: 120px;
  position: sticky;
  top: 0;
  background-color: #fff;
  z-index: 99;
  transition: all ease 0.4s;
}
.header__mobile.scrolled {
  height: 81px;
  padding-top: 15px;
  padding-bottom: 21px;
}
.header__mobile.scrolled .header__mobile__logo-holder {
  max-width: 180px;
}
.header__mobile__wrapper {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header__mobile__logo-holder {
  max-width: 278px;
  transition: all ease 0.4s;
  width: 100%;
}
.header__mobile__logo-holder .mobile-header-svg {
  width: 100%;
}
.header__mobile__logo-holder .mobile-header-svg .a {
  fill: #EF3B24;
}
.header__mobile__burger {
  width: 45px;
  height: 45px;
}
.header__mobile__burger svg .st1 {
  stroke: #EF3B24;
}

.contact-cloud-wrapper {
  position: absolute;
  top: 495px;
  right: 0;
  left: 0;
  transition: all ease 0.4s;
  pointer-events: none;
}
.contact-cloud-wrapper.scrolled {
  top: 130px;
}
.contact-cloud-wrapper__container {
  display: flex;
  justify-content: flex-end;
}
.contact-cloud-wrapper__cloud {
  position: relative;
  display: block;
  color: #fff;
  background-color: #EF3B24;
  width: 140px;
  font-size: 15px;
  font-weight: 500;
  line-height: 19px;
  text-transform: uppercase;
  padding: 8px 6px 8px 12px;
  border-radius: 17px;
  pointer-events: auto;
}
.contact-cloud-wrapper__cloud:hover {
  text-decoration: none;
}
.contact-cloud-wrapper__cloud::after {
  content: "";
  position: absolute;
  left: 13px;
  bottom: -13px;
  width: 0;
  height: 0;
  border-top: 10px solid #EF3B24;
  border-left: 10px solid #EF3B24;
  border-bottom: 10px solid transparent;
  border-right: 10px solid transparent;
}

.jumbotron {
  height: 338px;
  display: flex;
  margin-bottom: 71px;
}
.jumbotron.landing-page {
  margin-bottom: 0;
}
.jumbotron__left {
  background-color: #EF3B24;
  flex: 1;
  position: relative;
}
.jumbotron__right {
  background-color: #ADACA3;
  width: calc(50% - 140px);
}
.jumbotron__bg-image {
  width: 960px;
  height: 338px;
  background-image: url(https://via.placeholder.com/1000x600.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0px;
}
.jumbotron__text {
  max-width: 485px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 27px;
  font-size: 30px;
  line-height: 35px;
  font-weight: 300;
  color: #fff;
}

.page-wrapper {
  display: flex;
  justify-content: space-between;
}
.page-wrapper__sidebar {
  width: 282px;
  margin-right: 42px;
  flex-shrink: 0;
}
.page-wrapper .main {
  flex-grow: 1;
  padding-bottom: 35px;
}
.page-wrapper .spacer {
  border-top: 3px solid #292929;
  margin-bottom: 45px;
}

.mobile-navigation {
  background-color: #EF3B24;
  color: #fff;
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  left: 100%;
  z-index: 100;
  padding: 48px 41px;
  overflow-y: auto;
  transition: all 0.5s linear;
}
.mobile-navigation.open {
  left: 0;
}
.mobile-navigation__main h4 {
  margin: 0;
}
.mobile-navigation__languages {
  font-size: 16px;
  line-height: 17px;
  text-transform: uppercase;
  margin-bottom: 39px;
}
.mobile-navigation__languages a {
  margin-right: 10px;
}
.mobile-navigation__languages a.active {
  color: #000;
}
.mobile-navigation__close {
  position: absolute;
  width: 45px;
  height: 45px;
  right: 17px;
  top: 31px;
}
.mobile-navigation__close svg .a, .mobile-navigation__close svg .b, .mobile-navigation__close svg .c {
  fill: none;
  stroke: #fff;
}
.mobile-navigation__level2-wrapper, .mobile-navigation__level3-wrapper, .mobile-navigation__level4-wrapper {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.5s linear;
}
.mobile-navigation__level1 {
  border-bottom: 3px solid #fff;
}
.mobile-navigation__level1:first-child {
  border-top: 3px solid #fff;
}
.mobile-navigation__level1__title {
  display: block;
  padding-top: 13px;
  padding-bottom: 18px;
  font-size: 20px;
  line-height: 24px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  position: relative;
  transition: padding 0.3s linear;
}
.mobile-navigation__level1__title .mobile-navigation-l1 {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 13px;
  opacity: 0;
  transition: all 0.3s linear;
}
.mobile-navigation__level1__title .mobile-navigation-l1 .a {
  fill: none;
  stroke: #fff;
}
.mobile-navigation__level1__title .mobile-navigation-l1 .c {
  stroke: #fff;
}
.mobile-navigation__level1.active .mobile-navigation__level1__title {
  padding-left: 35px;
}
.mobile-navigation__level1.active .mobile-navigation__level1__title .mobile-navigation-l1 {
  opacity: 1;
}
.mobile-navigation__level1.active > div {
  max-height: 520px;
}
.mobile-navigation__level2 {
  border-top: 1px solid #fff;
  padding-top: 19px;
  padding-bottom: 14px;
}
.mobile-navigation__level2__title {
  font-size: 20px;
  line-height: 30px;
  font-weight: 700;
}
.mobile-navigation__level2.active .mobile-navigation__level3-wrapper {
  max-height: 500px;
}
.mobile-navigation__level3 {
  padding-top: 21px;
}
.mobile-navigation__level3.border-top-thin {
  border-top: 1px solid #fff;
  padding-top: 19px;
  padding-bottom: 14px;
}
.mobile-navigation__level3__title {
  padding-left: 35px;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
  position: relative;
}
.mobile-navigation__level3__title .mobile-navigation-plus,
.mobile-navigation__level3__title .mobile-navigation-minus,
.mobile-navigation__level3__title .mobile-navigation-link {
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0;
  top: 3px;
}
.mobile-navigation__level3__title .mobile-navigation-plus .st1,
.mobile-navigation__level3__title .mobile-navigation-minus .st1,
.mobile-navigation__level3__title .mobile-navigation-link .st1 {
  stroke: #fff;
}
.mobile-navigation__level3__title .mobile-navigation-link .a {
  fill: none;
  stroke: #fff;
}
.mobile-navigation__level3__title .mobile-navigation-link .b, .mobile-navigation__level3__title .mobile-navigation-link .c {
  stroke: #fff;
}
.mobile-navigation__level3__title .mobile-navigation-link .c {
  stroke-width: 2px;
}
.mobile-navigation__level3__title .mobile-navigation-minus {
  display: none;
}
.mobile-navigation__level3.active .mobile-navigation-plus {
  display: none;
}
.mobile-navigation__level3.active .mobile-navigation-minus {
  display: block;
}
.mobile-navigation__level3.active .mobile-navigation__level4-wrapper {
  max-height: 500px;
}
.mobile-navigation__level4 {
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 10px;
  position: relative;
}
.mobile-navigation__level4:first-child {
  margin-top: 10px;
}
.mobile-navigation__level4:last-child {
  margin-bottom: 15px;
}
.mobile-navigation__level4 a {
  display: block;
  padding-left: 65px;
}
.mobile-navigation__level4 .mobile-navigation-dot {
  position: absolute;
  top: 5px;
  left: 35px;
  width: 15px;
  height: 15px;
}
.mobile-navigation__level4 .mobile-navigation-dot .a {
  fill: #fff;
}
.mobile-navigation__sublinks {
  padding-top: 40px;
}
.mobile-navigation__sublinks a {
  display: block;
  font-size: 18px;
  line-height: 33px;
}
.mobile-navigation__sublinks a:hover, .mobile-navigation__sublinks a.active {
  color: #000;
}

.aside-nav {
  border-top: 3px solid #000;
  margin-bottom: 75px;
  background-color: #fff;
}
.aside-nav__main-title {
  padding: 17px 4px 17px 9px;
  margin: 0 0 19px 0;
  font-size: 20px;
  line-height: 23px;
  font-weight: 700;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
}
.aside-nav__list-holder {
  font-size: 20px;
  line-height: 30px;
}
.aside-nav__list-title {
  margin: 0;
  padding: 0 4px 0 9px;
}
.aside-nav__list {
  padding: 20px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid #000;
}
.aside-nav__list.nav2 {
  padding: 0;
}
.aside-nav__list.nav2 .arrow {
  display: inline-block;
  vertical-align: sub;
}
.aside-nav__list.nav2 .arrow .a {
  fill: none;
}
.aside-nav__list.nav2 .arrow .b, .aside-nav__list.nav2 .arrow .c {
  stroke: #000;
}
.aside-nav__list.nav2__el__title:hover {
  color: #EF3B24;
}
.aside-nav__list.nav2__el__title:hover svg .st1 {
  stroke: #EF3B24;
}
.aside-nav__list__el {
  padding-left: 9px;
  padding-right: 5px;
}
.aside-nav__list__el:last-child {
  padding-bottom: 0;
}
.aside-nav__list__el__title {
  cursor: pointer;
  margin-bottom: 20px;
  position: relative;
}
.aside-nav__list__el__title:hover {
  color: #EF3B24;
}
.aside-nav__list__el__title:hover svg .st1,
.aside-nav__list__el__title:hover svg .b,
.aside-nav__list__el__title:hover svg .c {
  stroke: #EF3B24;
}
.aside-nav__list__el__title svg {
  width: 24px;
  height: 24px;
  margin-right: 13px;
  position: absolute;
  top: 3px;
  left: 0;
}
.aside-nav__list__el__title svg.plus {
  display: inline-block;
  vertical-align: sub;
}
.aside-nav__list__el__title svg.arrow {
  display: inline-block;
  vertical-align: sub;
}
.aside-nav__list__el__title svg.arrow .a, .aside-nav__list__el__title svg.arrow .b, .aside-nav__list__el__title svg.arrow .c {
  fill: none;
  stroke: #292929;
  stroke-width: 1px;
}
.aside-nav__list__el__title svg.minus {
  display: none;
  vertical-align: sub;
}
.aside-nav__list__el__title.nav2__title:hover, .aside-nav__list__el__title.nav2__title.active {
  color: #EF3B24;
}
.aside-nav__list__el__title.nav2__title:hover .a, .aside-nav__list__el__title.nav2__title:hover .b, .aside-nav__list__el__title.nav2__title:hover .c, .aside-nav__list__el__title.nav2__title.active .a, .aside-nav__list__el__title.nav2__title.active .b, .aside-nav__list__el__title.nav2__title.active .c {
  stroke: #EF3B24;
}
.aside-nav__list__el__title span {
  padding-left: 36px;
  display: inline-block;
}
.aside-nav__list__el__subnav {
  padding-left: 4.5px;
  max-height: 0;
  height: auto;
  overflow: hidden;
  transition: max-height 0.3s linear;
}
.aside-nav__list__el__subnav__link {
  font-size: 20px;
  line-height: 25px;
  margin-bottom: 18px;
  display: flex;
}
.aside-nav__list__el__subnav__link:last-child {
  margin-bottom: 0;
}
.aside-nav__list__el__subnav__link .black-point {
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  background-color: #000;
  border-radius: 50%;
  margin-top: 5px;
  margin-right: 17px;
  display: inline-block;
}
.aside-nav__list__el__subnav__link:hover, .aside-nav__list__el__subnav__link.active {
  color: #EF3B24;
}
.aside-nav__list__el__subnav__link:hover .black-point, .aside-nav__list__el__subnav__link.active .black-point {
  background-color: #EF3B24;
}
.aside-nav__list__el.active {
  padding-bottom: 17px;
}
.aside-nav__list__el.active.link_item {
  padding-bottom: 0;
}
.aside-nav__list__el.active .aside-nav__list__el__title svg.plus {
  display: none;
}
.aside-nav__list__el.active .aside-nav__list__el__title svg.minus {
  display: inline-block;
}
.aside-nav__list__el.active .aside-nav__list__el__subnav {
  max-height: 500px;
}

.aside-regular {
  margin-bottom: 45px;
}
.aside-regular__card {
  background-color: #fff;
  margin-bottom: 36px;
  display: block;
}
.aside-regular__card img {
  width: 100%;
  height: auto;
}
.aside-regular__card.no-text {
  background-color: transparent;
  line-height: 0;
}
.aside-regular__card__description {
  padding: 15px 15px 23px 10px;
}
.aside-regular__card__description h4 {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 17px;
  line-height: 22px;
}
.aside-regular__card__description h4 span {
  color: #EF3B24;
}
.aside-regular__card__description p {
  margin: 0;
  font-size: 15px;
  line-height: 21px;
}

.aside-offers {
  margin-bottom: 45px;
}
.aside-offers__title {
  font-size: 20px;
  line-height: 24px;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  margin-top: 0;
  margin-bottom: 25px;
}
.aside-offers__card {
  margin-bottom: 20px;
}
.aside-offers__date {
  margin-bottom: 10px;
}
.aside-offers__date div {
  display: inline-block;
  background-color: #fff;
  border-top: 10px solid #EF3B24;
  padding: 9px 9px 5px 9px;
  font-size: 22px;
  line-height: 26px;
  letter-spacing: 0.22px;
}
.aside-offers__date div .month {
  font-weight: 300;
  text-transform: uppercase;
}
.aside-offers__date div .day {
  font-weight: 700;
}
.aside-offers__date div .year {
  font-weight: 300;
}
.aside-offers__box {
  display: block;
  background-color: #fff;
  padding: 13px 10px 20px 10px;
  font-size: 18px;
  line-height: 25px;
  letter-spacing: 0.18px;
}
.aside-offers__box__title {
  font-weight: 700;
  margin-bottom: 15px;
}
.aside-offers__link {
  display: block;
  font-size: 20px;
  line-height: 35px;
  color: #EF3B24;
}
.aside-offers__link__arrow {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  position: relative;
  top: 2px;
}
.aside-offers__link__arrow .a {
  fill: #EF3B24;
}
.aside-offers__link__arrow .c {
  stroke: #fff;
}
.aside-offers__link__arrow .a {
  stroke-width: 0;
}

.landing__intro {
  padding-top: 71px;
  padding-bottom: 79px;
  background-color: #fff;
}
.landing__title {
  font-size: 45px;
  line-height: 50px;
  margin-top: 0;
  margin-bottom: 15px;
}
.landing__text {
  font-size: 23px;
  line-height: 33px;
  letter-spacing: 0.23px;
}

.scroller-wrapper {
  margin-bottom: 83px;
  padding-top: 40px;
}
.scroller-wrapper__title {
  font-size: 35px;
  line-height: 28px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 20px;
}
.scroller-wrapper .scroller {
  position: relative;
}
.scroller-wrapper .scroller__previous, .scroller-wrapper .scroller__next {
  width: 30.5px;
  height: 61px;
  background-color: #fff;
  position: absolute;
  top: 98px;
  z-index: 1;
}
.scroller-wrapper .scroller__previous:hover, .scroller-wrapper .scroller__next:hover {
  cursor: pointer;
}
.scroller-wrapper .scroller__next {
  border-top-right-radius: 61px;
  border-bottom-right-radius: 61px;
  right: -30.5px;
}
.scroller-wrapper .scroller__previous {
  border-top-left-radius: 61px;
  border-bottom-left-radius: 61px;
  right: 1px;
}
.scroller-wrapper .scroller::before, .scroller-wrapper .scroller::after {
  content: "";
  height: 100%;
  width: 100%;
  background-color: rgba(245, 245, 245, 0.9);
  position: absolute;
  top: 0;
}
.scroller-wrapper .scroller::before {
  right: 100%;
  z-index: 1;
}
.scroller-wrapper .scroller::after {
  right: -100%;
}
.scroller-wrapper .scroller__stripe {
  position: relative;
  left: 0;
  display: flex;
  justify-content: flex-start;
  transition: left 0.1s ease-out;
}
.scroller-wrapper .scroller__stripe__small {
  overflow-x: auto;
  display: none;
}
.scroller-wrapper .scroller__item {
  width: 328px;
  padding-right: 28px;
  flex-shrink: 0;
}
.scroller-wrapper .scroller__item__header {
  padding-top: 66.6666666667%;
  position: relative;
  overflow: hidden;
}
.scroller-wrapper .scroller__item__header img {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.scroller-wrapper .scroller__item__body {
  background-color: #fff;
  padding: 20px 17px;
}
.scroller-wrapper .scroller__item__body h4 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 27px;
  line-height: 33px;
  letter-spacing: 0.27px;
}
.scroller-wrapper .scroller__item__body h4 span {
  color: #EF3B24;
}
.scroller-wrapper .scroller__item__body p {
  font-size: 18px;
  line-height: 27px;
  letter-spacing: 0.18px;
}

.intro {
  font-size: 21px;
  line-height: 29px;
  margin-bottom: 45px;
}
.intro__title {
  font-size: 31px;
  line-height: 36px;
  margin-bottom: 18px;
  margin-top: -5px;
}
.intro__main {
  font-weight: 700;
  letter-spacing: 0.25px;
  margin-bottom: 30px;
}
.intro__additional {
  letter-spacing: 0.25px;
  margin-bottom: 45px;
}
.intro__additional--special {
  background-color: #fff;
  padding: 25px 35px;
  margin-bottom: 45px;
}
.intro__additional--special h3 {
  font-size: 24px;
  line-height: 27px;
  letter-spacing: 0.26px;
  margin-top: 0;
  margin-bottom: 10px;
}
.intro__additional--special div {
  font-size: 21px;
  line-height: 28px;
  letter-spacing: 0.21px;
}
.intro hr {
  background-color: #000;
  margin-bottom: 0;
}

.selftest {
  margin-bottom: 40px;
}
.selftest iframe {
  width: 100%;
  min-width: 100%;
  min-height: 1000px;
  margin-bottom: 25px;
  border: 1px solid #fff;
  padding: 5px;
  border-top: 4px solid #EF3B24;
  display: none;
  clear: both;
}
.selftest .richtext {
  margin-bottom: 25px;
}
.selftest .selftest-explain button, .selftest .selftest-explain .st-button {
  float: left;
  width: 20%;
  height: auto;
  margin: 0 15px 2px 0;
  cursor: pointer;
}
.selftest .selftest-explain button.button, .selftest .selftest-explain .st-button.button {
  width: auto;
  display: inline-block;
  background-color: #EF3B24;
  color: #fff;
  cursor: pointer;
  width: 100%;
  height: 56px;
  max-width: 351px;
  padding-top: 14px;
  padding-bottom: 12px;
  font-size: 25px;
  line-height: 28px;
  border: 0;
  margin-bottom: 25px;
}
.selftest .selftest-explain button.avatar img, .selftest .selftest-explain .st-button.avatar img {
  border-radius: 50%;
}
.selftest .selftest-explain button.avatar img:hover, .selftest .selftest-explain .st-button.avatar img:hover {
  opacity: 0.9;
}
.selftest .selftest-explain .float-text {
  margin-bottom: 25px;
}
.selftest .selftest-explain .float-text::after {
  content: "";
  clear: both;
  display: table;
}

@media only screen and (max-width: 580px) {
  .selftest .selftest-explain button {
    width: 40%;
  }
}
@media only screen and (max-width: 480px) {
  .selftest .selftest-explain button {
    width: 50%;
    float: none;
    margin-bottom: 25px;
  }
}
.richtext {
  margin-bottom: 60px;
}
.richtext h2 {
  font-size: 26px;
  line-height: 33px;
  letter-spacing: 0.25px;
}
.richtext h2, .richtext h3 {
  margin-bottom: 7px;
}
.richtext h3 {
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0.26px;
  margin-bottom: 5px;
  font-weight: 700;
}
.richtext p {
  margin: 0;
  margin-bottom: 25px;
}
.richtext p, .richtext ul, .richtext ol {
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0.21px;
  margin-bottom: 25px;
}
.richtext a {
  color: #707070;
}
.richtext ul {
  padding-left: 20px;
}
.richtext strong {
  font-weight: 700;
}
.richtext em, .richtext i {
  color: #7C7969;
  font-style: normal;
}
.richtext a:hover {
  color: #EF3B24;
  text-decoration: underline;
}
.richtext.whitebox {
  background-color: #fff;
  padding: 25px 25px 5px;
}
.richtext.whitebox h2 {
  color: #EF3B24;
}

.video-element .video-wrapper {
  width: 100%;
  position: relative;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  border: none;
  margin-bottom: 20px;
}
.video-element .video-wrapper.vimeo {
  padding-bottom: 56.25% !important;
}
.video-element .video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.form-element__pretext {
  background-color: #fff;
  padding: 35px 40px 35px 35px;
}
.form-element__pretext__title {
  font-size: 35px;
  line-height: 45px;
  letter-spacing: 0.35px;
  margin-top: 0;
  margin-bottom: 37px;
}
.form-element__pretext__richtext h3 {
  font-size: 22px;
  line-height: 27px;
  letter-spacing: 0.26px;
  margin: 0;
}
.form-element__pretext__richtext h4 {
  font-size: 22px;
  line-height: 27px;
  letter-spacing: 0.26px;
  margin-bottom: 25px;
}
.form-element__pretext__richtext h2 {
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.26px;
  margin: 0;
}
.form-element__pretext__richtext p {
  margin-bottom: 25px;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0.21px;
}
.form-element__pretext__richtext p:last-child {
  margin-bottom: 0;
}
.form-element__pretext__richtext ul {
  margin-bottom: 25px;
}
.form-element__pretext__richtext li {
  font-size: 21px;
  line-height: 27px;
  letter-spacing: 0.21px;
}
.form-element__pretext__richtext .red {
  color: #EF3B24;
}
.form-element__pretext__richtext em, .form-element__pretext__richtext i {
  color: #7C7969;
  font-style: normal;
}
.form-element__pretext__richtext a {
  color: #707070;
}
.form-element__pretext__richtext a:hover {
  color: #EF3B24;
  text-decoration: underline;
}
.form-element .fui-btn-wrapper .fui-btn, .form-element__open-form-btn {
  cursor: pointer;
  position: relative;
  display: inline-block;
  width: 100%;
  height: 56px;
  max-width: 351px;
  padding-left: 88px;
  padding-top: 14px;
  padding-bottom: 12px;
  margin-bottom: 60px;
  background-color: #292929;
  color: #fff;
  font-size: 25px;
  line-height: 28px;
}
.form-element .fui-btn-wrapper .fui-btn .plus, .form-element .fui-btn-wrapper .fui-btn .minus, .form-element__open-form-btn .plus, .form-element__open-form-btn .minus {
  position: absolute;
  left: 32px;
  top: 10px;
  width: 34px;
  height: 34px;
}
.form-element .fui-btn-wrapper .fui-btn .plus .st1, .form-element .fui-btn-wrapper .fui-btn .minus .st1, .form-element__open-form-btn .plus .st1, .form-element__open-form-btn .minus .st1 {
  stroke: #fff;
}
.form-element .fui-btn-wrapper .fui-btn .plus, .form-element__open-form-btn .plus {
  display: block;
}
.form-element .fui-btn-wrapper .fui-btn .minus, .form-element__open-form-btn .minus {
  display: none;
}
.form-element .fui-btn-wrapper .fui-btn:hover, .form-element__open-form-btn:hover {
  background-color: #EF3B24;
}
.form-element .fui-btn-wrapper .fui-btn.fui-submit {
  background-color: #EF3B24;
  border: none;
  padding-left: 40px;
}
.form-element .fui-btn-wrapper .fui-btn.fui-submit::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 11px;
  width: 34px;
  height: 34px;
  background-image: url("../images/svg/submit_icon.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  transform: rotate(180deg);
}
.form-element .fui-btn-wrapper .fui-btn.fui-submit.loading {
  background-color: pink;
}
.form-element__open-form-btn.active {
  background-color: #EF3B24;
}
.form-element__open-form-btn.active .plus {
  display: none;
}
.form-element__open-form-btn.active .minus {
  display: block;
}
.form-element.form-only .fui-form {
  max-height: none;
}
.form-element .fui-form {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s linear;
}
.form-element .fui-form--only h3 + section {
  margin-top: 55px;
}
.form-element .fui-form--only, .form-element .fui-form.open {
  max-height: 6000px;
}
.form-element .fui-form .fui-form-container {
  font-size: 21px;
  line-height: 28px;
  letter-spacing: 0.21px;
  position: relative;
}
.form-element .fui-form .fui-form-container .fui-page-container {
  background-color: #fff;
  padding-left: 30px;
  padding-right: 27px;
  padding-bottom: 40px;
}
.form-element .fui-form .fui-form-container .error-text {
  color: #EF3B24;
  position: absolute;
  bottom: 40px;
  font-weight: 700;
}
.form-element .fui-form .fui-form-container fieldset {
  border: 0 none;
  padding: 0;
}
.form-element .fui-form .fui-form-container .fui-instructions p {
  margin-top: 0;
  font-size: 16px;
  color: #7C7969;
}
.form-element .fui-form .fui-form-container .fui-type-heading {
  margin-top: 50px;
}
.form-element .fui-form .fui-form-container .fui-type-html {
  margin-top: 25px;
}
.form-element .fui-form .fui-form-container .fui-type-file-upload .fui-input-container .fui-input,
.form-element .fui-form .fui-form-container .fui-type-file-upload .fui-input-cwrapper .fui-input {
  border: 0;
}
.form-element .fui-form__elements > section:last-child {
  padding-bottom: 87px;
}
.form-element .fui-form .fui-title {
  margin: 0;
  padding-top: 30px;
  font-size: 24px;
  line-height: 29px;
  background-color: #fff;
  padding-left: 30px;
}
.form-element .fui-form .fui-label, .form-element .fui-form .fui-legend {
  display: block;
  padding-top: 35px;
}
.form-element .fui-form .label, .form-element .fui-form .fui-legend {
  margin-bottom: 20px;
}
.form-element .fui-form .fui-input-container .fui-input, .form-element .fui-form .fui-input-wrapper .fui-input {
  height: 42px;
  display: block;
  width: 100%;
  border: 1px solid #9F9F9F;
}
.form-element .fui-form .fui-input-container textarea.fui-input, .form-element .fui-form .fui-input-wrapper textarea.fui-input {
  height: 6em;
}
.form-element .fui-error-message {
  font-size: 80%;
  font-weight: 600;
  color: #EF3B24;
}
.form-element .fui-alert-bottom-form {
  font-weight: 600;
  padding: 20px 0;
  color: #EF3B24;
  font-size: 22px;
}
.form-element .fui-form .fui-input-container .fui-checkbox, .form-element .fui-form .fui-input-container .fui-radio, .form-element .fui-form .fui-input-wrapper .fui-checkbox, .form-element .fui-form .fui-input-wrapper .fui-radio {
  display: flex;
  position: relative;
  margin-bottom: 15px;
  margin-right: 45px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.form-element .fui-form .fui-input-container .fui-checkbox input, .form-element .fui-form .fui-input-container .fui-radio input, .form-element .fui-form .fui-input-wrapper .fui-checkbox input, .form-element .fui-form .fui-input-wrapper .fui-radio input {
  flex-shrink: 0;
  height: 29px;
  width: 29px;
  border: 1px solid #9F9F9F;
  margin-right: 20px;
}
.form-element .fui-form .fui-input-container .fui-radio input, .form-element .fui-form .fui-input-wrapper .fui-radio input {
  margin-right: 10px;
}

.form-element.form-only .form-element__form {
  max-height: none;
}

.links {
  margin-bottom: 60px;
}
.links h2 {
  font-size: 26px;
  line-height: 33px;
  letter-spacing: 0.25px;
  margin-bottom: 25px;
}
.links__link {
  display: block;
  font-size: 25px;
  line-height: 30px;
  color: #EF3B24;
  margin-bottom: 25px;
  position: relative;
  padding-left: 50px;
}
.links__link__arrow {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  width: 35px;
  height: 33px;
  margin-right: 22px;
}
.links__link__arrow .a {
  fill: none;
}
.links__link__arrow .a {
  stroke-width: 0;
}
.links__link:hover {
  color: #292929;
}
.links__link:hover .links__link__arrow .a, .links__link:hover .links__link__arrow .b, .links__link:hover .links__link__arrow .c {
  stroke: #292929;
}

.courses {
  margin-bottom: 60px;
}
.courses__title {
  font-size: 26px;
  line-height: 33px;
  letter-spacing: 0.25px;
  margin-bottom: 35px;
}
.courses__links {
  font-size: 24px;
  line-height: 33px;
  color: #EF3B24;
}
.courses__links a {
  display: flex;
  justify-content: flex-start;
  padding: 17px 0;
  border-bottom: 1px solid #707070;
}
.courses__links a:first-child {
  border-top: 1px solid #707070;
}
.courses__links a:hover {
  color: #292929;
}
.courses__links a:hover svg .b, .courses__links a:hover svg .c {
  stroke: #292929;
}
.courses__links a svg {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-right: 22px;
}
.courses__links a svg .a {
  fill: none;
}
.courses__links a svg .a {
  stroke-width: 0;
}

.accordeon {
  margin-bottom: 60px;
}
.accordeon > h2 {
  font-size: 26px;
  line-height: 33px;
  letter-spacing: 0.25px;
  margin-bottom: 25px;
}
.accordeon__item {
  position: relative;
  border-bottom: 1px solid #707070;
  padding: 17px 0;
  font-size: 25px;
  line-height: 32px;
  font-weight: 300;
  color: #EF3B24;
}
.accordeon__item__title {
  display: flex;
  justify-content: flex-start;
}
.accordeon__item__title .plus, .accordeon__item__title .minus {
  display: block;
  flex-shrink: 0;
  margin-right: 25px;
  width: 32px;
  height: 32px;
  position: relative;
  top: 1px;
}
.accordeon__item__title .plus .st1, .accordeon__item__title .minus .st1 {
  stroke: #EF3B24;
}
.accordeon__item__title .minus {
  display: none;
}
.accordeon__item__title:hover {
  cursor: pointer;
  color: #292929;
}
.accordeon__item__title:hover .plus .st1 {
  stroke: #292929;
}
.accordeon__item__text {
  color: #292929;
  overflow: hidden;
  transition: height 0.5s ease;
  padding-left: 60px;
  display: none;
}
.accordeon__item__text h2 {
  font-size: 26px;
  line-height: 31px;
  color: #EF3B24;
  margin-bottom: 7px;
  margin-top: 0;
}
.accordeon__item__text h3 {
  margin-bottom: 7px;
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.26px;
}
.accordeon__item__text h4 {
  font-size: 21px;
  line-height: 27px;
  letter-spacing: 0.23px;
  margin-bottom: 7px;
}
.accordeon__item__text p {
  margin-top: 0;
  margin-bottom: 25px;
  font-size: 21px;
  line-height: 27px;
  letter-spacing: 0.21px;
}
.accordeon__item__text p:last-child {
  margin-bottom: 15px;
}
.accordeon__item__text > *:first-child {
  margin-top: 20px;
}
.accordeon__item__text ul {
  margin-bottom: 25px;
}
.accordeon__item__text li {
  font-size: 21px;
  line-height: 27px;
  letter-spacing: 0.21px;
}
.accordeon__item__text a {
  color: #7C7969;
}
.accordeon__item__text a:hover {
  color: #EF3B24;
}
.accordeon__item.open .accordeon__item__text {
  display: block;
}
.accordeon__item.open .accordeon__item__title {
  color: #292929;
}
.accordeon__item.open .accordeon__item__title:hover {
  color: #EF3B24;
}
.accordeon__item.open .accordeon__item__title:hover .minus .st1 {
  stroke: #EF3B24;
}
.accordeon__item.open .accordeon__item__title .plus {
  display: none;
}
.accordeon__item.open .accordeon__item__title .minus {
  display: block;
}
.accordeon__item.open .accordeon__item__title .minus .st1 {
  stroke: #292929;
}

.blogindex__cols {
  display: flex;
  justify-content: space-between;
}
.blogindex__cols__col {
  width: 31%;
}
.blogindex__cols.blogindex__mobile {
  display: none;
}
.blogindex__blogitem {
  background-color: #fff;
  margin-bottom: 40px;
  display: block;
  position: relative;
}
.blogindex__blogitem__imageholder {
  overflow: hidden;
  line-height: 0;
  margin-bottom: 14px;
}
.blogindex__blogitem__textholder {
  padding: 0 11px 40px 12px;
}
.blogindex__blogitem__teaserimg {
  line-height: 0;
  width: 100%;
  height: auto;
  transition: transform 0.2s;
}
.blogindex__blogitem__datum {
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 25px;
}
.blogindex__blogitem__titel {
  font-weight: 700;
  font-size: 29px;
  line-height: 35px;
  margin-bottom: 10px;
  hyphens: auto;
}
.blogindex__blogitem__intro {
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  hyphens: auto;
}
.blogindex__blogitem__arrow {
  position: absolute;
  right: 20px;
  bottom: 20px;
  width: 23px;
  height: 23px;
  transform: rotate(45deg);
}
.blogindex__blogitem__arrow .a {
  fill: none;
}
.blogindex__blogitem:hover .blogindex__blogitem__teaserimg {
  transform: scale(1.1);
}

.blogentry .page-wrapper__sidebar a, .blogentry .backbutton a {
  display: flex;
  align-items: center;
  position: relative;
  font-size: 20px;
  line-height: 23px;
}
.blogentry .page-wrapper__sidebar a .arrow, .blogentry .backbutton a .arrow {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.blogentry .page-wrapper__sidebar a .arrow .b, .blogentry .page-wrapper__sidebar a .arrow .c, .blogentry .backbutton a .arrow .b, .blogentry .backbutton a .arrow .c {
  stroke: #000;
}
.blogentry .page-wrapper__sidebar a .arrow .a, .blogentry .backbutton a .arrow .a {
  fill: none;
}
.blogentry .page-wrapper__sidebar a:hover, .blogentry .backbutton a:hover {
  color: #EF3B24;
}
.blogentry .page-wrapper__sidebar a:hover .arrow .b, .blogentry .page-wrapper__sidebar a:hover .arrow .c, .blogentry .backbutton a:hover .arrow .b, .blogentry .backbutton a:hover .arrow .c {
  stroke: #EF3B24;
}
.blogentry .backbutton {
  border-top: 1px solid #000;
  padding-top: 20px;
  padding-bottom: 50px;
}

.blog-detail .datum {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  margin-bottom: 40px;
}
.blog-detail h1 {
  font-size: 40px;
  line-height: 50px;
  margin-bottom: 40px;
}
.blog-detail .teaser {
  font-size: 25px;
  font-weight: 700;
  line-height: 35px;
  margin-bottom: 40px;
  letter-spacing: 0.04em;
}
.blog-detail .bildcontainer {
  margin-bottom: 40px;
}
.blog-detail .bildcontainer .blogimage {
  width: 100%;
  max-width: 704px;
  height: auto;
  margin-bottom: 4px;
}
.blog-detail .bildcontainer .bildcopyright {
  max-width: 704px;
}
.blog-detail .author {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 50px;
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
}
.blog-detail .author p {
  font-size: 20px;
  line-height: 21px;
}
.blog-detail hr {
  border: none;
  height: 1px;
  background-color: #000;
}
.blog-detail .accordeon:has(+ .accordeon) {
  margin-bottom: 0;
}
.blog-detail .quotebox {
  font-size: 27px;
  line-height: 35px;
  letter-spacing: 0.02em;
  background-color: #fff;
  font-weight: 700;
  padding: 32px 70px;
  text-align: center;
  margin-bottom: 45px;
}
.blog-detail .quotebox span {
  font-style: italic;
  font-size: 21px;
  margin-top: 8px;
  font-weight: 400;
  display: inline-block;
}
.blog-detail .quotebox.klein {
  font-size: 21px;
  line-height: 28px;
  padding: 32px;
  text-align: left;
}
.blog-detail .quotebox.klein span {
  font-size: 20px;
}
.blog-detail .framebox {
  display: flex;
  justify-content: space-between;
}
.blog-detail .framebox .frame {
  width: 57%;
  flex-shrink: 0;
  margin-top: -6px;
}
.blog-detail .framebox .frame .copyright {
  font-size: 15px;
  line-height: 29px;
}
.blog-detail .framebox .legend {
  width: 40%;
  flex-shrink: 0;
  font-size: 18px;
  line-height: 27px;
}
.blog-detail .framebox .legend .zitat {
  font-size: 21px;
  line-height: 29px;
  margin-bottom: 5px;
}
.blog-detail .framebox .legend .legendquelle {
  font-size: 18px;
  line-height: 27px;
}
.blog-detail .framebox.schmal .frame {
  width: 20%;
}
.blog-detail .framebox.schmal .legend {
  width: 75%;
}
.blog-detail .richtext {
  margin-bottom: 0;
}
.blog-detail .richtext .links__link {
  color: #EF3B24;
  text-decoration: none;
}
.blog-detail .richtext .links__link:hover {
  color: #000;
}
.blog-detail .richtext em, .blog-detail .richtext i {
  color: #000;
  font-style: italic;
}

.image-element {
  margin-bottom: 66px;
}
.image-element__title {
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.26px;
  margin-bottom: 25px;
}
.image-element__img-container {
  margin-bottom: 10px;
}
.image-element__richtext {
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0.21px;
}
.image-element__richtext p, .image-element__richtext li {
  font-size: 20px;
  line-height: 27px;
  letter-spacing: 0.21px;
}
.image-element__richtext p, .image-element__richtext ul {
  margin-bottom: 20px;
}
.image-element__richtext ul {
  padding-left: 20px;
}
.image-element__richtext h2, .image-element__richtext h3 {
  font-size: 20px;
}
.image-element__richtext em, .image-element__richtext i {
  color: #7C7969;
  font-style: normal;
}
.image-element__separator {
  border-bottom: 1px solid #292929;
  margin-top: 77px;
}
.image-element__wrapper {
  display: flex;
}
.image-element__wrapper .image-element__img-container {
  width: 50%;
}
.image-element__wrapper .image-element__richtext {
  width: 50%;
  padding-left: 25px;
}
.image-element__wrapper.drittel .image-element__img-container {
  width: 35%;
}
.image-element__wrapper.drittel .image-element__richtext {
  width: 65%;
}

.video-element {
  margin-bottom: 66px;
}
.video-element__title {
  font-size: 24px;
  line-height: 29px;
  letter-spacing: 0.26px;
  margin-bottom: 25px;
}
.video-element__img-container {
  margin-bottom: 39px;
}
.video-element__richtext {
  font-size: 21px;
  line-height: 28px;
  letter-spacing: 0.21px;
}
.video-element__separator {
  border-bottom: 1px solid #292929;
  margin-top: 77px;
}

.team {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.team__element {
  flex-basis: 50%;
  padding: 0 20px;
  margin-bottom: 67px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.team__element__image {
  position: relative;
  width: 219px;
  height: 219px;
  margin-bottom: 25px;
}
.team__element__image img {
  border-radius: 50%;
}
.team__element__image .plus, .team__element__image .minus {
  width: 24px;
  height: 24px;
  position: absolute;
  bottom: 0;
  right: -12px;
  cursor: pointer;
}
.team__element__image .plus {
  display: block;
}
.team__element__image .minus {
  display: none;
}
.team__element__name {
  font-size: 26px;
  line-height: 33px;
  color: #EF3B24;
  font-weight: 400;
  margin-bottom: 15px;
}
.team__element__function {
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0.18px;
  text-transform: uppercase;
}
.team__element__additional-info {
  display: block;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s linear;
}
.team__element__additional-info span {
  font-size: 16px;
  line-height: 23px;
  margin-bottom: 27px;
  display: block;
}
.team__element__additional-info .mail {
  width: 41px;
  display: block;
  margin: 0 auto;
}
.team__element__additional-info .mail .a {
  stroke: #292929;
}
.team__element__additional-info .mail .a {
  fill: none;
}
.team__element__additional-info a:hover .mail .a {
  stroke: #EF3B24;
}
.team__element.open .plus {
  display: none;
}
.team__element.open .minus {
  display: block;
}
.team__element.open .team__element__additional-info {
  max-height: 300px;
}

.offers-index {
  margin-bottom: 60px;
}
.offers-index__title {
  font-size: 26px;
  line-height: 33px;
  letter-spacing: 0.26px;
  margin-bottom: 45px;
}
.offers-index__offer {
  margin-bottom: 26px;
  display: flex;
  justify-content: space-between;
  text-decoration: none;
}
.offers-index__offer:hover {
  text-decoration: none;
}
.offers-index__offer .date-holder {
  width: 122px;
  margin-right: 8px;
  flex-shrink: 0;
}
.offers-index__offer__date {
  border-top: 15px solid #EF3B24;
  background-color: #fff;
  padding: 10px 15px 10px;
  min-height: 155px;
  display: flex;
  flex-direction: column;
  font-size: 35px;
  line-height: 39px;
  letter-spacing: 0.45px;
  text-align: center;
}
.offers-index__offer__date span.hilite {
  font-weight: 700;
}
.offers-index__offer__date span.up {
  text-transform: uppercase;
}
.offers-index__offer__teaser {
  background-color: #fff;
  padding: 30px;
  flex-grow: 1;
}
.offers-index__offer__teaser__title {
  margin-top: 0;
  margin-bottom: 15px;
  font-size: 25px;
  line-height: 32px;
  letter-spacing: 0.26px;
  position: relative;
  padding-right: 35px;
}
.offers-index__offer__teaser__title svg {
  position: absolute;
  top: -7px;
  right: 0;
  width: 34px;
  height: 34px;
}
.offers-index__offer__teaser__title svg .a {
  stroke-width: 1px;
  stroke: #000;
}
.offers-index__offer__teaser__title svg .b {
  stroke-width: 0;
}
.offers-index__offer__teaser__title svg .c {
  stroke: #000;
}
.offers-index__offer__teaser__title svg .a {
  fill: none;
}
.offers-index__offer__teaser__title .ongoing {
  color: #EF3B24;
  text-transform: uppercase;
  font-size: 21px;
}
.offers-index__offer__teaser__description {
  font-size: 21px;
  line-height: 28px;
  letter-spacing: 0.21px;
  margin-bottom: 15px;
}
.offers-index__offer__teaser__subtext {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0.18px;
  color: #EF3B24;
}

.table {
  font-size: 17px;
  line-height: 21px;
  letter-spacing: 0.17px;
  margin-bottom: 60px;
}
.table__4-column__header, .table__4-column__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.table__4-column__header h4,
.table__4-column__header div, .table__4-column__row h4,
.table__4-column__row div {
  color: #fff;
  background-color: #EF3B24;
  width: calc(25% - 5px);
  margin: 0;
  padding: 10px;
}
.table__4-column__header h4:last-child,
.table__4-column__header div:last-child, .table__4-column__row h4:last-child,
.table__4-column__row div:last-child {
  width: 25%;
}
.table__4-column__row div {
  background-color: #e0e0e0;
  color: #000;
  padding: 16px 10px;
}
.table__1-column__header {
  color: #fff;
  background-color: #EF3B24;
  margin: 0;
  padding: 16px 10px;
  margin-bottom: 5px;
}
.table__1-column__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}
.table__1-column__row div {
  color: #000;
  width: 100%;
  background-color: #e0e0e0;
  padding: 10px;
}
.table__1-column__row div:first-child {
  flex-shrink: 0;
  width: calc(25% - 5px);
  margin-right: 5px;
}
.table__1-column__row div:first-child.for-figures {
  width: calc(80% - 5px);
}
.table__1-column__row div:last-child {
  text-align: center;
}
.table__1-column__row div:last-child.for-figures {
  text-align: right;
}
.table__1-column__row.header {
  margin-bottom: 0;
}
.table__1-column__row.header div {
  color: #fff;
  background-color: #EF3B24;
  padding: 16px 10px;
  margin-bottom: 5px;
  font-weight: 700;
}

footer {
  background-color: #fff;
}
footer .footer {
  padding-top: 38px;
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  font-size: 18px;
  line-height: 25px;
}
footer .footer__left {
  width: 45%;
  display: flex;
  justify-content: flex-start;
}
footer .footer__logo-holder {
  width: 47px;
  margin-right: 25px;
}
footer .footer__address {
  margin-right: 50px;
}
footer .footer__address > div:first-child {
  font-weight: 700;
}
footer .footer__contact {
  display: flex;
  flex-direction: column;
}
footer .footer__contact__address {
  flex: 1 0 auto;
  margin-bottom: 32px;
}
footer .footer__contact__address a {
  display: block;
}
footer .footer__contact__socialmedia a {
  display: inline-block;
  width: 40px;
  margin-right: 5px;
}
footer .footer__right {
  width: 40%;
}
footer .footer__right__title {
  font-weight: 700;
  color: #EF3B24;
}
footer .footer__right .fui-alert-success {
  font-weight: 700;
  color: #EF3B24;
  font-size: 18px;
}
footer .footer__right__text {
  margin-bottom: 12px;
}
footer .footer__right .fui-form-container {
  width: 100%;
}
footer .footer__right .fui-form-container form, footer .footer__right .fui-form-container .fui-page {
  display: flex;
  margin-bottom: 54px;
}
footer .footer__right .fui-form-container form .fui-page-container, footer .footer__right .fui-form-container .fui-page .fui-page-container {
  flex: 1;
}
footer .footer__right .fui-form-container form .fui-input-container, footer .footer__right .fui-form-container form .fui-input-wrapper, footer .footer__right .fui-form-container .fui-page .fui-input-container, footer .footer__right .fui-form-container .fui-page .fui-input-wrapper {
  height: 55px;
}
footer .footer__right .fui-form-container form .newsletter_field, footer .footer__right .fui-form-container .fui-page .newsletter_field {
  flex: 1;
}
footer .footer__right .fui-form-container form .fui-error-message, footer .footer__right .fui-form-container .fui-page .fui-error-message {
  font-weight: 700;
  color: #EF3B24;
  font-size: 18px;
}
footer .footer__right .fui-form-container form input, footer .footer__right .fui-form-container .fui-page input {
  width: 100%;
  border: 1px solid #ADACA3;
  padding: 10px 7px;
  height: 100%;
}
footer .footer__right .fui-form-container form button, footer .footer__right .fui-form-container .fui-page button {
  line-height: 30px;
  width: 100%;
  padding: 10px 35px;
  background-color: #292929;
  border-color: #292929;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  height: 55px;
}
footer .footer__right__links > a {
  border-right: 2px solid #292929;
  padding-right: 10px;
  line-height: 30px;
  padding-left: 10px;
}
footer .footer__right__links > a:first-child {
  padding-left: 0;
}
footer .footer__right__links > a:last-child {
  border-right: 0;
  padding-right: 0;
}

main.landing {
  overflow: hidden;
}

.dse_banner {
  position: fixed;
  bottom: 0;
  left: 0;
  height: 175px;
  background-color: #EF3B24;
  z-index: 27000;
  width: 100%;
  color: #fff;
}
.dse_banner .container {
  max-width: 700px;
  font-size: 20px;
  line-height: 25px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.dse_banner .container .click_dse {
  display: inline-block;
  margin-top: 20px;
  border: 1px solid #fff;
  padding: 6px 10px;
  border-radius: 10px;
  cursor: pointer;
}
.dse_banner .container .click_dse:hover {
  color: #EF3B24;
  background-color: #fff;
}
.dse_banner .container a {
  text-decoration: underline;
}

@media only screen and (max-width: 1317px) {
  .header__desktop__top__logo-holder svg {
    left: 0;
  }

  .scroller-wrapper {
    margin-left: 0;
    margin-right: 0;
    max-width: 100%;
  }
  .scroller-wrapper__title {
    padding-left: 17px;
    padding-right: 17px;
  }
  .scroller-wrapper .scroller__item__body {
    background-color: transparent;
  }
  .scroller-wrapper .scroller__stripe {
    display: none;
  }
  .scroller-wrapper .scroller__stripe__small {
    display: flex;
  }
  .scroller-wrapper .scroller__next,
.scroller-wrapper .scroller__previous {
    display: none;
  }
}
@media only screen and (max-width: 1280px) {
  .container {
    width: 100%;
    padding: 0 15px;
  }
}
@media only screen and (max-width: 1100px) {
  .jumbotron {
    margin-bottom: 45px;
  }

  .jumbotron.landing-page,
.jumbotron {
    height: 248px;
    display: block;
  }

  .jumbotron__right {
    display: none;
  }

  .jumbotron__bg-image {
    width: 100%;
    height: 248px;
  }

  .page-wrapper {
    flex-direction: column-reverse;
  }
  .page-wrapper.blogentry {
    flex-direction: column;
  }
  .page-wrapper.blogentry .page-wrapper__sidebar {
    margin-bottom: 50px;
  }

  .page-wrapper__sidebar {
    width: 100%;
  }

  .aside-nav {
    display: none;
  }

  .table {
    margin-bottom: 50px;
  }

  .contact-cloud-wrapper {
    top: 410px;
  }
  .contact-cloud-wrapper__cloud {
    font-size: 12px;
    line-height: 15px;
    width: 110px;
    border-radius: 13px;
    padding: 5px 9px 6px 8px;
  }

  .landing__intro {
    padding-top: 40px;
    padding-bottom: 29px;
  }
  .landing__title {
    font-size: 33px;
    line-height: 38px;
    margin-bottom: 40px;
  }
  .landing__text {
    font-size: 21px;
    line-height: 30px;
    letter-spacing: 0.21px;
  }

  .scroller-wrapper {
    padding-top: 34px;
    margin-bottom: 0;
  }
  .scroller-wrapper__title {
    margin-bottom: 15px;
  }

  .intro {
    margin-bottom: 43px;
    font-size: 19px;
    line-height: 26px;
  }
  .intro__title {
    font-size: 29px;
    line-height: 35px;
    margin-bottom: 30px;
  }
  .intro__main {
    font-size: 19px;
    line-height: 26px;
    letter-spacing: 0.23px;
    margin-bottom: 45px;
  }
  .intro__additional--special {
    margin-bottom: 54px;
    padding: 21px 23px;
  }
  .intro__additional--special h3 {
    font-size: 22px;
    line-height: 25px;
  }
  .intro__additional--special div {
    font-size: 19px;
    line-height: 26px;
  }

  .offers-index__offer {
    display: block;
    margin-bottom: 41px;
  }
  .offers-index__offer .date-holder {
    width: fit-content;
    width: intrinsic;
    width: -moz-max-content;
    width: -webkit-max-content;
  }
  .offers-index__offer__date {
    padding: 6px 9px;
    margin-bottom: 10px;
    font-size: 29px;
    letter-spacing: 0.35px;
    min-height: 0;
    flex-direction: row;
  }
  .offers-index__offer__date span {
    display: inline-block;
    margin-right: 10px;
  }
  .offers-index__offer__date span:last-child {
    margin-right: 0;
  }
  .offers-index__offer__teaser {
    padding-right: 10px;
    padding-bottom: 18px;
    padding-left: 15px;
  }
  .offers-index__offer__teaser__title svg {
    top: -15px;
  }
  .offers-index__offer__teaser__subtext {
    line-height: 23px;
  }
  .offers-index__offer__teaser__description {
    font-size: 19px;
    line-height: 24px;
  }
  .offers-index__offer__teaser__title {
    font-size: 22px;
    line-height: 27px;
  }

  .richtext h2 {
    font-size: 24px;
    line-height: 31px;
    letter-spacing: 0.26px;
  }
  .richtext h3 {
    margin-top: 47px;
    font-size: 22px;
    line-height: 27px;
  }
  .richtext p, .richtext ul {
    font-size: 19px;
    line-height: 26px;
  }
  .richtext em, .richtext i {
    color: #7C7969;
    font-style: normal;
  }

  .form-element__pretext__title {
    font-size: 26px;
    line-height: 33px;
    letter-spacing: 0.26px;
  }

  .form-element__pretext__richtext p {
    margin-top: 11px;
    margin-bottom: 44px;
  }

  .form-element__open-form-btn {
    color: #fff;
    margin-bottom: 71px;
  }
  .form-element__open-form-btn.active, .form-element__open-form-btn:hover {
    background-color: #000;
  }

  .form-element__open-form-btn .plus .st1,
.form-element__open-form-btn .minus .st1 {
    stroke: #fff;
  }

  .form-element__form__elements {
    padding-left: 15px;
    padding-right: 15px;
    font-size: 19px;
    line-height: 26px;
  }

  .form-element__form__title {
    line-height: 27px;
    font-size: 22px;
  }

  .form-element__form__checkbox-holder {
    line-height: 25px;
  }

  .form-element__form__main-label {
    margin-top: 25px;
  }

  .form-element__open-form-btn.suz-submit {
    color: #fff;
    margin-top: 0;
    margin-bottom: 58px;
  }

  .links__link {
    margin-bottom: 16px;
    display: flex;
    font-size: 23px;
  }

  .links > h2 {
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 20px;
  }

  .links__link__arrow {
    display: block;
    margin-bottom: 14px;
  }

  .courses {
    margin-bottom: 41px;
  }
  .courses__title {
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 23px;
  }

  .accordeon__item {
    padding: 16px 0;
  }
  .accordeon__item.open .accordeon__item__title:hover {
    color: #292929;
  }
  .accordeon__item.open .accordeon__item__title:hover .minus .st1 {
    stroke: #292929;
  }
  .accordeon__item__title {
    font-size: 23px;
  }
  .accordeon__item__title:hover {
    color: #EF3B24;
  }
  .accordeon__item__title:hover .plus .st1 {
    stroke: #EF3B24;
  }
  .accordeon__item__title:hover .minus .st1 {
    stroke: #EF3B24;
  }
  .accordeon__item__text h2 {
    font-size: 29px;
    line-height: 34px;
  }
  .accordeon__item__text h4 {
    margin-top: 23px;
    margin-bottom: 37px;
  }
  .accordeon__item__text h3 {
    margin-top: 0;
    margin-bottom: 18px;
  }
  .accordeon__item__text p, .accordeon__item__text ul {
    font-size: 19px;
    line-height: 26px;
  }

  .accordeon > h2 {
    font-size: 24px;
    line-height: 31px;
    margin-bottom: 10px;
  }

  .image-element {
    margin-bottom: 57px;
  }
  .image-element__title {
    margin-bottom: 26px;
    font-size: 22px;
    line-height: 27px;
  }
  .image-element__richtext {
    font-size: 19px;
    line-height: 26px;
    letter-spacing: 0.21px;
  }
  .image-element__richtext p, .image-element__richtext li {
    font-size: 19px;
    line-height: 26px;
    letter-spacing: 0.21px;
  }
  .image-element__richtext p, .image-element__richtext ul {
    margin-bottom: 20px;
  }
  .image-element__richtext ul {
    padding-left: 20px;
  }
  .image-element__richtext h2, .image-element__richtext h3 {
    font-size: 20px;
  }
  .image-element__richtext em, .image-element__richtext i {
    color: #7C7969;
    font-style: normal;
  }
  .image-element__img-container {
    margin-bottom: 10px;
  }
  .image-element__separator {
    margin-top: 57px;
  }

  .video-element {
    margin-bottom: 66px;
  }
  .video-element__title {
    font-size: 22px;
    line-height: 27px;
  }
  .video-element__img-container {
    margin-bottom: 39px;
  }
  .video-element__richtext {
    font-size: 19px;
    line-height: 26px;
  }
  .video-element__separator {
    border-bottom: 1px solid #292929;
    margin-top: 77px;
  }

  .team {
    display: block;
  }

  .team__element {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 900px) {
  .header__desktop {
    display: none;
  }

  .header__mobile {
    display: block;
    padding-left: 0;
    padding-right: 0;
  }

  .contact-cloud-wrapper {
    top: 350px;
  }
  .contact-cloud-wrapper.scrolled {
    top: 77px;
  }

  footer .footer {
    padding: 45px 22px 28px 22px;
    display: block;
  }
  footer .footer__left {
    display: block;
    width: 100%;
    margin-bottom: 50px;
  }
  footer .footer__logo-holder {
    display: none;
  }
  footer .footer__address {
    margin-bottom: 25px;
  }
  footer .footer__right {
    width: 100%;
  }
  footer .footer__right form {
    margin-bottom: 80px;
    display: block;
  }
  footer .footer__right form input {
    width: 100%;
    margin-bottom: 18px;
  }
  footer .footer__right__links a {
    display: block;
    border: none;
    padding: 0;
    line-height: 40px;
    margin-bottom: 8px;
  }
  footer .footer__right__links a:last-child {
    padding: 0;
  }

  .image-element__wrapper {
    display: block;
  }
  .image-element__wrapper .image-element__img-container {
    width: auto;
  }
  .image-element__wrapper .image-element__richtext {
    width: auto;
    padding-left: 0;
  }
  .image-element__wrapper.drittel .image-element__img-container {
    width: auto;
  }
  .image-element__wrapper.drittel .image-element__richtext {
    width: auto;
  }

  .form-element__pretext {
    background-color: #fff;
    padding: 35px 15px 35px 15px;
  }
  .form-element .fui-form .fui-title {
    padding-left: 15px;
    padding-right: 10px;
  }
  .form-element .fui-form .fui-form-container .fui-page-container {
    padding-left: 15px;
    padding-right: 10px;
  }
  .form-element .fui-form .fui-input-container .fui-checkbox, .form-element .fui-form .fui-input-container .fui-radio, .form-element .fui-form .fui-input-wrapper .fui-checkbox, .form-element .fui-form .fui-input-wrapper .fui-radio {
    width: 100%;
  }

  .fui-layout-horizontal .fui-layout-wrap {
    flex-wrap: wrap;
  }

  .form-element .fui-btn-wrapper .fui-btn.fui-submit::before {
    left: 15px;
  }

  .form-element .fui-btn-wrapper .fui-btn .plus,
.form-element .fui-btn-wrapper .fui-btn .minus,
.form-element__open-form-btn .plus,
.form-element__open-form-btn .minus {
    left: 15px;
  }

  .form-element .fui-btn-wrapper .fui-btn, .form-element__open-form-btn {
    padding-left: 62px;
  }
}
@media screen and (max-width: 812px) {
  .blogindex__cols.blogindex__desktop {
    display: none;
  }
  .blogindex__cols.blogindex__mobile {
    display: block;
  }
  .blogindex__cols .blogindex__cols__col {
    width: 100%;
  }

  .blog-detail h1 {
    font-size: 29px;
    line-height: 35px;
    margin-bottom: 18px;
  }
  .blog-detail .teaser {
    font-size: 19px;
    line-height: 26px;
    letter-spacing: 0.23px;
    margin-bottom: 24px;
  }
  .blog-detail .datum {
    font-size: 18px;
    line-height: 25px;
    margin-bottom: 18px;
  }
  .blog-detail .author {
    font-size: 18px;
    margin-bottom: 35px;
  }
  .blog-detail .accordeon {
    margin-bottom: 40px;
  }
  .blog-detail .quotebox {
    font-size: 25px;
    line-height: 31px;
    padding: 25px 25px;
  }
  .blog-detail .quotebox.klein {
    padding: 20px;
  }
  .blog-detail .framebox {
    display: block;
  }
  .blog-detail .framebox .frame {
    width: 100%;
  }
  .blog-detail .framebox .frame .copyright {
    margin-bottom: 5px;
  }
  .blog-detail .framebox .legend {
    width: 100%;
    font-size: 15px;
    line-height: 19px;
  }
  .blog-detail .framebox .legend .zitat {
    font-size: 20px;
    line-height: 21px;
    margin-bottom: 5px;
  }
  .blog-detail .framebox .legend .legendquelle {
    font-size: 15px;
    line-height: 19px;
  }
  .blog-detail .framebox.schmal {
    display: flex;
  }
  .blog-detail .framebox.schmal .frame {
    width: 20%;
  }
  .blog-detail .framebox.schmal .legend {
    width: 75%;
  }
}
@media only screen and (max-width: 1100px) {
  .table {
    overflow-x: auto;
  }

  .table__4-column,
.table__1-column {
    min-width: 800px;
  }
}
@media only screen and (max-width: 520px) {
  footer .footer__right .fui-form-container .fui-page button {
    padding: 10px 5px;
  }
}

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