@charset "UTF-8";

/*!
 * Website-specific styles v1.0.0 - (c) artif GmbH & Co. KG
 */
:root {
  --color-primary: #006992;
  --color-dark: #005582;
}

/*
 * GLOBALS
 */
html {
  color: #555;
  background: #fff;
  font-family: 'Liberation Sans', Arial, Helvetica, sans-serif;
  font-size: 80%;
  line-height: 1.45;
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

@media (min-width: 480px) {
  html {
    font-size: 90%;
  }
}


@media (min-width: 1200px) {
  html {
    font-size: 90%;
  }
}

@media (min-width: 1400px) {
  html {
    font-size: 110%;
  }
}

@media (min-width: 1600px) {
  html {
    font-size: 125%;
  }
}

/*
 * Box-model
 *
 * "Ugh. If I say the width is 200px, gosh darn it, it's gonna be a 200px wide
 * box even if I have 20px of padding." - Paul Irish
 *
 * Sources:
 * - http://www.paulirish.com/2012/box-sizing-border-box-ftw/
 * - http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/
 */
/* stylelint-disable-next-line no-duplicate-selectors */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

/* custom nav dimensions and visibility */
@media (max-width: 940px) {
  .head__inner .flex-col.f-1 .flex-col.hidden.visible--m {
    display: none !important;
  }

  .head__inner .flex-col.f-1 .flex-col.visible.hidden--m {
    display: block !important;
  }

  .head__inner .flex-col.f-1 .f-justify-content-start--m {
    justify-content: flex-end !important;
  }
}

@media (max-width: 1090px) {
  .f16p--l {
    flex-basis: auto !important;
  }
}

/*
 * Vertical Rhythm
 *
 * To keep a harmonic vertical rhythm, all elements placed in text/content must
 * have the same bottom margin. Also, it's good to avoid that every element
 * comes with other margin values, so we set them here - the value is always
 * base font-size * line height.
 *
 * Add all site-specific elements you want to the selector, f.e. .box, .msg or
 * similar.
 */
h1,
.alpha,
h2,
.beta,
h3,
.gamma,
h4,
.delta,
h5,
.epsilon,
h6,
.zeta,
ul,
ol,
dl,
blockquote,
p,
address,
table,
fieldset,
figure,
pre,
hr,
.training-item,
.career-item,
.mm-post {
  margin: 0 0 1.5rem 0;
}


/*
 * Headings
 *
 * When we define a headering we also define a corresponding class to go with it.
 * This allows us to apply, say, class="alpha" to a h3; a double-stranded
 * headering hierarchy.
 * Source: csswizardry.com/2012/02/pragmatic-practical-font-sizing-in-css
 */
h1,
.alpha,
h2,
.beta,
h3,
.gamma,
h4,
.delta,
h5,
.epsilon,
h6,
.zeta {
  font-family: 'ITC Officina Serif', Georgia, serif;
  line-height: 1.1;
  color: var(--color-primary);
  font-weight: bold;
}

h1,
.alpha {
  font-size: 3em;
}

h2,
.beta {
  font-size: 2em;
}

h3,
.gamma {
  font-size: 1.5em;
  font-weight: 400;
}

h4,
.delta {
  font-size: 1em;
  font-weight: 400;
}

/*
 * Media
 */
img,
video {
  max-width: 100%;
  height: auto;
}

/* Remove unnecessary margins for nested lists */
ul ul,
ol ol {
  margin-bottom: 0;
}

address {
  font-style: normal;
}

/*
 * Form elements
 *
 * Form and inputs (text-like) elements get styled here, input[type="submit"] and
 * [type="button"] get their styles from the button class.
 */

/* Fieldsets */
fieldset {
  border: none;
  border-left: 3px solid var(--color-primary);
  padding: 1.25rem 2.25rem;
}


/* Legend */
legend {
  float: left;
  display: block;
  width: 100%;
}

/* Label */
label {
  color: #444;
}

/* Global fields */
input,
textarea,
select {
  border: 1px solid #e6e6e6;
  color: #666;
  font-size: .9375rem;
  padding: 0.875rem 1rem;
  width: 90%;
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
}

@media (min-width: 768px) {

  input,
  textarea,
  select {
    width: 50%;
  }

  input[type=submit],
  button,
  .button,
  input[type=checkbox],
  input[type=radio] {
    width: auto;
  }

  .button--full {
    width: 100%;
  }
}

/* Text input fields */
input[type=text],
input[type=url],
input[type=tel],
input[type=number],
input[type=color],
input[type=email],
input[type=search] {
  -webkit-appearance: none;
  border-radius: 0;
}

/* Turn off number spinners */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

/* Radio buttons and checkboxes */
input[type=radio],
input[type=checkbox] {
  border: 0 none;
  /* remove square arround radio/check in IE */
  width: auto;
}

/* Textarea */
textarea {
  width: 100%;
  display: block;
}

/*
 * Text formatting
 */
a {
  color: var(--color-primary);
}

/*
 * HELPER & COMPONENTS
 *
 * Helpers and components are globally available elements that only need to be
 * defined/styled on time and than may be issued where ever needed. Examples
 * would be the often used "messaging system" and our container, row and width
 * classes. See Snippets.css for further examples.
 */

/*
 * Page layout
 */
.container {
  max-width: 1600px;
  padding-left: 3rem;
  padding-right: 3rem;
  margin: 0 auto;
}

.head__inner > .container,
.main-content .container {
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 768px) {
  .container--m {
    max-width: 1600px;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: 0 auto;
  }
}

@media (min-width: 1024px) {

  .container--m,
  .head__inner > .container,
  .main-content .container {
    padding-left: 3rem;
    padding-right: 3rem;
  }
}

@media (min-width: 1600px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.page--standard .main-content {
  margin-top: 3rem;
}


/*
 * Button component
 *
 * Allows us to style everything as buttons. We also use them
 * for input[type=submit]'s and input[type=buttons] as we don't want to
 * define button styles multiple times.
 *
 * Adjust and add design-stuff and modifiers like .button--full to your project
 * needs. Modifiers always complement the base class.
 *
 * Example:
 * <a class="button" href="#">...</a>
 * <a class="button button--full" href="#">...</a>
 */
.button {
  border: 0 none;
  background: var(--color-primary);
  color: #fff;
  display: inline-block;
  font: inherit;
  min-width: inherit;
  overflow: visible;
  padding: 0.65em 1em;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  -webkit-transition: 100ms background;
  transition: 100ms background;
  border-radius: 10px;
}

.button:hover {
  cursor: pointer;
  background: #84cdf3;
}

/* Full width */
.button--full {
  width: 100%;
  text-align: center;
}

/* Primary/orange */
.button--orange {
  background: var(--color-primary);;
}

/* Purple */
.button--purple {
  background: #A31749;
}

/* Yellow */
.button--yellow {
  background: #FFDA00;
}

/* Green */
.button--green {
  background: #40B69F;
}

/* Special instagram button */
.button--instagram,
.button--instagram:hover {
  font-family: 'ITC Officina Serif', Georgia, serif;
  font-size: 1.1em;
  border-radius: 15px;
  background: #C63A8F;
  background: linear-gradient(2deg, rgba(252, 175, 69, 1) 0%, rgba(225, 48, 108, 1) 50%, rgba(131, 58, 180, 1) 100%);
}

.button--instagram .fa-instagram {
  vertical-align: middle;
  margin-right: 0.5rem;
  font-size: 1.75em;
}


/*
 * List component
 *
 * Used for standard list styles - style the design with your own component,
 * e.g. .main-navigation__item { background: blue; } etc.
 *
 * Example:
 * <nav class="main-navigation">
 *   <ul class="main-navigation__list list">
 *     <li class="main-navigation__item">
 *       <a class="main-navigation__link">Our Work</a>
 *       <ul class="main-navigation__list main-navigation__list--sub list">
 *         <li class="main-navigation__item">
 *           <a class="main-navigation__link">Example</a>
 *         </li>
 *       </ul>
 *     </li>
 *   </ul>
 * </nav>
 *
 * In the end we might have more classes, but less CSS lines as we don't have to bother
 * with long, nested selectors (.nav > li > ul > li > a becomes .main-navigation__list--sub .main-navigation__link).
 * Also, it's more performant. ;)
 */
.list {
  margin: 0;
  padding: 0;
}

.list > li {
  display: inline-block;
}

/* Stacked list */
.list--stacked > li {
  display: block;
}


/*
 * Logo
 */
.logo,
.logo__image {
  width: 70px;
  display: block;
}


/*
 * Z-Index scale
 * Starts at `0` with an interval of `50` so we have some space for special
 * cases.
 */
.z-1 {
  z-index: 50;
}

.z-2 {
  z-index: 100;
}

.z-3 {
  z-index: 150;
}

.z-4 {
  z-index: 200;
}

.z-5 {
  z-index: 250;
}


/*
 * Text modifiers
 */
.text-muted {
  color: #878787;
}


/*
 * Cookie consent
 */
.cc-window {
  background: #fcfcfc;
  left: 1em;
}

/*
 * Position helpers
 */
.pos-rel {
  position: relative;
}

.pos-abs {
  position: absolute;
}

.pos-static {
  position: absolute;
}


/*
 * HEAD
 */
.head {
  position: fixed;
  width: 100%;
  top: 0;
}

.head .logo,
.head .logo__image {
  max-width: 60px;
}

.head .main-nav-toggle {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.5rem;
  cursor: pointer;
}

.search-toggle {
  font-size: 1.5rem;
  background: #009be179;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 1em;
  padding: 10px;
  cursor: pointer;
}

.head--static {
  position: static;
}

.head__inner {
  background-color: #878787;
  padding: .5rem 0;
  width: 100%;
  position: relative;
}

.head__inner:after {
  content: '';
  min-height: 10px;
  background-image: url(/fileadmin/templates/Public/Images/bbw-mosbach-heidelberg.de-2023/teaser-mini.jpg);
  background-repeat: repeat-x;
  background-size: cover;
  background-position: center;
  position: absolute;
  width: 100%;
  bottom: -10px;
}

@media (min-width: 1400px) {
  .head__inner:after {
    min-height: 30px;
    bottom: -30px;
  }
}

.teaser,
.head.is-tiny + .teaser {
  min-height: 100vh;
}

.scroll-to-content {
  position: absolute;
  bottom: -4.5rem;
  z-index: 100;
}

.scroll-to-content__link {
  text-decoration: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 3.5rem;
  background-color: rgba(0, 0, 0, .4);
  line-height: 0;
  border-radius: 50%;
  position: relative;
  -webkit-transition: 300ms background-color, 300ms -webkit-box-shadow, 300ms -webkit-transform;
  transition: 300ms background-color, 300ms -webkit-box-shadow, 300ms -webkit-transform;
  transition: 300ms box-shadow, 300ms transform, 300ms background-color;
  transition: 300ms box-shadow, 300ms transform, 300ms background-color, 300ms -webkit-box-shadow, 300ms -webkit-transform;
}

.scroll-to-content__link:hover {
  background-color: rgba(0, 0, 0, .6);
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0 0 2em rgb(255 255 255);
  box-shadow: 0 0 2em rgb(255 255 255);
}

.scroll-to-content__link i {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -180%);
}

@media (min-width: 480px) {
  .scroll-to-content__link {
    color: #fff;
    font-size: 2.5rem;
    padding: 4rem;
  }

  .scroll-to-content__link i {
    transform: translate(-50%, -120%);
  }
}

.teaser.teaser--mini {
  min-height: 60px;
}

.teaser.teaser--mini:before {
  all: unset;
}

@media (min-width: 1400px) {
  .teaser.teaser--mini {
    min-height: 30px;
  }
}

@media (min-width: 940px) {
  .head__inner {
    padding: 1rem 0;
  }

  .head .logo,
  .head .logo__image {
    max-width: none;
  }

  .head .main-nav-toggle {
    width: 4rem;
    height: 4rem;
    font-size: 2rem;
  }

  .search-toggle {
    font-size: initial;
    background: transparent;
    width: auto;
    height: auto;
    margin: 0;
  }

  .teaser.teaser--mini {
    min-height: 98px;
  }
}

/* Is tiny */
.head.is-tiny .head__inner {
  padding: 0.5rem 0;
}

.head.is-tiny .logo,
.head.is-tiny .logo__image {
  max-width: 60px;
}

.head.is-tiny .main-nav-toggle {
  width: 3.5rem;
  height: 3.5rem;
  font-size: 1.5rem;
}


/*
 * Main navigation
 */
.main-nav {
  background: var(--color-primary);;
  font-size: 1.3rem;
  font-family: 'Myriad Pro', Arial, Helvetica, sans-serif;
}

.main-nav__item.main-nav__item {
  display: block;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.main-nav__item:last-child.main-nav__item:last-child {
  border-bottom: none;
}

.main-nav__link {
  color: #fff;
  text-decoration: none;
  padding: 1.5em 1.5em;
  display: block;
  width: 100%;
}

.main-nav__link:hover {
  color: #fff;
}

.main-nav__link.is-active {
  font-weight: bold;
  font-size: 1.02em;
}

.main-nav__icon {
  margin-right: 0.5rem;
}

.main-nav__icon.main-nav__icon {
  display: none;
}

.main-nav__link.is-active .main-nav__icon {
  display: inline-block;
}


.js-mobile-nav {
  display: none;
}

.js-mobile-nav.is-active {
  display: block;
}

@media (min-width: 940px) {
  .main-nav {
    background: none;
    font-size: 1.2rem;
  }

  .main-nav__item.main-nav__item {
    margin-left: 1rem;
    display: inline-block;
    border-bottom: 1px solid rgba(255, 255, 255, 0);
  }

  .main-nav__item:first-child {
    margin-left: 0;
  }

  .main-nav__link {
    color: #fff;
    padding: 0.5rem;
  }

  .main-nav__link:hover,
  .main-nav-list__item--has-sub-show .main-nav__link--l1,
  .flex--active .main-nav__link {
    border-bottom: 3px solid #ffffff;
    margin-bottom: -3px;
  }

  .main-nav__link.is-active {
    font: inherit;
    border-bottom: 2px solid var(--color-primary);;
  }

}

@media (min-width: 1400px) {
  .main-nav {
    font-size: 1rem;
  }
}

@media (max-width: 940px) {
  .js-mobile-nav .main-nav__list--sub {
    padding: 0 1.5rem;
  }

  .js-mobile-nav .main-nav__list--sub-inner {
    /*padding: .5rem*/
  }

  .js-mobile-nav .flex-row > .flex-col {
    padding: .5rem 0 .5rem 1rem;
    border-left: 1px rgba(255, 255, 255, .15) dotted;
    border-right: 1px rgba(255, 255, 255, .15) dotted;
    border-bottom: 1px rgba(255, 255, 255, .15) dotted;
  }

  .js-mobile-nav .flex-row > .flex-col:last-child {
    border-bottom: none;
  }

  .js-mobile-nav .main-nav__list--sub.show {
    background-color: rgba(0, 0, 0, .1);
  }

  .js-mobile-nav .flex--active,
  .js-mobile-nav .flex-col--active {
    background-color: rgba(0, 0, 0, .2);
  }
}

.main-nav__list--sub {
  padding: 0 1.5rem;
  display: none;
}

.main-nav__list--sub.show {
  display: block;
}

.main-nav__item--l2 {
  text-decoration: none;
  display: block;
  width: 100%;
  overflow: hidden;
  color: #fff;
  hyphens: auto;
  height: 100%;
}

.main-nav__link-l2-title {
  font-size: 1.15rem;
  display: block;
}

.main-nav__link-l2-description {
  display: block;
  font-size: .875rem;
}

.main-nav__item--has-sub .main-nav__link {
  padding: 1.5em .75em 1.5em 1.5em;
}

.main-nav__item--has-sub .main-nav-link__icon {
  padding: 1.5em 1.5em 1.5em .75em;
  color: #fff;
}

.main-nav__item--l1.main-nav__item--active > .flex .main-nav__link {
  font-weight: bold;
}

@media (min-width: 940px) {
  .main-nav__item--has-sub .main-nav__link {
    padding: .5em;
  }

  .main-nav__link--active {
    color: #ffffff;
  }

  .main-nav__item--l1.main-nav__item--active > .flex .main-nav__link {
    font-weight: normal;
    color: #ffffff;
  }

  .main-nav__list--sub {
    padding: 0;
    opacity: 0;
    pointer-events: none;
    padding-top: 2rem;
    position: absolute;
    right: 0;
    width: 100%;
    transition: opacity .5s ease;
    display: block;
  }

  .is-tiny .main-nav__list--sub {
    padding-top: 1.125rem;
  }

  .main-nav__list--sub-inner {
    background-color: #fff;
    color: #555;
    display: block;
    width: 100%;
    padding-top: 1.5rem;
  }

  .main-nav__list--sub .main-nav__item.main-nav__item {
    margin-left: 0;
  }

  .main-nav__item--has-sub .main-nav-link__icon {
    display: none !important;
  }

  .main-nav--touch .main-nav__list--sub,
  .main-nav__list--sub {
    display: none;
  }

  .main-nav--touch .main-nav__list--sub.show,
  .main-nav__list--sub.show {
    pointer-events: auto;
    opacity: 1;
    display: block;
    z-index: 1;
  }

  .main-nav--touch .main-nav__item--has-sub .main-nav-link__icon,
  .main-nav__item--has-sub .main-nav-link__icon {
    padding: 0;
    display: block;
  }

  .main-nav__item--l2 {
    margin-bottom: 0;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-left-width: 4px;
    border-left-style: solid;
    border-left-color: var(--color-primary);;
    padding: 1rem 1.5rem 1rem 1.5rem;
    color: #555;
  }

  .main-nav__item--l2.main-nav-list__item--active-sub,
  .main-nav__item--l2:hover {
    background-color: var(--color-primary);;
    border: 1px solid var(--color-primary);;
    color: #fff;
  }

  .main-nav__item--l2.main-nav__item--l2-circle {
    text-align: center;
    border: 1px solid #e6e6e6;
    border-radius: 50%;
    aspect-ratio: 1/1;
    width: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .main-nav__link-l2-title {
    font-size: 1.3rem;
    font-weight: bold;
  }

  .main-nav__item--l2.main-nav-list__item--active-sub .main-nav__link-l2-description,
  .main-nav__item--l2:hover .main-nav__link-l2-description {
    color: #fff;
  }

  .main-nav__item--l2.main-nav-list__item--active-sub:hover {
    background-color: #84cdf3;
    border: 1px solid #84cdf3;
  }

  .main-nav__link-l2-description {
    color: #6b6b6b;
    font-size: .875rem;
  }
}

@media (min-width: 1400px) {
  .main-nav__list--sub {
    padding-top: 1.62rem;
  }

  .is-tiny .main-nav__list--sub {
    padding-top: .88rem;
  }
}

@media (min-width: 1400px) {
  .main-nav__item--l2.main-nav__item--l2-circle {
    width: 300px;
  }
}



/* Toggle */
.main-nav-toggle {
  font-size: 2rem;
  background: #009be179;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #fff;
}

.main-nav-toggle.is-active {
  background: #009be179;
}

/* Dropdown*/
.dropdown-icon--up:before {
  content: '\f077' !important;
}


/* Search */
.container--search {
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
}

.container--search.active {
  max-height: 100px;
}

.container--search .search-results {
  text-align: center;
}

.search-form__query.extend-input__field {
  border-radius: 30px;
}

.search-form__submit {
  margin-left: -50px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

/* Search result item */
.search-result {
  border-bottom: 1px solid #d9d9d9;
  padding: 1.5rem 2rem 0 0;
  overflow: hidden;
}

.search-result:last-child {
  border-bottom-width: 0;
}

.search-result__topic {
  margin-bottom: .75rem;
}

.hit {
  font-weight: bold;
}


/*
 * Pagination
 *
 * Q: What are those weird .search-results prefixed selectors?
 * A: For whatever reason, tx_solrfluid's paginate viewhelper's template can't
 *   be changed, so we have to do this... ugly.
 */
#pagination {
  display: flex;
  justify-content: center;
}

.pagination,
.search-results .pagination {
  text-align: center;
  display: block;
}

.pagination__link,
.search-results .pagination a {
  padding: .75rem 1.25rem;
  line-height: 1;
  border: 1px solid #e6e6e6;
  border-left-width: 0;
  text-decoration: none;
  display: block;
}

.pagination__item:first-of-type .pagination__link,
.search-results .pagination li:first-of-type a {
  border-left-width: 1px;
}

.pagination__link:hover,
.search-results .pagination a:hover {
  text-decoration: underline;
}

.pagination__link.is-active,
.search-results .pagination .active a {
  color: #fff;
  background: var(--color-primary);
}

/* `search-results` pagination only */
.search-results .pagination {
  margin: 0;
  padding: 0;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  /* Doing this with inline-block doesn't work without removing
   </li>'s - which we can't, because: see comment above. */
}

.search-results .pagination > li {
  display: block;
  list-style: none;
}

/* Random colors */
/*
.js-main-nav-color-1 .js-mobile-nav.is-active,
.js-main-nav-color-1 .js-main-nav-toggle.is-active {
  background: rgba(64, 182, 159, 1);
}

.js-main-nav-color-2 .js-mobile-nav.is-active,
.js-main-nav-color-2 .js-main-nav-toggle.is-active {
  background: rgba(163, 23, 73, 1);
}

.js-main-nav-color-3 .js-mobile-nav.is-active,
.js-main-nav-color-3 .js-main-nav-toggle.is-active {
  background: rgba(238, 113, 0, 1);
}

.js-main-nav-color-4 .js-mobile-nav.is-active,
.js-main-nav-color-4 .js-main-nav-toggle.is-active {
  background: rgba(255, 218, 0, 1);
  color: #6b6b6b;
}

.js-main-nav-color-4 .js-mobile-nav.is-active .main-nav__link,
.js-main-nav-color-4 .js-mobile-nav.is-active .main-nav__item--has-sub .main-nav-link__icon,
.js-main-nav-color-4 .js-mobile-nav.is-active  .main-nav__item--l2 {
  color: #6b6b6b!important;
}

.js-main-nav-color-4 .js-mobile-nav .flex-row > .flex-col {
  border-left: 1px rgba(107,107,107,.15) dotted;
  border-right: 1px rgba(107,107,107,.15) dotted;
  border-bottom: 1px rgba(107,107,107,.15) dotted;
}

.js-main-nav-color-4 .js-mobile-nav .main-nav__item.main-nav__item {
  border-bottom: 1px solid rgba(107,107,107,0.25);
} */

/*
 * TEASER
 */
.teaser {
  background-image: url(/fileadmin/templates/Public/Images/starkfuermenschen.de/bg-teaser.jpg);
  /* 100px = approx. height of .head */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  font-size: 0.6em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/* Shadow */
.teaser:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 15em;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.6)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}

/*
 * Circles
 */
.teaser-circle {
  position: absolute;
  text-align: center;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;

  font-family: 'ITC Officina Serif', Georgia, serif;
  color: #fff;
  font-weight: 700;

  -webkit-box-align: center;

  -ms-flex-align: center;

  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;

  padding: 3.5em;
}


/* sei dabei */
.teaser-circle--be-there {
  background: var(--color-primary);;
  width: 45vh;
  height: 45vh;
  right: -3vh;
  top: -7vh;
  justify-content: center;
  align-items: center;
}

.teaser-circle--be-there .teaser-circle__text {
  font-size: 7vh;
  padding-top: 2em;
}

/* light blue */
.teaser-circle--lightblue {
  background: #84cdf3bf;
  width: 570px;
  height: 570px;
  right: 9em;
  bottom: -15.5em;
}

.teaser-claim {
  font-family: 'ITC Officina Serif', Georgia, serif;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  position: absolute;
  bottom: 3em;
  right: 5em;
}

.teaser-claim__1 {
  color: #fff;
  font-weight: 700;
  font-size: 17em;
  transform: rotate(-4.25deg);
  position: absolute;
  top: -1em;
  right: 1em;
}

.teaser-claim__2,
.teaser-claim__3 {
  color: var(--color-primary);;
  font-size: 7em;
  transform: rotate(-4.25deg);
  position: relative;
}

.teaser-claim__2 {
  top: -0.2em;
  left: -1.7em;
}

.teaser-claim__3 {
  top: -0.4em;
  right: -1.5em;
}

.teaser-claim__4 {
  color: #494948;
  font-family: 'Myriad Pro', Arial, Helvetica, sans-serif;
  font-size: 28px;
  font-weight: 500;
  text-transform: none;
  position: relative;
  top: 0;
}

@media (max-width: 1024px) {
  .teaser-claim {
    bottom: -5em;
    right: 0;
    position: relative;
  }

  .teaser-claim__1 {
    font-size: 14em;
    top: -0.8em;
    right: 1em;
  }

  .teaser-claim__2,
  .teaser-claim__3 {
    font-size: 6em;
  }

  .teaser-claim__2 {
    top: 0;
    left: -0.8em;
  }

  .teaser-claim__3 {
    top: -0.2em;
    right: -1.1em;
  }

  .teaser-claim__4 {
    font-size: 24px;
    top: 0;
  }

  .teaser-circle--lightblue {
    width: 450px;
    height: 450px;
    right: 5em;
  }
}

@media (max-width: 800px) {
  .teaser-circle--be-there {
    width: 300px;
    height: 300px;
  }

  .teaser-circle--be-there .teaser-circle__text {
    font-size: 5em;
    padding-top: 2em;
    text-indent: -0.2em;
  }
}

@media (max-width: 480px) {
  .teaser-claim {
    bottom: -12em;
  }

  .teaser-claim__2,
  .teaser-claim__3 {
    font-size: 5.5em;
  }

  .teaser-claim__4 {
    font-size: 3em;
  }

  .teaser-circle--lightblue {
    right: 1em;
  }
}

/*
 * CTA
 */
/*
.teaser-ctas {
  position: absolute;
  bottom: 100px;
  left: 25px;
}

.teaser-cta-link {
  display: block;
  position: relative;
  text-decoration: none;
}

.teaser-cta {
  width: 27em;
  height: 27em;
  position: relative;
  padding-top: 5em;
  transition: 300ms box-shadow, 300ms transform, 300ms z-index;
  text-decoration: none;
}

.teaser-cta-link:hover .teaser-cta {
  transform: scale(1.05);
  box-shadow: 0 0 2em rgba(255, 255, 255, 1);
}

.teaser-cta__text {
  font-size: 3.2em;
  width: 100%;
  color: #fff;
  font-family: 'ITC Officina Serif', Georgia, serif;
  font-weight: 700;
  top: 90px;
  position: relative;
  left: 100px;
}

.teaser-cta--first {
  background: #009be1;
  position: absolute;
  left: 210px;
}

.teaser-cta--second {
  background: #009be180;
  position: absolute;
  top: 35px;
} */

/*
 * CTA
 */
.teaser-ctas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  bottom: -13em;
  font-size: 0.95em;
  left: 50%;
  margin-left: -23em;
}

/* Basic */
.teaser-cta {
  width: 27em;
  height: 27em;
  position: relative;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding-top: 5em;
  -webkit-transition: 300ms z-index, 300ms -webkit-box-shadow, 300ms -webkit-transform;
  transition: 300ms z-index, 300ms -webkit-box-shadow, 300ms -webkit-transform;
  transition: 300ms box-shadow, 300ms transform, 300ms z-index;
  transition: 300ms box-shadow, 300ms transform, 300ms z-index, 300ms -webkit-box-shadow, 300ms -webkit-transform;
  text-decoration: none;
}

.teaser-cta:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
  -webkit-box-shadow: 0 0 2em rgba(255, 255, 255, 1);
  box-shadow: 0 0 2em rgba(255, 255, 255, 1);
}

