@charset "UTF-8";
/* poppins-300 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  src: url("../fonts/poppins-v24-latin-300.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/poppins-v24-latin-regular.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-italic - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: italic;
  font-weight: 400;
  src: url("../fonts/poppins-v24-latin-italic.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/poppins-v24-latin-500.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/poppins-v24-latin-600.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-700 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/poppins-v24-latin-700.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-800 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/poppins-v24-latin-800.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* poppins-900 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: "Poppins";
  font-style: normal;
  font-weight: 900;
  src: url("../fonts/poppins-v24-latin-900.woff2") format("woff2"); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* Vars */
/* $gutter: 30px;
$gutter-medium: 50px;
$gutter-large: 60px;
$gutter-xlarge: 80px; */
:root {
  --color-primary: #0a0a0a;
  --color-primary-darker: #000;
  --color-primary-lighter: #333;
  --color-secondary: #f6310c;
  --color-accent: #f6310c;
  --color-accent-darker: #c82809;
  --color-blue: #006be2;
  --color-muted: #eee;
  --red: #cc2e1c;
  --yellow: #fecc00;
  --green: #95c11c;
  --text-color: #000;
  --text-muted-color: #777;
  --gutter-section: 50px;
  --gutter-section-small: 30px;
}
@media (min-width: 960px) {
  :root {
    --gutter-section: 80px;
  }
}
@media (min-width: 1600px) {
  :root {
    --gutter-section: 100px;
  }
}

/* Accessibility Styles */
/* Screen reader only utility class */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Skip links */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100000;
  border-radius: 0 0 4px 0;
  transition: top 0.3s;
}
.skip-link:focus-visible {
  top: 0;
}

/* Fix for aria-hidden elements containing focusable descendants */
*[aria-hidden=true] a[href],
*[aria-hidden=true] area[href],
*[aria-hidden=true] input:not([disabled]),
*[aria-hidden=true] select:not([disabled]),
*[aria-hidden=true] textarea:not([disabled]),
*[aria-hidden=true] button:not([disabled]),
*[aria-hidden=true] [tabindex]:not([disabled]),
*[aria-hidden=true] [contenteditable=true]:not([disabled]) {
  visibility: hidden;
}

/* Focus visible styles for better keyboard navigation */
a:focus-visible,
button:focus-visible,
.button:focus-visible,
#page-header .header-icons .account .dropdown button:focus-visible,
.ce_rsce_linkbox.layout-min * .button:focus-visible,
.ce_rsce_linkbox.layout-min * input[type=submit]:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible,
[role=button]:focus-visible {
  outline: 2px solid var(--color-secondary) !important;
  outline-offset: 2px;
}

/* Remove default focus for mouse users */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
.button:focus:not(:focus-visible),
#page-header .header-icons .account .dropdown button:focus:not(:focus-visible),
.ce_rsce_linkbox.layout-min * input[type=submit]:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible),
[tabindex]:focus:not(:focus-visible),
[role=button]:focus:not(:focus-visible) {
  outline: none;
}

/* Globals */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 21px;
  line-height: 1.4;
  color: var(--text-color);
  word-break: break-word;
}
p,
ul,
ol,
dl,
address,
fieldset,
figure {
  font-style: normal;
}
p:not(:first-child),
ul:not(:first-child),
ol:not(:first-child),
dl:not(:first-child),
address:not(:first-child),
fieldset:not(:first-child),
figure:not(:first-child) {
  margin-top: 20px;
}

ul, ol {
  padding-left: 20px;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-weight: 700;
  line-height: 1.1;
  text-rendering: optimizeLegibility;
  word-break: break-word;
  color: var(--text-color);
  text-transform: uppercase;
}
h1:not(:first-child), h2:not(:first-child), h3:not(:first-child), h4:not(:first-child), h5:not(:first-child), h6:not(:first-child),
.h1:not(:first-child), .h2:not(:first-child), .h3:not(:first-child), .h4:not(:first-child), .h5:not(:first-child), .h6:not(:first-child) {
  margin-top: 40px;
}
h1 > span, h2 > span, h3 > span, h4 > span, h5 > span, h6 > span,
.h1 > span, .h2 > span, .h3 > span, .h4 > span, .h5 > span, .h6 > span {
  font-size: 0.8em;
  font-weight: 300;
}

h1, .h1 {
  font-size: 48px;
  line-height: 1;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 40px;
}
h1:after, .h1:after {
  content: "";
  display: block;
  background: var(--color-secondary);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 5px;
}
@media (min-width: 960px) {
  h1, .h1 {
    padding-bottom: 30px;
    font-size: 66px;
  }
}
h2, .h2 {
  font-size: 42px;
  padding-bottom: 15px;
  margin-bottom: 30px;
  position: relative;
}
h2:after, .h2:after {
  content: "";
  display: block;
  background: var(--color-secondary) !important;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 120px;
  height: 5px;
}
.text-center h2:after, .text-center .h2:after {
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 960px) {
  h2, .h2 {
    padding-bottom: 25px;
    font-size: 50px;
  }
}

h3, .h3 {
  font-size: 36px;
}

h4, .h4 {
  font-size: 28px;
}

h5, .h5 {
  font-size: 24px;
  text-transform: uppercase;
}

h6, .h6 {
  font-size: 21px;
  color: var(--color-accent) !important;
  text-transform: uppercase;
}

blockquote p {
  font-style: italic;
  text-align: center;
  font-size: 30px;
  color: var(--color-primary);
  line-height: 1.4;
}
blockquote p:last-child {
  font-size: 18px;
  color: var(--text-color);
  font-style: normal;
}
blockquote:not(:first-child) {
  margin-top: 15px;
}

hr {
  border: 0;
  height: 1px;
  background: #e6e6e6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--text-color);
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  color: #333;
}

::-moz-selection {
  background: var(--color-primary);
  color: #fff;
  text-shadow: none;
}

::selection, mark {
  background: var(--color-primary);
  color: #fff;
  text-shadow: none;
}

small {
  font-size: 16px;
}

strong, b {
  font-weight: 600;
}

abbr {
  text-decoration: none;
}

iframe {
  border: 0;
}

::-webkit-input-placeholder {
  color: #444;
  font-size: 18px;
}

::-moz-placeholder {
  color: #444;
  font-size: 18px;
}

:-ms-input-placeholder {
  color: #444;
  font-size: 18px;
}

:-moz-placeholder {
  color: #444;
  font-size: 18px;
}

/* Layout */
.container, .ce_rsce_video .content {
  padding: 0 15px;
  margin: 0 auto;
  max-width: 1280px;
}
@media (min-width: 960px) {
  .container, .ce_rsce_video .content {
    padding: 0 30px;
  }
}
.container.small, .ce_rsce_video .small.content {
  max-width: 1040px;
}
.container.large, .ce_rsce_video .large.content {
  max-width: 1480px;
}

.grid, .trainer-list, .mod_registration .formbody, .mod_personalData .formbody, form > div, .ce_rsce_logos .inner, .ce_rsce_team > div, .ce_rsce_haendler .haendler, .content-gallery ul, .rs-columns {
  display: flex;
  flex-wrap: wrap;
  margin: -7.5px;
}
.grid > *, .trainer-list > *, .mod_registration .formbody > *, .mod_personalData .formbody > *, form > div > *, .ce_rsce_logos .inner > *, .ce_rsce_team > div > *, .ce_rsce_haendler .haendler > *, .content-gallery ul > *, .rs-columns > * {
  width: 100%;
  padding: 7.5px;
}
@media (min-width: 960px) {
  .grid, .trainer-list, .mod_registration .formbody, .mod_personalData .formbody, form > div, .ce_rsce_logos .inner, .ce_rsce_team > div, .ce_rsce_haendler .haendler, .content-gallery ul, .rs-columns {
    margin: -30px;
  }
  .grid > *, .trainer-list > *, .mod_registration .formbody > *, .mod_personalData .formbody > *, form > div > *, .ce_rsce_logos .inner > *, .ce_rsce_team > div > *, .ce_rsce_haendler .haendler > *, .content-gallery ul > *, .rs-columns > * {
    padding: 30px;
  }
  .grid.divider, .divider.trainer-list, .mod_registration .divider.formbody, .mod_personalData .divider.formbody, form > div.divider, .ce_rsce_logos .divider.inner, .ce_rsce_team > div.divider, .ce_rsce_haendler .divider.haendler, .content-gallery ul.divider, .divider.rs-columns {
    overflow: hidden;
  }
  .grid.divider > *, .divider.trainer-list > *, .mod_registration .divider.formbody > *, .mod_personalData .divider.formbody > *, form > div.divider > *, .ce_rsce_logos .divider.inner > *, .ce_rsce_team > div.divider > *, .ce_rsce_haendler .divider.haendler > *, .content-gallery ul.divider > *, .divider.rs-columns > * {
    padding: 30px 50px;
    position: relative;
  }
  .grid.divider > *:after, .divider.trainer-list > *:after, .mod_registration .divider.formbody > *:after, .mod_personalData .divider.formbody > *:after, form > div.divider > *:after, .ce_rsce_logos .divider.inner > *:after, .ce_rsce_team > div.divider > *:after, .ce_rsce_haendler .divider.haendler > *:after, .content-gallery ul.divider > *:after, .divider.rs-columns > *:after {
    position: absolute;
    content: "";
    display: block;
    top: 30px;
    bottom: 30px;
    right: -1px;
    width: 1px;
    background: #ddd;
  }
}
@media (min-width: 960px) {
  .grid.gutter-small, .gutter-small.trainer-list, .mod_registration .formbody, .mod_personalData .formbody, form > div, .ce_rsce_logos .inner, .ce_rsce_team > div.gutter-small, form.ce_rsce_team > div, .ce_rsce_haendler .haendler, .content-gallery ul, .gutter-small.rs-columns, form > div.rs-columns {
    margin: -7.5px;
  }
  .grid.gutter-small > *, .gutter-small.trainer-list > *, .mod_registration .formbody > *, .mod_personalData .formbody > *, form > div > *, .ce_rsce_logos .inner > *, .ce_rsce_team > div.gutter-small > *, form.ce_rsce_team > div > *, .ce_rsce_haendler .haendler > *, .content-gallery ul > *, .gutter-small.rs-columns > *, form > div.rs-columns > * {
    padding: 7.5px;
  }
}
.grid.center, .center.trainer-list, .mod_registration .center.formbody, .mod_personalData .center.formbody, form > div.center, .ce_rsce_logos .center.inner, .ce_rsce_team > div.center, .ce_rsce_haendler .center.haendler, .content-gallery ul.center, .center.rs-columns {
  align-items: center;
}
.grid, .trainer-list, .mod_registration .formbody, .mod_personalData .formbody, form > div, .ce_rsce_logos .inner, .ce_rsce_team > div, .ce_rsce_haendler .haendler, .content-gallery ul, .rs-columns {
  /* @include respond-to($breakpoint-large) {
    margin: -30px;

    & > * {
      padding: 30px;
    }
  } */
}

.w-1-2 {
  width: 50%;
}

.w-1-3 {
  width: 33.333333%;
}

.w-2-3 {
  width: 66.666666%;
}

@media (min-width: 640px) {
  .w-1-2\@s, .ce_rsce_carousel .item, .ce_rsce_linkbox2 .item, .ce_rsce_haendler .haendler .item, .content-gallery ul li {
    width: 50%;
  }
  .w-1-3\@s {
    width: 33.33333%;
  }
  .w-2-3\@s {
    width: 66.66666%;
  }
  .w-1-4\@s {
    width: 25%;
  }
  .w-3-4\@s {
    width: 75%;
  }
  .w-1-5\@s {
    width: 20%;
  }
  .w-2-5\@s {
    width: 40%;
  }
  .w-3-5\@s {
    width: 60%;
  }
  .w-4-5\@s {
    width: 80%;
  }
}
@media (min-width: 960px) {
  .w-1-2\@m, .content-gallery.content-gallery--cols-2 ul li {
    width: 50%;
  }
  .w-1-3\@m, .ce_rsce_carousel .item, .ce_rsce_linkbox2 .item, .ce_rsce_haendler .haendler .item, .content-gallery ul li {
    width: 33.33333%;
  }
  .w-2-3\@m {
    width: 66.66666%;
  }
  .w-1-4\@m, .content-gallery.content-gallery--cols-4 ul li {
    width: 25%;
  }
  .w-3-4\@m {
    width: 75%;
  }
  .w-1-5\@m {
    width: 20%;
  }
  .w-2-5\@m {
    width: 40%;
  }
  .w-3-5\@m {
    width: 60%;
  }
  .w-4-5\@m {
    width: 80%;
  }
}
@media (min-width: 1200px) {
  .w-1-2\@l {
    width: 50%;
  }
  .w-1-3\@l {
    width: 33.33333%;
  }
  .w-2-3\@l {
    width: 66.66666%;
  }
  .w-1-4\@l, .ce_rsce_carousel .item, .ce_rsce_linkbox2 .item, .ce_rsce_haendler .haendler .item {
    width: 25%;
  }
  .w-3-4\@l {
    width: 75%;
  }
  .w-1-5\@l {
    width: 20%;
  }
  .w-2-5\@l {
    width: 40%;
  }
  .w-3-5\@l {
    width: 60%;
  }
  .w-4-5\@l {
    width: 80%;
  }
}
@media (min-width: 1600px) {
  .w-1-2\@xl {
    width: 50%;
  }
  .w-1-3\@xl {
    width: 33.33333%;
  }
  .w-2-3\@xl {
    width: 66.66666%;
  }
  .w-1-4\@xl {
    width: 25%;
  }
  .w-3-4\@xl {
    width: 75%;
  }
  .w-1-5\@xl {
    width: 20%;
  }
  .w-2-5\@xl {
    width: 40%;
  }
  .w-3-5\@xl {
    width: 60%;
  }
  .w-4-5\@xl {
    width: 80%;
  }
}
/* Tools */
.text-center {
  text-align: center;
}

.bg-primary {
  background: var(--color-primary);
}

.bg-secondary {
  background: var(--color-secondary);
}

.bg-muted {
  background: var(--color-muted);
}

.bg-darkgray {
  background: #6e6e6e;
}

.bg-blue {
  background: var(--color-blue);
}

