/* ******* GLOBALS *********** */
/**
 * Color css variable exports to be used in SCS owned css via `@import`
 */
:root {
  --color-green: #96be0d;
  --color-blue: #007C84;
  --color-red: #d8124f;
  --color-gray: #666a6e;
  --color-black: #000;
  --color-white: #fff;
  --color-dark-blue: #007982;
  --color-medium-blue: #aec8d2;
  --color-light-blue: #edf0f3;
  --color-gray-100: #f2f4f6;
  --color-gray-300: #e1e5e9;
  --color-gray-400: #D2D2D2;
  --color-gray-600: #a2a7a9;
  --color-gray-800: #3a3a3a;
  --color-error: #F51423;
  --color-warning: #FFA800;
  --color-success: #09ae3b;
}
/**
 * Spacing variable exports to be used in SCS owned css via `@import` 
 */
:root {
  --spacing-flow-xxs: 0.25rem;
  --spacing-flow-xs: 0.5rem;
  --spacing-flow-s: 1rem;
  --spacing-flow-m: 1.5rem;
  --spacing-flow-l: 2.5rem;
  --spacing-flow-xl: 4.5rem;
  --spacing-flow-xxl: 5.5rem;
  --spacing-component-xxs: 1px;
  --spacing-component-sm: 50px;
  --spacing-component-lg: 100px;
}
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);

  or object-fit and object-position:
  @include object-fit(cover, top);