.teaser-cta__text {
  font-size: 2em;
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
  width: 100%;
}

/* First CTA */
.teaser-cta--first {
  background: var(--color-primary);;
  top: 3em;
}

/* Second CTA */
.teaser-cta--second {
  background: #009be180;
  left: -8em
}

.teaser-cta--second .teaser-cta__text {
  top: 1em;
  left: .75em;
  position: relative;
}

/*
 * Claim "STARK FÜR MENSCHEN"
 */
/* .teaser-claim {
  font-family: 'ITC Officina Serif', Georgia, serif;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  position: relative;
  top: -5em;
}




.teaser-claim .teaser-circle--lightblue {
  width: 70vh;
  height: 70vh;
  top: -6em;
  right: 9em;
}

.teaser-claim .teaser-circle--green {
  width: 30em;
  height: 30em;
  top: 0;
  left: -1.86em;
} */

/* Responsiveness */
@media (min-width: 385px) {
  .teaser-ctas {
    font-size: 1.35em;
  }
}

@media (min-width: 430px) {
  .teaser-ctas {
    font-size: 1.5em;
  }
}

@media (min-width: 1024px) {
  /*
  .teaser-claim {
    position: absolute;
    right: -4%;
    bottom: -2%;
    font-size: 1.5em;
    top: auto;
  }*/


  .teaser-ctas {
    left: 0;
    margin-left: 0;
  }
}