.inverse, .modal, footer#social, footer#page-footer, .ce_rsce_video .content, .ce_rsce_team_home .text, #content .ce_rsce_quote, .ce_rsce_linkbox2, .ce_rsce_linkbox.layout-min * .button, .ce_rsce_linkbox.layout-min #page-header .header-icons .account .dropdown button, #page-header .header-icons .account .ce_rsce_linkbox.layout-min .dropdown button, .ce_rsce_linkbox.layout-min * input[type=submit] {
  color: #fff;
}
.inverse *, .modal *, footer#social *, footer#page-footer *, .ce_rsce_video .content *, .ce_rsce_team_home .text *, #content .ce_rsce_quote *, .ce_rsce_linkbox2 *, .ce_rsce_linkbox.layout-min * .button *, .ce_rsce_linkbox.layout-min #page-header .header-icons .account .dropdown button *, #page-header .header-icons .account .ce_rsce_linkbox.layout-min .dropdown button *, .ce_rsce_linkbox.layout-min * input[type=submit] * {
  color: #fff;
}
.inverse a:hover, .modal a:hover, footer#social a:hover, footer#page-footer a:hover, .ce_rsce_video .content a:hover, .ce_rsce_team_home .text a:hover, #content .ce_rsce_quote a:hover, .ce_rsce_linkbox2 a:hover, .ce_rsce_linkbox.layout-min * .button a:hover, .ce_rsce_linkbox.layout-min #page-header .header-icons .account .dropdown button a:hover, #page-header .header-icons .account .ce_rsce_linkbox.layout-min .dropdown button a:hover, .ce_rsce_linkbox.layout-min * input[type=submit] a:hover {
  text-decoration: underline;
}

.padding {
  padding: var(--gutter-section);
}

.padding-vertical, footer#page-footer {
  padding: var(--gutter-section) 0;
}

.margin-vertical, hr, .section, #content .block {
  margin-top: var(--gutter-section);
  margin-bottom: var(--gutter-section);
}

.visible\@s,
.visible\@m,
.visible\@l,
.visible\@xl {
  display: none !important;
}