*/
.sub-headline {
  font-weight: 300;
  display: block;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
  color: #3a3a3a;
  line-height: 1.5;
}
/* ALERT: We only need the mixins of this. TODO: MOVE THE MIXINS TO A DEDICATED FILE  */
/* ******* MOLECULES ********** */
.ex-blockquote {
  margin-top: 50px;
}
@media (max-width: 767.98px) {
  .ex-blockquote {
    margin-top: 30px;
  }
}
.ex-blockquote p {
  color: #007C84;
  font-size: 2rem;
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.3;
}
@media (max-width: 575.98px) {
  .ex-blockquote p {
    font-size: 1.5rem;
  }
}
.ex-blockquote p:empty {
  margin-bottom: 0;
}
.ex-blockquote footer {
  color: #666A6E;
  font-size: 0.9rem;
}
.ex-blockquote footer::before {
  content: none;
}
.ex-blockquote.ex-blockquote--with-authorimage p.ex-blockquote__imageCaption, .ex-blockquote.ex-blockquote--with-authorimage footer.ex-blockquote__imageCaption {
  -webkit-text-fill-color: unset;
  font-size: 0.9rem;
  font-weight: normal;
}
.ex-blockquote__authorimage {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .ex-blockquote__authorimage {
    padding-right: 0;
    margin-right: -15px;
  }
}
@media (max-width: 767.98px) {
  .ex-blockquote__authorimage {
    margin-top: 15px;
  }
}
.ex-blockquote__authorimage img {
  width: 100%;
  height: auto;
}
.ex-blockquote__content {
  position: relative;
}
.ex-blockquote__content::before {
  background-image: url("data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgNTEyIDUxMiIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNDY0IDMySDMzNmMtMjYgMC00OCAyMi00OCA0OHYxMjhjMCAyNyAyMiA0OCA0OCA0OGg4MHY2NGMwIDM1LTI5IDY0LTY0IDY0aC04Yy0xMyAwLTI0IDExLTI0IDI0djQ4YzAgMTMgMTEgMjQgMjQgMjRoOGM4OCAwIDE2MC03MiAxNjAtMTYwVjgwYzAtMjYtMjEtNDgtNDgtNDh6bS0yODggMEg0OEMyMiAzMiAwIDU0IDAgODB2MTI4YzAgMjcgMjIgNDggNDggNDhoODB2NjRjMCAzNS0yOSA2NC02NCA2NGgtOGMtMTMgMC0yNCAxMS0yNCAyNHY0OGMwIDEzIDExIDI0IDI0IDI0aDhjODggMCAxNjAtNzIgMTYwLTE2MFY4MGMwLTI2LTIxLTQ4LTQ4LTQ4eiIgZmlsbD0iIzk2QkUwRCIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  width: 65px;
  height: 55px;
  position: absolute;
  content: "";
  left: -85px;
  top: 6px;
}
@media (max-width: 767.98px) {
  .ex-blockquote__content::before {
    transform: scale(0.6);
    left: -45px;
    top: 2px;
  }
}
.ex-hero-stage__slide {
  position: relative;
}
.ex-hero-stage__slide__container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 650px;
  max-height: 500px;
}
@media (max-width: 767.98px) {
  .ex-hero-stage__slide__container {
    min-height: 450px;
    justify-content: flex-end;
  }
}
.ex-hero-stage__slide__container__news {
  display: flex;
  justify-content: center;
  flex-direction: column;
  min-height: 400px;
}
.ex-hero-stage__slide--TEXTBOX_RIGHT .ex-hero-stage__slide__container {
  align-items: flex-end;
}
.ex-hero-stage__slide__content {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  margin: 1.5rem;
  max-width: 525px;
}
@media (min-width: 1430px) {
  .ex-hero-stage__slide__content {
    margin-left: 10%;
    margin-right: 10%;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .ex-hero-stage__slide__content {
    margin-left: 5%;
    margin-right: 5%;
  }
}
@media (max-width: 767.98px) {
  .ex-hero-stage__slide__content {
    margin-bottom: 3rem;
  }
}
.ex-hero-stage__slide__headline {
  font-size: 2.4rem;
}
@media (max-width: 575.98px) {
  .ex-hero-stage__slide__headline {
    font-size: 2rem;
  }
}
.ex-hero-stage__slide__subline {
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 1em;
}
@media (max-width: 575.98px) {
  .ex-hero-stage__slide__subline {
    font-size: 1.2rem;
  }
}
.ex-hero-stage__slide__video, .ex-hero-stage__slide__image {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.ex-hero-stage__slide__image {
  background-size: cover;
  background-position: 50% 50%;
  object-fit: cover;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
}
.ex-hero-stage__slide__video {
  background-size: cover;
  background-position: 50% 50%;
  object-fit: cover;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
}
.ex-content-teaser-container.ex-container {
  padding: 0;
}
.ex-content-teaser {
  position: absolute;
  inset: 1rem;
  background-size: cover;
  background-position: 50% 50%;
  text-align: center;
  overflow: hidden;
  color: #fff;
  font-size: 16px;
}
.ex-content-teaser::after {
  content: " ";
  position: absolute;
  inset: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06) inset;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .ex-content-teaser {
    font-size: 15px;
  }
}
@media (min-width: 1200px) {
  .ex-content-teaser {
    font-size: 18px;
  }
}
@media (min-width: 1430px) {
  .ex-content-teaser {
    font-size: 20px;
  }
}
.ex-content-teaser__image {
  object-fit: cover;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
}
.ex-content-teaser::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(50, 55, 70, 0) 0%, rgba(50, 55, 70, 0.8) 70%);
  content: "";
  opacity: 1;
  transform: translate3d(0, 50%, 0);
  transition: opacity 0.35s, transform 0.35s;
}
.ex-content-teaser__title {
  font-weight: bold;
  position: absolute;
  bottom: 65px;
  left: 0;
  width: 100%;
  transition: transform 0.35s;
  transform: translate3d(0, 30px, 0);
  font-size: 1.7em;
  line-height: 1.1em;
  margin-bottom: 1rem;
  padding: 0 0.5rem;
}
.ex-content-teaser:hover::before,
.ex-content-teaser:focus-within::before {
  opacity: 1;
  transform: translate3d(0, 20%, 0);
}
.ex-content-teaser:hover .ex-content-teaser__title,
.ex-content-teaser:focus-within .ex-content-teaser__title {
  transform: translate3d(0, 0, 0);
}
.ex-content-teaser:hover .ex-content-teaser__subtitle,
.ex-content-teaser:focus-within .ex-content-teaser__subtitle {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.35s, transform 0.35s;
}
.ex-content-teaser__subtitle {
  position: absolute;
  bottom: 15px;
  left: 0;
  padding: 0 1em;
  height: 48px;
  line-height: 1.2;
  width: 100%;
  opacity: 0;
  transform: translate3d(0, 40px, 0);
  transition: opacity 0.35s, transform 0.35s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ex-content-teaser__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
}
.ex-content-teaser__link:focus-visible {
  box-shadow: inset 0 0 8px 2px #666a6e;
}
.ex-newsletter-teaser {
  background-color: #666a6e;
  color: #fff;
  font-weight: 400;
  text-align: left;
  padding-left: 65px;
  padding-right: 65px;
}
.ex-newsletter-teaser-header {
  padding-top: 3rem;
  text-align: left;
  font-size: 2.5rem;
}
@media (min-width: 1200px) {
  .ex-newsletter-teaser-header {
    font-size: 2.77rem;
  }
}
.ex-newsletter-teaser-text {
  padding-top: 1rem;
  font-size: 1.125rem;
}
@media (min-width: 1200px) {
  .ex-newsletter-teaser-text {
    font-size: 1.33rem;
  }
}
.ex-newsletter-teaser-cta {
  padding-top: 2rem;
  padding-bottom: 7rem;
}
@media (min-width: 1200px) {
  .ex-newsletter-teaser-cta {
    padding-bottom: 9rem;
  }
}
.ex-homepage .ex-intro-text__wrapper {
  text-align: center;
}
.ex-homepage .ex-intro-text__wrapper .row {
  justify-content: center;
}
.ex-intro-text__title {
  margin-bottom: 1.5rem;
}
/* ******* ORGANISMS ********** */
.ex-content-teaser-container {
  width: 100%;
  position: relative;
}
.ex-content-teaser-container__box {
  position: relative;
  z-index: 1;
}
.ex-content-teaser-container__container {
  margin-left: -1rem;
  margin-right: -1rem;
}
.ex-content-teaser-container--fixed .ex-content-teaser-container__container {
  display: flex;
}
@media (max-width: 575.98px) {
  .ex-content-teaser-container--fixed .ex-content-teaser-container__container {
    flex-wrap: wrap;
  }
}
.ex-content-teaser-container--fixed .ex-content-teaser-container__container .ex-content-teaser-container__box {
  flex: 1 0 auto;
  height: auto;
}
@media (max-width: 575.98px) {
  .ex-content-teaser-container--fixed .ex-content-teaser-container__container .ex-content-teaser-container__box {
    width: 100%;
  }
  .ex-content-teaser-container--fixed .ex-content-teaser-container__container .ex-content-teaser-container__box::before {
    content: "";
    float: left;
    padding-top: 100%;
  }
}
.ex-content-teaser-container--fixed .ex-content-teaser-container__container .ex-content-teaser-container__box--first::before {
  content: "";
  float: left;
  padding-top: 100%;
}
.ex-content-teaser-container--reversed .ex-content-teaser-container__container {
  flex-direction: row-reverse;
}
.ex-content-teaser-container--fixed.ex-content-teaser-container--has2boxes .ex-content-teaser-container__box--second {
  flex-grow: 2;
}
.ex-content-teaser-container--fixed + .ex-content-teaser-container--fixed.ex-content-teaser-container--hideHeadline {
  margin-top: 0;
}
.ex-content-teaser-container--loose + .ex-content-teaser-container--loose.ex-content-teaser-container--hideHeadline {
  margin-top: -12vw;
}
.ex-content-teaser-container--loose .ex-content-teaser-container__container {
  display: flex;
  padding-right: 17vw;
  margin-bottom: 14vw;
}
@media (max-width: 575.98px) {
  .ex-content-teaser-container--loose .ex-content-teaser-container__container {
    flex-wrap: wrap;
    padding-right: 0;
    padding-left: 0 !important;
  }
}
.ex-content-teaser-container--loose .ex-content-teaser-container__container .ex-content-teaser-container__box {
  flex: 1 0 auto;
  height: auto;
}
@media (max-width: 575.98px) {
  .ex-content-teaser-container--loose .ex-content-teaser-container__container .ex-content-teaser-container__box {
    width: 100%;
  }
  .ex-content-teaser-container--loose .ex-content-teaser-container__container .ex-content-teaser-container__box::before {
    content: "";
    float: left;
    padding-top: 100%;
  }
}
.ex-content-teaser-container--loose .ex-content-teaser-container__container .ex-content-teaser-container__box--first::before {
  content: "";
  float: left;
  padding-top: 100%;
}
.ex-content-teaser-container--loose .ex-content-teaser-container__container .ex-content-teaser-container__box--second {
  position: relative;
  top: 10.5vw;
  z-index: 2;
}
@media (max-width: 575.98px) {
  .ex-content-teaser-container--loose .ex-content-teaser-container__container .ex-content-teaser-container__box--second {
    top: 0;
  }
}
.ex-content-teaser-container--loose .ex-content-teaser-container__container .ex-content-teaser-container__box--third {
  position: absolute;
  right: 8.5rem;
  top: 3rem;
  width: 20rem;
  z-index: 3;
}
.ex-content-teaser-container--loose .ex-content-teaser-container__container .ex-content-teaser-container__box--third .ex-content-teaser__subtitle {
  font-size: 0.9em;
}
.ex-content-teaser-container--loose .ex-content-teaser-container__container .ex-content-teaser-container__box--third .ex-content-teaser__title {
  font-size: 1.5em;
}
.ex-content-teaser-container--loose .ex-content-teaser-container__container .ex-content-teaser-container__box--third::before {
  content: "";
  float: left;
  padding-top: 100%;
}
@media (max-width: 575.98px) {
  .ex-content-teaser-container--loose .ex-content-teaser-container__container .ex-content-teaser-container__box--third {
    width: 100%;
    position: relative;
    right: 0;
    top: 0;
    left: 0 !important;
  }
}
.ex-content-teaser-container--loose.ex-content-teaser-container--reversed .ex-content-teaser-container__container {
  flex-direction: row-reverse;
  padding-right: 0;
  padding-left: 17vw;
}
.ex-content-teaser-container--loose.ex-content-teaser-container--reversed .ex-content-teaser-container__container .ex-content-teaser-container__box--third {
  left: 0;
  right: auto;
}
.ex-content-teaser-extended__headline {
  margin-bottom: 2rem;
}
.ex-content-teaser-extended__container {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
}
@media (max-width: 767.98px) {
  .ex-content-teaser-extended__container {
    justify-content: center;
  }
}
.ex-content-teaser-extended + .ex-content-teaser-extended.ex-content-teaser-extended--hideHeadline {
  margin-top: 0;
}
.ex-content-teaser-extended__teaser {
  display: flex;
  flex: 260px 1 0;
  flex-direction: column;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.18);
  transition: all 0.2s;
  max-width: 409px;
  min-width: 304px;
  margin: 1rem;
}
@media (max-width: 991.98px) {
  .ex-content-teaser-extended__teaser {
    max-width: 328px;
  }
}
@media (max-width: 767.98px) {
  .ex-content-teaser-extended__teaser {
    max-width: 409px;
  }
}
@media (max-width: 575.98px) {
  .ex-content-teaser-extended__teaser {
    max-width: 288px;
  }
}
.ex-content-teaser-extended__teaser:hover {
  opacity: 0.94;
  text-decoration: none;
  box-shadow: 1px 2px 8px 1px rgba(0, 0, 0, 0.22);
}
.ex-content-teaser-extended__teaser:hover .ex-content-teaser-extended__link {
  text-decoration: underline;
}
.ex-content-teaser-extended--items-4 .ex-content-teaser-extended__teaser {
  flex: 220px 1 1;
  margin: 12px;
  min-width: 261px;
}
@media (max-width: 1199.98px) {
  .ex-content-teaser-extended--items-4 .ex-content-teaser-extended__teaser {
    max-width: 409px;
    min-width: 304px;
    margin: 1rem;
  }
}
@media (max-width: 991.98px) {
  .ex-content-teaser-extended--items-4 .ex-content-teaser-extended__teaser {
    flex-basis: 40%;
    min-width: 261px;
    margin: 12px;
  }
}
@media (max-width: 767.98px) {
  .ex-content-teaser-extended--items-4 .ex-content-teaser-extended__teaser {
    min-width: 409px;
  }
}
@media (max-width: 1429.98px) {
  .ex-content-teaser-extended--items-4 .ex-content-teaser-extended__teaser {
    max-width: 356px;
  }
}
.ex-content-teaser-extended picture {
  position: relative;
}
.ex-content-teaser-extended picture::after {
  content: " ";
  position: absolute;
  inset: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06) inset;
  pointer-events: none;
}
.ex-content-teaser-extended__image {
  aspect-ratio: 3/2;
  object-fit: cover;
  width: 100%;
}
.ex-content-teaser-extended__title {
  color: var(--color-gray-800);
  font-weight: 600;
  font-size: 1.3rem;
  margin: 1.5rem 1.5rem 1rem;
  hyphens: auto;
}
.ex-content-teaser-extended__text {
  color: var(--color-gray-800);
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  font-weight: normal;
  overflow: hidden;
  margin: 0.5rem 1.5rem;
}
.ex-content-teaser-extended__link {
  margin: auto 1.5rem 1.5rem;
  display: inline-flex;
  align-items: flex-end;
  gap: 5px;
  flex-wrap: nowrap;
  white-space: nowrap;
}
.ex-content-teaser-extended__link span {
  display: inline-block;
  flex-grow: 1;
  white-space: normal;
}
.ex-content-teaser-extended__icon {
  position: relative;
  top: -1px;
  margin-right: 5px;
  align-self: flex-start;
  display: inline-block;
  flex-shrink: 0;
}
h1 .sub-headline,
.h1 .sub-headline {
  font-size: 1.313rem;
}
@media (min-width: 1600px) {
  h1 .sub-headline,
  .h1 .sub-headline {
    font-size: 1.44rem;
  }
}
.ex-contact-container__name, .ex-contact-footer__name, h2 .sub-headline,
.h2 .sub-headline {
  font-size: 1.25rem;
}
@media (min-width: 1600px) {
  .ex-contact-container__name, .ex-contact-footer__name, h2 .sub-headline,
  .h2 .sub-headline {
    font-size: 1.333rem;
  }
}
.ex-contact-footer {
  text-align: center;
  color: #3a3a3a;
  background-color: #edf0f3;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.ex-contact-footer.ex-content-module-container {
  margin-bottom: 0 !important;
}
.ex-contact-footer__image {
  width: 50%;
  max-width: 8.375rem;
  max-height: 8.375rem;
  border-radius: 50%;
  background-image: linear-gradient(70deg, #007C84, #96be0d);
}
.ex-contact-footer__name {
  font-weight: 600;
  padding-top: 0;
}
.ex-contact-footer__actions {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  max-width: 1100px;
}
.ex-contact-footer__actions a {
  display: inline-block;
  min-width: 33%;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 1200px) {
  .ex-contact-footer__actions a {
    min-width: 25%;
  }
}
.ex-contact-footer__actions span {
  padding-right: 5px;
  vertical-align: middle;
}
.ex-contact-footer__actions span::before {
  display: inline;
}
.ex-cta-contact-footer {
  display: flex;
  flex-direction: column;
}
.ex-cta-contact-footer__contact-wrapper {
  margin-top: 3rem;
  background-color: #edf0f3;
  flex-basis: 50%;
  display: flex;
  padding: 3rem 3rem 3rem 10%;
  min-height: 430px;
}
.ex-cta-contact-footer__content-wrapper {
  color: #000;
  background: linear-gradient(37deg, #0098A1, #96be0d);
  flex-basis: 50%;
  padding: 3rem 10% 3rem 3rem;
}
.ex-cta-contact-footer__content-wrapper h3 {
  color: #000;
}
.ex-cta-contact-footer .ex-contact-footer__actions a {
  display: block;
  margin-bottom: 10px;
  padding: 0;
}
.ex-cta-contact-footer__contact-image img {
  width: 100%;
  max-width: 200px;
  max-height: 200px;
}
.ex-cta-contact-footer__contact-details {
  padding-left: 30px;
}
.ex-cta-contact-footer .ex-contact-footer__name {
  padding-top: 0;
}
@media (width >= 576px) {
  .ex-cta-contact-footer {
    flex-direction: row;
  }
}
.ex-content-module-container {
  margin-top: 3rem;
}
.ex-content-module-container h2, .ex-content-module-container .h2 {
  margin-bottom: 1.5rem;
}
.ex-content-module-container .uc-embedding-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-height: auto;
}
.ex-jumpmark-bar__items {
  margin-bottom: 0;
}
.ex-content-module-container.ex-newsletter-teaser + .ex-content-module-container.ex-contact-footer {
  margin-top: 0;
}
.ex-hero-stage.ex-content-module-container {
  margin-top: 0;
}
.ex-hero-stage__slide__container {
  pointer-events: none;
}
.ex-hero-stage__slide__content {
  pointer-events: auto;
}
.ex-herostage__paginationcontainer {
  position: absolute;
  display: flex;
  justify-content: center;
  width: 100%;
  bottom: 2rem;
  left: 0;
  z-index: 9;
}
@media (max-width: 991.98px) {
  .ex-herostage__paginationcontainer {
    bottom: 5px;
  }
}
.ex-herostage__paginationwrapper {
  display: flex;
  background: white;
  height: 2rem;
  border-radius: 1rem;
  margin: 0 auto;
  box-shadow: 0 4px 8px 0 rgba(32, 32, 32, 0.3);
}
.ex-herostage__pagination {
  position: static !important;
  display: flex;
  align-items: center;
}
.ex-herostage__pagination .swiper-pagination-bullet {
  margin: 2rem 8px !important;
  width: 16px;
  height: 16px;
  border: 2px solid white;
}
.ex-herostage__pagination .swiper-pagination-bullet:hover {
  width: 16px;
  height: 16px;
  border: 2px solid #acafb2;
}
.ex-herostage__pagination .swiper-pagination-bullet-active {
  background: #007C84;
}
.ex-herostage__button-next, .ex-herostage__button-prev {
  border: none;
  background: none;
  color: #666A6E;
  padding: 6px;
  top: 0;
  margin: 0 1rem;
}
.ex-herostage__button-next.swiper-button-disabled, .ex-herostage__button-prev.swiper-button-disabled {
  color: #ccc;
  cursor: auto;
}
.ex-herostage__button-next::before, .ex-herostage__button-prev::before {
  speak: none;
  font-family: phoenix-contact-icons, serif !important;
  font-weight: 400;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
}
.ex-herostage__button-next:focus, .ex-herostage__button-prev:focus {
  color: #007C84;
}
.ex-herostage__button-next:hover, .ex-herostage__button-prev:hover {
  color: #007C84;
}
.ex-herostage__button-prev {
  transform: translateY(-2px);
  left: 1rem;
}
.ex-herostage__button-prev::before {
  content: "\e935";
}
.ex-herostage__button-next {
  transform: translateY(-2px);
  right: 1rem;
}
.ex-herostage__button-next::before {
  content: "\e936";
}
/**
 * Color css variable exports to be used in SCS owned css via `@import`
 */
:root {
  --color-green: #96be0d;
  --color-blue: #007C84;
  --color-red: #d8124f;
  --color-gray: #666a6e;
  --color-black: #000;
  --color-white: #fff;
  --color-dark-blue: #007982;
  --color-medium-blue: #aec8d2;
  --color-light-blue: #edf0f3;
  --color-gray-100: #f2f4f6;
  --color-gray-300: #e1e5e9;
  --color-gray-400: #D2D2D2;
  --color-gray-600: #a2a7a9;
  --color-gray-800: #3a3a3a;
  --color-error: #F51423;
  --color-warning: #FFA800;
  --color-success: #09ae3b;
}
.ex-herostage-v2 {
  margin-top: 2rem;
  padding: 0 2rem;
}
@media (max-width: 575.98px) {
  .ex-herostage-v2 {
    padding: 0;
    margin: 0;
  }
}
.ex-herostage-v2__container {
  display: grid;
  grid-template: "content";
}
@media (max-width: 767.98px) {
  .ex-herostage-v2__container {
    grid-template: "image" "content";
    grid-row-gap: 1rem;
  }
}
.ex-herostage-v2__container picture,
.ex-herostage-v2__container .embed-responsive.ex-herostage-v2__image,
.ex-herostage-v2__container .ex-herostage-v2__video {
  grid-area: content;
}
@media (max-width: 767.98px) {
  .ex-herostage-v2__container picture,
  .ex-herostage-v2__container .embed-responsive.ex-herostage-v2__image,
  .ex-herostage-v2__container .ex-herostage-v2__video {
    grid-area: image;
  }
}
.ex-herostage-v2__container .ex-herostage-v2__image {
  border-radius: 4px;
  background-size: cover;
  background-position: 50% 50%;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover";
}
@media (max-width: 575.98px) {
  .ex-herostage-v2__container .ex-herostage-v2__image {
    border-radius: 0;
  }
}
.ex-herostage-v2__container .ex-herostage-v2__video {
  background-size: cover;
  background-position: 50% 50%;
  object-fit: cover;
  height: 100%;
  width: 100%;
  aspect-ratio: 5/2;
}
.ex-herostage-v2__content:not(.ex-herostage-v2-dark) {
  background: linear-gradient(90deg, rgba(32, 32, 32, 0.7) 0%, rgba(32, 32, 32, 0.7) 30%, rgba(32, 32, 32, 0.6) 60%, rgba(32, 32, 32, 0.35) 80%, rgba(32, 32, 32, 0) 100%);
}
@media (max-width: 767.98px) {
  .ex-herostage-v2__content:not(.ex-herostage-v2-dark) {
    background: none;
  }
}
.ex-herostage-v2__content.ex-herostage-v2-dark {
  background: linear-gradient(90deg, rgba(242, 244, 246, 0.7) 0%, rgba(242, 244, 246, 0.7) 30%, rgba(242, 244, 246, 0.6) 60%, rgba(242, 244, 246, 0.35) 80%, rgba(242, 244, 246, 0) 100%);
}
@media (max-width: 767.98px) {
  .ex-herostage-v2__content.ex-herostage-v2-dark {
    background: none;
  }
}
.ex-herostage-v2__content {
  grid-area: content;
  width: 66%;
  height: 100%;
  padding: 0 5rem;
  z-index: 1;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: baseline;
}
@media (max-width: 767.98px) {
  .ex-herostage-v2__content {
    width: 100%;
    height: auto;
    padding: 0;
  }
}
@media (max-width: 575.98px) {
  .ex-herostage-v2__content {
    padding: 1rem;
  }
}
.ex-herostage-v2__tagline, .ex-herostage-v2__headline, .ex-herostage-v2__subline {
  color: #fff;
  width: 67%;
}
@media (max-width: 1199.98px) {
  .ex-herostage-v2__tagline, .ex-herostage-v2__headline, .ex-herostage-v2__subline {
    width: 100%;
  }
}
@media (max-width: 767.98px) {
  .ex-herostage-v2__tagline, .ex-herostage-v2__headline, .ex-herostage-v2__subline {
    color: #000;
  }
}
.ex-herostage-v2__tagline {
  margin-bottom: 0.5rem;
  font-weight: 300;
  font-size: 19.2px;
  line-height: 23px;
}
.ex-herostage-v2__tagline .fa-leaf {
  height: 16px;
  margin-right: 4px;
}
.ex-herostage-v2__headline {
  margin-bottom: 0.5rem;
}
.ex-herostage-v2__subline {
  margin-bottom: 2rem;
  font-weight: 300;
  font-size: 23.04px;
  line-height: 130%;
}
@media (max-width: 767.98px) {
  .ex-herostage-v2__subline {
    margin-bottom: 1.5rem;
  }
}
.ex-herostage-v2__cta-container a {
  margin-bottom: 1rem;
  pointer-events: auto;
}
.ex-herostage-v2__cta-container a:first-child {
  margin-right: 1rem;
}
.ex-herostage-v2-dark .ex-herostage-v2__tagline,
.ex-herostage-v2-dark .ex-herostage-v2__headline,
.ex-herostage-v2-dark .ex-herostage-v2__subline {
  color: #000;
}
.ex-custom-stage {
  padding: 100px 50px;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.2);
  position: relative;
}
@media (max-width: 767.98px) {
  .ex-custom-stage {
    display: flex;
    flex-direction: column-reverse;
    padding: 0;
    box-shadow: none;
  }
}
.ex-custom-stage.ex-content-module-container {
  margin-top: 0;
  margin-bottom: 5rem;
}
.ex-custom-stage #ex-customformstage__formStatus {
  margin: 0;
  padding: 0 !important;
}
.ex-custom-stage #ex-customformstage__formStatus.alert-success,
.ex-custom-stage #ex-customformstage__formStatus.alert-danger {
  margin-top: 16px;
  margin-bottom: 0;
  padding: 0.5rem 1rem !important;
}
.ex-custom-stage h1 {
  font-size: 2.5rem;
  margin-bottom: 0;
  font-size: 1.6rem;
}
@media (max-width: 767.98px) {
  .ex-custom-stage h1 {
    font-size: 1.8rem;
  }
}
.ex-custom-stage h1.ex-custom-stage_headline--light-text {
  color: #fff;
}
.ex-custom-stage h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}
@media (max-width: 767.98px) {
  .ex-custom-stage h2 {
    font-size: 1.6rem;
  }
}
.ex-custom-stage .input-field {
  margin-left: 0;
  margin-right: 0;
}
.ex-custom-stage .form-check {
  padding-left: 0;
}
.ex-custom-stage .form-check-label a {
  font-size: 0.8em;
  font-weight: normal;
}
.ex-custom-stage .button-wrapper {
  text-align: right;
  margin-top: 20px;
}
.ex-custom-stage .ex-custom-stage__image {
  background-size: cover;
  background-position: 50% 50%;
  position: absolute;
  inset: 0;
  z-index: -1;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
@media (max-width: 767.98px) {
  .ex-custom-stage .ex-custom-stage__image {
    height: auto;
    position: relative;
  }
}
.ex-custom-stage .form-check-icon {
  padding-right: 2rem !important;
}
.ex-custom-stage__overlay {
  background-color: white;
  margin-left: auto;
  box-shadow: 0 0 8px 3px rgba(0, 0, 0, 0.3);
  margin-bottom: -140px;
  overflow: hidden;
}
@media (max-width: 767.98px) {
  .ex-custom-stage__overlay {
    margin-right: auto;
    margin-bottom: 0;
  }
}
.ex-custom-stage__title-wrapper {
  background-color: #fed631;
  padding: 16px 28px;
  box-shadow: inset 0 -8px 10px -5px rgba(0, 0, 0, 0.7);
}
@media (max-width: 767.98px) {
  .ex-custom-stage__title-wrapper {
    padding: 16px 24px;
  }
}
.ex-custom-stage__content-wrapper {
  padding: 28px;
}
@media (max-width: 767.98px) {
  .ex-custom-stage__content-wrapper {
    padding: 24px;
  }
}
.ex-custom-stage__form input[type=checkbox] {
  display: block !important;
  opacity: 0;
  position: absolute;
  left: 32px;
  top: 15px;
}
@media (width >= 576px) {
  .ex-custom-stage__overlay {
    width: 600px;
  }
}
@media (width <= 576px) {
  .ex-custom-stage__overlay {
    width: 100%;
  }
}
.form-status.alert {
  border: none !important;
}
.ex-small-stage {
  position: relative;
}
.ex-small-stage__image picture {
  display: inline-block;
  width: 100%;
  position: relative;
}
.ex-small-stage__image picture::before {
  content: " ";
  position: absolute;
  inset: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06) inset;
  pointer-events: none;
}
@media (min-width: 768px) {
  .ex-small-stage__image {
    padding: 0;
  }
}
.ex-small-stage__image img {
  width: 100%;
}
.ex-small-stage__headline {
  padding-top: 3rem;
}
/*

Please leave this file for future changes on content-text-media

*/
.ex-content-text-media__imagewrapper {
  position: relative;
}
.ex-content-text-media__imagewrapper::before {
  content: " ";
  position: absolute;
  inset: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06) inset;
  pointer-events: none;
}
@media (max-width: 767.98px) {
  .ex-content-text-media_mediacontainer {
    margin-bottom: 1.5rem;
  }
}
.row-container.pdp-fix-content {
  display: flex;
  flex-direction: row-reverse;
  max-width: 1190px;
  margin: 0 0 2.5rem;
}
.row-container.pdp-fix-content p {
  margin: 2.25rem 0;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 2rem;
  color: #202020;
}
.row-container.pdp-fix-content h1 {
  margin: 0;
  padding: 0;
  color: #202020;
  hyphens: auto;
}
@media (max-width: 767.98px) {
  .row-container.pdp-fix-content {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1430px) {
  .row-container.pdp-fix-content {
    margin: 0 53px 2.5rem;
  }
}
.ex-content-text-media-extended__imagewrapper.pdp-fix-content {
  width: 408px;
  margin: 5px 5px 5px 55px;
  float: right;
}
@media (max-width: 991.98px) {
  .ex-content-text-media-extended__imagewrapper.pdp-fix-content {
    width: 306px;
    height: 306px;
  }
}
@media (max-width: 767.98px) {
  .ex-content-text-media-extended__imagewrapper.pdp-fix-content {
    float: none;
    width: 204px;
    height: 204px;
    margin: 0 0 1rem;
    text-align: center;
    padding: 5px;
  }
}
.ex-content-text-media-extended__imagewrapper.pdp-fix-content img {
  width: 100%;
}
.ex-content-text-media-extended__imagewrapper.pdp-fix-content::before {
  content: none;
  background: none;
}
.ex-content-text-media-extended__text.pdp-fix-content {
  margin-bottom: 2.25rem;
}
.content.pdp-fix-content a::before {
  margin-right: 10px;
  width: 24px;
  height: 24px;
  display: flex;
  padding: 4px;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
}
.ex-content-text-media-extended__text {
  margin-bottom: 1rem;
}
.ex-content-text-media-extended .ex-link-container {
  padding: 0;
}
.ex-content-text-media-extended .ex-link-container .col-lg-7 {
  padding-left: 0;
  max-width: 100%;
}
.ex-content-text-media-extended .ex-link-container .offset-lg-2 {
  margin-left: 0;
}
.ex-content-text-media-extended .uc-embedding-container {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  min-height: auto;
}
@media (max-width: 767.98px) {
  .ex-content-text-media-extended_mediacontainer {
    margin-bottom: 1.5rem;
  }
}
.ex-content-text-media-extended__imagewrapper {
  position: relative;
}
.ex-content-text-media-extended__imagewrapper::before {
  content: " ";
  position: absolute;
  inset: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06) inset;
  pointer-events: none;
}
/*
.text-paragraph {
  text-align: center;
  margin-right: ($spacer * 4);
  margin-left: ($spacer * 4);
  margin-top: ($spacer * 3);
  margin-bottom: ($spacer * 3);
}
*/
.ex-reference-teaser {
  background-image: linear-gradient(37deg, #007C84, #96be0d);
  position: relative;
  padding-top: 1.2rem;
  margin-bottom: 5rem;
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .ex-reference-teaser {
    margin-bottom: 5rem;
    margin-top: 4rem;
  }
}
@media (min-width: 992px) {
  .ex-reference-teaser {
    margin-bottom: 10rem;
  }
}
.ex-teaser-row {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .ex-teaser-row {
    flex-direction: row;
    max-width: 1290px;
  }
}
.ex-reference-teaser__teaser {
  background: white;
  padding: 2rem 3rem 2rem 2rem;
  z-index: 1;
  box-shadow: 0 4px 8px 1px rgba(32, 32, 32, 0.3);
  width: 100%;
  display: flex;
  flex-direction: column;
  margin: -4% 0;
  order: 2;
}
@media (min-width: 768px) {
  .ex-reference-teaser__teaser {
    margin-bottom: -2rem;
    margin-top: -3rem;
    order: 1;
  }
}
@media (min-width: 992px) {
  .ex-reference-teaser__teaser {
    width: 500px;
    min-height: 446px;
  }
}
.ex-reference-teaser__imageContainer {
  background: #fff;
  max-width: 829px;
  max-height: 200px;
  z-index: 2;
  width: 80%;
  margin-top: -7%;
  order: 1;
}
@media (min-width: 768px) {
  .ex-reference-teaser__imageContainer {
    margin-left: -3%;
    margin-bottom: -3rem;
    order: 2;
    width: 100%;
    max-height: 300px;
  }
}
@media (min-width: 992px) {
  .ex-reference-teaser__imageContainer {
    width: 829px;
    max-height: 320px;
    margin-bottom: 0;
    margin-top: 0;
    position: relative;
  }
}
.ex-reference-teaser__imageContainer img {
  width: 100%;
  box-shadow: 0 4px 8px 1px rgba(32, 32, 32, 0.3);
}
@media (max-width: 767.98px) {
  .ex-reference-teaser__imageContainer img {
    max-height: 200px;
  }
}
.ex-reference-teaser__preheadline {
  color: #000;
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 1.3px;
  margin-bottom: 0.5rem;
  opacity: 0.7;
  text-transform: uppercase;
}
.ex-reference-teaser__headline {
  color: #000 !important;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  hyphens: auto;
  justify-content: flex-start;
  letter-spacing: 0.3px;
  line-height: 1.2;
  margin-bottom: 2rem;
  margin-top: 0;
}
.ex-reference-teaser__text {
  flex-grow: 2;
}
.ex-reference-teaser__button {
  margin-top: 1rem;
  align-self: flex-start;
}
.ex-reference-teaser__image {
  height: 100%;
}
@media (max-width: 575.98px) {
  .ex-reference-teaser__image {
    max-height: 200px;
  }
}
.ex-standalone-headline {
  margin-top: 64px;
}
.ex-standalone-headline hr {
  color: #CCD0C2;
  margin-top: 16px;
}
.ex-standalone-link-dark-bg {
  background-image: linear-gradient(61deg, #0099a1, #93c005);
}
.link__download,
.link__external,
.link__product_category,
.link__product_category_page,
.link__product_category_overview_page,
.link__search_result_page,
.link__anchor_link,
.link__configurator_page,
.link__customer_page,
.link__product_detail_page,
.link__product_list_page,
.link__configurator,
.link__editorial_page,
.link__crisp_link,
.link__pdf {
  color: #0098a1;
  font-weight: 600;
  text-decoration: none;
  line-height: 1.5;
  display: inline-flex;
  align-items: center;
}
.link__download::before,
.link__external::before,
.link__product_category::before,
.link__product_category_page::before,
.link__product_category_overview_page::before,
.link__search_result_page::before,
.link__anchor_link::before,
.link__configurator_page::before,
.link__customer_page::before,
.link__product_detail_page::before,
.link__product_list_page::before,
.link__configurator::before,
.link__editorial_page::before,
.link__crisp_link::before,
.link__pdf::before {
  margin-right: 0.5rem;
  font-family: phoenix-contact-icons, serif;
  font-weight: 400;
  content: "\e936";
  font-size: 14px;
}
.link__anchor_link::before {
  content: "\e946" !important;
}
.link__download::before {
  content: "\e943" !important;
}
.link__pdf::before {
  content: "\e941" !important;
}
.link__external::before {
  content: "\e934" !important;
}
.ex-link-container a {
  margin-bottom: 0.5rem;
}
.ex-about-element {
  padding: 3rem;
  background-image: linear-gradient(70deg, #007C84, #96be0d);
}
.ex-about-element.row {
  margin-left: 0;
  margin-right: 0;
}
.ex-about-element .h1, .ex-about-element .h2, .ex-about-element .h6 {
  color: #fff;
}
.ex-about-element .h1 {
  font-size: 3.75rem;
  line-height: 4rem;
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .ex-about-element .h1 {
    font-size: 4.166rem;
    line-height: 5rem;
  }
}
.ex-about-element__sub-headline {
  font-size: 1.25rem;
  font-weight: 300;
}
.ex-jumpmark-bar-target {
  scroll-margin-top: 4em;
}
.ex-jumpmark-bar ul,
.ex-jumpmark-bar ul li,
.ex-jumpmark-bar ul li a {
  height: auto;
}
@media (min-width: 992px) {
  .ex-jumpmark-bar ul,
  .ex-jumpmark-bar ul li,
  .ex-jumpmark-bar ul li a {
    height: 100%;
  }
}
.ex-jumpmark-bar {
  height: auto;
  background-color: #f2f4f6;
  -webkit-position: static;
  position: static;
  top: 0;
  z-index: 100;
}
@media (min-width: 992px) {
  .ex-jumpmark-bar {
    position: sticky;
    height: 60px;
    -webkit-position: sticky;
  }
}
.ex-jumpmark-bar__items {
  margin: 0;
  list-style-type: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 0;
}
@media (min-width: 992px) {
  .ex-jumpmark-bar__items {
    padding: 0;
    flex-flow: row wrap;
    justify-content: center;
  }
}
.ex-jumpmark-bar__item {
  display: flex;
  align-items: center;
}
.ex-jumpmark-bar__item a {
  margin: 0 24px;
  border-bottom: 2px solid #f2f4f6;
  display: flex;
  text-align: center;
}
@media (min-width: 992px) {
  .ex-jumpmark-bar__item a {
    align-items: center;
  }
}
.ex-jumpmark-bar__item a .ex-jumpmark-bar__item-inner {
  padding: 0;
  font-weight: bold;
  color: #3a3a3a;
  letter-spacing: 0.2px;
  text-transform: uppercase;
  transition: color 0.175s ease;
}
@media (min-width: 992px) {
  .ex-jumpmark-bar__item a .ex-jumpmark-bar__item-inner {
    display: inline-block;
  }
}
.ex-jumpmark-bar__item.ex-jumpmark-bar__item--active,
.ex-jumpmark-bar__item a:hover {
  border-bottom-color: #007982;
}
.ex-jumpmark-bar-close__visible {
  animation: fade-in 0.3s forwards;
  cursor: pointer;
}
.ex-jumpmark-bar-close__not_visible {
  animation: fade-in 0.3s forwards reverse;
  cursor: default;
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.ex-jumpmark-bar-close {
  position: absolute;
  right: 0;
  opacity: 0;
  display: none;
  cursor: default;
}
.ex-jumpmark-bar-close span {
  padding: 0 20px;
}
@media (min-width: 992px) {
  .ex-jumpmark-bar-close {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.ex-jumpmark-bar__closed {
  position: static !important;
}
.ex-visible {
  display: block;
}
.ex-hidden {
  display: none;
}
.ex-youtubevideo__video-title, .ex-movingimage__video-title {
  bottom: 0;
  color: #fff;
  display: block;
  left: 0;
  padding: 10px 15px;
  position: absolute;
  text-align: left;
}
.ex-youtubevideo__video-source-info, .ex-movingimage__video-source-info {
  color: #fff;
  display: block;
  left: 0;
  padding: 10px 15px;
  position: absolute;
  text-align: left;
  top: 0;
}
.ex-youtubevideo__overlay, .ex-movingimage__overlay {
  cursor: pointer;
}
.ex-youtubevideo__overlay img, .ex-movingimage__overlay img {
  width: 100%;
}
.ex-youtubevideo__overlay::after, .ex-movingimage__overlay::after {
  display: block;
  background-color: rgba(0, 0, 0, 0.6);
  transition: background-color 0.3s;
  content: "";
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.ex-youtubevideo__poster:hover .ex-youtubevideo__overlay::after, .ex-youtubevideo__poster:hover .ex-movingimage__overlay::after, .ex-movingimage__poster:hover .ex-youtubevideo__overlay::after, .ex-movingimage__poster:hover .ex-movingimage__overlay::after {
  background-color: rgba(0, 0, 0, 0.8);
}
.ex-movingimage__poster[data-seamless=true] .ex-movingimage__overlay::after {
  box-shadow: inset 0 0 0 3px #fff;
  background-color: white;
  transition: background-color 0.3s;
}
.embed-responsive--poster-removed::before {
  display: none;
}
.embed-responsive--poster-removed .ex-movingimage__poster[data-seamless=true] .ex-movingimage__overlay::after {
  background-color: rgba(255, 255, 255, 0);
}
.ex-icon-video {
  font-size: 1rem !important;
  color: #fff;
  display: block;
  left: 48%;
  position: absolute;
  top: 48%;
}
.ex-icon-video:hover {
  color: #e1e5e9;
  cursor: pointer;
}
@media (min-width: 576px) {
  .ex-icon-video {
    font-size: 1.5rem !important;
  }
}
.embed-responsive--poster-removed .embed-responsive-item {
  position: static !important;
}
.mi-mobile video {
  position: relative;
}
.ex-main-navigation__dropdown-content-left,
.ex-main-navigation__dropdown-content-right {
  display: flex;
  flex-direction: column;
  flex-grow: 0;
}
@media (min-width: 768px) {
  .ex-main-navigation__dropdown-content-left,
  .ex-main-navigation__dropdown-content-right {
    flex-basis: 270px;
  }
}
.ex-main-navigation__dropdown-content-left .main-navigation__dropdown-content-categories,
.ex-main-navigation__dropdown-content-right .main-navigation__dropdown-content-categories {
  margin-top: 1rem;
  padding-left: 1rem;
  padding-top: 0.6rem;
  flex-grow: 1;
}
.ex-main-navigation__dropdown-content-categories-main .ex-main-navigation__dropdown-content-row {
  display: grid;
  grid-gap: inherit !important;
  grid-template-columns: repeat(auto-fit, minmax(min-content, 200px));
}
@media (min-width: 1200px) {
  .ex-main-navigation__dropdown-content-categories-main .ex-main-navigation__dropdown-content-row {
    grid-template-columns: repeat(auto-fit, minmax(min-content, 250px));
  }
}
@media (max-width: 575.98px) {
  .ex-main-navigation__dropdown-content-column-main {
    padding-bottom: 0.5rem;
  }
}
.ex-main-navigation__dropdown-content-column-left,
.ex-main-navigation__dropdown-content-column-right {
  flex: 0 0 100%;
}
.ex-main-navigation__dropdown-bottom-link__container {
  padding: 1.5em;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 575.98px) {
  .ex-main-navigation__dropdown-bottom-link__container {
    padding: 1rem 0.4rem;
  }
  .ex-main-navigation__dropdown-bottom-link__container:empty {
    padding: 0;
    margin: 0;
  }
}
.ex-main-navigation__dropdown-content {
  flex-direction: row;
}
@media (max-width: 575.98px) {
  .ex-main-navigation__dropdown-content {
    flex-direction: column;
  }
  .ex-main-navigation__dropdown-content h6 {
    margin-bottom: 0;
  }
}
.ex-main-navigation__dropdown-content-row {
  display: flex;
  flex-flow: row wrap;
  padding-left: 0.5em;
  grid-gap: inherit !important;
}
@media (max-width: 575.98px) {
  .ex-main-navigation__dropdown-content-row {
    flex-direction: column !important;
    justify-content: space-between;
  }
}
.ex-main-navigation__dropdown-content-left {
  background-color: white;
}
@media (max-width: 575.98px) {
  .ex-main-navigation__dropdown-content-left {
    margin-top: -3px;
    margin-bottom: 1rem;
  }
}
.ex-main-navigation__dropdown-content-left .ex-main-navigation__dropdown-bottom-link__container, .ex-main-navigation__dropdown-content-left .main-navigation__dropdown-content-categories {
  border-right: 1px solid #a2a7a9;
  padding-bottom: 0;
  margin-bottom: 2rem;
}
.ex-main-navigation__dropdown-content-right .main-navigation__dropdown-content-categories {
  border-left: 3px solid #edf0f3;
}
.mobile-navigation-submenu-active .ex-main-navigation__dropdown-content .main-navigation__dropdown-content-categories {
  padding: 0.5rem;
}
.ex-main-navigation__dropdown-content-categories-left,
.ex-main-navigation__dropdown-content-categories-right,
.ex-main-navigation__dropdown-content-categories-main {
  padding: 1.5rem;
}
.ex-main-navigation__dropdown-content-categories-right {
  padding-right: 2rem;
}
.main-navigation__dropdown-content-link .ex-main-navigation__icon {
  color: #666A6E;
  display: inline-block;
  padding-left: 0.3rem;
}
.main-navigation__dropdown-content-link .ex-main-navigation__icon svg {
  margin-bottom: 2px;
  width: 12px;
  height: 12px;
}
.ex-content-table__wrapper {
  overflow: auto;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
}
.ex-content-table {
  table-layout: fixed;
  min-width: 100%;
}
.ex-content-table__headeritem {
  border: 1px solid #e1e5e9;
  border-bottom: none;
  padding: 10px;
  vertical-align: top;
}
.ex-content-table__headerimagewrapper {
  position: relative;
  margin-bottom: 10px;
  justify-content: center;
  display: flex;
  min-width: 300px;
}
@media (max-width: 767.98px) {
  .ex-content-table__headerimagewrapper {
    min-width: 200px;
  }
}
.ex-content-table__headerimagewrapper::after {
  content: " ";
  position: absolute;
  inset: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06) inset;
  pointer-events: none;
}
.ex-content-table__headersubtitle {
  color: #0098A1;
}
.ex-content-table__row {
  border: 1px solid #e1e5e9;
}
.ex-content-table__row:nth-child(even) {
  background-color: #e9ebed;
}
.ex-content-table__value, .ex-content-table__itemhead, .ex-content-table__footeritem {
  border: 1px solid #e1e5e9;
}
.ex-content-table__value, .ex-content-table__grouptitle, .ex-content-table__rowtitle {
  padding: 10px;
}
.ex-content-table__grouptitlespacer {
  border-right: 1px solid #e1e5e9;
  border-left: 1px solid #e1e5e9;
}
.ex-content-table__grouptitle {
  font-weight: bold;
}
.ex-content-table__footeritem {
  padding: 10px;
}
.ex-content-table__footeritem a {
  display: inline-block;
}
.ex-imagemap__wrapper {
  position: relative;
}
.ex-imagemap__wrapper::after {
  content: " ";
  position: absolute;
  inset: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06) inset;
  pointer-events: none;
  pointer-events: none;
}
.ex-imagemap__image {
  width: 100%;
}
.ex-imagemap__marker {
  position: absolute;
  cursor: pointer;
  border-radius: 50%;
  width: 1px;
  height: 1px;
}
.ex-imagemap__marker:focus::after {
  background: #666a6e;
}
.ex-imagemap__marker::before {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
  border-radius: 100%;
  background-color: rgba(200, 200, 200, 0.4);
  right: -12px;
  top: -12px;
  width: 25px;
  height: 25px;
  border: 1px solid #fff;
}
@media (min-width: 576px) {
  .ex-imagemap__marker::before {
    width: 41px;
    height: 41px;
    border: 2px solid #fff;
    right: -20px;
    top: -20px;
  }
}
.ex-imagemap__marker:focus-visible::before {
  box-shadow: 0 0 4px 4px #0098a1;
}
.ex-imagemap__marker::after {
  content: "";
  position: absolute;
  right: -12px;
  top: -12px;
  display: block;
  background: #007C84;
  border-radius: 50%;
  height: 25px;
  width: 25px;
  border: 2px solid #fff;
  right: -6px;
  top: -6px;
  width: 13px;
  height: 13px;
  border: 1px solid #fff;
}
.ex-imagemap__overlay {
  position: absolute;
  z-index: 120;
  top: -30px;
  background: white;
  display: none;
  overflow: hidden;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
  cursor: auto;
  min-width: 420px;
  min-height: 150px;
  flex-direction: column-reverse;
}
@media (max-width: 575.98px) {
  .ex-imagemap__overlay {
    top: 20px;
    min-width: initial;
    width: 80vw;
    z-index: 2;
  }
}
.ex-imagemap__overlay.ex-imagemap__overlay--open {
  display: flex;
}
.ex-imagemap__marker--right .ex-imagemap__overlay {
  left: 30px;
}
.ex-imagemap__marker--left .ex-imagemap__overlay {
  right: 30px;
}
.ex-imagemap__overlaycontentwrapper, .ex-imagemap__overlayimage {
  flex-basis: 50%;
  flex-shrink: 0;
}
.ex-imagemap__overlayimagewrapper {
  flex-basis: 50%;
  flex-shrink: 1;
}
.ex-imagemap__overlayimage {
  width: 100%;
}
.ex-imagemap__overlaycontentwrapper {
  display: flex;
  flex-direction: column;
  padding: 15px;
  flex-grow: 1;
}
.ex-imagemap__overlaycontent {
  flex-grow: 1;
  margin-bottom: 0.5rem;
}
.ex-imagemap__overlaytitle {
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.ex-imagemap__overlayclosebtn {
  position: absolute;
  border-radius: 100%;
  right: 12px;
  top: 12px;
  width: 33px;
  height: 32px;
  padding: 4px;
  cursor: pointer;
  background: #fff;
}
.ex-bienensabbertopf {
  visibility: hidden;
  display: none;
  opacity: 0;
  height: 0;
  overflow: hidden;
  speak: none;
}
.ex-contact-sidebar {
  border: solid 1px #e1e5e9;
  padding: 1rem;
  flex-basis: 100%;
  margin-bottom: 2rem;
}
.ex-contact-sidebar__title {
  text-transform: uppercase;
}
.ex-contact-sidebar__imagecontainer {
  position: relative;
  width: 85%;
  max-width: 210px;
  margin: 2rem auto;
}
.ex-contact-sidebar__imagecontainer::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.ex-contact-sidebar__imagecontainer img {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.ex-contact-sidebar__name {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.ex-contact-sidebar__phone {
  display: block;
  margin-bottom: 10px;
  white-space: nowrap;
}
.ex-contact-sidebar__phone .ico-telephone {
  vertical-align: middle;
  padding-right: 7px;
}
.ex-contact-sidebar__phone .ico-telephone::before {
  display: inline;
}
.ex-contact-sidebar__email {
  display: flex;
  overflow-wrap: break-word;
}
.ex-contact-sidebar__email .ico-mail {
  vertical-align: middle;
  padding-right: 7px;
}
.ex-contact-sidebar__email * {
  min-width: 0;
}
.ex-product-list {
  list-style: none;
  padding: 0;
  border: solid 1px #e1e5e9;
}
.ex-product-list__item {
  border-bottom: solid 1px #e1e5e9;
  position: relative;
  box-shadow: 0 4px 8px rgba(32, 32, 32, 0);
  transition: box-shadow 0.3s;
  overflow: hidden;
}
.ex-product-list__item .sh-ProductAvailability {
  padding: 0 1rem 0.5rem;
}
.ex-product-list__item:hover {
  box-shadow: 0 4px 8px rgba(32, 32, 32, 0.2);
}
.ex-product-list__item::before {
  z-index: -1;
  content: "";
  position: absolute;
  left: 0;
  height: 4em;
  right: 0;
  top: 0;
  background-color: var(--color-gray-100);
}
.ex-product-list__item .pr-product-information {
  padding: 1rem;
}
.ex-product-list__item .h2-hdr a {
  font-weight: 600;
  line-height: 1.2em;
  word-break: break-all;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: black;
}
.ex-product-list__item .h2-hdr a::before {
  position: absolute;
  inset: 0;
  content: "";
}
.ex-product-list__item .pr-product-information .col-md-8,
.ex-product-list__item .pr-product-information .col-lg-8 {
  position: initial;
}
@media (width <= 1200px) {
  .ex-product-list__item .pr-product-information .col-md-8,
  .ex-product-list__item .pr-product-information .col-lg-8 {
    flex-basis: 63%;
  }
}
@media (width <= 992px) {
  .ex-product-list__item .pr-product-information .col-md-8,
  .ex-product-list__item .pr-product-information .col-lg-8 {
    flex-basis: 58%;
  }
}
.ex-product-list__item h2 {
  font-size: 1.45rem;
  margin-top: 3px;
}
.ex-product-list__item h2 .sub-headline {
  margin: 1.7em 0 0.5em;
  font-size: 1rem;
}
.ex-product-list__item #pr-short-description {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
  color: var(--color-gray-700);
}
.ex-product-list__load-more {
  margin-bottom: 3rem;
}
.ex-product-list__load-more--hidden,
.ex-product-listitem--hidden {
  display: none;
}
.ex-collapsible__container p {
  max-width: 95%;
}
.ex-collapsible__container p:empty {
  margin-bottom: 0;
}
.ex-collapsible__imagescontainer {
  position: relative;
}
.ex-collapsible__imagewrapper {
  z-index: 1;
}
.ex-collapsible__imagewrapper--active {
  z-index: 2;
}
.ex-collapsible__imagewrapper picture {
  inset: 0 0 0 1rem;
  position: absolute;
}
.ex-collapsible__imagewrapper--active picture::after {
  content: " ";
  position: absolute;
  inset: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06) inset;
  pointer-events: none;
}
.ex-collapsible__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.3s 0.1s;
}
.ex-collapsible__image--active {
  opacity: 1;
  transition: opacity 0.2s;
}
.ex-collapsible__accordioncolumn {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  border: 1px solid #e9ecef;
}
div.ex-collapsible__accordionwrap {
  flex-grow: 1;
  margin: 0 !important;
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .ex-collapsible__accordionwrap--3 {
    height: 550px;
  }
  .ex-collapsible__accordionwrap--3 .ex-collapsible__contenttext {
    max-height: 278px;
  }
  .ex-collapsible__accordionwrap--4 {
    height: 550px;
  }
  .ex-collapsible__accordionwrap--4 .ex-collapsible__contenttext {
    max-height: 203px;
  }
  .ex-collapsible__accordionwrap--5 {
    height: 612px;
  }
  .ex-collapsible__accordionwrap--5 .ex-collapsible__contenttext {
    max-height: 194px;
  }
  .ex-collapsible__accordionwrap--6 {
    height: 612px;
  }
  .ex-collapsible__accordionwrap--6 .ex-collapsible__contenttext {
    max-height: 115px;
  }
}
.ex-collapsible__item {
  display: flex;
  flex-direction: column;
  margin-left: 1rem;
  border-bottom: 1px solid #e9ecef;
}
.ex-collapsible__item.ex-collapsible__item--active {
  flex-grow: 1;
}
.ex-collapsible__item:last-child {
  border-bottom: none;
}
.ex-collapsible__content {
  transition: max-height 0.3s, opacity 0.3s !important;
  min-height: 0;
  max-height: 0;
  opacity: 0;
}
.ex-collapsible__content a {
  padding-top: 0.5rem;
}
.accordion__input:checked ~ .ex-collapsible__content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-bottom: 1rem;
  opacity: 1;
}
.ex-collapsible__contenttext {
  flex-grow: 1;
  overflow-x: auto;
}
.ex-collapsible__mobileimage {
  width: 100%;
  margin-bottom: 1rem;
}
/**
 * Swiper 11.2.8
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: May 23, 2025
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}
/* Navigation font end */
.ex-imageslider {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
  background-color: #e9ecef;
}
.ex-imageslider__slider,
.ex-imageslider__thumbnailrow {
  position: relative;
}
.ex-imageslider__slider::before, .ex-imageslider__slider::after,
.ex-imageslider__thumbnailrow::before,
.ex-imageslider__thumbnailrow::after {
  content: " ";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 9;
}
@media (max-width: 575.98px) {
  .ex-imageslider__slider::before, .ex-imageslider__slider::after,
  .ex-imageslider__thumbnailrow::before,
  .ex-imageslider__thumbnailrow::after {
    width: 50px;
  }
}
.ex-imageslider__slider::before,
.ex-imageslider__thumbnailrow::before {
  left: 0;
  background-image: linear-gradient(270deg, rgba(255, 255, 255, 0.001) 0%, rgba(255, 255, 255, 0.001) 5%, #e9ecef 100%);
}
.ex-imageslider__slider::after,
.ex-imageslider__thumbnailrow::after {
  right: 0;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.001) 0%, rgba(255, 255, 255, 0.001) 5%, #e9ecef 100%);
}
.ex-imageslider__button-next::after,
.ex-imageslider__button-prev::after {
  color: #007C84;
}
.ex-imageslider--thumbnail .ex-imageslider__slide {
  width: 130px;
  height: 130px;
}
@media (min-width: 576px) {
  .ex-imageslider--thumbnail .ex-imageslider__slide {
    width: 160px;
    height: 160px;
  }
}
.ex-imageslider--small .ex-imageslider__slide {
  width: 200px;
  height: 200px;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .ex-imageslider--small .ex-imageslider__slide {
    width: 240px;
    height: 240px;
  }
}
@media (min-width: 768px) {
  .ex-imageslider--small .ex-imageslider__slide {
    width: 270px;
    height: 270px;
  }
}
.ex-imageslider--medium .ex-imageslider__slide,
.ex-imageslider--medium_with_caption .ex-imageslider__slide {
  width: 300px;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .ex-imageslider--medium .ex-imageslider__slide,
  .ex-imageslider--medium_with_caption .ex-imageslider__slide {
    width: 350px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .ex-imageslider--medium .ex-imageslider__slide,
  .ex-imageslider--medium_with_caption .ex-imageslider__slide {
    width: 500px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .ex-imageslider--medium .ex-imageslider__slide,
  .ex-imageslider--medium_with_caption .ex-imageslider__slide {
    width: 700px;
  }
}
@media (min-width: 1200px) {
  .ex-imageslider--medium .ex-imageslider__slide,
  .ex-imageslider--medium_with_caption .ex-imageslider__slide {
    width: 800px;
  }
}
@media (max-width: 575.98px) {
  .ex-imageslider--large .ex-imageslider__slide {
    height: 335.28px;
  }
}
@media (min-width: 576px) {
  .ex-imageslider--large .ex-imageslider__slide {
    height: 335.28px;
  }
}
@media (min-width: 768px) {
  .ex-imageslider--large .ex-imageslider__slide {
    height: 454.08px;
  }
}
@media (min-width: 992px) {
  .ex-imageslider--large .ex-imageslider__slide {
    height: 612.48px;
  }
}
@media (min-width: 992px) {
  .ex-imageslider--large .ex-imageslider__slide {
    height: 726px;
  }
}
.ex-imageslider--large .ex-imageslider__slider::before,
.ex-imageslider--large .ex-imageslider__slider::after {
  background-image: none;
}
.ex-imageslider__slide {
  border-radius: 4px;
}
.ex-imageslider__image {
  background: #fff;
  border-radius: 4px;
  height: 100%;
  width: 100%;
}
.ex-imageslider__image[data-image-profile=imageslidermedium_with_caption] {
  width: 300px;
}
@media (min-width: 576px) and (max-width: 767.98px) {
  .ex-imageslider__image[data-image-profile=imageslidermedium_with_caption] {
    width: 350px;
  }
}
@media (min-width: 768px) and (max-width: 991.98px) {
  .ex-imageslider__image[data-image-profile=imageslidermedium_with_caption] {
    width: 500px;
  }
}
@media (min-width: 992px) and (max-width: 1199.98px) {
  .ex-imageslider__image[data-image-profile=imageslidermedium_with_caption] {
    width: 700px;
  }
}
@media (min-width: 1200px) {
  .ex-imageslider__image[data-image-profile=imageslidermedium_with_caption] {
    width: 800px;
  }
}
.ex-imageslider__caption {
  color: #495057;
}
.ex-imageslider__thumbnailslider {
  margin-top: 1rem;
}
.ex-imageslider__thumbnailrow {
  overflow: hidden;
  margin: 0;
}
.ex-imageslider__thumbnailwrapper {
  width: 80%;
}
.ex-imageslider__thumbnailslide {
  max-width: 160px;
  opacity: 0.8;
}
.ex-imageslider__thumbnailslide.swiper-slide-thumb-active {
  opacity: 1;
}
.ex-imageslider__thumbnailimage {
  width: 100%;
  border-radius: 4px;
}
.ex-image-container__wrapper {
  /* background-color: darken($dark-blue, 5%);
  img {
    opacity: .98;
  }
  */
  position: relative;
}
.ex-image-container__wrapper::after {
  content: " ";
  position: absolute;
  inset: 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.06) inset;
  pointer-events: none;
}
.ex-md-list-ul-checkmark {
  list-style-type: none;
  padding: 0;
}
.ex-md-list-li-checkmark {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  font-size: 1.25rem;
  color: var(--color-gray-800);
  font-weight: 300;
  align-items: center;
  line-height: 1.3;
  margin-top: var(--spacing-flow-m);
}
.ex-md-list-li-checkmark:first-of-type {
  margin-top: 0;
}
.ex-md-list-li-checkmark p {
  font-size: 1.25rem;
  font-weight: 300;
  color: var(--color-gray-800);
}
.list-item-icon-checkmark {
  color: var(--color-green);
  font-size: 2.3rem;
}
.list-item-icon-checkmark::before {
  speak: none;
  font-family: phoenix-contact-icons, serif !important;
  font-weight: 400;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  content: "\e92a";
  margin-right: var(--spacing-flow-m);
  vertical-align: bottom;
}
/**
 * Color css variable exports to be used in SCS owned css via `@import`
 */
:root {
  --color-green: #96be0d;
  --color-blue: #007C84;
  --color-red: #d8124f;
  --color-gray: #666a6e;
  --color-black: #000;
  --color-white: #fff;
  --color-dark-blue: #007982;
  --color-medium-blue: #aec8d2;
  --color-light-blue: #edf0f3;
  --color-gray-100: #f2f4f6;
  --color-gray-300: #e1e5e9;
  --color-gray-400: #D2D2D2;
  --color-gray-600: #a2a7a9;
  --color-gray-800: #3a3a3a;
  --color-error: #F51423;
  --color-warning: #FFA800;
  --color-success: #09ae3b;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  -ms-touch-action: none;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-vertical > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.ex-new-products {
  margin-bottom: 0.5rem;
}
.ex-new-products-slider__thumbnailrow {
  position: relative;
  display: flex;
  flex-direction: row;
  border: 2px #D2D2D2 solid;
  border-bottom: none;
  padding: 2rem 0 1.5rem;
}
@media (max-width: 991.98px) {
  .ex-new-products-slider__thumbnailrow {
    padding: 2rem 0;
  }
}
@media (max-width: 575.98px) {
  .ex-new-products-slider__thumbnailrow {
    padding: 1rem 0;
  }
}
.ex-new-product__thumbnailimage {
  height: 100%;
  width: 100%;
  border: 2px solid #D2D2D2;
}
.ex-new-product__image-container::before, .ex-new-products-slider__thumbnailslide::before {
  font-size: 13.33px;
  font-weight: 600;
  padding: 6px;
  position: absolute;
  background: #d8124f;
  color: white;
  z-index: 1;
}
@media (min-width: 1200px) {
  .ex-new-products--items-5 .ex-new-products-slider__thumbnailslide {
    max-width: 168px;
    max-height: 168px;
  }
}
.ex-new-products--items-2 .ex-new-products-slider__thumbnailslide, .ex-new-products--items-3 .ex-new-products-slider__thumbnailslide, .ex-new-products--items-4 .ex-new-products-slider__thumbnailslide {
  max-width: 168px;
  max-height: 168px;
}
.ex-new-products--items-2 .ex-new-products-slider__thumbnailslide:last-child, .ex-new-products--items-3 .ex-new-products-slider__thumbnailslide:last-child, .ex-new-products--items-4 .ex-new-products-slider__thumbnailslide:last-child {
  margin-right: 0 !important;
}
.ex-new-products--items-2 .ex-new-products-slider__thumbnailslider, .ex-new-products--items-3 .ex-new-products-slider__thumbnailslider, .ex-new-products--items-4 .ex-new-products-slider__thumbnailslider {
  margin-left: 0;
}
@media (max-width: 767.98px) {
  .ex-new-products--items-2 .ex-new-products-slider__thumbnailslider, .ex-new-products--items-3 .ex-new-products-slider__thumbnailslider, .ex-new-products--items-4 .ex-new-products-slider__thumbnailslider {
    margin-left: auto;
  }
}
@media (max-width: 575.98px) {
  .ex-new-products--items-2 .ex-new-products-slider__thumbnailslide {
    max-width: 120px;
    max-height: 120px;
  }
}
.ex-new-products--items-2 .ex-new-products-slider__thumbnailslider {
  width: 100%;
  margin: 0;
}
.ex-new-products-slider__thumbnailslide {
  cursor: pointer;
  border: 5px solid transparent;
}
.ex-new-products-slider__thumbnailslide img {
  opacity: 0.8;
}
.ex-new-products-slider__thumbnailslide:not(.swiper-slide-thumb-active) .ex-new-product__thumbnailimage:hover {
  box-shadow: 0 2px 4px 0 #a2a7a9;
}
.ex-new-products-slider__thumbnailslide.swiper-slide-thumb-active {
  outline: 5px solid #007982;
  outline-offset: -10px;
}
.ex-new-products-slider__thumbnailslide.swiper-slide-thumb-active img {
  opacity: 1;
}
.ex-new-products-slider__thumbnailslide.swiper-slide-thumb-active .ex-new-product__thumbnailimage {
  box-shadow: 0 2px 4px 0 #a2a7a9;
}
.ex-new-products-slider__button-next, .ex-new-products-slider__button-prev {
  color: #3a3a3a;
  cursor: pointer;
  margin: auto;
  padding: 0 1.5rem;
}
@media (max-width: 575.98px) {
  .ex-new-products-slider__button-next, .ex-new-products-slider__button-prev {
    display: none;
  }
}
.ex-new-products-slider__button-next:hover, .ex-new-products-slider__button-prev:hover {
  color: #007982;
}
.ex-new-products-slider__button-next:hover::before, .ex-new-products-slider__button-prev:hover::before {
  background: #FAFAFA;
}
.ex-new-products-slider__button-next::before, .ex-new-products-slider__button-prev::before {
  speak: none;
  font-size: 1.5rem;
  font-family: phoenix-contact-icons, serif !important;
  font-weight: 400;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  display: block;
  text-align: center;
  border: 1px solid #D2D2D2;
  width: 60px;
  line-height: 60px;
}
.ex-new-products-slider__button-next.swiper-button-disabled, .ex-new-products-slider__button-prev.swiper-button-disabled {
  opacity: 0;
  cursor: initial;
}
.ex-new-products-slider__button-next:not(.swiper-button-disabled), .ex-new-products-slider__button-prev:not(.swiper-button-disabled) {
  opacity: 1;
  cursor: pointer;
}
.ex-new-products-slider__button-prev::before {
  content: "\e935";
}
.ex-new-products-slider__button-next::before {
  content: "\e936";
}
.ex-new-products-slider-thumbs__no-nav-buttons {
  padding: 2rem calc(3rem - 5px);
}
@media (max-width: 575.98px) {
  .ex-new-products-slider-thumbs__no-nav-buttons {
    padding: 1rem 0;
  }
}
.swiper-scrollbar {
  background: #f2f4f6;
  position: static !important;
  margin-left: 1%;
  height: 7px !important;
}
@media (max-width: 575.98px) {
  .swiper-scrollbar {
    height: 5px !important;
    background: none;
  }
}
.swiper-scrollbar-drag {
  background: #a2a7a9;
}
.ex-new-products-scrollbar__wrapper {
  border-left: 2px #D2D2D2 solid;
  border-right: 2px #D2D2D2 solid;
  padding: 0 104px 14px;
}
@media (max-width: 575.98px) {
  .ex-new-products-scrollbar__wrapper {
    padding: 0 14px 7px;
  }
}
.ex-new-product__card.ex-new-product__card-standalone {
  border: 2px solid #E1E5E9;
  padding: 2rem 4rem;
}
.ex-new-product__card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px #D2D2D2 solid;
  border-top: none;
  padding: 1.9rem 4rem;
}
.ex-new-product__featurerow {
  flex-grow: 1;
  margin-bottom: 3rem;
}
@media (max-width: 575.98px) {
  .ex-new-product__featurerow {
    margin-bottom: 2rem;
  }
}
.ex-new-product__featurerow > div > * {
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.ex-new-product__featurerow > div > h4 {
  margin-bottom: 1rem;
}
@media (max-width: 575.98px) {
  .ex-new-product__featurerow > div > h4 {
    font-weight: 600;
    font-size: 22px;
  }
}
.ex-new-product__featurerow > div ul {
  margin-bottom: 0;
  padding-left: 1.5rem;
}
.ex-new-product__featurerow > div ul li {
  line-height: 25px;
  margin-bottom: 1rem;
}
@media (max-width: 575.98px) {
  .ex-new-product__featurerow > div ul li {
    line-height: 24px;
    margin-bottom: 0.5rem;
    font-size: 14px;
  }
}
.ex-new-product__featurerow > div ul li:last-child {
  margin-bottom: 0;
}
@media (max-width: 575.98px) {
  .ex-new-product__featurerow .ex-new-product__featurerow-text3 {
    margin-bottom: 0.5rem;
  }
}
@media (max-width: 575.98px) {
  .ex-new-product__featurerow .ex-new-product__featurerow-text2, .ex-new-product__featurerow .ex-new-product__featurerow-text3 {
    padding-bottom: 1rem;
  }
}
.ex-new-products__text2 + ul {
  list-style-type: none;
}
.ex-new-products__text2 + ul > li::before {
  color: #96be0d;
  font-size: 1rem;
  content: "\e93c";
  display: inline-block;
  width: 1.5rem;
  margin-left: -1.5rem;
  speak: none;
  font-family: phoenix-contact-icons, serif !important;
  font-weight: 400;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  vertical-align: bottom;
}
.row.ex-new-product__linkrow > div {
  width: auto;
  margin-right: 1rem;
}
.ex-new-product__linkrow {
  margin: 0;
  align-items: center;
}
@media (max-width: 575.98px) {
  .ex-new-product__linkrow {
    padding-bottom: 1rem;
    display: flex;
    justify-content: center;
  }
}
.ex-new-product__availability-tag {
  background: rgba(32, 32, 32, 0.62);
  padding: 0.25rem 1rem;
  width: fit-content;
  color: white;
  margin-bottom: 0.5rem;
  font-size: 13.33px;
  font-weight: 600;
  z-index: 1;
  font-family: "IBM Plex Sans", serif;
}
.ex-new-products__button {
  margin-right: 4rem;
  max-width: 260px;
}
.ex-new-product__link {
  color: #0098a1;
  font-weight: 500;
  font-size: 1rem;
  font-style: normal;
  text-decoration: none;
  line-height: 1.75rem;
  display: inline-flex;
  align-items: center;
  max-width: 220px;
  margin-right: 4rem;
  margin-left: 0;
}
.ex-new-product__link:hover {
  text-decoration: underline;
}
.ex-grid-teaser {
  padding: 1.5rem;
  margin-bottom: 2rem;
  border: 1px solid #D2D2D2;
  display: flex;
  /* Reset style of <a> */
  color: black;
  text-decoration: none;
  font-style: normal;
}
@media (max-width: 991.98px) {
  .ex-grid-teaser {
    padding: 1rem;
  }
}
.ex-grid-teaser__without-image .ex-grid-teaser-image {
  width: 0 !important;
}
.ex-grid-teaser:hover {
  cursor: pointer;
  color: black;
  text-decoration: none;
  box-shadow: 0 6px 8px 1px rgba(0, 0, 0, 0.3);
}
.ex-grid-teaser:hover .ex-grid-teaser-text .ex-grid-teaser-text__headline {
  text-decoration: underline;
}
.ex-grid-teaser-image {
  width: 200px;
  height: 200px;
}
@media (max-width: 991.98px) {
  .ex-grid-teaser-image {
    width: 160px;
    height: 160px;
  }
}
@media (max-width: 575.98px) {
  .ex-grid-teaser-image {
    width: 130px;
    height: 130px;
  }
}
@media (max-width: 575.98px) {
  .ex-grid-teaser-image {
    display: none;
  }
}
.ex-grid-teaser-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-weight: normal;
  margin-left: 1rem;
}
.ex-grid-teaser-text__headline {
  overflow-wrap: anywhere;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  hyphens: auto;
}
@media (max-width: 991.98px) {
  .ex-grid-teaser-text__headline {
    font-size: 18px;
  }
}
.ex-grid-teaser-text__intro-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.ex-grid-teaser-text__intro-text__learn-more {
  color: #007C84;
}
.ex-do-filter-area {
  justify-content: left;
  align-items: flex-start;
  display: flex;
  flex-flow: column;
  border-bottom: 1px solid var(--col-medium-gray);
  padding: 0.5rem 0;
}
@media (max-width: 575.98px) {
  .ex-do-filter-area {
    display: block;
  }
}
@media (min-width: 768px) {
  .ex-do-filter-area {
    max-width: 1290px;
  }
}
.sorting-form-check-icon {
  background-size: 40% !important;
  background-position-y: center !important;
  background-position-x: center !important;
  width: 50px !important;
}
.form-check label.form-check-label > input[type=radio]:checked + span {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M18.2934 6.12298L9.08874 15.3277L5.70659 11.9455C5.54262 11.7816 5.27674 11.7816 5.11273 11.9455L4.12298 12.9353C3.95901 13.0993 3.95901 13.3651 4.12298 13.5292L8.79179 18.198C8.95576 18.3619 9.22164 18.3619 9.38565 18.198L19.877 7.70659C20.041 7.54261 20.041 7.27674 19.877 7.11273L18.8873 6.12298C18.7233 5.95901 18.4574 5.95901 18.2934 6.12298Z' fill='%23007C84'/%3E%3C/svg%3E");
}
.form-check label.form-check-label > input[type=radio] + span {
  background: none;
}
.ex-do-filter-area__list {
  display: flex;
  flex-flow: row wrap;
  padding: 0;
  margin: 0;
  width: 100%;
  margin-left: -8px;
}
@media (max-width: 575.98px) {
  .ex-do-filter-area__list {
    display: block;
  }
}
.ex-do-filter-area__list .ex-do-filter-area-item {
  list-style: none;
  padding: 0.5rem;
}
@media (max-width: 575.98px) {
  .ex-do-filter-area__list .ex-do-filter-area-item {
    padding: 0.5rem 0;
  }
}
.ex-do-filter-area__list .ex-do-filter-area-title {
  display: inline-flex;
  align-items: center;
  padding-right: 0.8rem;
}
.ex-do-filter-area__list .ex-do-filter-area-title span {
  padding-right: 0.5rem;
}
.ex-do-filter-select {
  position: relative;
  background-color: var(--col-light-gray);
  border: 1px solid var(--col-light-gray);
  border-bottom: 1px solid var(--col-medium-gray);
}
.ex-do-filter-select-head {
  display: inline-flex;
  align-items: center;
  padding: 0 0.8rem;
  cursor: pointer;
  height: 56px;
}
.ex-do-filter-select-head span.dropdown-arrow {
  margin-left: 1.25rem;
  color: #007C84;
}
.ex-do-filter-select-head > span {
  line-height: 37px;
}
@media (max-width: 575.98px) {
  .ex-do-filter-select-head {
    width: 100%;
    justify-content: space-between;
  }
}
.ex-do-filter-select-head-title {
  font-size: 0.8331rem;
  font-style: normal;
}
.ex-do-filter-select-head-filter-selected {
  color: #202020;
  font-size: 1rem;
  display: block;
}
.ex-do-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  z-index: 100;
  box-shadow: 0 4px 8px rgba(32, 32, 32, 0.3);
  background: #fff;
  display: none;
}
.ex-do-dropdown.show {
  display: block;
}
.ex-do-menu-sort {
  width: 200% !important;
  right: 0;
}
@media (max-width: 575.98px) {
  .ex-do-menu-sort {
    width: 100%;
  }
}
.ex-do-menu-sort .ex-do-filter-action-buttons {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  background-color: transparent;
  padding: 0.5rem 0;
}
.ex-do-menu-sort .ex-do-multiselect-menu-list {
  margin: 0.4rem 0;
  max-height: 23rem;
  overflow-y: auto;
  text-align: left;
  list-style: none;
  padding: 0.5rem 0.5rem 0;
  margin-bottom: 1rem;
}
.ex-do-menu-sort .ex-do-multiselect-menu-item:focus:focus-visible {
  outline: 5px auto Highlight;
  outline: 5px auto -webkit-focus-ring-color;
}
.ex-do-menu-sort button.ex-do-filter-select-dropdown-button-apply, .ex-do-menu-sort button.ex-do-filter-select-dropdown-button-clear {
  display: flex;
  height: 2.5rem;
}
.ex-do-menu-sort button.ex-do-filter-select-dropdown-button-apply div, .ex-do-menu-sort button.ex-do-filter-select-dropdown-button-clear div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.ex-do-menu-sort button.ex-do-filter-select-dropdown-button-apply:hover, .ex-do-menu-sort button.ex-do-filter-select-dropdown-button-clear:hover {
  text-decoration: none;
}
.ex-do-menu-sort button.ex-do-filter-select-dropdown-button-clear {
  border: none;
  background: none;
  color: #007C84;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3125rem;
}
.ex-do-menu-sort .ex-do-single-select-menu-list {
  margin: 0.4rem 0;
  padding: 0.5rem 0.5rem 0;
  max-height: 23rem;
  overflow-y: auto;
  text-align: left;
  list-style: none;
  margin-bottom: auto;
}
.ex-do-menu-sort .ex-do-single-select-menu-item:focus:focus-visible {
  outline: 5px auto Highlight;
}
.ex-do-menu {
  min-width: 320px;
  max-width: 320px;
}
@media (max-width: 575.98px) {
  .ex-do-menu {
    width: 100%;
  }
}
.ex-do-menu .ex-do-filter-action-buttons {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-between;
  background-color: transparent;
  padding: 0.5rem 0;
}
.ex-do-menu .ex-do-filter-action-buttons-right {
  justify-content: right;
}
.ex-do-menu .ex-do-multiselect-menu-list {
  margin: 0.4rem 0;
  max-height: 23rem;
  overflow-y: auto;
  text-align: left;
  list-style: none;
  padding: 1rem;
  margin-bottom: auto;
}
.ex-do-menu .ex-do-multiselect-menu-item:focus:focus-visible {
  outline: 5px auto Highlight;
}
.ex-do-menu button.ex-do-filter-select-dropdown-button-apply {
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-right: 1.4rem;
}
.ex-do-menu button.ex-do-filter-select-dropdown-button-clear {
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  margin-left: 1.1rem;
  border: none;
  background: none;
  color: #007C84;
  font-size: 1rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.3125rem;
}
.ex-do-menu button.ex-do-filter-select-dropdown-button-apply, .ex-do-menu button.ex-do-filter-select-dropdown-button-clear {
  display: flex;
  height: 2.5rem;
}
.ex-do-menu button.ex-do-filter-select-dropdown-button-apply div, .ex-do-menu button.ex-do-filter-select-dropdown-button-clear div {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.ex-do-menu button.ex-do-filter-select-dropdown-button-apply:hover, .ex-do-menu button.ex-do-filter-select-dropdown-button-clear:hover {
  text-decoration: none;
}
.ex-do-menu .ex-do-single-select-menu-list {
  margin: 0;
  padding: 1rem 1.5rem;
  max-height: 23rem;
  overflow-y: auto;
  text-align: left;
  list-style: none;
  margin-bottom: auto;
}
.ex-do-menu .ex-do-single-select-form {
  margin-top: 1rem;
}
.ex-do-menu .ex-do-filter-highlight {
  padding: 0 1rem;
  padding-left: 0;
}
.ex-do-menu .ex-do-single-select-menu-item:focus:focus-visible {
  outline: 5px auto Highlight;
}
.ex-do-resizable-dropdown {
  max-width: 465px;
}
.ex-do-menu-highlight-filter {
  width: 170% !important;
}
.ex-do-selectable-option.form-check {
  line-height: 2rem;
  display: flex;
  white-space: nowrap;
}
.ex-do-selectable-option.form-check .form-check-input[type=checkbox] + .form-check-label, .ex-do-selectable-option.form-check .form-check-input[type=checkbox]:checked + .form-check-label {
  width: 100% !important;
}
.ex-do-selectable-option.form-check .form-check-input[type=checkbox] + .form-check-label .form-check-icon, .ex-do-selectable-option.form-check .form-check-input[type=checkbox]:checked + .form-check-label .form-check-icon {
  background-size: 24px !important;
  height: 24px !important;
  width: 24px !important;
  flex: none;
}
.ex-do-selectable-option-highlight {
  padding-left: 0;
}
.ex-do-multiselect-checkbox-label {
  overflow: hidden;
  text-overflow: ellipsis;
}
.ex-do-detail-overview-applied-filter-row {
  padding: 0.5rem;
}
.ex-do-filter-area__applied-filters {
  display: flex;
  padding: 0.5rem 0;
}
.ex-do-filter-area__applied-filters-list {
  display: flex;
  flex-flow: row wrap;
  padding: 0;
  margin: 0;
  row-gap: 4px;
}
.ex-do-filter-area__applied-filters-list .ex-do-filter-area__applied-filters-item {
  list-style: none;
  padding: 0.25rem 0.5rem;
}
.ex-do-filter-area__applied-filters-list .ex-do-filter-area__applied-filters-title {
  font-weight: bold;
  padding-right: 0.8rem;
}
.ex-do-filter-area__applied-filters-list .ex-do-applied-filter-button {
  border: none;
  background: rgba(0, 131, 139, 0.15);
  border-radius: 12px;
  padding: 0.0994rem 0.5rem 0.1rem 0.65rem;
}
.ex-do-filter-area__applied-filters-list .ex-do-applied-filter-button div {
  display: inline-flex;
  align-items: center;
  font-size: 1rem;
}
.ex-do-filter-area__applied-filters-list .ex-do-applied-filter-button div span:nth-child(2) {
  padding-right: 0.74rem;
}
.ex-do-filter-area__applied-filters-list .ex-do-applied-filter-button div span {
  line-height: 27px;
  text-align: left;
}
.ex-do-filter-area__applied-filters-list .ex-do-applied-filter-button:hover {
  text-decoration: none;
}
.ex-do-filter-area__applied-filters-list .ex-do-applied-filter-button:focus:focus-visible {
  outline: 5px auto Highlight;
  outline: 5px auto -webkit-focus-ring-color;
}
.ex-do-filter-area__applied-filters-list .ex-do-applied-filter-button.ex-do-filter-area__applied-filters-reset {
  padding: 0 0.8rem 0 0.8rem;
  border: none;
  background: none;
  color: #007C84;
}
.ex-details-overview {
  font-family: "IBM Plex Sans", sans-serif !important;
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-content-row {
  margin: 24px 80px 0;
}
@media (max-width: 575.98px) {
  .ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-content-row {
    margin: 5px;
  }
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-rows: 4em 8em;
  grid-template-columns: 12em auto;
}
@media (max-width: 575.98px) {
  .ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item {
    grid-template-rows: 5em auto;
    grid-template-columns: auto;
  }
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__without-image {
  grid-template-columns: 1em auto;
}
@media (max-width: 575.98px) {
  .ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__without-image {
    grid-template-rows: 5em auto;
    grid-template-columns: 0 auto;
  }
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__without-image .ex-do-item__headrow__image_container {
  display: none;
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__preheadline {
  display: none;
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__headline__location {
  font-weight: 100;
  padding-left: 5px;
}
@media (max-width: 575.98px) {
  .ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__headline__location {
    padding-left: 0;
  }
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__headline__location::before {
  content: "|";
}
@media (max-width: 575.98px) {
  .ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__headline__location::before {
    display: none;
  }
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__headrow {
  grid-row: 1;
  grid-column: 1/span 2;
  width: 100%;
  background-color: #f2f4f6;
}
@media (max-width: 575.98px) {
  .ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__headrow {
    padding: 0 0.5em;
  }
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__headrow__image_container {
  background: white;
  width: 10em;
  height: 10em;
  grid-column: 1;
  grid-row: 1/span 2;
  margin-left: 1em;
  margin-top: 1em;
  box-shadow: 0 4px 8px rgba(32, 32, 32, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__headrow__image_container picture {
  width: 100%;
  height: 100%;
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__headrow__image_container picture img {
  width: 100%;
  height: 100%;
}
@media (max-width: 575.98px) {
  .ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__headrow__image_container {
    display: none;
  }
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__headline {
  grid-column-start: 2;
  grid-row-start: 1;
  width: 100%;
  display: flex;
  align-items: center;
}
@media (max-width: 575.98px) {
  .ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__headline {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5em;
  }
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__headline > h4 {
  max-width: 60%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 0 !important;
}
@media (max-width: 575.98px) {
  .ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__headline > h4 {
    max-width: 100%;
    line-clamp: 1;
  }
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__text-content-date-area {
  display: flex;
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__text-content__date-to {
  padding-left: 0.25em;
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__text-content__date-to::before {
  content: " - ";
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__bottomrow {
  grid-column: 1/span 2;
  grid-row: 2;
  border-style: none solid solid;
  border-color: #D2D2D2;
  border-width: 1px;
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__text-content {
  grid-column: 2;
  grid-row: 2;
  color: black;
  text-decoration: none;
  font-style: normal;
  font-weight: lighter;
  display: flex;
  flex-direction: column;
  padding: 17px 0;
}
@media (max-width: 575.98px) {
  .ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__text-content {
    padding: 0.5em;
  }
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item__text-content__text {
  padding-top: 1em;
  padding-right: 1em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item:hover {
  cursor: pointer;
  color: black;
  text-decoration: none;
  box-shadow: 0 6px 8px 1px rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.ex-details-overview:not(.ex-overview-project, .ex-overview-new-product, .ex-overview-blog) .ex-do-item:hover .ex-do-item__headline h4 {
  text-decoration: underline;
}
.ex-details-overview.ex-overview-project .ex-do-content-row {
  margin-top: 24px;
  display: grid;
  gap: 1rem;
  justify-items: center;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ex-details-overview.ex-overview-project .ex-do-content-row {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .ex-details-overview.ex-overview-project .ex-do-content-row {
    grid-template-columns: repeat(3, minmax(1px, 1fr));
    max-width: 1290px;
    gap: 32px;
  }
}
.ex-details-overview.ex-overview-project .ex-do-item {
  position: relative;
  border: 1px solid #D2D2D2;
  width: 100%;
  min-height: 500px;
  transition: box-shadow 0.5s;
}
.ex-details-overview.ex-overview-project .ex-do-item__headrow {
  margin-bottom: 1rem;
}
.ex-details-overview.ex-overview-project .ex-do-item__headrow ~ * {
  margin: 0 1.5rem;
}
.ex-details-overview.ex-overview-project .ex-do-item__headrow__image_container img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.ex-details-overview.ex-overview-project .ex-do-item__preheadline {
  color: #666a6e;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.ex-details-overview.ex-overview-project .ex-do-item__headline {
  margin-top: 0.25rem;
}
.ex-details-overview.ex-overview-project .ex-do-item__headline > h4 {
  line-height: 150%;
  font-size: 20.8px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.ex-details-overview.ex-overview-project .ex-do-item__text-content-date-area {
  display: none;
}
.ex-details-overview.ex-overview-project .ex-do-item__bottomrow {
  display: none;
}
.ex-details-overview.ex-overview-project .ex-do-item__text-content {
  color: #3a3a3a;
  font-weight: 400;
}
.ex-details-overview.ex-overview-project .ex-do-item__text-content__text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  color: #666a6e;
}
@media (max-width: 991.98px) {
  .ex-details-overview.ex-overview-project .ex-do-item__text-content__text {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
@media (max-width: 767.98px) {
  .ex-details-overview.ex-overview-project .ex-do-item__text-content__text {
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
}
.ex-details-overview.ex-overview-project .ex-do-item:hover {
  cursor: pointer;
  color: black;
  text-decoration: none;
  box-shadow: 0 8px 16px 0 rgba(32, 32, 32, 0.15);
  z-index: 1;
}
.ex-details-overview.ex-overview-project .ex-do-item:hover .ex-do-item__headline h4 {
  text-decoration: underline;
}
.ex-details-overview.ex-overview-project .ex-do-item__icon {
  font-size: 19px;
  position: absolute;
  bottom: 20px;
  right: 42px;
  color: #007C84;
}
.ex-details-overview.ex-overview-blog .ex-highlight {
  display: flex;
  padding: 0.25rem 1rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  position: absolute;
  top: 0;
  background: #0098A1;
  backdrop-filter: blur(22.069px);
  color: #fff;
  font-size: 0.8331rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.ex-details-overview.ex-overview-blog .ex-highlight-dark {
  display: inline-flex;
  padding: 4px 16px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: 0;
  background: rgba(32, 32, 32, 0.62);
  backdrop-filter: blur(22.069px);
  color: #fff;
  font-size: 0.8331rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.ex-details-overview.ex-overview-blog .ex-available-in {
  display: inline-flex;
  padding: 0.25rem 1rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(32, 32, 32, 0.62);
  backdrop-filter: blur(22.069px);
  color: #FFF;
  font-size: 0.8331rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.ex-details-overview.ex-overview-blog .ex-do-content-row {
  margin-top: 24px;
  display: grid;
  gap: 2.5rem 2rem;
  justify-items: center;
  grid-template-columns: repeat(1, minmax(1px, 1fr));
}
@media (min-width: 576px) {
  .ex-details-overview.ex-overview-blog .ex-do-content-row {
    grid-template-columns: repeat(2, minmax(1px, 1fr));
  }
}
@media (min-width: 768px) {
  .ex-details-overview.ex-overview-blog .ex-do-content-row {
    grid-template-columns: repeat(3, minmax(1px, 1fr));
    max-width: 1290px;
    gap: 32px;
  }
}
.ex-details-overview.ex-overview-blog .ex-do-item {
  position: relative;
  width: 100%;
  border: 1px solid #D2D2D2;
  display: flex;
  flex-direction: column;
  max-width: 409px;
  transition: box-shadow 0.5s;
}
.ex-details-overview.ex-overview-blog .ex-do-item__headrow {
  margin-bottom: 1rem;
}
.ex-details-overview.ex-overview-blog .ex-do-item__headrow ~ * {
  margin: 0 1.5rem;
}
.ex-details-overview.ex-overview-blog .ex-do-item__headrow__image_container {
  border-bottom: 1px solid #ccd0d2;
}
.ex-details-overview.ex-overview-blog .ex-do-item__headrow__image_container img {
  width: 100%;
  aspect-ratio: 16/9;
}
.ex-details-overview.ex-overview-blog .ex-do-item__preheadline {
  color: #666a6e;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.ex-details-overview.ex-overview-blog .ex-do-item__headline > h4 {
  line-height: 150%;
  font-size: 20.8px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.ex-details-overview.ex-overview-blog .ex-do-item__bottomrow {
  display: none;
}
.ex-details-overview.ex-overview-blog .ex-do-item__text-content {
  color: #666a6e;
  font-weight: 400;
}
.ex-details-overview.ex-overview-blog .ex-do-item__text-content__text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  color: #666a6e;
}
@media (max-width: 991.98px) {
  .ex-details-overview.ex-overview-blog .ex-do-item__text-content__text {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
@media (max-width: 767.98px) {
  .ex-details-overview.ex-overview-blog .ex-do-item__text-content__text {
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
}
.ex-details-overview.ex-overview-blog .ex-do-item .ex-do-item__link {
  margin: 0 1.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3125rem;
}
.ex-details-overview.ex-overview-blog .ex-do-item .ex-do-item__link-content {
  display: flex;
  align-items: baseline; /* Aligns items vertically in the center */
}
.ex-details-overview.ex-overview-blog .ex-do-item:hover {
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 16px 0 rgba(32, 32, 32, 0.15);
  z-index: 1;
}
.ex-details-overview.ex-overview-blog .ex-do-item:hover .ex-do-item__link {
  text-decoration: underline;
}
.ex-details-overview.ex-overview-blog .ex-do-item__icon {
  font-size: 19px;
  position: absolute;
  bottom: 20px;
  right: 42px;
  color: #007C84;
}
.ex-details-overview.ex-overview-blog .ex-do-item__link {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 1.5rem;
}
.ex-details-overview.ex-overview-blog .ex-do-item__link span::before {
  display: inline-block;
  margin-right: 10px;
}
.ex-details-overview.ex-overview-new-product .ex-highlight {
  display: flex;
  padding: 0.25rem 1rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  position: absolute;
  top: 0;
  background: #0098A1;
  backdrop-filter: blur(22.069px);
  color: #fff;
  font-size: 0.8331rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.ex-details-overview.ex-overview-new-product .ex-available-in {
  display: inline-flex;
  padding: 0.25rem 1rem;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  position: absolute;
  top: 0;
  right: 0;
  background: rgba(32, 32, 32, 0.62);
  backdrop-filter: blur(22.069px);
  color: #FFF;
  font-size: 0.8331rem;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}
.ex-details-overview.ex-overview-new-product .ex-do-content-row {
  margin-top: 24px;
  display: grid;
  gap: 2.5rem 2rem;
  justify-items: center;
  grid-template-columns: repeat(1, minmax(1px, 1fr));
}
@media (min-width: 576px) {
  .ex-details-overview.ex-overview-new-product .ex-do-content-row {
    grid-template-columns: repeat(2, minmax(1px, 1fr));
  }
}
@media (min-width: 768px) {
  .ex-details-overview.ex-overview-new-product .ex-do-content-row {
    grid-template-columns: repeat(3, minmax(1px, 1fr));
    max-width: 1290px;
    gap: 32px;
  }
}
.ex-details-overview.ex-overview-new-product .ex-do-item {
  position: relative;
  width: 100%;
  border: 1px solid #D2D2D2;
  display: flex;
  flex-direction: column;
  max-width: 409px;
  transition: box-shadow 0.5s;
}
.ex-details-overview.ex-overview-new-product .ex-do-item__headrow {
  margin-bottom: 1rem;
}
.ex-details-overview.ex-overview-new-product .ex-do-item__headrow ~ * {
  margin: 0 1.5rem;
}
.ex-details-overview.ex-overview-new-product .ex-do-item__headrow__image_container {
  border-bottom: 1px solid #ccd0d2;
}
.ex-details-overview.ex-overview-new-product .ex-do-item__headrow__image_container img {
  width: 100%;
  aspect-ratio: 16/9;
}
.ex-details-overview.ex-overview-new-product .ex-do-item__preheadline {
  color: #666a6e;
  font-weight: 400;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
}
.ex-details-overview.ex-overview-new-product .ex-do-item__headline > h4 {
  line-height: 150%;
  font-size: 20.8px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
}
.ex-details-overview.ex-overview-new-product .ex-do-item__text-content-date-area {
  display: none;
}
.ex-details-overview.ex-overview-new-product .ex-do-item__bottomrow {
  display: none;
}
.ex-details-overview.ex-overview-new-product .ex-do-item__text-content {
  color: #3a3a3a;
  font-weight: 400;
}
.ex-details-overview.ex-overview-new-product .ex-do-item__text-content__text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  color: #666a6e;
}
@media (max-width: 991.98px) {
  .ex-details-overview.ex-overview-new-product .ex-do-item__text-content__text {
    -webkit-line-clamp: 2;
    line-clamp: 2;
  }
}
@media (max-width: 767.98px) {
  .ex-details-overview.ex-overview-new-product .ex-do-item__text-content__text {
    -webkit-line-clamp: 4;
    line-clamp: 4;
  }
}
.ex-details-overview.ex-overview-new-product .ex-do-item .ex-do-item__link {
  margin: 0 1.5rem;
  padding-top: 1.25rem;
  padding-bottom: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.3125rem;
}
.ex-details-overview.ex-overview-new-product .ex-do-item .ex-do-item__link-content {
  display: flex;
  align-items: center; /* Aligns items vertically in the center */
}
.ex-details-overview.ex-overview-new-product .ex-do-item:hover {
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 8px 16px 0 rgba(32, 32, 32, 0.15);
  z-index: 1;
}
.ex-details-overview.ex-overview-new-product .ex-do-item:hover .ex-do-item__link {
  text-decoration: underline;
}
.ex-details-overview.ex-overview-new-product .ex-do-item__icon {
  font-size: 19px;
  position: absolute;
  bottom: 20px;
  right: 42px;
  color: #007C84;
}
.ex-details-overview.ex-overview-new-product .ex-do-item__link {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin: 1.5rem;
}
.ex-details-overview.ex-overview-new-product .ex-do-item__link span::before {
  display: inline-block;
  margin-right: 10px;
}
.ex-do-no-results-container {
  margin-top: 3.19rem;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.ex-do-no-results-title {
  font-size: 2rem;
  font-weight: 600;
}
.ex-do-no-results-subtitle {
  margin-top: 0.88rem;
}
.ex-do-teaser-link-arrow {
  width: 15px;
  display: inline-block;
  margin-right: 0.5rem;
  margin-bottom: 2px;
  font-weight: bold;
}
.ex-do-overview-teaser-image-container {
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ex-do-applied-filter-button-title {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
}
.ex-do-applied-filter-button-text {
  margin-left: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5rem;
}
.ex-do-multiselect-menu-list-border-bottom {
  height: 1px;
  border-bottom: 1px solid #A2A7A9;
  margin-left: 1.5rem;
  margin-right: 1.5rem;
  margin-top: 0.2rem;
}
.ex-do__clear-all-button-text {
  margin-left: 0.75rem;
}
.ex-do-dropdown-no-filter-options {
  margin-bottom: 0.5rem;
  margin-left: 1rem;
  margin-right: 1rem;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.ex-sidebar {
  border: #D2D2D2 solid 1px;
  padding: 24px 16px 4px;
  margin-bottom: 20px;
}
.ex-sidebar-item {
  margin: 10px 0 20px;
}
.ex-sidebar-item > .btn,
.ex-sidebar-item > button {
  width: 100%;
}
.ex-event-teaser {
  background-color: #f2f4f6;
  margin-bottom: 0.25em;
  padding: 1rem 1.5rem 1rem 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 575.98px) {
  .ex-event-teaser {
    padding: 0.5rem 1rem 0.5rem 0;
  }
}
.ex-event-teaser a {
  flex-grow: 1;
  color: #3a3a3a;
  display: grid;
  grid-template-columns: 125px auto;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 575.98px) {
  .ex-event-teaser a {
    width: 90%;
    grid-template-columns: 4em auto;
  }
}
.ex-event-teaser:hover {
  color: black;
  box-shadow: 0 4px 8px rgba(32, 32, 32, 0.3);
}
.ex-event-date {
  width: 100%;
  border-right: 1px solid #a2a7a9;
  grid-column: 1;
  align-self: center;
  padding: 0.5rem;
  row-gap: 0.25rem;
  display: grid;
  grid-template-columns: 50% 50%;
  grid-template-rows: 26px 21px;
}
@media (max-width: 767.98px) {
  .ex-event-date {
    padding-right: 0.5em;
  }
}
.ex-event-date .ex-event-month {
  margin-bottom: 0.25rem;
  text-decoration: none;
  font-style: normal;
  font-size: 1.5rem;
}
@media (max-width: 767.98px) {
  .ex-event-date .ex-event-month {
    font-size: 1.2rem;
  }
}
.ex-event-date .ex-event-day {
  font-weight: 300;
}
.ex-event-date__from-only .ex-event-month {
  grid-row: 1;
  grid-column: 1/span 2;
  justify-self: center;
}
.ex-event-date__from-only .ex-event-day {
  grid-row: 2;
  grid-column: 1/span 2;
  justify-self: center;
}
@media (max-width: 767.98px) {
  .ex-event-date__from-and-to-same-month {
    display: flex;
    flex-direction: column;
  }
}
.ex-event-date__from-and-to-same-month .ex-event-month {
  grid-row: 1;
  grid-column: 1/span 2;
  text-align: center;
}
@media (max-width: 767.98px) {
  .ex-event-date__from-and-to-same-month .ex-event-day {
    margin-top: 0;
  }
}
.ex-event-date__from-and-to-same-month .ex-event-day__from {
  grid-row: 2;
  grid-column: 1;
  text-align: right;
  margin-right: 8px;
}
@media (max-width: 767.98px) {
  .ex-event-date__from-and-to-same-month .ex-event-day__from {
    text-align: center;
    margin-right: 0;
  }
}
.ex-event-date__from-and-to-same-month .ex-event-day__to {
  grid-row: 2;
  grid-column: 2;
  text-align: left;
  margin-left: 8px;
}
@media (max-width: 767.98px) {
  .ex-event-date__from-and-to-same-month .ex-event-day__to {
    display: none;
  }
}
.ex-event-date__from-and-to-same-month::after {
  content: "-";
  display: flex;
  justify-content: center;
  grid-row: 2;
  grid-column: 1/span 2;
  font-weight: 300;
}
@media (max-width: 767.98px) {
  .ex-event-date__from-and-to-same-month::after {
    display: none;
  }
}
@media (max-width: 767.98px) {
  .ex-event-date__from-and-to-different-month {
    display: flex;
    flex-direction: column;
  }
}
.ex-event-date__from-and-to-different-month .ex-event-month__from {
  grid-row: 1;
  grid-column: 1;
  text-align: center;
}
.ex-event-date__from-and-to-different-month .ex-event-month__to {
  grid-row: 1;
  grid-column: 2;
  text-align: center;
}
@media (max-width: 767.98px) {
  .ex-event-date__from-and-to-different-month .ex-event-month__to {
    display: none;
  }
}
.ex-event-date__from-and-to-different-month .ex-event-day__from {
  grid-row: 2;
  grid-column: 1;
  text-align: center;
}
@media (max-width: 767.98px) {
  .ex-event-date__from-and-to-different-month .ex-event-day__from {
    grid-column: 1/span 2;
  }
}
.ex-event-date__from-and-to-different-month .ex-event-day__to {
  grid-row: 2;
  grid-column: 2;
  text-align: center;
  margin-left: 2px;
}
@media (max-width: 767.98px) {
  .ex-event-date__from-and-to-different-month .ex-event-day__to {
    display: none;
  }
}
.ex-event-date__from-and-to-different-month::after {
  content: "-";
  display: flex;
  justify-content: center;
  align-items: center;
  grid-row: 1;
  grid-column: 1/span 2;
  padding-top: 3px;
}
@media (max-width: 767.98px) {
  .ex-event-date__from-and-to-different-month::after {
    display: none;
  }
}
.ex-event-content {
  grid-column: 2;
  padding: 0.5rem 2.5rem;
}
@media (max-width: 767.98px) {
  .ex-event-content {
    padding: 0.5rem 1rem;
  }
}
.ex-event-content h4 {
  grid-column: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}
.ex-event-content .ex-event-content__location {
  font-weight: 100;
  height: 1.3em;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  -webkit-box-orient: vertical;
}
@media (max-width: 575.98px) {
  .ex-event-content .ex-event-content__location {
    padding-left: 0;
  }
}
.ex-event-content__action-area button {
  display: flex;
  height: 100%;
  align-items: center;
  background: none;
  border: none;
  color: #007C84;
}
.ex-event-content__action-area button .ex-event-cal-download__icon {
  height: 1.5em;
  width: 1.5em;
}
.ex-event-content__action-area button .ex-event-content__action-area-text {
  font-size: 14px;
  margin-left: 0.5rem;
  padding-bottom: 3px;
}
@media (max-width: 767.98px) {
  .ex-event-content__action-area button .ex-event-content__action-area-text {
    display: none;
  }
}
.ex-event-container-content {
  margin-top: 2rem;
}
.ex-tag-pill {
  border-radius: 20px;
  font-weight: 400;
  color: black;
  padding: 3px 10px;
  margin: 0 5px 10px 0;
  background-color: #f2f4f6;
}
.ex-back-to-top-button {
  height: 45px;
  width: 45px;
  position: fixed;
  cursor: pointer;
  outline: none;
  bottom: 10px;
  right: 10px;
  padding: 10px;
  border-radius: 50%;
  border: 1px solid #007C84;
  color: #007C84;
  background-color: #fff;
  z-index: 10;
}
.ex-back-to-top-button::after {
  font-family: phoenix-contact-icons, serif !important;
  content: "\e937";
}
.ex-model3d {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  background-color: rgba(242, 244, 246, 0.3960784314);
  border: 1px solid #e1e5e9;
  border-radius: 4px;
}
.ex-model3d__3d-content {
  min-width: 50%;
  min-height: 440px;
  padding: 0;
}
.ex-model3d__3d-content .ex-model-viewer {
  width: 100%;
  height: 100%;
  /* This keeps child nodes hidden while the element loads */
}
.ex-model3d__3d-content .ex-model-viewer :not(:defined) > * {
  display: none;
}
.ex-model3d__3d-content .ex-model-viewer__loading-spinner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ex-model3d__3d-content .ex-model-viewer__loading-spinner > div {
  padding-right: 1rem;
}
.ex-model3d__3d-content .ex-model-viewer__controls {
  cursor: pointer;
  position: absolute;
  top: initial;
  bottom: 0;
  right: 0;
  margin: 0 2rem 2rem 0;
  display: none;
  height: 40px;
  width: 40px;
  background: white;
  border: 1px solid #D2D2D2;
  border-radius: 4px;
}
.ex-model3d__3d-content .ex-model-viewer__controls .cr-icon--close-v6-14-0 {
  display: none;
}
.ex-model3d__3d-content .ex-model-viewer__controls:hover {
  color: #1aa2aa;
}
.ex-model3d__3d-content .ex-model-viewer__open-fullscreen {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ex-model3d__3d-content .ex-model-viewer__open-fullscreen svg {
  height: 19.2px;
  width: 19.2px;
}
.ex-model3d__3d-content.ex-model3d-fullscreen__active {
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  background: white;
  padding: 0;
}
.ex-model3d__3d-content.ex-model3d-fullscreen__active .ex-model-viewer {
  background: white;
  height: 100vh;
  width: 100vw;
}
.ex-model3d__3d-content.ex-model3d-fullscreen__active .ex-model-viewer__controls {
  top: 0;
  bottom: initial;
  height: initial;
  width: initial;
  background: none;
  border: none;
  margin: 2rem 2rem 0 0;
}
.ex-model3d__3d-content.ex-model3d-fullscreen__active .ex-model-viewer__open-fullscreen {
  display: none;
}
.ex-model3d__3d-content.ex-model3d-fullscreen__active .ex-model-viewer__close-fullscreen {
  display: block;
  padding: 0.5rem;
}
.ex-model3d__3d-content.ex-model3d-fullscreen__active .ex-model-viewer__close-fullscreen svg {
  color: #3a3a3a;
  height: 27.2px;
  width: 27.2px;
}
.ex-model3d__3d-content.ex-model3d-fullscreen__active .ex-model-viewer__close-fullscreen svg:hover {
  color: #1aa2aa;
}
.ex-model3d__3d-content.ex-model3d-fullscreen__active + .ex-model3d__text-content-area {
  padding: 0;
}
.ex-model3d__text-content {
  padding: 2rem;
  margin: auto;
}
.ex-model3d__text-content .ex-model-3d__preheadline {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  color: #666a6e;
}
.ex-model3d__text-content .ex-model-3d__headline {
  margin-bottom: 1rem;
}
.ex-model3d__text-content .ex-model-3d__text + p {
  line-height: 25px;
}
@media (max-width: 767.98px) {
  .ex-model3d__3d-content {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .ex-model3d {
    border: none;
    background-color: #fff;
  }
  .ex-model3d__3d-content {
    margin: 0 auto;
    width: 90%;
    height: 280px;
    background-color: rgba(242, 244, 246, 0.3960784314);
  }
  .ex-model3d__3d-content .ex-model-viewer__controls {
    margin: 0 1rem 1rem 0;
  }
  .ex-model3d__text-content {
    padding: 0;
  }
  .ex-model3d__text-content .ex-model-3d__preheadline {
    padding-top: 1rem;
  }
  .ex-model3d__text-content .ex-model-3d__headline {
    font-size: 23px;
    line-height: 33px;
  }
  .ex-model3d__text-content .ex-model-3d__text + p {
    font-size: 14px;
  }
}
.ex-sus-goal-teaser {
  background: #F9FCF2;
  border-radius: 4px;
  padding: 1rem 1rem 2rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  .ex-sus-goal-teaser {
    flex-direction: row;
    padding: 2rem 6rem 2rem 2rem;
  }
}
.ex-sus-goal-teaser__image {
  background-color: #a2a7a9;
  align-self: center;
  border-radius: 4px;
  min-width: 100%;
  width: 100%;
  height: 100%;
  margin-right: 0;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .ex-sus-goal-teaser__image {
    min-width: 150px;
    max-width: 150px;
    height: 150px;
    margin-right: 2rem;
  }
}
.ex-sus-goal-teaser__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ex-sus-goal-teaser__content.ex-sus-goal-withouttext .ex-sus-goal-teaser__title {
  font-weight: 400;
}
.ex-sus-goal-teaser__goal-name {
  margin-bottom: 0.5rem;
}
.ex-sus-goal-teaser__goal-name .fa-leaf {
  margin-right: 5px;
}
.ex-sus-goal-teaser__title {
  margin: 0;
  font-size: 1.728rem;
}
.ex-sus-goal-teaser__text {
  margin-top: 0.5rem;
}
@media (min-width: 576px) {
  .ex-sus-goal-teaser__text {
    margin-top: 1rem;
    margin-bottom: 0;
  }
}
.ex-sus-goal-teaser__link {
  margin-top: 1rem;
}
.ex-project-goal {
  background: #F2F8F9;
  border-radius: 4px;
  padding: 1.5rem 1rem;
  display: flex;
  flex-flow: row wrap;
}
.ex-project-goal.ex-project-goal-with-green-background {
  background: #F9FCF2;
}
@media (min-width: 576px) {
  .ex-project-goal {
    padding: 2rem;
  }
}
@media (min-width: 768px) {
  .ex-project-goal {
    padding: 4rem;
  }
}
.ex-project-goal__description {
  width: 100%;
  margin-bottom: 1.5rem;
  padding: 0;
}
@media (min-width: 576px) {
  .ex-project-goal__description {
    width: 66%;
    margin-bottom: 3rem;
    padding-right: 40px;
  }
}
.ex-project-goal__milestones {
  width: 100%;
  padding: 0;
  margin-bottom: 1.5rem;
}
.ex-project-goal__milestones.ex-pg-max-2-kpi {
  margin-bottom: 0;
}
@media (min-width: 576px) {
  .ex-project-goal__milestones.ex-pg-max-2-kpi {
    margin-bottom: -120px;
  }
}
@media (min-width: 576px) {
  .ex-project-goal__milestones {
    width: 33%;
  }
}
.ex-project-goal__kpi {
  width: 100%;
  padding: 0;
  margin-bottom: 1rem;
}
@media (min-width: 576px) {
  .ex-project-goal__kpi {
    width: 33%;
    padding-right: 40px;
  }
}
.ex-project-goal__kpi__text {
  font-size: 64px;
  line-height: 83px;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #D2D2D2;
}
@media (min-width: 576px) {
  .ex-project-goal__kpi__text {
    font-size: 32px;
    line-height: 40px;
  }
}
@media (min-width: 768px) {
  .ex-project-goal__kpi__text {
    font-size: 64px;
    line-height: 83px;
    margin-bottom: 1rem;
  }
}
.ex-project-goal__milestones ul {
  list-style-type: none;
  padding-left: 2rem;
}
.ex-project-goal__milestones ul > li::before {
  color: #96be0d;
  font-size: 1rem;
  content: "\e93c";
  display: inline-block;
  width: 1.5rem;
  margin-left: -1.5rem;
  speak: none;
  font-family: phoenix-contact-icons, serif !important;
  font-weight: 400;
  font-feature-settings: normal;
  font-variant: normal;
  text-transform: none;
  vertical-align: bottom;
}
.ex-pg-no-milestone-multi-kpi {
  width: 80%;
}
.ex-small-stage-v2 {
  display: flex;
  flex-direction: row;
  margin-top: 4rem;
  margin-bottom: 2rem;
}
@media (max-width: 991.98px) {
  .ex-small-stage-v2 {
    flex-direction: column-reverse;
    margin-top: 2rem;
  }
}
.ex-small-stage-v2__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  margin-right: 6rem;
}
@media (max-width: 991.98px) {
  .ex-small-stage-v2__content {
    width: 100%;
    padding-right: 0;
  }
}
.ex-small-stage-v2__tagline {
  color: #666a6e;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 0.5rem;
}
.ex-small-stage-v2__date {
  color: #666a6e;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 0.5rem;
}
.ex-small-stage-v2__headline {
  margin-bottom: 2rem;
}
@media (max-width: 991.98px) {
  .ex-small-stage-v2__headline {
    margin-bottom: 1.5rem;
  }
}
.ex-small-stage-v2__sub-headline {
  color: #666a6e;
  margin-top: 1rem;
  display: block;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 150%;
}
@media (max-width: 991.98px) {
  .ex-small-stage-v2__sub-headline {
    margin-top: 1rem;
  }
}
.ex-small-stage-v2__cta-container {
  display: flex;
  flex-direction: row;
}
@media (max-width: 991.98px) {
  .ex-small-stage-v2__cta-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.ex-small-stage-v2__cta-container .ex-small-stage-v2__cta:first-child {
  margin-right: 1.5rem;
}
@media (max-width: 991.98px) {
  .ex-small-stage-v2__cta-container .ex-small-stage-v2__cta:first-child {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.ex-small-stage-v2__image {
  width: 50%;
  margin: auto 0;
}
@media (max-width: 991.98px) {
  .ex-small-stage-v2__image {
    margin-left: -1rem;
    width: calc(100% + 2rem);
    margin-bottom: 1rem;
  }
}
.ex-small-stage-v2__image img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
@media (max-width: 991.98px) {
  .ex-small-stage-v2__image img {
    border-radius: 0;
  }
}
.ex-linkgrid-container h3 {
  font-size: 40px;
  font-weight: 500;
}
.ex-linkgrid-container__text {
  margin-bottom: 3rem;
  font-size: 26px;
  font-weight: 300;
  line-height: 33px;
}
.ex-linkgrid-grid {
  display: grid;
  gap: 3rem 2rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 576px) {
  .ex-linkgrid-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .ex-linkgrid-grid {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
.ex-linkgrid-card {
  box-shadow: none;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ex-linkgrid-card__image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
  transform-origin: bottom;
}
.ex-linkgrid-card__image:hover {
  transform: scale(1.03);
  transform-origin: bottom;
  transition: transform 0.4s ease-in-out;
}
.ex-linkgrid-card h5 {
  margin-top: 0.8rem;
}
.ex-mini-stage {
  display: flex;
  flex-direction: row;
  margin-top: 4rem;
  margin-bottom: 5rem;
}
@media (max-width: 767.98px) {
  .ex-mini-stage {
    flex-direction: column-reverse;
    margin-top: 2rem;
  }
}
.ex-mini-stage__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 50%;
  margin-right: 6rem;
}
@media (max-width: 767.98px) {
  .ex-mini-stage__content {
    width: 100%;
    padding-right: 0;
  }
}
.ex-mini-stage__tagline {
  color: #666a6e;
  font-weight: 300;
  line-height: 150%;
  margin-bottom: 0.25rem;
}
.ex-mini-stage__headline {
  margin-bottom: 1rem;
}
@media (max-width: 767.98px) {
  .ex-mini-stage__headline {
    margin-bottom: 1.5rem;
  }
}
.ex-mini-stage__text {
  color: #666a6e;
  display: block;
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 150%;
}
@media (max-width: 767.98px) {
  .ex-mini-stage__text {
    margin-top: 1rem;
  }
}
.ex-mini-stage__cta-container {
  display: flex;
  flex-direction: row;
}
@media (max-width: 767.98px) {
  .ex-mini-stage__cta-container {
    flex-direction: column;
    align-items: flex-start;
  }
}
.ex-mini-stage__cta-container .ex-small-stage-v2__cta:first-child {
  margin-right: 1.5rem;
}
@media (max-width: 767.98px) {
  .ex-mini-stage__cta-container .ex-small-stage-v2__cta:first-child {
    margin-right: 0;
    margin-bottom: 1rem;
  }
}
.ex-contact-container {
  text-align: left;
  color: #3a3a3a;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.ex-contact-container.ex-content-module-container {
  margin: 0 auto !important;
  max-width: 1140px;
  padding-right: 16px;
  padding-left: 16px;
}
.ex-contact-container__image {
  width: 100%;
  max-width: 8.375rem;
  max-height: 8.375rem;
  border-radius: 50%;
  background-image: linear-gradient(70deg, #007C84, #96be0d);
}
.ex-contact-container__name {
  font-weight: 600;
  padding-top: 0;
}
.ex-contact-container-headline {
  color: #202020;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.7281rem;
  font-style: normal;
  font-weight: 600;
  line-height: 2.0625rem;
  margin-bottom: 0.5rem;
}
.ex-contact-container-subheadline {
  color: #202020;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.44rem;
  font-style: normal;
  font-weight: 300;
  line-height: 1.6875rem;
  margin-bottom: 2.25rem;
}
.ex-contact-container-quote {
  color: #202020;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 26px;
  font-style: normal;
  font-weight: 300;
  line-height: 2.5rem;
  padding: 2rem 0;
  width: 100%;
  max-width: 535px;
  flex-direction: column;
  padding: 1rem 0;
}
@media (min-width: 992px) {
  .ex-contact-container-quote {
    padding: 2rem;
  }
}
.ex-contact-container__actions {
  margin-left: auto;
  margin-right: auto;
  margin-top: 1rem;
  max-width: 1100px;
}
.ex-contact-container__actions a {
  display: inline-block;
  min-width: 33%;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 1200px) {
  .ex-contact-container__actions a {
    min-width: 25%;
  }
}
.ex-contact-container__actions span {
  padding-right: 5px;
  vertical-align: middle;
}
.ex-contact-container__actions span::before {
  display: inline;
}
.ex-contact-container-contact__container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: left;
  align-items: center;
}
.ex-contact-container-contact__container .ex-contact-container-contact__content {
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  border: 1px solid #D2D2D2;
  border-radius: 4px;
  width: 100%;
  max-width: 535px;
  flex-direction: column;
  padding: 1rem;
}
@media (min-width: 576px) {
  .ex-contact-container-contact__container .ex-contact-container-contact__content {
    flex-direction: row;
  }
}
@media (max-width: 991.98px) {
  .ex-contact-container-contact__container .ex-contact-container-contact__content {
    min-width: 0;
    width: 100%;
  }
}
.ex-contact-container-contact__container .ex-contact-container-contact__content picture {
  align-self: center;
}
.ex-contact-container-contact__container .ex-contact-container-contact__content .ex-contact-container-contact__image {
  border-radius: 100%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-top: auto;
  margin-bottom: auto;
  margin-bottom: 1rem;
}
.ex-contact-container-contact__container .ex-contact-container-contact__content .ex-contact-container-contact-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-left: 0;
}
@media (min-width: 576px) {
  .ex-contact-container-contact__container .ex-contact-container-contact__content .ex-contact-container-contact-info {
    margin-left: 1.5rem;
  }
}
.ex-contact-container-contact__container .ex-contact-container-contact__content .ex-contact-container-contact-info .ex-contact-container-contact-name-position {
  margin-bottom: 1rem;
}
.ex-contact-container-contact__container .ex-contact-container-contact__content .ex-contact-container-contact-info .ex-contact-container-contact-position, .ex-contact-container-contact__container .ex-contact-container-contact__content .ex-contact-container-contact-info .ex-contact-container-contact__phone, .ex-contact-container-contact__container .ex-contact-container-contact__content .ex-contact-container-contact-info .ex-contact-container-contact__email, .ex-contact-container-contact__container .ex-contact-container-contact__content .ex-contact-container-contact-info .ex-contact-container-contact__link {
  font-weight: 400;
}
.ex-contact-container-contact__container .ex-contact-container-contact__content .ex-contact-container-contact-info .ex-contact-container-contact__phone {
  display: block;
}
.ex-contact-container-contact__container .ex-contact-container-contact__content .ex-contact-container-contact-info .ex-contact-container-contact__phone .ico-telephone {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
.ex-contact-container-contact__container .ex-contact-container-contact__content .ex-contact-container-contact-info .ex-contact-container-contact__email {
  display: block;
  word-break: break-all;
}
.ex-contact-container-contact__container .ex-contact-container-contact__content .ex-contact-container-contact-info .ex-contact-container-contact__email .ico-mail {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
.ex-contact-container-contact__container .ex-contact-container-contact__content .ex-contact-container-contact-info .ex-contact-container-contact__link {
  display: block;
  word-break: break-all;
}
.ex-contact-container-contact__container .ex-contact-container-contact__content .ex-contact-container-contact-info .ex-contact-container-contact__link .ico-comment-lines {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
.ex-contact-container-refs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(1px, 1fr));
}
@media (max-width: 991.98px) {
  .ex-contact-container-refs__grid {
    justify-items: left;
    grid-template-columns: repeat(1, minmax(1px, 1fr));
  }
}
.ex-page-reference-card {
  width: 340px;
  height: 100%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.18);
  transition: all 0.2s;
}
.ex-page-reference-card:hover {
  opacity: 0.94;
  text-decoration: none;
  box-shadow: 1px 2px 8px 1px rgba(0, 0, 0, 0.22);
}
.ex-page-reference-card:hover .ex-page-reference-card__link span {
  text-decoration: underline;
}
@media (min-width: 992px) {
  .ex-page-reference-card {
    width: 300px;
  }
}
@media (max-width: 767.98px) {
  .ex-page-reference-card {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .ex-page-reference-card {
    max-width: 300px;
  }
}
.ex-page-reference-card:nth-child(1), .ex-page-reference-card:nth-child(4) {
  justify-self: start;
}
.ex-page-reference-card:nth-child(2), .ex-page-reference-card:nth-child(5) {
  justify-self: center;
}
@media (max-width: 767.98px) {
  .ex-page-reference-card:nth-child(2), .ex-page-reference-card:nth-child(5) {
    justify-self: start;
  }
}
.ex-page-reference-card:nth-child(3), .ex-page-reference-card:nth-child(6) {
  justify-self: end;
}
@media (max-width: 767.98px) {
  .ex-page-reference-card:nth-child(3), .ex-page-reference-card:nth-child(6) {
    justify-self: start;
  }
}
.ex-page-reference-card__image {
  width: 100%;
  background: linear-gradient(0deg, #F2F4F6, #F2F4F6), #FFF;
}
.ex-page-reference-card__title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  hyphens: auto;
}
.ex-page-reference-card:not(.spotlight) .ex-page-reference-card__title {
  font-size: 20.8px;
}
.ex-page-reference-card:not(.spotlight) .ex-page-reference-card__content {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - 191px);
}
.ex-page-reference-card:not(.spotlight) .ex-page-reference-card__intro {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  color: #3a3a3a;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.ex-page-reference-card:not(.spotlight) .ex-page-reference-card__link {
  margin-left: 0.5rem;
  font-weight: 400;
}
.ex-page-reference-card:not(.spotlight) .ex-page-reference-card__link .cr-icon-v6-14-0 {
  display: inline-block;
}
.ex-page-reference-card.spotlight {
  box-shadow: none;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ex-page-reference-card.spotlight .ex-page-reference-card__image {
  aspect-ratio: 16/9;
  margin-bottom: 1rem;
  transition: transform 0.4s ease-in-out;
  transform-origin: bottom;
}
.ex-page-reference-card.spotlight .ex-page-reference-card__image:hover {
  transform: scale(1.03);
  transform-origin: bottom;
  transition: transform 0.4s ease-in-out;
}
.ex-page-reference-card.spotlight .ex-page-reference__preheadline {
  font-weight: 400;
  font-size: 16px;
  color: #666a6e;
  margin-bottom: 4px;
}
.ex-page-reference-card.spotlight .ex-page-reference-card__title {
  margin-bottom: 0;
  font-size: 20.8px;
  line-height: 150%;
}
/* ******* CONTENT SNIPPETS ******** */
.ex-preview-container {
  max-width: 1140px;
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-top: 50px;
  margin-right: auto;
  margin-left: auto;
}
/* ******* PAGES ********* */
.ex-newsdetailpage-news-container {
  background-color: #f2f4f6;
  padding: 40px 94px;
  margin-bottom: 24px;
}
@media (max-width: 575.98px) {
  .ex-newsdetailpage-news-container {
    padding: 1rem;
  }
}
.ex-newsdetailpage__image {
  width: 100%;
  margin-bottom: 10px;
}
.ex-newsdetailpage-news-container__date {
  margin-bottom: 24px;
}
.ex-newsdetailpage-news-container__intro > * {
  font-size: 1.725rem;
  font-weight: lighter;
  margin-bottom: 10px;
}
@media (max-width: 575.98px) {
  .ex-newsdetailpage-news-container__intro > * {
    font-size: 1.2rem;
  }
}
.ex-newsdetailpage-news-container__intro {
  margin-bottom: 10px;
}
.ex-newsdetailpage-news-container__text {
  margin-bottom: 20px;
}
.ex-sidebar-item__heading {
  font-weight: bold;
  margin-bottom: 25px;
}
.ex-newsdetailpage-tag-container {
  display: flex;
  flex-wrap: wrap;
}
.ex-newsdetailpage-tag {
  border-radius: 20px;
  padding: 3px 10px;
  margin: 0 5px 10px 0;
  background-color: #f2f4f6;
}
.ex-newsdetailpage-press-contact__container {
  margin-bottom: 20px;
}
.ex-newsdetailpage-press-contact__content {
  height: 50px;
}
.ex-newsdetailpage-press-contact__image {
  float: left;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  object-fit: cover;
  margin-right: 16px;
}
.ex-newsdetailpage-news-container-sidebar-latest__heading {
  padding-left: 10px;
}
.ex-newsdetailpage-news-container-sidebar-latest__card {
  padding: 24px;
  background-color: white;
  box-shadow: 0 4px 8px 1px rgba(32, 32, 32, 0.3);
  margin-bottom: 15px;
}
.ex-newsdetailpage-news-container-sidebar-latest__card-date {
  color: #495057;
  margin-bottom: 5px;
}
.ex-newsdetailpage-news-container-sidebar-latest__card-headline {
  color: black;
  font-size: 16px;
}
.ex-newsdetailpage-news-container-sidebar-latest > a {
  padding-left: 10px;
}
.ex-newsdetailpage-sidebar__asset {
  display: block;
  margin-left: 10px;
  margin-bottom: 10px;
}
.ex-newsdetailpage-sidebar__asset > div {
  margin-right: 4px;
  display: inline;
}
.ex-seminardetailpage-seminar-container {
  background-color: #f2f4f6;
  padding: 40px 94px;
  margin-bottom: 24px;
}
.ex-seminardetailpage-seminar-container > * {
  padding: 0;
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 575.98px) {
  .ex-seminardetailpage-seminar-container {
    padding: 1rem;
  }
}
.list-item-icon-checkmark {
  width: auto;
}
.ex-seminardetailpage__image {
  width: 100%;
  margin-bottom: 10px;
}
.ex-seminardetailpage-seminar-container__date {
  margin-bottom: 24px;
}
.ex-seminardetailpage-seminar-container__intro > * {
  font-size: 1.725rem;
  font-weight: lighter;
  margin-bottom: 10px;
}
@media (max-width: 575.98px) {
  .ex-seminardetailpage-seminar-container__intro > * {
    font-size: 1.2rem;
  }
}
.ex-seminardetailpage-seminar-container__text {
  margin-bottom: 20px;
}
.ex-sidebar-item__heading {
  font-weight: bold;
  margin-bottom: 10px;
}
.ex-seminardetailpage-tag-container {
  display: flex;
  flex-wrap: wrap;
}
.ex-seminardetailpage-press-contact__container {
  margin-bottom: 20px;
}
.ex-seminardetailpage-press-contact__content {
  height: 50px;
}
.ex-seminardetailpage-press-contact__image {
  float: left;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  object-fit: cover;
  margin-right: 16px;
}
.ex-sidebar-item_price {
  margin-bottom: 10px;
}
.ex-sidebar-item_price > h2 {
  display: inline;
}
.ex-sidebar-item_price__currency-code {
  display: inline-block;
  line-height: 0.9em;
  font-size: 0.9em;
  margin-left: 5px;
  color: #495057;
}
.ex-sidebar-item_price__currency-symbol {
  display: inline-block;
  vertical-align: top;
  padding-top: 6px;
}
.ex-pdp-contact__container .ex-pdp-contact__content {
  display: flex;
  flex-direction: column;
  padding: 1rem;
  border: 1px solid #D2D2D2;
  border-radius: 4px;
  width: 100%;
  min-width: 0;
  max-width: 535px;
}
@media (min-width: 768px) {
  .ex-pdp-contact__container .ex-pdp-contact__content {
    width: 50%;
    min-width: 535px;
    padding: 2rem;
  }
}
@media (min-width: 576px) {
  .ex-pdp-contact__container .ex-pdp-contact__content {
    flex-direction: row;
    padding: 1rem;
  }
}
.ex-pdp-contact__container .ex-pdp-contact__content picture {
  align-self: center;
}
@media (min-width: 576px) {
  .ex-pdp-contact__container .ex-pdp-contact__content picture {
    align-self: normal;
  }
}
.ex-pdp-contact__container .ex-pdp-contact__content .ex-pdp-contact__image {
  border-radius: 100%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 1rem;
}
.ex-pdp-contact__container .ex-pdp-contact__content .ex-pdp-contact-info {
  display: flex;
  flex-direction: column;
  margin-left: 0;
  justify-content: center;
}
@media (min-width: 576px) {
  .ex-pdp-contact__container .ex-pdp-contact__content .ex-pdp-contact-info {
    margin-left: 1.5rem;
  }
}
.ex-pdp-contact__container .ex-pdp-contact__content .ex-pdp-contact-info .ex-pdp-contact-name-position {
  margin-bottom: 1rem;
}
.ex-pdp-contact__container .ex-pdp-contact__content .ex-pdp-contact-info .ex-pdp-contact-position, .ex-pdp-contact__container .ex-pdp-contact__content .ex-pdp-contact-info .ex-pdp-contact__phone, .ex-pdp-contact__container .ex-pdp-contact__content .ex-pdp-contact-info .ex-pdp-contact__email {
  font-weight: 400;
}
.ex-pdp-contact__container .ex-pdp-contact__content .ex-pdp-contact-info .ex-pdp-contact__phone {
  display: block;
}
.ex-pdp-contact__container .ex-pdp-contact__content .ex-pdp-contact-info .ex-pdp-contact__phone .ico-telephone {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
.ex-pdp-contact__container .ex-pdp-contact__content .ex-pdp-contact-info .ex-pdp-contact__email {
  display: block;
  word-break: break-all;
}
.ex-pdp-contact__container .ex-pdp-contact__content .ex-pdp-contact-info .ex-pdp-contact__email .ico-mail {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
.ex-pdp-refs__grid {
  display: grid;
  grid-gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ex-pdp-refs__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .ex-pdp-refs__grid {
    grid-template-columns: 1fr 1fr 1fr;
    max-width: 1290px;
    gap: 32px;
  }
}
.ex-page-reference-card {
  height: 100%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.18);
  transition: all 0.2s;
}
@media (max-width: 575.98px) {
  .ex-page-reference-card {
    max-width: 288px;
  }
}
.ex-page-reference-card:hover {
  opacity: 0.94;
  text-decoration: none;
  box-shadow: 1px 2px 8px 1px rgba(0, 0, 0, 0.22);
}
.ex-page-reference-card:hover .ex-page-reference-card__link span {
  text-decoration: underline;
}
@media (min-width: 768px) {
  .ex-page-reference-card {
    display: flex;
    flex: 260px 1 0;
    max-width: 409px;
    flex-direction: column;
    transition: all 0.2s;
  }
}
.ex-page-reference-card:nth-child(1), .ex-page-reference-card:nth-child(4) {
  justify-self: start;
}
.ex-page-reference-card:nth-child(2), .ex-page-reference-card:nth-child(5) {
  justify-self: center;
}
@media (max-width: 767.98px) {
  .ex-page-reference-card:nth-child(2), .ex-page-reference-card:nth-child(5) {
    justify-self: start;
  }
}
.ex-page-reference-card:nth-child(3), .ex-page-reference-card:nth-child(6) {
  justify-self: end;
}
@media (max-width: 767.98px) {
  .ex-page-reference-card:nth-child(3), .ex-page-reference-card:nth-child(6) {
    justify-self: start;
  }
}
.ex-page-reference-card__image {
  background: linear-gradient(0deg, #F2F4F6, #F2F4F6), #FFF;
  aspect-ratio: 16/9;
}
.ex-page-reference-card__title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  hyphens: auto;
}
.ex-page-reference-card:not(.spotlight) .ex-page-reference-card__content {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - 191px);
}
@media (max-width: 767.98px) {
  .ex-page-reference-card:not(.spotlight) .ex-page-reference-card__content {
    height: 50%;
  }
}
.ex-page-reference-card:not(.spotlight) .ex-page-reference-card__content .ex-page-reference-card__title {
  font-size: 20.8px;
}
.ex-page-reference-card:not(.spotlight) .ex-page-reference-card__intro {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  color: #3a3a3a;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
@media (min-width: 576px) {
  .ex-page-reference-card:not(.spotlight) {
    margin-bottom: 1.5rem;
  }
}
.ex-page-reference-card:not(.spotlight) .ex-page-reference-card__link {
  margin-left: 0.5rem;
  font-weight: 400;
}
@media (max-width: 575.98px) {
  .ex-page-reference-card:not(.spotlight) .ex-page-reference-card__link {
    margin-bottom: 1rem;
  }
}
.ex-page-reference-card:not(.spotlight) .ex-page-reference-card__link .cr-icon-v6-14-0 {
  display: inline-block;
  position: relative;
  top: -1px;
  margin-right: 5px;
}
.ex-page-reference-card.spotlight {
  box-shadow: none;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ex-page-reference-card.spotlight .ex-page-reference-card__image {
  aspect-ratio: 16/9;
  margin-bottom: 1rem;
  transition: transform 0.4s ease-in-out;
  transform-origin: bottom;
}
.ex-page-reference-card.spotlight .ex-page-reference-card__image:hover {
  transform: scale(1.03);
  transform-origin: bottom;
  transition: transform 0.4s ease-in-out;
}
.ex-page-reference-card.spotlight .ex-page-reference__preheadline {
  font-weight: 400;
  font-size: 16px;
  color: #666a6e;
  margin-bottom: 4px;
}
.ex-page-reference-card.spotlight .ex-page-reference-card__title {
  margin-bottom: 0;
  font-size: 20.8px;
  line-height: 150%;
}
.ex-blog-page-bottom-container-title {
  margin-bottom: -2rem;
}
.ex-blog-page-contact__container .ex-blog-page-contact__content {
  display: flex;
  padding: 2rem;
  border: 1px solid #D2D2D2;
  border-radius: 4px;
  width: 50%;
  min-width: 535px;
  flex-direction: column;
  padding: 1rem;
}
@media (max-width: 767.98px) {
  .ex-blog-page-contact__container .ex-blog-page-contact__content {
    min-width: 0;
    width: 100%;
    max-width: 535px;
  }
}
.ex-blog-page-contact__container .ex-blog-page-contact__content picture {
  align-self: center;
}
.ex-blog-page-contact__container .ex-blog-page-contact__content .ex-blog-page-contact__image {
  border-radius: 100%;
  width: 120px;
  height: 120px;
  object-fit: cover;
  margin-bottom: 1rem;
}
.ex-blog-page-contact__container .ex-blog-page-contact__content .ex-blog-page-contact-info {
  display: flex;
  flex-direction: column;
  margin-left: 1.5rem;
  justify-content: center;
  margin-left: 0;
}
.ex-blog-page-contact__container .ex-blog-page-contact__content .ex-blog-page-contact-info .ex-blog-page-contact-name-position {
  margin-bottom: 1rem;
}
.ex-blog-page-contact__container .ex-blog-page-contact__content .ex-blog-page-contact-info .ex-blog-page-contact-position, .ex-blog-page-contact__container .ex-blog-page-contact__content .ex-blog-page-contact-info .ex-blog-page-contact__phone, .ex-blog-page-contact__container .ex-blog-page-contact__content .ex-blog-page-contact-info .ex-blog-page-contact__email {
  font-weight: 400;
}
.ex-blog-page-contact__container .ex-blog-page-contact__content .ex-blog-page-contact-info .ex-blog-page-contact__phone {
  display: block;
}
.ex-blog-page-contact__container .ex-blog-page-contact__content .ex-blog-page-contact-info .ex-blog-page-contact__phone .ico-telephone {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
.ex-blog-page-contact__container .ex-blog-page-contact__content .ex-blog-page-contact-info .ex-blog-page-contact__email {
  display: block;
  word-break: break-all;
}
.ex-blog-page-contact__container .ex-blog-page-contact__content .ex-blog-page-contact-info .ex-blog-page-contact__email .ico-mail {
  display: inline-block;
  vertical-align: middle;
  margin-right: 12px;
}
.ex-blog-page-refs__grid {
  display: grid;
  grid-gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .ex-blog-page-refs__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 992px) {
  .ex-blog-page-refs__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.ex-page-reference-card {
  max-width: 409px;
  height: 100%;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.18);
  transition: all 0.2s;
}
.ex-page-reference-card:hover {
  opacity: 0.94;
  text-decoration: none;
  box-shadow: 1px 2px 8px 1px rgba(0, 0, 0, 0.22);
}
.ex-page-reference-card:hover .ex-page-reference-card__link span {
  text-decoration: underline;
}
@media (min-width: 576px) {
  .ex-page-reference-card {
    width: 100%;
    max-width: 409px;
  }
}
@media (min-width: 992px) {
  .ex-page-reference-card {
    max-width: 409px;
  }
}
.ex-page-reference-card:nth-child(1), .ex-page-reference-card:nth-child(4) {
  justify-self: start;
}
.ex-page-reference-card:nth-child(2), .ex-page-reference-card:nth-child(5) {
  justify-self: start;
}
@media (min-width: 768px) {
  .ex-page-reference-card:nth-child(2), .ex-page-reference-card:nth-child(5) {
    justify-self: center;
  }
}
.ex-page-reference-card:nth-child(3), .ex-page-reference-card:nth-child(6) {
  justify-self: start;
}
@media (min-width: 768px) {
  .ex-page-reference-card:nth-child(3), .ex-page-reference-card:nth-child(6) {
    justify-self: end;
  }
}
.ex-page-reference-card__image {
  width: 100%;
  background: linear-gradient(0deg, #F2F4F6, #F2F4F6), #FFF;
}
.ex-page-reference-card__title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  hyphens: auto;
}
.ex-page-reference-card:not(.spotlight) .ex-page-reference-card__content {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  height: calc(100% - 191px);
}
@media (max-width: 767.98px) {
  .ex-page-reference-card:not(.spotlight) .ex-page-reference-card__content {
    height: 50%;
  }
}
.ex-page-reference-card:not(.spotlight) .ex-page-reference-card__content .ex-page-reference-card__title {
  font-size: 20.8px;
}
.ex-page-reference-card:not(.spotlight) .ex-page-reference-card__intro {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  color: #3a3a3a;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.ex-page-reference-card:not(.spotlight) .ex-page-reference-card__link {
  margin-left: 0.5rem;
  font-weight: 400;
}
.ex-page-reference-card:not(.spotlight) .ex-page-reference-card__link .cr-icon-v6-14-0 {
  display: inline-block;
}
.ex-page-reference-card.spotlight {
  box-shadow: none;
  display: inline-block;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.ex-page-reference-card.spotlight .ex-page-reference-card__image {
  aspect-ratio: 16/9;
  margin-bottom: 1rem;
  transition: transform 0.4s ease-in-out;
  transform-origin: bottom;
}
.ex-page-reference-card.spotlight .ex-page-reference-card__image:hover {
  transform: scale(1.03);
  transform-origin: bottom;
  transition: transform 0.4s ease-in-out;
}
.ex-page-reference-card.spotlight .ex-page-reference__preheadline {
  font-weight: 400;
  font-size: 16px;
  color: #666a6e;
  margin-bottom: 4px;
}
.ex-page-reference-card.spotlight .ex-page-reference-card__title {
  margin-bottom: 0;
  font-size: 20.8px;
  line-height: 150%;
}
.ex-error-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-bottom: 0;
}
.ex-error-page__container {
  flex-grow: 1;
  place-content: center center;
  background-color: #f2f4f6;
  padding-bottom: 50px;
  padding-top: 100px;
}
@media (max-width: 575.98px) {
  .ex-error-page__container {
    padding-top: 50px;
  }
}
.ex-error-page__row {
  display: flex;
  justify-content: center;
}
.ex-error-page__text {
  margin-bottom: 1.5rem;
}
.ex-error-page__text h2 {
  margin-bottom: 50px;
}
.ex-error-page__text h2 .ex-error-page__subheadline {
  margin-top: 0.5rem;
}
.ex-error-page__search-img {
  text-align: center;
  margin-top: 1.5rem;
  display: none;
}
.ex-error-page .icon-error-search {
  width: 100%;
  font-size: 7.12rem;
  color: #007C84;
}
@media (max-width: 575.98px) {
  .ex-error-page .icon-error-search {
    font-size: 5rem;
  }
}
.ex-error-page__search .se-search-bar {
  padding: 1rem;
  background-color: #fff;
  box-shadow: 5px 10px 18px #D2D2D2;
}
.ex-server-error-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding-bottom: 0;
}
.ex-server-error-page__container {
  flex-grow: 1;
  place-content: center center;
  padding-top: 100px;
}
.ex-server-error-page__row {
  display: flex;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.ex-server-error-page__robot-img {
  text-align: center;
  margin-top: 1.5rem;
}
.ex-server-error-page .icon-robot {
  width: 100%;
  font-size: 7.12rem;
  color: #007C84;
}
@media (max-width: 575.98px) {
  .ex-server-error-page .icon-robot {
    font-size: 5rem;
  }
}
.ex-server-error-page .global-header {
  box-shadow: none;
  padding-top: 2.5rem;
}
.ex-preview {
  border-color: #FFA800;
  border-style: dashed;
  border-width: thick;
}
.ex-body--hideMainNavigation .secondary-navigation {
  visibility: hidden;
}
.ex-body--hideMainNavigation .global-header__logo img {
  padding-top: 23px;
  margin-bottom: -10px;
}
/* ******* LEGACY ********* */
.ex-container {
  --bs-gutter-x: 32px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
  /* @include make-container-max-widths(); */
}
.ex-container-fluid {
  max-width: 1920px;
  --bs-gutter-x: 32px;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}
#ex-main {
  margin-bottom: 1rem;
}
.breadcrumb-item + .breadcrumb-item::before {
  content: none;
}