/* @media (min-width: 1280px) {
  .teaser {
    font-size: 0.7em;
  }
} */

@media (min-width: 1400px) {

  /*
  .teaser {
    font-size: 0.75em;
  }

  .teaser-claim {
    bottom: 6em;
    right: 8em;
    font-size: 1em;
  }
*/
  .teaser-ctas {
    font-size: 1em;
  }
}

/* @media (min-width: 1500px) {
  .teaser {
    font-size: 0.85em;
  }
}

@media (min-width: 1600px) {
  .teaser {
    font-size: 0.9em;
  }
}


@media (min-width: 1750px) {
  .teaser {
    font-size: 1em;
  }
}


@media (min-width: 1400px) AND (max-height: 800px) {
  .teaser-circle--purple {
    display: none !important;
  }
}

@media (min-width: 1600px) AND (max-height: 1000px) {
  .teaser-circle--purple {
    display: none !important;
  }
} */

/* Landscape/mobile */
@media (max-width: 1024px) AND (max-height: 600px) {

  /*
  .teaser {
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .teaser-claim {
    top: 5em;
    font-size: 0.6em;
    right: 2em;
  }*/
  .teaser-ctas {
    left: 0;
    margin-left: 0;
    font-size: 0.8em;
  }
}

/*
 * MAIN AREA
 */