@media (min-width: 640px) {
  .visible\@s {
    display: initial !important;
  }
  .hidden\@s {
    display: none;
  }
}
@media (min-width: 960px) {
  .visible\@m {
    display: initial;
  }
  .hidden\@m {
    display: none;
  }
}
@media (min-width: 1200px) {
  .visible\@l {
    display: initial;
  }
  .hidden\@l {
    display: none;
  }
}
@media (min-width: 1600px) {
  .visible\@xl {
    display: initial;
  }
  .hidden\@xl {
    display: none;
  }
}
/* Buttons */
*:not(p).button, #page-header .header-icons .account .dropdown button:not(p), .ce_rsce_linkbox.layout-min * *.button:not(p), .ce_rsce_linkbox.layout-min * input[type=submit]:not(p), input[type=submit]:not(p), button:not(.flickity-button):not(.fancybox-button), p.button > a, .ce_rsce_linkbox.layout-min * p.button > a {
  font-family: inherit;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.1;
  outline: none;
  cursor: pointer;
  display: inline-block;
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
  border-radius: 6px;
  padding: 12px 28px;
  transition: all ease-in-out 0.15s;
  text-decoration: none;
  margin-right: 8px;
  text-align: center;
  word-break: break-word;
  position: relative;
}
*:not(p).button:hover, #page-header .header-icons .account .dropdown button:not(p):hover, .ce_rsce_linkbox.layout-min * *.button:not(p):hover, .ce_rsce_linkbox.layout-min * input[type=submit]:not(p):hover, input[type=submit]:not(p):hover, button:not(.flickity-button):not(.fancybox-button):hover, p.button > a:hover, .ce_rsce_linkbox.layout-min * p.button > a:hover {
  text-decoration: none !important;
  background: var(--color-primary);
  color: #fff;
}
.inverse *:not(p).button, .modal *:not(p).button, footer#social *:not(p).button, footer#page-footer *:not(p).button, .inverse #page-header .header-icons .account .dropdown button:not(p), .modal #page-header .header-icons .account .dropdown button:not(p), footer#social #page-header .header-icons .account .dropdown button:not(p), footer#page-footer #page-header .header-icons .account .dropdown button:not(p), #page-header .header-icons .account .dropdown .inverse button:not(p), #page-header .header-icons .account .dropdown .modal button:not(p), #page-header .header-icons .account .dropdown footer#social button:not(p), #page-header .header-icons .account .dropdown footer#page-footer button:not(p), .ce_rsce_video .content *:not(p).button, .ce_rsce_video .content #page-header .header-icons .account .dropdown button:not(p), #page-header .header-icons .account .dropdown .ce_rsce_video .content button:not(p), .ce_rsce_team_home .text *:not(p).button, .ce_rsce_team_home .text #page-header .header-icons .account .dropdown button:not(p), #page-header .header-icons .account .dropdown .ce_rsce_team_home .text button:not(p), #content .ce_rsce_quote *:not(p).button, #content .ce_rsce_quote #page-header .header-icons .account .dropdown button:not(p), #page-header .header-icons .account .dropdown #content .ce_rsce_quote button:not(p), .ce_rsce_linkbox2 *:not(p).button, .ce_rsce_linkbox2 #page-header .header-icons .account .dropdown button:not(p), #page-header .header-icons .account .dropdown .ce_rsce_linkbox2 button:not(p), .inverse input[type=submit]:not(p), .modal input[type=submit]:not(p), footer#social input[type=submit]:not(p), footer#page-footer input[type=submit]:not(p), .ce_rsce_video .content input[type=submit]:not(p), .ce_rsce_team_home .text input[type=submit]:not(p), #content .ce_rsce_quote input[type=submit]:not(p), .ce_rsce_linkbox2 input[type=submit]:not(p), *:not(p).button.inverse, *.modal:not(p).button, footer#social:not(p).button, footer#page-footer:not(p).button, #page-header .header-icons .account .dropdown button:not(p).inverse, #page-header .header-icons .account .dropdown button.modal:not(p), .ce_rsce_video *.content:not(p).button, .ce_rsce_video #page-header .header-icons .account .dropdown button.content:not(p), #page-header .header-icons .account .dropdown .ce_rsce_video button.content:not(p), .ce_rsce_team_home *.text:not(p).button, .ce_rsce_team_home #page-header .header-icons .account .dropdown button.text:not(p), #page-header .header-icons .account .dropdown .ce_rsce_team_home button.text:not(p), #content *.ce_rsce_quote:not(p).button, #content #page-header .header-icons .account .dropdown button.ce_rsce_quote:not(p), #page-header .header-icons .account .dropdown #content button.ce_rsce_quote:not(p), *.ce_rsce_linkbox2:not(p).button, #page-header .header-icons .account .dropdown button.ce_rsce_linkbox2:not(p), .ce_rsce_linkbox.layout-min * *:not(p).button, .ce_rsce_linkbox.layout-min #page-header .header-icons .account .dropdown button:not(p), #page-header .header-icons .account .ce_rsce_linkbox.layout-min .dropdown button:not(p), .ce_rsce_linkbox.layout-min * input[type=submit]:not(p), input[type=submit]:not(p).inverse, input[type=submit].modal:not(p), .ce_rsce_video input[type=submit].content:not(p), .ce_rsce_team_home input[type=submit].text:not(p), #content input[type=submit].ce_rsce_quote:not(p), input[type=submit].ce_rsce_linkbox2:not(p), .inverse button:not(.flickity-button):not(.fancybox-button), .modal button:not(.flickity-button):not(.fancybox-button), footer#social button:not(.flickity-button):not(.fancybox-button), footer#page-footer button:not(.flickity-button):not(.fancybox-button), .ce_rsce_video .content button:not(.flickity-button):not(.fancybox-button), .ce_rsce_team_home .text button:not(.flickity-button):not(.fancybox-button), #content .ce_rsce_quote button:not(.flickity-button):not(.fancybox-button), .ce_rsce_linkbox2 button:not(.flickity-button):not(.fancybox-button), .ce_rsce_linkbox.layout-min * .button button:not(.flickity-button):not(.fancybox-button), .ce_rsce_linkbox.layout-min * input[type=submit] button:not(.flickity-button):not(.fancybox-button), button:not(.flickity-button):not(.fancybox-button).inverse, button.modal:not(.flickity-button):not(.fancybox-button), .ce_rsce_video button.content:not(.flickity-button):not(.fancybox-button), .ce_rsce_team_home button.text:not(.flickity-button):not(.fancybox-button), #content button.ce_rsce_quote:not(.flickity-button):not(.fancybox-button), button.ce_rsce_linkbox2:not(.flickity-button):not(.fancybox-button), .inverse p.button > a, .modal p.button > a, footer#social p.button > a, footer#page-footer p.button > a, .ce_rsce_video .content p.button > a, .ce_rsce_team_home .text p.button > a, #content .ce_rsce_quote p.button > a, .ce_rsce_linkbox2 p.button > a, .ce_rsce_linkbox.layout-min * .button p.button > a, .ce_rsce_linkbox.layout-min #page-header .header-icons .account .dropdown button p.button > a, #page-header .header-icons .account .ce_rsce_linkbox.layout-min .dropdown button p.button > a, .ce_rsce_linkbox.layout-min * input[type=submit] p.button > a, .ce_rsce_linkbox.layout-min .inverse p.button > a, .ce_rsce_linkbox.layout-min .modal p.button > a, .ce_rsce_linkbox.layout-min .ce_rsce_linkbox2 p.button > a, p.button > a.inverse, p.button > a.modal, .ce_rsce_video p.button > a.content, .ce_rsce_team_home p.button > a.text, #content p.button > a.ce_rsce_quote, p.button > a.ce_rsce_linkbox2, .ce_rsce_linkbox.layout-min * p.button > a.inverse, .ce_rsce_linkbox.layout-min * p.button > a.modal, .ce_rsce_linkbox.layout-min * p.button > a.ce_rsce_linkbox2 {
  color: #fff;
  border-color: #fff;
}
.inverse *:not(p).button:hover, .modal *:not(p).button:hover, footer#social *:not(p).button:hover, footer#page-footer *:not(p).button:hover, .inverse #page-header .header-icons .account .dropdown button:not(p):hover, .modal #page-header .header-icons .account .dropdown button:not(p):hover, footer#social #page-header .header-icons .account .dropdown button:not(p):hover, footer#page-footer #page-header .header-icons .account .dropdown button:not(p):hover, #page-header .header-icons .account .dropdown .inverse button:not(p):hover, #page-header .header-icons .account .dropdown .modal button:not(p):hover, #page-header .header-icons .account .dropdown footer#social button:not(p):hover, #page-header .header-icons .account .dropdown footer#page-footer button:not(p):hover, .ce_rsce_video .content *:not(p).button:hover, .ce_rsce_video .content #page-header .header-icons .account .dropdown button:not(p):hover, #page-header .header-icons .account .dropdown .ce_rsce_video .content button:not(p):hover, .ce_rsce_team_home .text *:not(p).button:hover, .ce_rsce_team_home .text #page-header .header-icons .account .dropdown button:not(p):hover, #page-header .header-icons .account .dropdown .ce_rsce_team_home .text button:not(p):hover, #content .ce_rsce_quote *:not(p).button:hover, #content .ce_rsce_quote #page-header .header-icons .account .dropdown button:not(p):hover, #page-header .header-icons .account .dropdown #content .ce_rsce_quote button:not(p):hover, .ce_rsce_linkbox2 *:not(p).button:hover, .ce_rsce_linkbox2 #page-header .header-icons .account .dropdown button:not(p):hover, #page-header .header-icons .account .dropdown .ce_rsce_linkbox2 button:not(p):hover, .inverse input[type=submit]:not(p):hover, .modal input[type=submit]:not(p):hover, footer#social input[type=submit]:not(p):hover, footer#page-footer input[type=submit]:not(p):hover, .ce_rsce_video .content input[type=submit]:not(p):hover, .ce_rsce_team_home .text input[type=submit]:not(p):hover, #content .ce_rsce_quote input[type=submit]:not(p):hover, .ce_rsce_linkbox2 input[type=submit]:not(p):hover, *:not(p).button.inverse:hover, *.modal:not(p).button:hover, footer#social:not(p).button:hover, footer#page-footer:not(p).button:hover, #page-header .header-icons .account .dropdown button:not(p).inverse:hover, #page-header .header-icons .account .dropdown button.modal:not(p):hover, .ce_rsce_video *.content:not(p).button:hover, .ce_rsce_video #page-header .header-icons .account .dropdown button.content:not(p):hover, #page-header .header-icons .account .dropdown .ce_rsce_video button.content:not(p):hover, .ce_rsce_team_home *.text:not(p).button:hover, .ce_rsce_team_home #page-header .header-icons .account .dropdown button.text:not(p):hover, #page-header .header-icons .account .dropdown .ce_rsce_team_home button.text:not(p):hover, #content *.ce_rsce_quote:not(p).button:hover, #content #page-header .header-icons .account .dropdown button.ce_rsce_quote:not(p):hover, #page-header .header-icons .account .dropdown #content button.ce_rsce_quote:not(p):hover, *.ce_rsce_linkbox2:not(p).button:hover, #page-header .header-icons .account .dropdown button.ce_rsce_linkbox2:not(p):hover, .ce_rsce_linkbox.layout-min * *:not(p).button:hover, .ce_rsce_linkbox.layout-min #page-header .header-icons .account .dropdown button:not(p):hover, #page-header .header-icons .account .ce_rsce_linkbox.layout-min .dropdown button:not(p):hover, input[type=submit]:not(p).inverse:hover, input[type=submit].modal:not(p):hover, .ce_rsce_video input[type=submit].content:not(p):hover, .ce_rsce_team_home input[type=submit].text:not(p):hover, #content input[type=submit].ce_rsce_quote:not(p):hover, input[type=submit].ce_rsce_linkbox2:not(p):hover, .ce_rsce_linkbox.layout-min * input[type=submit]:not(p):hover, .inverse button:not(.flickity-button):not(.fancybox-button):hover, .modal button:not(.flickity-button):not(.fancybox-button):hover, footer#social button:not(.flickity-button):not(.fancybox-button):hover, footer#page-footer button:not(.flickity-button):not(.fancybox-button):hover, .ce_rsce_video .content button:not(.flickity-button):not(.fancybox-button):hover, .ce_rsce_team_home .text button:not(.flickity-button):not(.fancybox-button):hover, #content .ce_rsce_quote button:not(.flickity-button):not(.fancybox-button):hover, .ce_rsce_linkbox2 button:not(.flickity-button):not(.fancybox-button):hover, .ce_rsce_linkbox.layout-min * .button button:not(.flickity-button):not(.fancybox-button):hover, .ce_rsce_linkbox.layout-min * input[type=submit] button:not(.flickity-button):not(.fancybox-button):hover, button:not(.flickity-button):not(.fancybox-button).inverse:hover, button.modal:not(.flickity-button):not(.fancybox-button):hover, .ce_rsce_video button.content:not(.flickity-button):not(.fancybox-button):hover, .ce_rsce_team_home button.text:not(.flickity-button):not(.fancybox-button):hover, #content button.ce_rsce_quote:not(.flickity-button):not(.fancybox-button):hover, button.ce_rsce_linkbox2:not(.flickity-button):not(.fancybox-button):hover, .inverse p.button > a:hover, .modal p.button > a:hover, footer#social p.button > a:hover, footer#page-footer p.button > a:hover, .ce_rsce_video .content p.button > a:hover, .ce_rsce_team_home .text p.button > a:hover, #content .ce_rsce_quote p.button > a:hover, .ce_rsce_linkbox2 p.button > a:hover, .ce_rsce_linkbox.layout-min * .button p.button > a:hover, .ce_rsce_linkbox.layout-min #page-header .header-icons .account .dropdown button p.button > a:hover, #page-header .header-icons .account .ce_rsce_linkbox.layout-min .dropdown button p.button > a:hover, .ce_rsce_linkbox.layout-min * input[type=submit] p.button > a:hover, p.button > a.inverse:hover, p.button > a.modal:hover, .ce_rsce_video p.button > a.content:hover, .ce_rsce_team_home p.button > a.text:hover, #content p.button > a.ce_rsce_quote:hover, p.button > a.ce_rsce_linkbox2:hover {
  background: #fff;
  color: var(--text-color);
}
*:not(p).button.black, #page-header .header-icons .account .dropdown button:not(p), .ce_rsce_linkbox.layout-min * *.button:not(p).black, .ce_rsce_linkbox.layout-min * input[type=submit]:not(p).black, input[type=submit]:not(p).black, button:not(.flickity-button):not(.fancybox-button).black, p.button > a.black, .ce_rsce_linkbox.layout-min * p.button > a.black {
  background: var(--color-primary);
  border: none;
  color: #fff;
}
*:not(p).button.black:hover, #page-header .header-icons .account .dropdown button:not(p):hover, input[type=submit]:not(p).black:hover, button:not(.flickity-button):not(.fancybox-button).black:hover, p.button > a.black:hover {
  background: var(--color-primary-lighter);
}
*:not(p).button.ghost, #page-header .header-icons .account .dropdown button:not(p).ghost, .ce_rsce_linkbox.layout-min * *.button:not(p).ghost, .ce_rsce_linkbox.layout-min * input[type=submit]:not(p).ghost, input[type=submit]:not(p).ghost, button:not(.flickity-button):not(.fancybox-button).ghost, p.button > a.ghost, .ce_rsce_linkbox.layout-min * p.button > a.ghost {
  border: 2px solid #000;
  color: var(--text-color);
  background: transparent;
}
*:not(p).button.ghost:hover, #page-header .header-icons .account .dropdown button:not(p).ghost:hover, input[type=submit]:not(p).ghost:hover, button:not(.flickity-button):not(.fancybox-button).ghost:hover, p.button > a.ghost:hover {
  background: #eee;
}
.inverse *:not(p).button.ghost, .modal *:not(p).button.ghost, footer#social *:not(p).button.ghost, footer#page-footer *:not(p).button.ghost, .inverse #page-header .header-icons .account .dropdown button:not(p).ghost, .modal #page-header .header-icons .account .dropdown button:not(p).ghost, footer#social #page-header .header-icons .account .dropdown button:not(p).ghost, footer#page-footer #page-header .header-icons .account .dropdown button:not(p).ghost, #page-header .header-icons .account .dropdown .inverse button:not(p).ghost, #page-header .header-icons .account .dropdown .modal button:not(p).ghost, #page-header .header-icons .account .dropdown footer#social button:not(p).ghost, #page-header .header-icons .account .dropdown footer#page-footer button:not(p).ghost, .ce_rsce_video .content *:not(p).button.ghost, .ce_rsce_video .content #page-header .header-icons .account .dropdown button:not(p).ghost, #page-header .header-icons .account .dropdown .ce_rsce_video .content button:not(p).ghost, .ce_rsce_team_home .text *:not(p).button.ghost, .ce_rsce_team_home .text #page-header .header-icons .account .dropdown button:not(p).ghost, #page-header .header-icons .account .dropdown .ce_rsce_team_home .text button:not(p).ghost, #content .ce_rsce_quote *:not(p).button.ghost, #content .ce_rsce_quote #page-header .header-icons .account .dropdown button:not(p).ghost, #page-header .header-icons .account .dropdown #content .ce_rsce_quote button:not(p).ghost, .ce_rsce_linkbox2 *:not(p).button.ghost, .ce_rsce_linkbox2 #page-header .header-icons .account .dropdown button:not(p).ghost, #page-header .header-icons .account .dropdown .ce_rsce_linkbox2 button:not(p).ghost, .inverse input[type=submit]:not(p).ghost, .modal input[type=submit]:not(p).ghost, footer#social input[type=submit]:not(p).ghost, footer#page-footer input[type=submit]:not(p).ghost, .ce_rsce_video .content input[type=submit]:not(p).ghost, .ce_rsce_team_home .text input[type=submit]:not(p).ghost, #content .ce_rsce_quote input[type=submit]:not(p).ghost, .ce_rsce_linkbox2 input[type=submit]:not(p).ghost, *:not(p).button.ghost.inverse, *.modal:not(p).button.ghost, footer#social:not(p).button.ghost, footer#page-footer:not(p).button.ghost, #page-header .header-icons .account .dropdown button:not(p).ghost.inverse, #page-header .header-icons .account .dropdown button.modal:not(p).ghost, .ce_rsce_video *.content:not(p).button.ghost, .ce_rsce_video #page-header .header-icons .account .dropdown button.content:not(p).ghost, #page-header .header-icons .account .dropdown .ce_rsce_video button.content:not(p).ghost, .ce_rsce_team_home *.text:not(p).button.ghost, .ce_rsce_team_home #page-header .header-icons .account .dropdown button.text:not(p).ghost, #page-header .header-icons .account .dropdown .ce_rsce_team_home button.text:not(p).ghost, #content *.ce_rsce_quote:not(p).button.ghost, #content #page-header .header-icons .account .dropdown button.ce_rsce_quote:not(p).ghost, #page-header .header-icons .account .dropdown #content button.ce_rsce_quote:not(p).ghost, *.ce_rsce_linkbox2:not(p).button.ghost, #page-header .header-icons .account .dropdown button.ce_rsce_linkbox2:not(p).ghost, .ce_rsce_linkbox.layout-min * *:not(p).button.ghost, .ce_rsce_linkbox.layout-min #page-header .header-icons .account .dropdown button:not(p).ghost, #page-header .header-icons .account .ce_rsce_linkbox.layout-min .dropdown button:not(p).ghost, input[type=submit]:not(p).ghost.inverse, input[type=submit].modal:not(p).ghost, .ce_rsce_video input[type=submit].content:not(p).ghost, .ce_rsce_team_home input[type=submit].text:not(p).ghost, #content input[type=submit].ce_rsce_quote:not(p).ghost, input[type=submit].ce_rsce_linkbox2:not(p).ghost, .ce_rsce_linkbox.layout-min * input[type=submit]:not(p).ghost, .inverse button:not(.flickity-button):not(.fancybox-button).ghost, .modal button:not(.flickity-button):not(.fancybox-button).ghost, footer#social button:not(.flickity-button):not(.fancybox-button).ghost, footer#page-footer button:not(.flickity-button):not(.fancybox-button).ghost, .ce_rsce_video .content button:not(.flickity-button):not(.fancybox-button).ghost, .ce_rsce_team_home .text button:not(.flickity-button):not(.fancybox-button).ghost, #content .ce_rsce_quote button:not(.flickity-button):not(.fancybox-button).ghost, .ce_rsce_linkbox2 button:not(.flickity-button):not(.fancybox-button).ghost, .ce_rsce_linkbox.layout-min * .button button:not(.flickity-button):not(.fancybox-button).ghost, .ce_rsce_linkbox.layout-min * input[type=submit] button:not(.flickity-button):not(.fancybox-button).ghost, button:not(.flickity-button):not(.fancybox-button).ghost.inverse, button.modal:not(.flickity-button):not(.fancybox-button).ghost, .ce_rsce_video button.content:not(.flickity-button):not(.fancybox-button).ghost, .ce_rsce_team_home button.text:not(.flickity-button):not(.fancybox-button).ghost, #content button.ce_rsce_quote:not(.flickity-button):not(.fancybox-button).ghost, button.ce_rsce_linkbox2:not(.flickity-button):not(.fancybox-button).ghost, .inverse p.button > a.ghost, .modal p.button > a.ghost, footer#social p.button > a.ghost, footer#page-footer p.button > a.ghost, .ce_rsce_video .content p.button > a.ghost, .ce_rsce_team_home .text p.button > a.ghost, #content .ce_rsce_quote p.button > a.ghost, .ce_rsce_linkbox2 p.button > a.ghost, .ce_rsce_linkbox.layout-min * .button p.button > a.ghost, .ce_rsce_linkbox.layout-min #page-header .header-icons .account .dropdown button p.button > a.ghost, #page-header .header-icons .account .ce_rsce_linkbox.layout-min .dropdown button p.button > a.ghost, .ce_rsce_linkbox.layout-min * input[type=submit] p.button > a.ghost, p.button > a.ghost.inverse, p.button > a.ghost.modal, .ce_rsce_video p.button > a.ghost.content, .ce_rsce_team_home p.button > a.ghost.text, #content p.button > a.ghost.ce_rsce_quote, p.button > a.ghost.ce_rsce_linkbox2 {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.inverse *:not(p).button.ghost:hover, .modal *:not(p).button.ghost:hover, footer#social *:not(p).button.ghost:hover, footer#page-footer *:not(p).button.ghost:hover, .inverse #page-header .header-icons .account .dropdown button:not(p).ghost:hover, .modal #page-header .header-icons .account .dropdown button:not(p).ghost:hover, footer#social #page-header .header-icons .account .dropdown button:not(p).ghost:hover, footer#page-footer #page-header .header-icons .account .dropdown button:not(p).ghost:hover, #page-header .header-icons .account .dropdown .inverse button:not(p).ghost:hover, #page-header .header-icons .account .dropdown .modal button:not(p).ghost:hover, #page-header .header-icons .account .dropdown footer#social button:not(p).ghost:hover, #page-header .header-icons .account .dropdown footer#page-footer button:not(p).ghost:hover, .ce_rsce_video .content *:not(p).button.ghost:hover, .ce_rsce_video .content #page-header .header-icons .account .dropdown button:not(p).ghost:hover, #page-header .header-icons .account .dropdown .ce_rsce_video .content button:not(p).ghost:hover, .ce_rsce_team_home .text *:not(p).button.ghost:hover, .ce_rsce_team_home .text #page-header .header-icons .account .dropdown button:not(p).ghost:hover, #page-header .header-icons .account .dropdown .ce_rsce_team_home .text button:not(p).ghost:hover, #content .ce_rsce_quote *:not(p).button.ghost:hover, #content .ce_rsce_quote #page-header .header-icons .account .dropdown button:not(p).ghost:hover, #page-header .header-icons .account .dropdown #content .ce_rsce_quote button:not(p).ghost:hover, .ce_rsce_linkbox2 *:not(p).button.ghost:hover, .ce_rsce_linkbox2 #page-header .header-icons .account .dropdown button:not(p).ghost:hover, #page-header .header-icons .account .dropdown .ce_rsce_linkbox2 button:not(p).ghost:hover, .inverse input[type=submit]:not(p).ghost:hover, .modal input[type=submit]:not(p).ghost:hover, footer#social input[type=submit]:not(p).ghost:hover, footer#page-footer input[type=submit]:not(p).ghost:hover, .ce_rsce_video .content input[type=submit]:not(p).ghost:hover, .ce_rsce_team_home .text input[type=submit]:not(p).ghost:hover, #content .ce_rsce_quote input[type=submit]:not(p).ghost:hover, .ce_rsce_linkbox2 input[type=submit]:not(p).ghost:hover, *:not(p).button.ghost.inverse:hover, *.modal:not(p).button.ghost:hover, footer#social:not(p).button.ghost:hover, footer#page-footer:not(p).button.ghost:hover, #page-header .header-icons .account .dropdown button:not(p).ghost.inverse:hover, #page-header .header-icons .account .dropdown button.modal:not(p).ghost:hover, .ce_rsce_video *.content:not(p).button.ghost:hover, .ce_rsce_video #page-header .header-icons .account .dropdown button.content:not(p).ghost:hover, #page-header .header-icons .account .dropdown .ce_rsce_video button.content:not(p).ghost:hover, .ce_rsce_team_home *.text:not(p).button.ghost:hover, .ce_rsce_team_home #page-header .header-icons .account .dropdown button.text:not(p).ghost:hover, #page-header .header-icons .account .dropdown .ce_rsce_team_home button.text:not(p).ghost:hover, #content *.ce_rsce_quote:not(p).button.ghost:hover, #content #page-header .header-icons .account .dropdown button.ce_rsce_quote:not(p).ghost:hover, #page-header .header-icons .account .dropdown #content button.ce_rsce_quote:not(p).ghost:hover, *.ce_rsce_linkbox2:not(p).button.ghost:hover, #page-header .header-icons .account .dropdown button.ce_rsce_linkbox2:not(p).ghost:hover, .ce_rsce_linkbox.layout-min * *:not(p).button.ghost:hover, .ce_rsce_linkbox.layout-min #page-header .header-icons .account .dropdown button:not(p).ghost:hover, #page-header .header-icons .account .ce_rsce_linkbox.layout-min .dropdown button:not(p).ghost:hover, input[type=submit]:not(p).ghost.inverse:hover, input[type=submit].modal:not(p).ghost:hover, .ce_rsce_video input[type=submit].content:not(p).ghost:hover, .ce_rsce_team_home input[type=submit].text:not(p).ghost:hover, #content input[type=submit].ce_rsce_quote:not(p).ghost:hover, input[type=submit].ce_rsce_linkbox2:not(p).ghost:hover, .ce_rsce_linkbox.layout-min * input[type=submit]:not(p).ghost:hover, .inverse button:not(.flickity-button):not(.fancybox-button).ghost:hover, .modal button:not(.flickity-button):not(.fancybox-button).ghost:hover, footer#social button:not(.flickity-button):not(.fancybox-button).ghost:hover, footer#page-footer button:not(.flickity-button):not(.fancybox-button).ghost:hover, .ce_rsce_video .content button:not(.flickity-button):not(.fancybox-button).ghost:hover, .ce_rsce_team_home .text button:not(.flickity-button):not(.fancybox-button).ghost:hover, #content .ce_rsce_quote button:not(.flickity-button):not(.fancybox-button).ghost:hover, .ce_rsce_linkbox2 button:not(.flickity-button):not(.fancybox-button).ghost:hover, .ce_rsce_linkbox.layout-min * .button button:not(.flickity-button):not(.fancybox-button).ghost:hover, .ce_rsce_linkbox.layout-min * input[type=submit] button:not(.flickity-button):not(.fancybox-button).ghost:hover, button:not(.flickity-button):not(.fancybox-button).ghost.inverse:hover, button.modal:not(.flickity-button):not(.fancybox-button).ghost:hover, .ce_rsce_video button.content:not(.flickity-button):not(.fancybox-button).ghost:hover, .ce_rsce_team_home button.text:not(.flickity-button):not(.fancybox-button).ghost:hover, #content button.ce_rsce_quote:not(.flickity-button):not(.fancybox-button).ghost:hover, button.ce_rsce_linkbox2:not(.flickity-button):not(.fancybox-button).ghost:hover, .inverse p.button > a.ghost:hover, .modal p.button > a.ghost:hover, footer#social p.button > a.ghost:hover, footer#page-footer p.button > a.ghost:hover, .ce_rsce_video .content p.button > a.ghost:hover, .ce_rsce_team_home .text p.button > a.ghost:hover, #content .ce_rsce_quote p.button > a.ghost:hover, .ce_rsce_linkbox2 p.button > a.ghost:hover, .ce_rsce_linkbox.layout-min * .button p.button > a.ghost:hover, .ce_rsce_linkbox.layout-min #page-header .header-icons .account .dropdown button p.button > a.ghost:hover, #page-header .header-icons .account .ce_rsce_linkbox.layout-min .dropdown button p.button > a.ghost:hover, .ce_rsce_linkbox.layout-min * input[type=submit] p.button > a.ghost:hover, p.button > a.ghost.inverse:hover, p.button > a.ghost.modal:hover, .ce_rsce_video p.button > a.ghost.content:hover, .ce_rsce_team_home p.button > a.ghost.text:hover, #content p.button > a.ghost.ce_rsce_quote:hover, p.button > a.ghost.ce_rsce_linkbox2:hover {
  background: var(--color-primary-lighter);
}