/*
 * Sections
 */
.section {
  padding: 7rem 0;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.section__title {
  border-bottom: 0.45rem solid #40B69F;
  display: inline-block;
  padding-bottom: 1rem;
  padding-left: .5rem;
  padding-right: 1rem;
  margin-bottom: 3rem;
}

.section__text {
  margin-bottom: -1.5rem;
}

/* Text left */
.section--text-left {
  background-position-x: right;
}

.section--text-left .section__content {
  text-align: left;
}

.section--text-left .section__title {
  padding-right: 2.5rem;
}

/* Text right */
.section--text-right {
  background-position-x: left;
}

.section--text-right .section__content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  text-align: right;
}

.section--text-right .section__title {
  padding-left: 2.5rem;
}

/* Text center */
.section--text-center {
  background-position-x: center;
}

.section--text-center .section__content {
  text-align: center;
}

/* Grey */
.section--grey {
  background: #E5E5E5;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 1)), color-stop(40%, rgba(229, 229, 229, 1)), to(rgba(229, 229, 229, 1)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(229, 229, 229, 1) 40%, rgba(229, 229, 229, 1) 100%);
}

/* Ausbildung */
.section--training {
  background-image: -webkit-gradient(linear, left top, right top, color-stop(25%, rgba(255, 255, 255, 1)), color-stop(80%, rgba(255, 255, 255, 0.6))),
    url(/fileadmin/templates/Public/Images/starkfuermenschen.de/bg-training.jpg);
  background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0.6) 80%),
    url(/fileadmin/templates/Public/Images/starkfuermenschen.de/bg-training.jpg);
  content-visibility: auto;
  contain-intrinsic-size: 450px;
}

@media (min-width: 1024px) {
  .section--training {
    background-image: -webkit-gradient(linear, left top, right top, color-stop(25%, rgba(255, 255, 255, 1)), color-stop(80%, rgba(255, 255, 255, 0))),
      url(/fileadmin/templates/Public/Images/starkfuermenschen.de/bg-training.jpg);
    background-image: linear-gradient(to right, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0) 80%),
      url(/fileadmin/templates/Public/Images/starkfuermenschen.de/bg-training.jpg);
    contain-intrinsic-size: 600px;
  }
}


/* Karriere */
.section--career {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(25%, rgba(255, 255, 255, 1)), color-stop(80%, rgba(255, 255, 255, 0.7))),
    url(/fileadmin/templates/Public/Images/starkfuermenschen.de/bg-career.jpg);
  background-image: linear-gradient(to left, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0.7) 80%),
    url(/fileadmin/templates/Public/Images/starkfuermenschen.de/bg-career.jpg);
  content-visibility: auto;
  contain-intrinsic-size: 550px;
}

@media (min-width: 1024px) {
  .section--career {
    background-image: -webkit-gradient(linear, right top, left top, color-stop(25%, rgba(255, 255, 255, 1)), color-stop(80%, rgba(255, 255, 255, 0))),
      url(/fileadmin/templates/Public/Images/starkfuermenschen.de/bg-career.jpg);
    background-image: linear-gradient(to left, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0) 80%),
      url(/fileadmin/templates/Public/Images/starkfuermenschen.de/bg-career.jpg);
    contain-intrinsic-size: 850px;
  }
}

/* Ausbildung + Karriere */
@media (max-width: 1025px) {

  .section--training,
  .section--career {
    color: #333;
  }
}

/* Über uns */
.section--about-us {
  padding-right: 0;
  padding-bottom: 0;
  padding-top: 0;
  content-visibility: auto;
  contain-intrinsic-size: 550px;
}

@media (min-width: 1024px) {
  .section--about-us {
    contain-intrinsic-size: 800px;
  }
}