p.button > a:first-child, .ce_rsce_linkbox.layout-min * p.button > a:first-child {
  margin-left: 0;
}

table {
  margin: 20px 0;
  border-collapse: collapse;
  border: none;
  width: 100%;
  text-align: left;
  line-height: 1.3;
  font-size: 17px;
}
table th, table td {
  padding: 10px 15px;
  border-bottom: 1px solid #ddd;
}
table caption {
  margin-bottom: 20px;
  text-align: center;
}
table tr:first-child td, table tr:first-child th {
  border-top: 1px solid #ddd;
}
table tr {
  border-bottom: none;
}
table th, table td {
  padding: 12px;
  background: #fff;
  min-width: 200px;
}
table th:last-child, table td:last-child {
  padding-right: 0;
}
table thead td, table th {
  font-weight: normal;
  background: var(--color-accent);
  color: #fff;
}
@media (min-width: 960px) {
  table {
    font-size: 21px;
  }
  table td, table th {
    padding: 16px;
  }
}

.table-responsive {
  max-width: 100%;
  overflow: auto;
}

/* Forms */
.input-base, select, textarea, input[type=text],
input[type=email],
input[type=date],
input[type=number],
input[type=password],
input[type=url],
input[type=tel] {
  font-family: inherit;
  font-size: 18px;
  font-weight: inherit;
  width: 100%;
  border: none;
  background: var(--color-muted);
  border-radius: 4px;
  color: var(--text-color);
}
.input-base:focus-visible, select:focus-visible, textarea:focus-visible, input[type=text]:focus-visible,
input[type=email]:focus-visible,
input[type=date]:focus-visible,
input[type=number]:focus-visible,
input[type=password]:focus-visible,
input[type=url]:focus-visible,
input[type=tel]:focus-visible {
  outline: 2px solid var(--color-secondary);
  outline-offset: 2px;
}
.input-base:focus:not(:focus-visible), select:focus:not(:focus-visible), textarea:focus:not(:focus-visible), input[type=text]:focus:not(:focus-visible),
input[type=email]:focus:not(:focus-visible),
input[type=date]:focus:not(:focus-visible),
input[type=number]:focus:not(:focus-visible),
input[type=password]:focus:not(:focus-visible),
input[type=url]:focus:not(:focus-visible),
input[type=tel]:focus:not(:focus-visible) {
  outline: none;
}

input[type=text],
input[type=email],
input[type=date],
input[type=number],
input[type=password],
input[type=url],
input[type=tel] {
  height: 50px;
  padding: 0 8px;
}

textarea {
  padding: 8px;
  color: var(--text-color) !important;
}

select {
  height: 50px;
  padding: 0 8px;
}

input[type=date] {
  position: relative;
  /* &::-webkit-calendar-picker-indicator {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
  } */
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted-color);
  font-size: 18px;
}

fieldset {
  border: none;
}

.invisible {
  visibility: hidden;
  position: absolute;
  width: 0;
  height: 0;
}

#content .block.no-spacing-top {
  margin-top: 0;
}
#content .block.no-spacing-bottom {
  margin-bottom: 0;
}
#content .block .block:first-child {
  margin-top: 0 !important;
}
#content .block .block:last-child {
  margin-bottom: 0 !important;
}
#content .block *[class^=content-] {
  margin: var(--gutter-section-small) 0;
}
#content .block *[class^=content-]:first-child {
  margin-top: 0 !important;
}
#content .block *[class^=content-]:last-child {
  margin-bottom: 0 !important;
}

.rs-columns + .rs-columns {
  margin-top: var(--gutter-section);
}
.rs-column > div {
  height: 100%;
}
.rs-column > div.center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rs-column.-large-col-1-1 {
  width: 100%;
}

.rs-column.-large-col-2-1 {
  width: 50%;
}

.rs-column.-large-col-2-2 {
  width: 100%;
}

.rs-column.-large-col-3-1 {
  width: 33.3333333333%;
}

.rs-column.-large-col-3-2 {
  width: 66.6666666667%;
}

.rs-column.-large-col-3-3 {
  width: 100%;
}

.rs-column.-large-col-4-1 {
  width: 25%;
}

.rs-column.-large-col-4-2 {
  width: 50%;
}

.rs-column.-large-col-4-3 {
  width: 75%;
}

.rs-column.-large-col-4-4 {
  width: 100%;
}

.rs-column.-large-col-5-1 {
  width: 20%;
}

.rs-column.-large-col-5-2 {
  width: 40%;
}

.rs-column.-large-col-5-3 {
  width: 60%;
}

.rs-column.-large-col-5-4 {
  width: 80%;
}

.rs-column.-large-col-5-5 {
  width: 100%;
}

.rs-column.-large-col-6-1 {
  width: 16.6666666667%;
}

.rs-column.-large-col-6-2 {
  width: 33.3333333333%;
}

.rs-column.-large-col-6-3 {
  width: 50%;
}

.rs-column.-large-col-6-4 {
  width: 66.6666666667%;
}

.rs-column.-large-col-6-5 {
  width: 83.3333333333%;
}

.rs-column.-large-col-6-6 {
  width: 100%;
}

@media (max-width: 959px) {
  .rs-column.-medium-col-1-1 {
    width: 100%;
  }
  .rs-column.-medium-col-2-1 {
    width: 50%;
  }
  .rs-column.-medium-col-2-2 {
    width: 100%;
  }
  .rs-column.-medium-col-3-1 {
    width: 33.3333333333%;
  }
  .rs-column.-medium-col-3-2 {
    width: 66.6666666667%;
  }
  .rs-column.-medium-col-3-3 {
    width: 100%;
  }
  .rs-column.-medium-col-4-1 {
    width: 25%;
  }
  .rs-column.-medium-col-4-2 {
    width: 50%;
  }
  .rs-column.-medium-col-4-3 {
    width: 75%;
  }
  .rs-column.-medium-col-4-4 {
    width: 100%;
  }
  .rs-column.-medium-col-5-1 {
    width: 20%;
  }
  .rs-column.-medium-col-5-2 {
    width: 40%;
  }
  .rs-column.-medium-col-5-3 {
    width: 60%;
  }
  .rs-column.-medium-col-5-4 {
    width: 80%;
  }
  .rs-column.-medium-col-5-5 {
    width: 100%;
  }
  .rs-column.-medium-col-6-1 {
    width: 16.6666666667%;
  }
  .rs-column.-medium-col-6-2 {
    width: 33.3333333333%;
  }
  .rs-column.-medium-col-6-3 {
    width: 50%;
  }
  .rs-column.-medium-col-6-4 {
    width: 66.6666666667%;
  }
  .rs-column.-medium-col-6-5 {
    width: 83.3333333333%;
  }
  .rs-column.-medium-col-6-6 {
    width: 100%;
  }
}
@media (max-width: 639px) {
  .rs-column.-small-col-1-1 {
    width: 100%;
  }
  .rs-column.-small-col-2-1 {
    width: 50%;
  }
  .rs-column.-small-col-2-2 {
    width: 100%;
  }
  .rs-column.-small-col-3-1 {
    width: 33.3333333333%;
  }
  .rs-column.-small-col-3-2 {
    width: 66.6666666667%;
  }
  .rs-column.-small-col-3-3 {
    width: 100%;
  }
  .rs-column.-small-col-4-1 {
    width: 25%;
  }
  .rs-column.-small-col-4-2 {
    width: 50%;
  }
  .rs-column.-small-col-4-3 {
    width: 75%;
  }
  .rs-column.-small-col-4-4 {
    width: 100%;
  }
  .rs-column.-small-col-5-1 {
    width: 20%;
  }
  .rs-column.-small-col-5-2 {
    width: 40%;
  }
  .rs-column.-small-col-5-3 {
    width: 60%;
  }
  .rs-column.-small-col-5-4 {
    width: 80%;
  }
  .rs-column.-small-col-5-5 {
    width: 100%;
  }
  .rs-column.-small-col-6-1 {
    width: 16.6666666667%;
  }
  .rs-column.-small-col-6-2 {
    width: 33.3333333333%;
  }
  .rs-column.-small-col-6-3 {
    width: 50%;
  }
  .rs-column.-small-col-6-4 {
    width: 66.6666666667%;
  }
  .rs-column.-small-col-6-5 {
    width: 83.3333333333%;
  }
  .rs-column.-small-col-6-6 {
    width: 100%;
  }
}
.widget {
  margin-top: 15px;
}

/* .widget-checkbox {
  input[type=checkbox] {
    float: left;
    margin: 7px 8px 0 0;
  }

  label {
    line-height: 1.6;
  }
} */
.widget-checkbox, .widget-radio {
  text-align: left;
}
.widget-checkbox legend, .widget-radio legend {
  color: var(--color-primary);
  font-weight: 500;
  font-size: 18px;
}
.widget-checkbox fieldset, .widget-radio fieldset {
  display: flex;
  flex-wrap: wrap;
}
.widget-checkbox span, .widget-radio span {
  flex: 0.3 0 auto;
  margin-right: 50px;
  white-space: nowrap;
  max-width: 100%;
}
.widget-checkbox span input[type=checkbox],
.widget-checkbox span input[type=radio], .widget-radio span input[type=checkbox],
.widget-radio span input[type=radio] {
  float: left;
  margin: 10px 10px 0 0;
}
.widget-checkbox span label, .widget-radio span label {
  margin: 2px 0;
  color: var(--text-color);
  line-height: 1.6;
}
.widget-checkbox span label > span, .widget-radio span label > span {
  white-space: normal;
}
.widget-checkbox span label a, .widget-radio span label a {
  text-decoration: underline;
}
.widget-checkbox span label a:hover, .widget-radio span label a:hover {
  text-decoration: none;
}

.content-text.small, .content-headline.small {
  max-width: 960px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.content-text h1 + div.rte > h1:first-child, .content-text h1 + div.rte > h2:first-child, .content-text h1 + div.rte > h3:first-child, .content-text h1 + div.rte > h4:first-child, .content-text h1 + div.rte > h5:first-child, .content-text h1 + div.rte > h6:first-child, .content-text h1 + div.rte > p:first-child, .content-text h1 + div.rte > ul:first-child, .content-text h2 + div.rte > h1:first-child, .content-text h2 + div.rte > h2:first-child, .content-text h2 + div.rte > h3:first-child, .content-text h2 + div.rte > h4:first-child, .content-text h2 + div.rte > h5:first-child, .content-text h2 + div.rte > h6:first-child, .content-text h2 + div.rte > p:first-child, .content-text h2 + div.rte > ul:first-child, .content-text h3 + div.rte > h1:first-child, .content-text h3 + div.rte > h2:first-child, .content-text h3 + div.rte > h3:first-child, .content-text h3 + div.rte > h4:first-child, .content-text h3 + div.rte > h5:first-child, .content-text h3 + div.rte > h6:first-child, .content-text h3 + div.rte > p:first-child, .content-text h3 + div.rte > ul:first-child, .content-text h4 + div.rte > h1:first-child, .content-text h4 + div.rte > h2:first-child, .content-text h4 + div.rte > h3:first-child, .content-text h4 + div.rte > h4:first-child, .content-text h4 + div.rte > h5:first-child, .content-text h4 + div.rte > h6:first-child, .content-text h4 + div.rte > p:first-child, .content-text h4 + div.rte > ul:first-child, .content-text h5 + div.rte > h1:first-child, .content-text h5 + div.rte > h2:first-child, .content-text h5 + div.rte > h3:first-child, .content-text h5 + div.rte > h4:first-child, .content-text h5 + div.rte > h5:first-child, .content-text h5 + div.rte > h6:first-child, .content-text h5 + div.rte > p:first-child, .content-text h5 + div.rte > ul:first-child, .content-text h6 + div.rte > h1:first-child, .content-text h6 + div.rte > h2:first-child, .content-text h6 + div.rte > h3:first-child, .content-text h6 + div.rte > h4:first-child, .content-text h6 + div.rte > h5:first-child, .content-text h6 + div.rte > h6:first-child, .content-text h6 + div.rte > p:first-child, .content-text h6 + div.rte > ul:first-child, .content-headline h1 + div.rte > h1:first-child, .content-headline h1 + div.rte > h2:first-child, .content-headline h1 + div.rte > h3:first-child, .content-headline h1 + div.rte > h4:first-child, .content-headline h1 + div.rte > h5:first-child, .content-headline h1 + div.rte > h6:first-child, .content-headline h1 + div.rte > p:first-child, .content-headline h1 + div.rte > ul:first-child, .content-headline h2 + div.rte > h1:first-child, .content-headline h2 + div.rte > h2:first-child, .content-headline h2 + div.rte > h3:first-child, .content-headline h2 + div.rte > h4:first-child, .content-headline h2 + div.rte > h5:first-child, .content-headline h2 + div.rte > h6:first-child, .content-headline h2 + div.rte > p:first-child, .content-headline h2 + div.rte > ul:first-child, .content-headline h3 + div.rte > h1:first-child, .content-headline h3 + div.rte > h2:first-child, .content-headline h3 + div.rte > h3:first-child, .content-headline h3 + div.rte > h4:first-child, .content-headline h3 + div.rte > h5:first-child, .content-headline h3 + div.rte > h6:first-child, .content-headline h3 + div.rte > p:first-child, .content-headline h3 + div.rte > ul:first-child, .content-headline h4 + div.rte > h1:first-child, .content-headline h4 + div.rte > h2:first-child, .content-headline h4 + div.rte > h3:first-child, .content-headline h4 + div.rte > h4:first-child, .content-headline h4 + div.rte > h5:first-child, .content-headline h4 + div.rte > h6:first-child, .content-headline h4 + div.rte > p:first-child, .content-headline h4 + div.rte > ul:first-child, .content-headline h5 + div.rte > h1:first-child, .content-headline h5 + div.rte > h2:first-child, .content-headline h5 + div.rte > h3:first-child, .content-headline h5 + div.rte > h4:first-child, .content-headline h5 + div.rte > h5:first-child, .content-headline h5 + div.rte > h6:first-child, .content-headline h5 + div.rte > p:first-child, .content-headline h5 + div.rte > ul:first-child, .content-headline h6 + div.rte > h1:first-child, .content-headline h6 + div.rte > h2:first-child, .content-headline h6 + div.rte > h3:first-child, .content-headline h6 + div.rte > h4:first-child, .content-headline h6 + div.rte > h5:first-child, .content-headline h6 + div.rte > h6:first-child, .content-headline h6 + div.rte > p:first-child, .content-headline h6 + div.rte > ul:first-child {
  margin-top: 20px;
}

.content-image {
  text-align: center;
}
.content-image img {
  border-radius: 6px;
}
.content-image figcaption {
  font-weight: 700;
  text-align: center;
}

.content-table {
  width: 100%;
  overflow-x: auto;
}
.content-table table {
  width: 100%;
  max-width: 100%;
}
.content-table h4, .content-table h5, .content-table h6 {
  text-align: center;
}

.content-player > figure,
.content-youtube > figure {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
}
.content-player > figure > iframe, .content-player > figure > video,
.content-youtube > figure > iframe,
.content-youtube > figure > video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.ce_image {
  line-height: 1;
  margin-bottom: -2px;
}

.custom-list li, .content-downloads ul li, .ce_text ul li,
.content-text ul li,
.ce_rsce_anfrage ul li {
  list-style: none;
  position: relative;
  padding-left: 10px;
}
.custom-list li:before, .content-downloads ul li:before, .ce_text ul li:before,
.content-text ul li:before,
.ce_rsce_anfrage ul li:before {
  font-size: 30px;
  content: "•";
  position: absolute;
  left: -14px;
  top: 3px;
  line-height: 24px;
  color: var(--color-secondary);
}

.content-text + .ce_rsce_accordion {
  margin-top: 30px !important;
}

.content-gallery ul {
  padding: 0;
  list-style: none;
}
@media (max-width: 959px) {
  .content-gallery ul li {
    width: 100%;
  }
}
.content-gallery ul li figure {
  display: block;
  height: 0;
  padding-bottom: 60%;
  position: relative;
  background: #fff;
  line-height: 1;
  border-radius: 6px;
  overflow: hidden;
}
.content-gallery ul li figure .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent no-repeat center center;
  background-size: cover;
}
.content-gallery ul li figure a {
  transition: opacity linear 0.15s;
}
.content-gallery ul li figure a:hover {
  opacity: 0.8;
}
.content-youtube figure {
  position: relative;
  height: 0;
  padding-bottom: 56%;
}
.content-youtube figure iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.content-downloads ul li {
  font-style: normal;
  padding-left: 20px;
  margin: 3px 0;
}
.content-downloads ul li:before {
  content: "";
  display: inline-block;
  color: var(--color-accent);
  background: url(/files/theme/images/download.svg) no-repeat center center;
  width: 20px;
  height: 22px;
  background-size: contain;
  top: 5px;
}
.content-downloads ul li a {
  color: var(--color-primary);
  text-decoration: none;
}
.inverse .content-downloads ul li a, .modal .content-downloads ul li a, footer#social .content-downloads ul li a, footer#page-footer .content-downloads ul li a, .ce_rsce_video .content .content-downloads ul li a, .ce_rsce_team_home .text .content-downloads ul li a, #content .ce_rsce_quote .content-downloads ul li a, .ce_rsce_linkbox2 .content-downloads ul li a, .ce_rsce_linkbox.layout-min * .button .content-downloads ul li a, .ce_rsce_linkbox.layout-min #page-header .header-icons .account .dropdown button .content-downloads ul li a, #page-header .header-icons .account .ce_rsce_linkbox.layout-min .dropdown button .content-downloads ul li a, .ce_rsce_linkbox.layout-min * input[type=submit] .content-downloads ul li a {
  color: #fff;
}
.content-downloads ul li a:hover {
  text-decoration: underline;
}

.ce_rsce_buttons {
  margin: 20px -5px 0 -5px !important;
}
.ce_rsce_buttons.center {
  text-align: center;
}
.ce_rsce_buttons .button, .ce_rsce_buttons #page-header .header-icons .account .dropdown button, #page-header .header-icons .account .dropdown .ce_rsce_buttons button, .ce_rsce_linkbox.layout-min .ce_rsce_buttons .button, #page-header .header-icons .account .ce_rsce_linkbox.layout-min .ce_rsce_buttons .dropdown button, .ce_rsce_linkbox.layout-min .ce_rsce_buttons input[type=submit], .ce_rsce_buttons input[type=submit] {
  margin: 5px;
}

.ce_rsce_boxes .box > div {
  border: 1px solid #bbb;
  border-radius: 8px;
  padding: 20px 15px;
}
@media (min-width: 960px) {
  .ce_rsce_boxes .box {
    width: 33.333333%;
  }
  .ce_rsce_boxes .box > div {
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  .ce_rsce_boxes .box > div {
    padding: 40px;
  }
}

.ce_rsce_haendler h5 {
  margin: 20px 0 10px;
  font-size: 21px;
}
.ce_rsce_haendler .haendler {
  margin-top: 0;
  margin-bottom: 0;
}
.ce_rsce_haendler .haendler .item > div {
  padding: 15px;
  background: var(--color-muted);
  border-radius: 8px;
}
@media (max-width: 639px) {
  .ce_rsce_haendler .haendler .item {
    width: 100%;
  }
}
.ce_rsce_haendler .haendler .item .img {
  margin-top: -15px;
  height: 150px;
}
.ce_rsce_haendler .haendler .item .img img {
  height: 100%;
  width: auto;
}
.ce_rsce_haendler .haendler .item h6 {
  margin-top: 20px;
}
.ce_rsce_haendler .haendler .item .address {
  font-size: 18px;
}
@media (min-width: 960px) {
  .ce_rsce_haendler .haendler .item > div {
    padding: 25px;
  }
  .ce_rsce_haendler .haendler .item .img {
    margin-top: -25px;
  }
}

.ce_rsce_slider .inner {
  position: relative;
}
.ce_rsce_slider .flickity-slider {
  width: 100%;
}
.ce_rsce_slider .slide {
  width: 100%;
  height: 0;
  padding-bottom: 55%;
  position: relative;
}
body.id-2 .ce_rsce_slider .slide {
  padding: 0;
  height: 400px;
}
.ce_rsce_slider .slide > div {
  background: transparent no-repeat center center;
  background-size: cover;
  /* height: 100%;
  position: relative; */
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.ce_rsce_slider .slide > div > a {
  display: block;
  height: 100%;
  position: relative;
  z-index: 2;
}
.ce_rsce_slider .slide > div.has-text:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
}
.ce_rsce_slider .slide .container, .ce_rsce_slider .slide .ce_rsce_video .content, .ce_rsce_video .ce_rsce_slider .slide .content {
  height: 100%;
  padding-bottom: 60px;
  display: flex;
  align-items: flex-end;
  text-align: left;
  position: relative;
  z-index: 2;
}
.ce_rsce_slider .slide .container.alignment-center, .ce_rsce_slider .slide .ce_rsce_video .alignment-center.content, .ce_rsce_video .ce_rsce_slider .slide .alignment-center.content {
  text-align: center;
  justify-content: center;
}
.ce_rsce_slider .slide .container.alignment-right, .ce_rsce_slider .slide .ce_rsce_video .alignment-right.content, .ce_rsce_video .ce_rsce_slider .slide .alignment-right.content {
  text-align: right;
  justify-content: flex-end;
}
.ce_rsce_slider .slide .text {
  max-width: 960px;
}
.ce_rsce_slider .slide .text h1 {
  font-size: 38px;
}
.ce_rsce_slider .slide .text h1:after {
  display: none;
}
.ce_rsce_slider .slide .text * {
  color: #fff;
  text-transform: none;
  text-shadow: 2px 0 0 rgba(0, 0, 0, 0.6);
}
.ce_rsce_slider .flickity-page-dots {
  bottom: 20px;
}
.ce_rsce_slider .flickity-page-dots .dot {
  width: 15px;
  height: 15px;
  background: #fff;
  opacity: 0.8;
}
.ce_rsce_slider .flickity-page-dots .dot.is-selected {
  background: var(--color-secondary);
}
.ce_rsce_slider .loading {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: #eee;
}
.ce_rsce_slider .loading span {
  display: block;
  position: absolute;
  left: 0;
  height: 100%;
  width: 0;
  background: var(--color-primary);
}
@media (min-width: 960px) {
  .ce_rsce_slider .slide {
    height: calc(100vh - var(--header-height) - 80px) !important;
    padding: 0;
  }
  .ce_rsce_slider .slide .container, .ce_rsce_slider .slide .ce_rsce_video .content, .ce_rsce_video .ce_rsce_slider .slide .content {
    padding-bottom: 80px;
  }
  .ce_rsce_slider .slide .text h1 {
    font-size: 60px;
  }
}
@media (min-width: 1200px) {
  .ce_rsce_slider .slide .text h1 {
    font-size: 80px;
  }
}

#services-slider {
  display: none;
}
@media (min-width: 960px) {
  #services-slider {
    display: block;
  }
}

.ce_rsce_linkbox {
  background: var(--color-primary);
  border-radius: 8px;
  overflow: hidden;
}
.ce_rsce_linkbox.layout-min * {
  color: #fff;
}
.ce_rsce_linkbox .img > a > div {
  height: 0;
  padding-bottom: 90%;
  background: transparent no-repeat center center;
  background-size: cover;
  position: relative;
}
.ce_rsce_linkbox .img > a > div:after {
  content: "";
  display: block;
  position: absolute;
  height: 30%;
  width: 100%;
  bottom: 0;
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
}
.ce_rsce_linkbox .text {
  padding: var(--gutter-section-small);
  padding-top: 0;
  text-align: center;
}
.ce_rsce_linkbox .title {
  margin-top: 20px;
}
.ce_rsce_linkbox .title h2 {
  font-size: 36px;
}
.ce_rsce_linkbox .title h2:after {
  transform: translateX(-50%);
  left: 50%;
}
.ce_rsce_linkbox .description {
  margin: 10px 0;
}
.ce_rsce_linkbox.layout-white {
  background: #fff;
}
.ce_rsce_linkbox.layout-white .img {
  display: none;
}
.ce_rsce_linkbox.layout-white .text {
  padding: var(--gutter-section-small);
}

.ce_rsce_linkbox2 .item > a {
  display: block;
  padding: 10px 0;
}
.ce_rsce_linkbox2 .item > a:hover {
  text-decoration: none;
}
.ce_rsce_linkbox2 .item > a:hover .img > div {
  transform: scale(1.1);
}
.ce_rsce_linkbox2 .item > a:hover .title {
  color: #fff;
}
.ce_rsce_linkbox2 .img {
  height: 0;
  padding-bottom: 65%;
  position: relative;
  overflow: hidden;
}
.ce_rsce_linkbox2 .img > div {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: transparent no-repeat center center;
  background-size: cover;
  transition: all ease-out 2s;
}
.ce_rsce_linkbox2 .title {
  margin-top: 10px;
  font-weight: 600;
  color: var(--color-primary);
  text-transform: uppercase;
}

.ce_rsce_parallax > div {
  height: 0;
  padding-bottom: 55%;
  background: transparent;
  position: relative;
}
.ce_rsce_parallax > div .text {
  position: absolute;
  left: 0;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}
.ce_rsce_parallax > div .text * {
  color: #fff;
}
@media (min-width: 960px) {
  .ce_rsce_parallax > div {
    height: 720px;
    padding: 0;
  }
}

#content .ce_rsce_quote {
  padding: 150px 0 0 0;
}
#content .ce_rsce_quote > div {
  position: relative;
  padding: 100px 30px 30px;
}
#content .ce_rsce_quote > div:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: -1;
  border-radius: 30px;
  background: var(--color-primary);
}
#content .ce_rsce_quote .img {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: transparent no-repeat center center;
  background-size: cover;
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
}
#content .ce_rsce_quote .text p {
  font-style: italic;
  font-weight: 400;
}
#content .ce_rsce_quote .name {
  text-transform: uppercase;
  margin-top: 20px;
  font-size: 21px;
}
@media (min-width: 960px) {
  #content .ce_rsce_quote > div {
    padding: 50px 400px 50px 100px;
  }
  #content .ce_rsce_quote > div:before {
    transform: skew(-6deg, 0);
  }
  #content .ce_rsce_quote .img {
    transform: none;
    width: 300px;
    height: 300px;
    right: 50px;
    top: -50px;
    left: auto;
  }
  #content .ce_rsce_quote .text {
    font-size: 30px;
  }
  #content .ce_rsce_quote .name {
    font-size: 24px;
  }
}
@media (min-width: 1200px) {
  #content .ce_rsce_quote > div {
    padding: 80px 480px 80px 100px;
  }
  #content .ce_rsce_quote .img {
    right: 80px;
  }
}