.section--about-us .section__text {
  padding: 5rem 0 5rem 0;
}

/* Über uns - map */
.section--about-us .about-us-map .intrinsic-ratio {
  position: relative;
  padding-bottom: 56.25%;
  /* ratio 16x9 */
  overflow: hidden;
  width: 100%;
  height: auto;
}

.section--about-us .about-us-map .intrinsic-ratio__element {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section--about-us .about-us-map .js-location-widget-map {
  width: 100%;
  height: 100%;
}

@media (min-width: 1024px) {
  .section--about-us .container {
    padding-right: 0;
  }

  .section--about-us .about-us-map .intrinsic-ratio,
  .section--about-us .about-us-map .intrinsic-ratio__element {
    position: static;
    padding-bottom: 0;
    height: 100%;
    width: 100%;
  }

  .about-us-gradient {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: -webkit-gradient(linear, left top, right top, color-stop(55%, rgba(255, 255, 255, 1)), color-stop(70%, rgba(255, 255, 255, 0)));
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 55%, rgba(255, 255, 255, 0) 70%);
    opacity: 1;
    visibility: visible;
    -webkit-transition: 500ms opacity, visibility;
    transition: 500ms opacity, visibility;
  }

  .section--about-us:hover .about-us-gradient {
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 500ms opacity, visibility;
    transition: 500ms opacity, visibility;
  }
}



/* #Mondaymotivation */
#mondaymotivation {
  content-visibility: auto;
  contain-intrinsic-size: 1400px;
}

@media (min-width: 1024px) {
  #mondaymotivation {
    contain-intrinsic-size: 870px;
  }
}

@media (max-width: 480px) {
  #mondaymotivation {
    contain-intrinsic-size: 3300px;
  }
}


.section--mondaymotivation {
  background: #E5E5E5;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 1)), color-stop(40%, rgba(229, 229, 229, 1)), to(rgba(229, 229, 229, 1)));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(229, 229, 229, 1) 40%, rgba(229, 229, 229, 1) 100%);
}


/*
 * Featured training/career items
 */
.training-item__title,
.career-item__title {
  margin-bottom: .25rem;
  font-weight: 400;
  -webkit-transition: 200ms color;
  transition: 200ms color;
}


.training-item__description,
.career-item__description {
  color: #878787;
}

@media (max-width: 1025px) {

  .training-item__description,
  .career-item__description {
    color: #333;
  }
}

.training-item__description p,
.career-item__description p {
  margin-bottom: 0;
}

.career-item-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.career-item-link:hover .career-item__title {
  color: var(--color-primary);;
}

/*
 * Featured traning item
 */
.training-item__title {
  color: #494948;
}

.training-item__icon {
  font-size: 2.4em;
  color: #A31749;
  min-width: 3.5rem;
  text-align: center;
}


/*
 * Featured career item
 */

.career-item__title {
  color: var(--color-primary);;
}


/*
 * #mondaymotivation post
 */
.mm-post {
  border-radius: 9px;
  background: #fff;
  -webkit-box-shadow: 0 0 33px rgba(0, 0, 0, 0.15);
  box-shadow: 0 0 33px rgba(0, 0, 0, 0.15);
  text-align: left;
  margin-bottom: 4em;
}


.mm-post__image {
  border-radius: 9px 9px 0 0;
  display: block;
  width: 100%;
}

.mm-post__content {
  padding: 1.4rem 1.25rem 0 1.25rem;
  font-size: 0.9em;
  overflow: hidden;
  /* Respect margin-bottom from the content, e.g. <p> */
}

.mm-post__author {
  display: block;
  color: var(--color-primary);;
  font-weight: 700;
}

.mm-post-link {
  text-decoration: none;
  color: #555;
  display: block;
}


.mm-post,
.button-circle {
  -webkit-transition: 200ms all ease-out;
  transition: 200ms all ease-out;
}

.mm-post:hover,
.button-circle:hover,
.button-circle--text:hover + .button-circle {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}


/* Accordion */
.accordion-item + .accordion-item {
  margin-top: 1.5rem;
}

.accordion-item {
  position: relative;
}

.accordion-item__header {
  display: flex;
  align-items: center;
  border-radius: 10px;
  position: relative;
  background-color: #878787;
}

.accordion-item--active,
.accordion-item__header:hover {
  background-color: var(--color-primary);;
}

.accordion-item__title {
  width: 100%;
  margin-left: 1rem;
}

.accordion-item__icon {
  margin-left: -18px;
  margin-top: -10px;
  margin-bottom: -10px;
  font-size: 1.75rem;
  line-height: 0;
  padding: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.accordion-item__header::before {
  content: '';
  position: absolute;
  height: 100%;
  left: 0;
}

.accordion-item__icon,
.accordion-item__header::before {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  background-color: #878787;
  width: 100%;
  max-width: 50px;
}

.accordion-item__panel {
  background-color: #bce4fa;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border: none;
}

.accordion-item--active + .accordion-item__panel {
  border-top: none;
}

.js-magnificPopup {
  text-decoration: none;
}

.image-caption {
  color: var(--color-primary);;
  font-size: .85rem;
}

.media-top {
  margin-top: 1.5rem;
  margin-bottom: -1.5rem;
}

.media-intext > .accordion-item__media > .flex-row > .flex-col:last-child {
  padding-bottom: 0;
}

.accordion-item__media .video-embed-item {
  border: none;
  aspect-ratio: 16/9;
  height: 100%;
  width: 100% !important;
}

.page--standard .main-content > .section > .container > div[id^=c],
.main-content > .section > .container > a[id^=c] {
  margin-bottom: 3rem;
}

.page--standard .main-content > .section > .container > div[id^=c]:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .accordion-item__title {
    font-size: 1.5rem;
    font-weight: bold;
  }

  .accordion-item__icon {
    font-size: 2.75rem;
  }

  .accordion-item__icon,
  .aaccordion-item__header::before {
    max-width: 70px;
  }
}

@media (min-width: 1600px) {

  .accordion-item__icon,
  .aaccordion-item__header::before {
    max-width: 90px;
  }
}

/*
 * Location
 */
.location__image {
  display: block;
  width: 100%;
}

@media (min-width: 640px) {
  .location__data {
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
  }

  .location__address {
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    white-space: nowrap;
    margin-right: 3rem;
    -ms-flex-item-align: start;
    align-self: flex-start;
  }

  .location__map {
    -ms-flex: 1 1;
    -webkit-box-flex: 1;
    flex: 1 1;
  }
}

/* Description */
.location__description h1,
.location__description h2,
.location__description h3,
.location__description h4 {
  font-size: 1.25rem;
  color: #666;
  margin-bottom: .25rem;
}

.location__map-ratio {
  padding-bottom: 80%;
}



/*
 * Location widget
 */

/* Preview */
.location-widget {
  text-align: center;
}

q-widget__link {
  display: block;
}

.location-widget__thumbnail {
  aspect-ratio: 640/407;
}