.ce_rsce_anfrage {
  padding: 15px;
}
.ce_rsce_anfrage > div {
  padding: 30px;
  position: relative;
}
.ce_rsce_anfrage > div:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: -1;
  border-radius: 30px;
  background: #fff;
}
.ce_rsce_anfrage .signet {
  display: none;
}
@media (min-width: 640px) {
  .ce_rsce_anfrage {
    padding: 30px;
  }
  .ce_rsce_anfrage > div {
    padding: 50px 70px;
  }
  .ce_rsce_anfrage > div:before {
    transform: skew(-6deg, 0);
  }
}
@media (min-width: 960px) {
  .ce_rsce_anfrage > div {
    padding: 60px 80px;
  }
  .ce_rsce_anfrage .signet {
    display: block;
    position: absolute;
    right: 40px;
    top: -75px;
    background: var(--color-primary) url(/files/theme/images/signet_weiss.svg) no-repeat center center;
    background-size: 80px auto;
    width: 150px;
    height: 150px;
    border-radius: 50%;
  }
  .ce_rsce_anfrage .text {
    padding-right: 100px;
  }
  .ce_rsce_anfrage p.button, .ce_rsce_linkbox.layout-min .ce_rsce_anfrage p.button {
    position: absolute;
    right: 70px;
    bottom: 40px;
  }
}

.ce_rsce_google h1 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}
.ce_rsce_google h1 img {
  margin-right: 20px;
}
.ce_rsce_google .slider {
  padding: 0 30px;
}
.ce_rsce_google .slide {
  padding: 15px;
}
.ce_rsce_google .slide > div {
  height: 100%;
  position: relative;
  padding: 25px 15px;
}
.ce_rsce_google .slide > div:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: -1;
  border-radius: 20px;
  border: 1px solid var(--color-primary);
}
.ce_rsce_google .slide .stars {
  text-align: center;
}
.ce_rsce_google .slide .stars img {
  width: 140px;
}
.ce_rsce_google .slide .text {
  margin-top: 10px;
  text-align: center;
}
.ce_rsce_google .slide .text p {
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
}
.ce_rsce_google .slide .name {
  text-align: center;
  margin-top: 20px;
  color: var(--color-primary);
  text-transform: uppercase;
  font-size: 21px;
}
@media (min-width: 640px) {
  .ce_rsce_google .slider {
    padding: 0 60px;
  }
  .ce_rsce_google .slide {
    padding: 20px;
  }
  .ce_rsce_google .slide > div {
    padding: 30px 50px;
  }
  .ce_rsce_google .slide > div:before {
    transform: skew(-6deg, 0);
  }
}
@media (min-width: 960px) {
  .ce_rsce_google .slide {
    width: 50%;
  }
}

.flickity-button {
  background: none;
  opacity: 1;
}
.flickity-button svg {
  fill: var(--color-primary);
}
.flickity-button:hover {
  background: none;
}
.flickity-button:hover svg {
  fill: var(--color-primary-darker);
}

.ce_rsce_team .item {
  text-align: center;
}
.ce_rsce_team .img img {
  object-fit: cover;
  width: 200px;
  border-radius: 50%;
  aspect-ratio: 1;
}
.ce_rsce_team .name {
  font-weight: 600;
  margin-top: 5px;
}
@media (min-width: 640px) {
  .ce_rsce_team .item {
    width: 50%;
  }
  .ce_rsce_team .name {
    margin-top: 15px;
  }
}
@media (min-width: 960px) {
  .ce_rsce_team .item {
    width: 33.333333%;
  }
}

.ce_rsce_team_home {
  margin: 0 auto 30px auto !important;
}
.ce_rsce_team_home .grid, .ce_rsce_team_home .trainer-list, .ce_rsce_team_home .mod_registration .formbody, .mod_registration .ce_rsce_team_home .formbody, .ce_rsce_team_home .mod_personalData .formbody, .mod_personalData .ce_rsce_team_home .formbody, .ce_rsce_team_home form > div, .ce_rsce_team_home .ce_rsce_logos .inner, .ce_rsce_logos .ce_rsce_team_home .inner, .ce_rsce_team_home .rs-columns, .ce_rsce_team_home .content-gallery ul, .content-gallery .ce_rsce_team_home ul, .ce_rsce_team_home .ce_rsce_haendler .haendler, .ce_rsce_haendler .ce_rsce_team_home .haendler, .ce_rsce_team_home .ce_rsce_team > div {
  justify-content: center;
}
.ce_rsce_team_home .item {
  font-size: 16px;
  max-width: 560px;
}
.ce_rsce_team_home .img > div {
  height: 0;
  padding-bottom: 100%;
  background: transparent no-repeat center center;
  background-size: cover;
}
.ce_rsce_team_home .text {
  padding: 15px 20px;
  background-color: var(--color-primary);
  background: linear-gradient(0deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
  text-align: center;
}
.ce_rsce_team_home h4 {
  font-size: 21px;
  margin: 15px 0 0 0;
  font-weight: 600;
}
.ce_rsce_team_home .contact {
  margin-top: 10px;
}
.ce_rsce_team_home .contact i.fas {
  min-width: 24px;
  text-align: center;
  font-size: 21px;
  margin-right: 4px;
  color: #fff;
}
@media (min-width: 960px) {
  .ce_rsce_team_home {
    margin-top: -70px !important;
  }
  .ce_rsce_team_home .inner {
    display: flex;
    overflow: hidden;
  }
  .ce_rsce_team_home .img {
    order: 2;
    width: 50%;
  }
  .ce_rsce_team_home .img > div {
    padding-bottom: 100%;
  }
  .ce_rsce_team_home .text {
    order: 1;
    width: 50%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    position: relative;
    text-align: right;
  }
  .ce_rsce_team_home .text > div {
    position: relative;
  }
  .ce_rsce_team_home .text:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 0;
    top: 0;
    right: -30px;
    width: 60px;
    height: 100%;
    background-color: var(--color-primary);
    background: linear-gradient(0deg, var(--color-primary) 0%, var(--color-primary-darker) 100%);
    transform: skewX(-10deg);
  }
}

.ce_rsce_team2 .img > div {
  height: 0;
  padding-bottom: 120%;
  background: transparent no-repeat center top;
  background-size: cover;
}
.ce_rsce_team2 .info {
  margin-top: 20px;
}
.ce_rsce_team2 .info h4 {
  font-size: 20px;
  color: var(--text-color);
  font-weight: 600;
}
@media (min-width: 640px) {
  .ce_rsce_team2 .item {
    width: 50%;
  }
}
@media (min-width: 960px) {
  .ce_rsce_team2 .item {
    width: 33.3333%;
  }
}
@media (min-width: 1200px) {
  .ce_rsce_team2 .item {
    width: 25%;
  }
}

.ce_rsce_accordion > .item {
  border-top: 1px solid #ccc;
}
.ce_rsce_accordion > .item:last-child {
  border-bottom: 1px solid #ccc;
}
.ce_rsce_accordion > .item h4 {
  margin: 0;
  padding: 0;
  text-transform: none;
}
.ce_rsce_accordion > .item h4 a {
  color: var(--color-primary);
}
.ce_rsce_accordion > .item a.toggle {
  display: block;
  padding: 25px 30px 25px 0;
  position: relative;
}
.ce_rsce_accordion > .item a.toggle span {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 45px;
  font-weight: 400;
  color: var(--color-accent);
}
.ce_rsce_accordion > .item a.toggle span.minus {
  display: none;
  right: 10px;
  top: calc(50% - 4px);
}
.ce_rsce_accordion > .item .contents {
  display: none;
  width: 100% !important;
  /* visibility: hidden;
  transform: translateY(-100%);
  opacity: 0;
  transition: all ease-out 0.25s; */
}
.ce_rsce_accordion > .item .contents > div {
  padding: 10px 0 20px 0;
}
.ce_rsce_accordion > .item .content-gallery {
  margin: 40px 0 0 0 !important;
}
.ce_rsce_accordion > .item.show a.toggle span.plus {
  display: none;
}
.ce_rsce_accordion > .item.show a.toggle span.minus {
  display: block;
}
@media (min-width: 960px) {
  .ce_rsce_accordion > .item a.toggle {
    padding: 20px 30px 20px 0;
  }
  .ce_rsce_accordion > .item .contents > div {
    padding: 20px 0 30px 0;
  }
}
.inverse .ce_rsce_accordion > .item h4 a, .modal .ce_rsce_accordion > .item h4 a, footer#social .ce_rsce_accordion > .item h4 a, footer#page-footer .ce_rsce_accordion > .item h4 a, .ce_rsce_video .content .ce_rsce_accordion > .item h4 a, .ce_rsce_linkbox.layout-min * .button .ce_rsce_accordion > .item h4 a, .ce_rsce_linkbox.layout-min #page-header .header-icons .account .dropdown button .ce_rsce_accordion > .item h4 a, #page-header .header-icons .account .ce_rsce_linkbox.layout-min .dropdown button .ce_rsce_accordion > .item h4 a, .ce_rsce_linkbox.layout-min * input[type=submit] .ce_rsce_accordion > .item h4 a, .ce_rsce_linkbox2 .ce_rsce_accordion > .item h4 a, #content .ce_rsce_quote .ce_rsce_accordion > .item h4 a, .ce_rsce_team_home .text .ce_rsce_accordion > .item h4 a {
  color: #fff;
}
.inverse .ce_rsce_accordion > .item h4 a:hover, .modal .ce_rsce_accordion > .item h4 a:hover, footer#social .ce_rsce_accordion > .item h4 a:hover, footer#page-footer .ce_rsce_accordion > .item h4 a:hover, .ce_rsce_video .content .ce_rsce_accordion > .item h4 a:hover, .ce_rsce_linkbox.layout-min * .button .ce_rsce_accordion > .item h4 a:hover, .ce_rsce_linkbox.layout-min #page-header .header-icons .account .dropdown button .ce_rsce_accordion > .item h4 a:hover, #page-header .header-icons .account .ce_rsce_linkbox.layout-min .dropdown button .ce_rsce_accordion > .item h4 a:hover, .ce_rsce_linkbox.layout-min * input[type=submit] .ce_rsce_accordion > .item h4 a:hover, .ce_rsce_linkbox2 .ce_rsce_accordion > .item h4 a:hover, #content .ce_rsce_quote .ce_rsce_accordion > .item h4 a:hover, .ce_rsce_team_home .text .ce_rsce_accordion > .item h4 a:hover {
  text-decoration: none;
}
.inverse .ce_rsce_accordion .contents, .modal .ce_rsce_accordion .contents, footer#social .ce_rsce_accordion .contents, footer#page-footer .ce_rsce_accordion .contents, .ce_rsce_video .content .ce_rsce_accordion .contents, .ce_rsce_linkbox.layout-min * .button .ce_rsce_accordion .contents, .ce_rsce_linkbox.layout-min #page-header .header-icons .account .dropdown button .ce_rsce_accordion .contents, #page-header .header-icons .account .ce_rsce_linkbox.layout-min .dropdown button .ce_rsce_accordion .contents, .ce_rsce_linkbox.layout-min * input[type=submit] .ce_rsce_accordion .contents, .ce_rsce_linkbox2 .ce_rsce_accordion .contents, #content .ce_rsce_quote .ce_rsce_accordion .contents, .ce_rsce_team_home .text .ce_rsce_accordion .contents {
  color: #fff;
}

.ce_rsce_carousel {
  padding: 0 30px;
  margin: 0 -15px !important;
}
.ce_rsce_carousel .item {
  padding: 15px 15px;
}
@media (max-width: 639px) {
  .ce_rsce_carousel .item {
    width: 100%;
  }
}
.ce_rsce_carousel .item > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ce_rsce_carousel .item .img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: transparent no-repeat center center;
  background-size: cover;
}
.ce_rsce_carousel .item .text {
  text-align: center;
  margin-top: 20px;
  font-weight: 600;
}
.ce_rsce_carousel .flickity-page-dots {
  bottom: -30px;
}
.ce_rsce_carousel .flickity-page-dots .dot {
  width: 12px;
  height: 12px;
  background: #fff;
  opacity: 0.8;
}
.ce_rsce_carousel .flickity-page-dots .dot.is-selected {
  background: var(--color-secondary);
  opacity: 1;
}

.ce_rsce_parallaxvideo {
  /* height: 0;
  padding-bottom: 55%; */
  height: 500px;
  position: relative;
  overflow: hidden;
}
.ce_rsce_parallaxvideo .inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
.ce_rsce_parallaxvideo video {
  position: absolute;
  object-fit: cover;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ce_rsce_parallaxvideo .text {
  position: absolute;
  text-align: center;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}
.ce_rsce_parallaxvideo .text * {
  color: #fff !important;
}
@media (min-width: 1200px) {
  .ce_rsce_parallaxvideo {
    height: 720px;
    padding: 0;
  }
}

.ce_rsce_video {
  position: relative;
}
.ce_rsce_video .inner {
  height: calc(100vh - var(--header-height));
  position: relative;
}
.ce_rsce_video .inner:after {
  width: 100%;
  height: 200px;
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  z-index: 10;
  background: url(../images/silhouette_orange.svg) no-repeat center bottom 10px;
  background-size: 2400px auto;
}
.ce_rsce_video .inner > div {
  height: 100%;
  background: transparent no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.ce_rsce_video .video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.ce_rsce_video .video:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
}
.ce_rsce_video .video video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translateX(-50%) translateY(-50%);
}
.ce_rsce_video .content {
  position: relative;
  text-align: center;
}
.ce_rsce_video .subtitle {
  font-size: 28px;
}
.ce_rsce_video .bottom {
  position: absolute;
  left: 50%;
  bottom: 100px;
  text-align: center;
  transform: translateX(-50%);
}
.ce_rsce_video .scroll-wrap {
  margin-top: 30px;
}
.ce_rsce_video a.button, .ce_rsce_linkbox.layout-min .ce_rsce_video a.button {
  height: 40px;
  font-size: 16px;
  border: 2px solid #fff;
  color: #fff;
}
.ce_rsce_video a.button:hover {
  background: transparent;
  border-color: var(--color-secondary);
  color: var(--color-secondary);
}
.ce_rsce_video .video-toggle-mute-wrap {
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 30px;
}
.ce_rsce_video .video-toggle-mute-wrap i.fas {
  font-size: 36px;
  color: var(--color-primary);
}
.ce_rsce_video a.video-toggle-mute {
  border: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 15px;
  color: #fff;
  /*
  border-radius: 50%;
  border: 1px solid #fff;
  display: inline-block;;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  font-size: 18px;
  background: rgba(0, 0, 0, 0.2);
  */
}
.ce_rsce_video a.video-toggle-mute .off {
  display: none;
}
.ce_rsce_video a.video-toggle-mute.muted .on {
  display: none;
}
.ce_rsce_video a.video-toggle-mute.muted .off {
  display: initial;
}
@media (min-width: 640px) {
  .ce_rsce_video .subtitle {
    font-size: 38px;
  }
  .ce_rsce_video a.button, .ce_rsce_linkbox.layout-min .ce_rsce_video a.button {
    height: 50px;
    font-size: 17px;
  }
}
@media (min-width: 960px) {
  .ce_rsce_video .inner {
    height: calc(100vh - var(--header-height) - 100px);
  }
  .ce_rsce_video a.video-toggle-mute {
    color: #fff;
  }
}

@media (max-width: 960px) {
  .ce_rsce_video .inner {
    height: auto;
  }
  .ce_rsce_video .video {
    position: relative;
    width: auto;
    height: auto;
  }
  .ce_rsce_video .video:after {
    display: none;
  }
  .ce_rsce_video .video video {
    position: static;
    width: 100%;
    height: 100%;
    transform: none;
  }
}
.ce_rsce_logos .item a {
  display: block;
  border: 1px solid #ddd;
  aspect-ratio: 1.6;
  padding: 15px;
  position: relative;
}
.ce_rsce_logos .item img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
.ce_rsce_logos .item .text {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: var(--color-secondary);
  padding: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  transition: all linear 0.15s;
}
.ce_rsce_logos .item .text i {
  position: absolute;
  top: 15px;
  right: 15px;
}
.ce_rsce_logos .item a:hover .text {
  opacity: 1;
}
@media (min-width: 640px) {
  .ce_rsce_logos .item {
    width: 50%;
  }
}
@media (min-width: 960px) {
  .ce_rsce_logos .item {
    width: 33.333333%;
  }
  .ce_rsce_logos .item a {
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  .ce_rsce_logos .item {
    width: 25%;
  }
}

.svg-hidden {
  height: 0;
  width: 0;
  position: absolute;
}

.rte a {
  text-decoration: underline;
  color: var(--color-primary);
}
.rte a:hover {
  text-decoration: none;
}

.inverse .rte a, .modal .rte a, footer#social .rte a, footer#page-footer .rte a, .ce_rsce_linkbox.layout-min * .button .rte a, .ce_rsce_linkbox.layout-min #page-header .header-icons .account .dropdown button .rte a, #page-header .header-icons .account .ce_rsce_linkbox.layout-min .dropdown button .rte a, .ce_rsce_linkbox.layout-min * input[type=submit] .rte a, .ce_rsce_linkbox2 .rte a, #content .ce_rsce_quote .rte a, .ce_rsce_team_home .text .rte a, .ce_rsce_video .content .rte a {
  text-decoration: underline;
  color: #fff;
}
.inverse .rte a:hover, .modal .rte a:hover, footer#social .rte a:hover, footer#page-footer .rte a:hover, .ce_rsce_linkbox.layout-min * .button .rte a:hover, .ce_rsce_linkbox.layout-min #page-header .header-icons .account .dropdown button .rte a:hover, #page-header .header-icons .account .ce_rsce_linkbox.layout-min .dropdown button .rte a:hover, .ce_rsce_linkbox.layout-min * input[type=submit] .rte a:hover, .ce_rsce_linkbox2 .rte a:hover, #content .ce_rsce_quote .rte a:hover, .ce_rsce_team_home .text .rte a:hover, .ce_rsce_video .content .rte a:hover {
  text-decoration: none;
}

p.teaser {
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
}
@media (min-width: 960px) {
  p.teaser {
    font-size: 30px;
  }
}

@media (min-width: 960px) {
  ul.col2 {
    column-count: 2;
    column-gap: 10%;
  }
}

:root {
  --header-height: 100px;
}
body {
  padding-top: var(--header-height);
}
@media (min-width: 960px) {
  body {
    padding-top: calc(var(--header-height) + 80px);
  }
}

#page-header {
  position: fixed;
  background: #fff;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
}
#page-header > .container, .ce_rsce_video #page-header > .content {
  height: 100%;
  position: relative;
}
#page-header > .container > div, .ce_rsce_video #page-header > .content > div {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#page-header #logo {
  width: 150px;
  flex: 0 0 auto;
  line-height: 1;
}
#page-header .spacer {
  flex: 1 1 auto;
  width: 20%;
}
#page-header .header-icons {
  display: flex;
  flex: 0 0 auto;
  height: 100%;
}
#page-header .header-icons > div {
  padding: 0 7px 3px 7px;
  display: flex;
  align-items: center;
  cursor: pointer;
}
#page-header .header-icons > div:hover {
  border-bottom: 3px solid var(--color-accent);
  padding-bottom: 0;
}
#page-header .header-icons > div:hover .dropdown {
  display: flex;
}
#page-header .header-icons .account .icon {
  width: 20px;
  height: 21px;
}
#page-header .header-icons .account .icon svg {
  width: 100%;
  transform: translateY(-2px);
}
#page-header .header-icons .account .dropdown {
  text-align: center;
  font-size: 17px;
  width: 240px;
}
#page-header .header-icons .lang {
  display: flex;
}
#page-header .header-icons .lang .icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  overflow: hidden;
  line-height: 1;
}
#page-header .header-icons .lang .icon img {
  width: 20px;
  height: 20px;
  max-width: none;
  object-fit: cover;
}
#page-header .header-icons .lang .dropdown {
  font-size: 17px;
  min-width: 180px;
}
#page-header .header-icons .lang .dropdown ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#page-header .header-icons .lang .dropdown ul li {
  margin: 4px 0;
}
#page-header .header-icons .lang .dropdown a {
  display: flex;
  align-items: center;
}
#page-header .header-icons .lang .dropdown a:hover {
  color: var(--color-accent);
}
#page-header .header-icons .lang .dropdown img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
}
#page-header .header-icons .dropdown {
  background: #fff;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
  padding: 20px 30px;
  position: absolute;
  top: 100%;
  right: 15px;
  display: none;
  min-height: 120px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#page-header .header-icons .dropdown > * {
  width: 100%;
}
#page-header .header-icons {
  /* a {
    display: inline-block;
    text-align: center;
    margin: 0 10px;
    line-height: 1;

    svg {
      width: 20px;
      height: 20px;
    }

    span {
      display: block;
      font-size: 12px;
      word-break: keep-all;
      margin-top: 5px;
    }
  } */
}
@media (min-width: 960px) {
  #page-header {
    transition: all ease-in-out 0.3s;
  }
  #page-header #logo {
    width: 180px;
    flex: 0 0 auto;
    transition: all ease-in-out 0.3s;
  }
  #page-header .spacer {
    display: none;
  }
  #page-header .header-icons > div {
    padding: 0 12px 3px 12px;
  }
  #page-header .header-icons .icon {
    transform: translateY(12px) !important;
  }
  #page-header.headroom--not-top {
    height: 80px;
  }
  #page-header.headroom--not-top #logo {
    width: 150px;
  }
}
#menu-button {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  padding: 11px;
  margin: 0 0 0 6px;
  transition: all ease-in-out 0.3s;
}
#menu-button path {
  fill: var(--color-primary);
}
@media (min-width: 960px) {
  #menu-button {
    transform: translateY(18px);
  }
}
body.nav-show {
  overflow: hidden;
}

#nav-main {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  transform: translateY(-100%);
  transition: transform ease-in-out 0.3s;
}
body.nav-show #nav-main {
  transform: translateY(0);
  visibility: visible;
}
#nav-main .inner {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
#nav-main .inner .scroll {
  width: 100vw;
  position: relative;
}
#nav-main .container, #nav-main .ce_rsce_video .content, .ce_rsce_video #nav-main .content {
  position: relative;
}
#nav-main .nav-container {
  position: absolute;
  left: 0;
  top: 0;
  padding: 50px 15px 30px 15px;
  width: 100vw;
  transition: transform ease-in-out 0.3s;
}
#nav-main .nav-container.level_1.subnav-show {
  transform: translateX(-100%);
}
#nav-main .nav-container.level_2 {
  left: 100vw;
  top: 0;
  visibility: hidden;
}
#nav-main .nav-container.level_2.show {
  visibility: visible;
}
#nav-main ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#nav-main ul li a {
  color: #fff;
  display: block;
  padding: 4px 0;
  transition: font-weight linear 0.1s;
  white-space: nowrap;
  font-weight: 600;
}
#nav-main ul li a:hover, #nav-main ul li.trail > a, #nav-main ul li.active > a {
  color: var(--color-accent);
  font-weight: 600;
}
#nav-main ul li:hover > a,
#nav-main ul li a:hover {
  font-weight: 600;
}
#nav-main ul i.fas {
  font-size: 16px;
  position: relative;
  top: -2px;
}
#nav-main ul.level_1 > li > a {
  text-transform: uppercase;
}
#nav-main ul.level_2 > li {
  transform: translateY(100%);
  opacity: 0;
  transition: transform, opacity ease-in-out 0.25s;
}
#nav-main ul.level_2 > li:nth-child(1) {
  transition-delay: 0.05s;
}
#nav-main ul.level_2 > li:nth-child(2) {
  transition-delay: 0.1s;
}
#nav-main ul.level_2 > li:nth-child(3) {
  transition-delay: 0.15s;
}
#nav-main ul.level_2 > li:nth-child(4) {
  transition-delay: 0.2s;
}
#nav-main ul.level_2 > li:nth-child(5) {
  transition-delay: 0.25s;
}
#nav-main ul.level_2 > li:nth-child(6) {
  transition-delay: 0.3s;
}
#nav-main ul.level_2 > li:nth-child(7) {
  transition-delay: 0.35s;
}
#nav-main ul.level_2 > li:nth-child(8) {
  transition-delay: 0.4s;
}
#nav-main ul.level_2 > li:nth-child(9) {
  transition-delay: 0.45s;
}
#nav-main ul.level_2 > li:nth-child(10) {
  transition-delay: 0.5s;
}
#nav-main ul.level_2 > li:nth-child(11) {
  transition-delay: 0.55s;
}
#nav-main ul.level_2 > li:nth-child(12) {
  transition-delay: 0.6s;
}
#nav-main ul.level_2 > li:nth-child(13) {
  transition-delay: 0.65s;
}
#nav-main ul.level_2 > li:nth-child(14) {
  transition-delay: 0.7s;
}
#nav-main ul.level_2 > li:nth-child(15) {
  transition-delay: 0.75s;
}
#nav-main ul.level_2 > li:nth-child(16) {
  transition-delay: 0.8s;
}
#nav-main ul.level_2 > li:nth-child(17) {
  transition-delay: 0.85s;
}
#nav-main ul.level_2 > li:nth-child(18) {
  transition-delay: 0.9s;
}
#nav-main ul.level_2 > li:nth-child(19) {
  transition-delay: 0.95s;
}
#nav-main ul.level_2 > li:nth-child(20) {
  transition-delay: 1s;
}
#nav-main .nav-container.level_2.show ul.level_2 > li {
  transform: translateY(0);
  opacity: 1;
}

#nav-main a.back {
  display: inline-block;
  font-size: 18px;
  margin-bottom: 20px;
}
#nav-main a.close {
  display: block;
  position: absolute;
  right: 25px;
  top: 32px;
  width: 32px;
  height: 32px;
  padding: 6px;
  line-height: 1;
}
#nav-main .nav-icons {
  margin-top: 30px;
}
#nav-main .nav-icons ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#nav-main .nav-icons ul li {
  margin: 15px 0;
}
#nav-main .nav-icons ul li a {
  font-size: 21px;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1;
  color: #fff;
  display: flex;
  align-items: center;
}
#nav-main .nav-icons ul li a img {
  margin-right: 15px;
}
#nav-main .nav-icons ul li a.phone img {
  width: 30px;
}
#nav-main .nav-icons ul li a.email img {
  width: 32px;
}
@media (min-width: 960px) {
  #nav-main .nav-container.level_1 {
    padding: 50px 0 50px 30px;
    width: 600px;
  }
  #nav-main .nav-container.level_2 {
    left: 100%;
    width: auto;
    padding: 15px 0 25px 40px;
    display: block;
    visibility: hidden;
  }
  #nav-main .nav-container.level_2.show {
    visibility: visible;
  }
  #nav-main ul.level_1 {
    font-size: 48px;
  }
  #nav-main ul.level_1 > li {
    position: relative;
  }
  #nav-main ul.level_2 {
    font-size: 24px;
  }
  #nav-main a.back {
    display: none;
  }
  #nav-main a.close {
    right: 40px;
    top: 65px;
    width: 40px;
    height: 40px;
  }
  #nav-main .button, #nav-main input[type=submit], #nav-main #page-header .header-icons .account .dropdown button, #page-header .header-icons .account .dropdown #nav-main button {
    font-size: 24px;
  }
  #nav-main .nav-icons {
    margin-top: 50px;
  }
  #nav-main .nav-icons ul li {
    margin: 15px 0;
  }
  #nav-main .nav-icons ul li a {
    font-size: 28px;
  }
  #nav-main .nav-icons ul li a img {
    width: 52px;
    margin-right: 15px;
  }
}

#nav-header {
  display: none;
  flex: 0 1 auto;
  height: 100%;
}
#nav-header ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#nav-header ul li.trail > a, #nav-header ul li.active > a, #nav-header ul li:hover > a,
#nav-header ul li a:hover {
  color: var(--color-primary-lighter);
}
#nav-header ul.level_1 {
  height: 100%;
  display: flex;
  font-size: 21px;
}
#nav-header ul.level_1 > li {
  height: 100%;
  display: block;
  margin: 0 15px;
  position: relative;
}
#nav-header ul.level_1 > li:last-child a {
  color: var(--color-blue);
}
#nav-header ul.level_1 > li > a {
  color: var(--color-primary);
  height: 100%;
  display: flex;
  position: relative;
  align-items: flex-end;
  padding-bottom: 20px;
  font-weight: 600;
  transition: padding ease-in-out 0.3s;
  text-transform: uppercase;
}
#nav-header ul.level_1 > li > a i.fas {
  font-size: 16px;
  padding-bottom: 10px;
  margin-right: 8px;
}
#nav-header ul.level_1 > li:hover > a:after, #nav-header ul.level_1 > li.active > a:after, #nav-header ul.level_1 > li.trail > a:after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 100%;
  background: var(--color-accent);
}
#nav-header ul.level_1 > li:last-child:hover > a:after, #nav-header ul.level_1 > li:last-child.active > a:after, #nav-header ul.level_1 > li:last-child.trail > a:after {
  background: var(--color-blue);
}
#nav-header ul.level_1 > li:hover ul.level_2, #nav-header ul.level_1 > li.hover ul.level_2, #nav-header ul.level_1 > li:focus-within ul.level_2 {
  display: block;
}
#nav-header ul.level_2 {
  display: none;
  position: absolute;
  top: 100%;
  padding: 30px 30px 30px 0;
}
#nav-header ul.level_2:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 200vw;
  left: -100vw;
  background: #fff;
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.4);
  z-index: -1;
}
#nav-header ul.level_2 > li {
  margin: 8px 0;
}
#nav-header ul.level_2 > li > a {
  text-transform: none;
  font-size: 21px;
  font-weight: 400;
  color: var(--text-color);
  white-space: nowrap;
  display: inline-block;
  padding: 2px 0;
}
#nav-header ul.level_2 > li > a i.fas {
  font-size: 16px;
  margin-right: 3px;
  position: relative;
  top: -2px;
}
#nav-header ul.level_2 > li a:hover, #nav-header ul.level_2 > li.active > a {
  color: var(--color-accent);
}
@media (min-width: 960px) {
  #nav-header {
    display: block;
  }
  #page-header.headroom--not-top #nav-header ul.level_1 > li > a {
    padding-bottom: 10px;
  }
}
@media (min-width: 1200px) {
  #nav-header ul.level_1 > li {
    margin: 0 25px;
  }
}