.location-widget__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(3px);
  background-color: rgba(255 255 255 / 50%);
}

.location-widget__overlay-text {
  position: absolute;
  top: 45%;
  left: 0;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .sidebar .location-widget__overlay-text {
    top: 25%;
  }
}

.location-widget__overlay-link {
  display: block;
  color: #fff;
  border-radius: inherit;
}

/* Lightbox content */
.location-widget__map {
  margin: 0 auto;
  max-width: 1024px;
  display: block;
  height: 100%;
}

/* Inline Map*/
.intrinsic-ratio {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  width: 100%;
  height: auto;
}

.intrinsic-ratio__element {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}

.js-location-widget-map {
  width: 100%;
  height: 100%;
}
/*
 * MAgnific popup
 */
.mfp-content {
  max-width: 1024px;
  margin: 0 auto;
}

.mfp-close {
  width: 40px !important;
  height: 40px;
  font-size: 2.5rem;
}

.mfp-img {
  padding-top: 0;
}

/*Lazy Load*/
.image {
  position: relative;
}

.lazy-load-bg {
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}

.lazy-load-image {
  filter: blur(8px);
  -webkit-filter: blur(8px);
}

.lazy-load-image--over {
  position: absolute;
  left: 0;
  top: 3px;
}


/* Gallery */
.image a {
  border-bottom: none;
  text-decoration: none;
  background-color: rgba(0, 183, 159, 0);
  display: inline-block;
  position: relative;
}

.image a:hover {
  background-color: rgba(0, 183, 159, 1);
}

.image a:hover img.image-embed-item {
  opacity: .6;
  -webkit-transition: .125s opacity ease;
  -o-transition: .125s opacity ease;
  transition: .125s opacity ease;
}