.services {
  background: var(--color-primary);
  padding: 15px 0;
  color: #fff;
  text-align: center;
}
.services > .container > div, .ce_rsce_video .services > .content > div {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.services .text {
  width: 100%;
}
.services .text .button, .services .text input[type=submit], .services .text #page-header .header-icons .account .dropdown button, #page-header .header-icons .account .dropdown .services .text button {
  font-size: 21px;
}
.services .icons {
  width: 100%;
  padding-top: 10px;
}
.services .icons a {
  display: inline-block;
  margin: 0 5px;
}
.services .icons a.phone {
  transform: translateY(2px);
}
.services .icons a.phone img {
  width: 30px;
}
.services .icons a.email img {
  width: 32px;
}
@media (min-width: 960px) {
  .services {
    height: 80px;
  }
  .services > .container, .ce_rsce_video .services > .content {
    height: 100%;
  }
  .services > .container > div, .ce_rsce_video .services > .content > div {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .services .icons {
    position: absolute;
    padding: 0;
    width: auto;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  .services .icons a {
    margin: 0 8px;
  }
}

.xxservices {
  background: var(--color-primary);
}
.xxservices > div {
  display: flex;
  flex-wrap: wrap;
}
.xxservices .item {
  width: 100%;
  height: 100px;
  border-bottom: 1px solid #ddd;
  text-transform: uppercase;
}
.xxservices .item:last-child {
  border-bottom: none;
}
.xxservices .item a {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.xxservices .item a span {
  display: block;
  width: 48px;
  height: 48px;
  background: transparent no-repeat center center;
  background-size: contain;
  margin: 0 20px;
}
.xxservices .item a[href^="#rueckruf"] span {
  background-image: url(/files/theme/images/phone.svg);
}
.xxservices .item a[href^="#rueckruf"]:hover span {
  background-image: url(/files/theme/images/phone.svg);
}
.xxservices .item a.anruf span {
  background-image: url(/files/theme/images/phone.svg);
}
.xxservices .item a.anruf:hover span {
  background-image: url(/files/theme/images/phone.svg);
}
.xxservices .item a[href^="#email"] span {
  background-image: url(/files/theme/images/mail.svg);
}
.xxservices .item a[href^="#email"]:hover span {
  background-image: url(/files/theme/images/mail.svg);
}
.xxservices .item a:hover {
  background: var(--color-primary-darker);
  color: #fff;
}
@media (min-width: 767px) {
  .xxservices {
    flex-wrap: nowrap;
  }
  .xxservices .item {
    border-bottom: none;
    border-right: 1px solid #ddd;
    width: 33.333333%;
    flex: 1 1 auto;
  }
  .xxservices .item a {
    padding: 0 50px;
    justify-content: flex-end;
  }
  .xxservices .item a span {
    width: 55px;
    height: 55px;
  }
  .xxservices .item:last-child {
    border-right: none;
  }
  .xxservices .item:last-child a {
    justify-content: flex-start;
  }
}
@media (min-width: 1200px) {
  .xxservices .item {
    font-size: 28px;
  }
}

#services-header {
  display: none;
}
@media (min-width: 960px) {
  #services-header {
    display: block;
    position: fixed;
    left: 0;
    width: 100%;
    z-index: 9;
    transition: all ease-in-out 0.3s;
    box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.3);
    transform: translateY(0);
    top: var(--header-height);
  }
  #services-header.headroom--not-top {
    top: 80px;
  }
  #services-header {
    /* &.show {
      // transform: translateY(0);
    }

    &.always-show {
      transform: translateY(0);
      top: var(--header-height);

      &.headroom--not-top {
        top: 100px;
      }
    } */
  }
}

#services-footer {
  padding: 30px 0;
  border-bottom: 1px solid #666;
}
@media (min-width: 960px) {
  #services-footer {
    display: none;
  }
}

footer#page-footer {
  background: var(--color-primary);
  font-size: 18px;
  text-align: center;
}
footer#page-footer .logo img {
  width: 160px;
}
footer#page-footer .logo-su img {
  width: 190px;
}
footer#page-footer .text {
  margin: 30px 0;
}
@media (min-width: 960px) {
  footer#page-footer .text {
    margin: 0;
  }
  footer#page-footer .logo {
    text-align: left;
  }
  footer#page-footer .logo-su {
    text-align: right;
  }
  footer#page-footer .container > div, footer#page-footer .ce_rsce_video .content > div, .ce_rsce_video footer#page-footer .content > div {
    display: flex;
    align-items: center;
  }
  footer#page-footer .container > div > div, footer#page-footer .ce_rsce_video .content > div > div, .ce_rsce_video footer#page-footer .content > div > div {
    flex: 1 1 auto;
    width: 33.33333%;
  }
}

footer#social {
  padding: 30px 0;
  background: var(--color-secondary);
  font-size: 36px;
  text-align: center;
  font-weight: 700;
  line-height: 1.2;
}
footer#social p {
  transform: translateY(-5px);
}
footer#social i.fa-instagram {
  margin-left: 15px;
  font-size: 58px;
  transform: translateY(8px);
}
footer#social i.fa-facebook-f {
  margin-left: 8px;
  font-size: 46px;
  transform: translateY(3px);
}
@media (min-width: 960px) {
  footer#social br {
    display: none;
  }
}

#bottom {
  padding: 15px 0;
  font-size: 17px;
  text-align: center;
}
#bottom ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#bottom a:hover {
  text-decoration: underline;
}
#bottom .container > div, #bottom .ce_rsce_video .content > div, .ce_rsce_video #bottom .content > div {
  margin: 10px 0;
}
@media (min-width: 960px) {
  #bottom > .container, .ce_rsce_video #bottom > .content {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #bottom ul li {
    display: inline;
    margin-right: 8px;
  }
}

.anchor {
  position: relative;
  top: -110px;
}
@media (min-width: 960px) {
  .anchor {
    top: -200px;
  }
}

.modal {
  position: fixed;
  z-index: 25;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background: var(--color-primary);
  transform: translateY(-100%);
  transition: transform ease-in-out 0.3s;
}
.modal label {
  text-align: left;
}
.modal h2:after {
  left: 50%;
  transform: translateX(-50%);
}
.modal > .container, .ce_rsce_video .modal > .content {
  position: relative;
}
.modal.show {
  transform: translateY(0);
}
.modal .inner {
  height: 100%;
  overflow: auto;
  padding: 60px 0 80px 0;
}
.modal .inner .container, .modal .inner .ce_rsce_video .content, .ce_rsce_video .modal .inner .content {
  display: flex;
  min-height: 100%;
  flex-direction: column;
}
.modal a.close {
  display: block;
  position: absolute;
  right: 25px;
  top: 31px;
  width: 32px;
  height: 32px;
  padding: 6px;
  line-height: 1;
}
@media (min-width: 960px) {
  .modal a.close {
    right: 39px;
    top: 65px;
    width: 40px;
    height: 40px;
  }
}
.modal h1 img {
  width: 60px;
  position: relative;
  bottom: -5px;
  margin-right: 10px;
}

body.modal-show {
  overflow: hidden;
}

.modal {
  text-align: center;
}
.modal h1 {
  color: var(--color-primary);
}
.modal .mod_form {
  width: 760px;
  max-width: 100%;
  margin: 20px auto 0 auto;
}
.modal .formbody {
  display: flex;
  flex-wrap: wrap;
}
.modal .widget {
  width: 100%;
}
.modal .widget-checkbox fieldset {
  display: flex;
  flex-wrap: wrap;
}
.modal .widget-checkbox fieldset legend {
  width: 100%;
  color: #fff;
}
.modal .widget-checkbox fieldset#ctrl_6 span {
  white-space: initial;
  width: 100%;
}
.modal .widget-checkbox span {
  width: auto;
  flex: 0 0 auto;
  margin-right: 20px;
  white-space: nowrap;
}
.modal .widget-altcha label {
  font-size: 15px;
  white-space: nowrap;
  margin: 0;
}

form span.mandatory {
  color: var(--color-secondary);
}
form p.error {
  color: var(--red);
  font-size: 17px;
  font-weight: 500;
  margin: 5px 0;
  line-height: 1.3;
}
form .widget {
  margin: 0;
}
form .widget-text input {
  width: 100%;
}
form .widget-checkbox.w50 {
  margin: 20px 0;
}
form .widget-checkbox.w50 > fieldset {
  width: 80%;
}
@media (min-width: 640px) {
  form .widget.w-50 {
    width: 50%;
  }
}

.form-confirmation a {
  display: inline-flex;
  align-items: center;
  margin-top: 30px;
}
.form-confirmation a img {
  margin-right: 20px;
}
.form-confirmation a:hover {
  text-decoration: none;
}

p.error,
.captcha_text.error {
  display: block;
  width: 100%;
  font-size: 17px;
  color: var(--color-accent);
  margin: 8px 0;
}

.widget.error {
  display: flex;
  flex-wrap: wrap;
}
.widget.error p.error {
  order: 10;
}

#login {
  text-align: center;
}
#login h2 + * {
  text-align: center;
  margin-top: 5px;
  font-size: 24px;
}
#login .col2 {
  border: 1px solid #eee;
  border-radius: 6px;
  margin-top: 30px;
}
#login .col2 > div > div {
  padding: 30px;
}
#login .login h4 {
  color: var(--color-accent);
  margin-bottom: 30px;
}
#login .password-reset {
  font-size: 17px;
  margin-top: 20px;
}
#login .password-reset a {
  text-decoration: underline;
  color: #999;
}
#login .register {
  background: #eee;
}
@media (min-width: 960px) {
  #login .col2 {
    margin-top: 80px;
    display: flex;
  }
  #login .col2 > div {
    width: 50%;
  }
  #login .col2 > div > div {
    padding: 50px;
  }
}

.mod_registration .widget-checkbox, .mod_personalData .widget-checkbox {
  width: 100% !important;
}
.mod_registration .widget-checkbox legend, .mod_personalData .widget-checkbox legend {
  display: none;
}
.mod_registration .widget-checkbox a, .mod_personalData .widget-checkbox a {
  text-decoration: underline;
}
.mod_registration .widget-checkbox a:hover, .mod_personalData .widget-checkbox a:hover {
  text-decoration: none;
}
.mod_registration .tl_confirm, .mod_personalData .tl_confirm {
  text-align: center;
  margin: 30px 0;
  color: var(--color-accent);
}
@media (min-width: 640px) {
  .mod_registration .widget, .mod_personalData .widget {
    width: 50%;
  }
}

.mod_personalData .mod_login {
  margin: 20px 0 !important;
}
.mod_personalData .widget-submit {
  width: 100%;
  text-align: center;
}

.mod_lostPassword form {
  max-width: 500px;
}

.maps {
  height: 400px;
  position: relative;
}
.maps iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (min-width: 960px) {
  .maps {
    height: 500px;
  }
}

@keyframes waves {
  from {
    transform: rotate(-10deg) scaleY(1) scaleX(1);
    bottom: -300px;
  }
  to {
    transform: rotate(-10deg) scaleY(1.1) scaleX(1.05);
    bottom: -300px;
  }
}
#content > * {
  /* position: relative;
  background: #fff; */
}

#mitglied-werden h1 {
  margin: 0;
  padding: 0;
}
#mitglied-werden h1:after {
  display: none;
}
@media (min-width: 960px) {
  #mitglied-werden h1 {
    font-size: 88px;
  }
}

.members-only h1, .members-only h2 {
  padding: 0;
}
.members-only h1:after, .members-only h2:after {
  display: none;
}
.members-only .button.secondary, .members-only input.secondary[type=submit], .members-only #page-header .header-icons .account .dropdown button.secondary, #page-header .header-icons .account .dropdown .members-only button.secondary, .members-only .button.secondary:hover {
  margin: 0 0 30px 0;
  transform: translateY(-15px);
  background: var(--color-secondary);
  color: #fff;
  border: none;
}

.trainer-list .trainer-card {
  text-align: center;
}
.trainer-list .trainer-card .img {
  position: relative;
}
.trainer-list .trainer-card .img img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 50%;
}
.trainer-list .trainer-card .img i {
  position: absolute;
  right: 50%;
  bottom: 15px;
  background: var(--color-accent);
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 37px;
  text-align: center;
  border-radius: 50%;
  border: 2px solid #fff;
  display: block;
  opacity: 1;
  transform: translateX(100px);
  transition: all linear 0.1s;
}
.trainer-list .trainer-card .name {
  font-weight: 700;
  font-size: 24px;
  margin-top: 10px;
  transition: color linear 0.15s;
}
.trainer-list .trainer-card .categories {
  font-weight: 500;
  transition: color linear 0.15s;
}
.trainer-list .trainer-card a:hover {
  color: var(--color-accent);
}
@media (min-width: 640px) {
  .trainer-list .trainer-card {
    width: 50%;
  }
}
@media (min-width: 960px) {
  .trainer-list .trainer-card {
    width: 33.333333%;
  }
}

.trainer-detail.fancybox-content {
  border-radius: 10px;
  padding: 30px 0;
}
.trainer-detail .fancybox-close-small svg path {
  fill: var(--color-accent);
}
.trainer-detail h3 {
  padding-bottom: 36px;
  position: relative;
  margin-bottom: 30px;
}
.trainer-detail h3:after {
  content: "";
  display: block;
  background: var(--color-secondary);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 140px;
  height: 5px;
}
.trainer-detail .categories {
  font-size: 28px;
  line-height: 1.3;
}
.trainer-detail .description {
  margin-top: 30px;
}
.trainer-detail .img {
  margin-top: 30px;
}
.trainer-detail .img img {
  border-radius: 8px;
}
@media (min-width: 960px) {
  .trainer-detail.fancybox-content {
    padding: 50px 30px;
  }
  .trainer-detail .fancybox-close-small {
    right: 10px;
    top: 10px;
  }
  .trainer-detail .text {
    width: 50%;
  }
  .trainer-detail .img {
    width: 50%;
    margin: 0;
  }
}

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