.image a:after {
  content: '\f0c1';
  font-size: 1.25rem;
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  color: rgba(255, 255, 255, .4);
  font-weight: 300;
  -webkit-transition: .125s all ease;
  -o-transition: .125s all ease;
  transition: .125s all ease;
  bottom: .5rem;
  left: .5rem;

  background-color: rgba(0, 183, 159, .25);
  padding: 0.5rem;
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  line-height: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.image a:hover:after {
  color: rgba(255, 255, 255, 1);
  background-color: rgba(0, 183, 159, 1);
}


/* Columns */
.frame-two-columns .ce-below .ce-gallery img,
.frame-two-columns .ce-above .ce-gallery img {
  width: 100%;
}

@media (min-width: 768px) {

  .frame-two-columns .ce-textpic,
  .accordion-item__content--2cols {
    column-count: 2;
    column-gap: 2rem;
  }
}

.video .video-shariff-play img,
.video .video-embed-item {
  max-width: 1480px;
}

.video .video-shariff-play img {
  width: 100% !important;
}

/*
 * News
 */
.news-list .article {
  border: 4px solid var(--color-primary);;
  border-radius: 30px;
  padding: 20px;
  box-sizing: border-box;
  margin: 25px 0;
  display: grid;
  grid-template:
    "body media" auto
    "more more" auto /
    auto 200px;
  gap: 0.5em 2em;
}

.news-list--latest .article {
  grid-template:
    "media body" auto
    "more more" auto /
    auto auto;
  gap: 0.5em 2em;
}

.news-list .article__media-wrap {
  grid-area: media;
}

.news-list .article__body {
  grid-area: body;
}

.news-list .article__title {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.news-list .article__title-link {
  text-decoration: none;
}

.news-list .article__title-link:hover {
  text-decoration: underline;
}

.news-list time {
  margin-bottom: 0.5rem;
  display: block;
}

.news-list .button {
  grid-area: more;
  font-weight: 600;
  font-size: 1.4em;
  padding: 0.5em 1em;
}

.news-list .button--more-news {
  margin: 0 auto;
  display: block;
}

.news-list--latest .to-news-list {
  font-weight: 600;
}

.news-list--latest .to-news-list:hover {
  text-decoration: none;
}

.news-detail .article__meta {
  margin-bottom: 1em;
}

.news-detail .article__media-wrap {
  float: left;
}

.news-detail .article__media-item {
  display: table;
  margin-right: 1.5rem;
}

.news-detail .article__media-caption {
  display: table-caption;
  caption-side: bottom;
  padding: 0.5em;
}

@media screen and (max-width: 500px) {
  .news-list .article {
    grid-template:
      "body" auto
      "media" auto
      "more" auto
      / auto;
  }

  .article__media-wrap.media__object {
    justify-self: center;
  }
}

@media screen and (max-width:550px) {
  .news-detail .article__media-wrap {
    float: none;
    display: block;
  }

  .news-detail .article__media-item {
    margin: 0 auto;
  }
}

/*
 * FOOTER
 */
.foot {
  background: #fff;
  color: #494948;
  padding: 2.5rem 0;
  text-align: center;
  content-visibility: auto;
  contain-intrinsic-size: 80px;
}

.foot address {
  margin-bottom: 0;
}

.foot a {
  color: inherit;
  text-decoration: none;
}

.foot .flex-col {
  margin-bottom: 1.5rem;
}

.foot .flex-col:last-child {
  margin-bottom: 0;
}


@media (min-width: 1024px) {
  .foot {
    text-align: left;
  }

  .foot .flex-col {
    margin-bottom: 0;
  }
}


/*
 * Foot navigation
 */
.fnav__item:before {
  content: '|';
  display: inline-block;
  margin: 0 0.25rem;
}

.fnav__item:first-child:before {
  content: none;
}

.fnav__link {
  padding: 0.25rem;
}


/*
 * Social navigation
 */
.social-nav__item {
  margin-left: 0.5rem;
}

.social-nav__item:first-child {
  margin-left: 0;
}

.social-nav__link {
  width: 2.4rem;
  height: 2.4rem;
  background: #999999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 50%;
  -webkit-transition: 100ms background;
  transition: 100ms background;
}

.social-nav__link:hover {
  -webkit-transition: 100ms background;
  transition: 100ms background;
}

.social-nav__link--fb:hover {
  background: #3b5998;
}

.social-nav__link--tw:hover {
  background: #1da1f2;
}

.social-nav__link--ig:hover {
  background: linear-gradient(2deg, rgba(252, 175, 69, 1) 0%, rgba(225, 48, 108, 1) 50%, rgba(131, 58, 180, 1) 100%);
}

.social-nav__link--li:hover {
  background: #0077b5;
}

.social-nav__link--kununu:hover {
  background: #ced338;
}

.social-nav__link--yt:hover {
  background: #cd201f;
}


.social-nav__icon {
  color: #fff;
  font-size: 1.4rem;
}

/*
 * Powermail: Global styles
 */

.powermail_fieldset legend {
  display: none;
}

.powermail_fieldwrap_type_check > .powermail_label {
  color: #666;
}

.powermail_field_description {
  font-style: italic;
  color: gray;
  display: inline-block;
  padding-left: 0;
  font-size: 95%;
}

/* Multi-step button tabs */
.powermail_morestep fieldset {
  padding-top: 2rem;
}

.powermail_morestep .btn-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.powermail_morestep .btn-group .button {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.powermail_morestep .btn-group .button.error {
  background: #e05454;
  color: #fff;
}

.powermail_morestep .btn-group .button--primary.error {
  background: #d50000;
}

/* Checkboxes */
.powermail_fieldwrap_type_check > .powermail_field > .checkbox {
  display: block;
}



/*
 * Powermail: Form layouts
 */

/* ... */


/*
 * Powermail: Page layouts
 */

/* ... */


/*
 * Powermail: Field layouts
 */

/* "Hide label" */
.hide-label > .powermail_label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
}

.hide-label > .powermail_label + br {
  display: none;
}

/* "Larger label" */
.larger-label > .powermail_label {
  color: #666;
  font-weight: 700;
}


/*
 * Global form errors
 *  - Input, textarea and select error style
 *  - Input error message list(s)
 *
 * The error message list(s) is expected to be exactly below the field with
 * an input error.
 */
.input-error,
.input-success {
  outline: none;
}

.input-error,
.input-error-messages {
  color: #d50000;
}

.input-error {
  border-color: #d50000;
  /* Images/input-error.svg */
  background: url(data:image/svg+xml;base64,PHN2ZyB2aWV3Qm94PSIwIDAgMTQgMTMiIHdpZHRoPSIxNCIgaGVpZ2h0PSIxMyIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48cGF0aCBkPSJNNy45OTEgMTAuNzRhLjI1Ny4yNTcgMCAwIDEtLjI1LjI2SDYuMjQzYS4yNTcuMjU3IDAgMCAxLS4yNS0uMjZWOS4yNmEuMjU3LjI1NyAwIDAgMSAuMjUtLjI2aDEuNDk4Yy4xNC4wMDMuMjUyLjEyLjI1LjI2djEuNDh6bS0uMDEtMi45MmEuMjU0LjI1NCAwIDAgMS0uMjcuMThINi4yNjNhLjIyOC4yMjggMCAwIDEtLjI2LS4xOGwtLjE0LTMuNTdhLjI0Ni4yNDYgMCAwIDEgLjA4LS4xNy40MDYuNDA2IDAgMCAxIC4xOS0uMDhoMS43MThjLjA2OS4wMS4xMzQuMDM3LjE5LjA4YS4xOS4xOSAwIDAgMSAuMDguMTVsLS4xNCAzLjU5em0tLjExLTcuM2ExLjAwNSAxLjAwNSAwIDAgMC0xLjc1OCAwbC02LjAwMyAxMUExLjAwMiAxLjAwMiAwIDAgMCAuOTg5IDEzaDEyLjAwNmMuMzU1IDAgLjY4NS0uMTg2Ljg2OS0uNDkuMTc4LS4zMDUuMTgxLS42ODIuMDEtLjk5TDcuODcxLjUyeiIgZmlsbD0iI2Q1MDAwMCIvPjwvc3ZnPg==) no-repeat calc(100% - 1rem) center;
  margin-bottom: .25rem;
  padding-right: 2.441rem;
}

/*
 * Global form success
 */
.input-success {
  border-color: #79b774;
  color: #79b774;
  background: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMi4wOSIgaGVpZ2h0PSI5LjI4IiB2aWV3Qm94PSIwIDAgMTIuMDkgOS4yOCI+PHBhdGggaWQ9Il8iIGRhdGEtbmFtZT0i74CMIiBjbGFzcz0iY2xzLTEiIGQ9Ik0yOTIwLjA3IDIxMTcuNDdhLjc0OS43NDkgMCAwIDAtLjIyLS41M2wtMS4wNi0xLjA3YS43OTEuNzkxIDAgMCAwLS41NC0uMjIuNzY3Ljc2NyAwIDAgMC0uNTMuMjJsLTUuMTIgNS4xNC0yLjMtMi4zMWEuNzY3Ljc2NyAwIDAgMC0uNTMtLjIyLjc0OS43NDkgMCAwIDAtLjUzLjIybC0xLjA2IDEuMDZhLjc2Ljc2IDAgMCAwIDAgMS4wN2wyLjgyIDIuODIgMS4wNyAxLjA3YS43NDkuNzQ5IDAgMCAwIC41My4yMi43NjcuNzY3IDAgMCAwIC41My0uMjJsMS4wNi0xLjA3IDUuNjYtNS42NWEuNzY3Ljc2NyAwIDAgMCAuMjItLjUzeiIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoLTI5MDcuOTcgLTIxMTUuNjYpIiBmaWxsPSIjNzliNzc0IiAvPjwvc3ZnPg==) no-repeat calc(100% - 1rem) center;
  margin-bottom: .25rem;
  padding-right: 2.441rem;
}

/*
 * PRINT
 */
@media print {

  /*
   * GENERAL
   */
  html {
    color: #000;
    /* Saves ink. */
  }
}

/* CookieHub */
.ch2-btn.ch2-deny-all-btn.ch2-btn-primary {
  background: #333;
}

.ch2-btn.ch2-deny-all-btn.ch2-btn-primary:hover {
  background: #1a1a1a;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
}

.ch2-btn.ch2-open-settings-btn.ch2-btn-transparent {
  background: var(--color-primary);;
  color: #fff;
  border: 0 none;
}

.ch2-btn.ch2-open-settings-btn.ch2-btn-transparent:hover {
  box-shadow: 0px 0px 20px 0 #009be166;
  color: #fff;
  border: 0 none;
}

.frame-type-textmedia.frame-layout-instagram .ce-gallery img {
  max-width: 100% !important;
  max-height: 100% !important;
}

@media (max-width: 600px) {
  .frame-type-textmedia.frame-layout-instagram {
    margin: 0 -1rem;
  }

  .frame-type-textmedia.frame-layout-instagram .ce-gallery .ce-row {
    margin-left: -2px;
  }

  .frame-type-textmedia.frame-layout-instagram .ce-gallery .ce-column {
    padding-left: 2px;
    margin-bottom: 2px;
    box-sizing: border-box;
  }

  .frame-type-textmedia.frame-layout-instagram .ce-gallery .ce-row:last-child .ce-column:last-child {
    margin-bottom: 2px;
  }

  .frame-type-textmedia.frame-layout-instagram .ce-gallery[data-ce-columns="3"] .ce-row,
  .ce-gallery[data-ce-columns="2"] .ce-row,
  .ce-nowrap .ce-gallery[data-ce-columns="1"] .ce-row {
    -ms-flex-direction: row;
    flex-direction: row;
  }

  .frame-type-textmedia.frame-layout-instagram .image a:after {
    bottom: 0;
    left: 0;
    transform: scale(.75);
  }

  .page--standard-no-header .main-content .section {
    padding: 1.5rem 0 0 0;
  }

  .page--standard-no-header .logo,
  .logo__image {
    width: 50px;
  }
}