/***
    Grid (Shaker)
*******************************************************************************/
/***
    Break-points
*******************************************************************************/
/***
    Color
*******************************************************************************/
/* Text Color  ********************************************/
/* Odd/Even Color ***********************************/
/* Form Input Felder ***********************************/
/***
    Font
*******************************************************************************/
/***
    Header
*******************************************************************************/
/***
    Menü
*******************************************************************************/
/***
    Components
*******************************************************************************/
/* Paragraphs *********************************************/
/* Paragraphs Timeline *********************************************/
/* Slider *************************************************/
/***
    Animation
*******************************************************************************/
/***
    Basic
****************************************************************************/
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/***
    Layout
****************************************************************************/
.section {
  width: 100%;
}
/*Padding Abstand zwischen den Paragraphen (Aussen) in PIXEL!*/
.padding-abstand {
  padding-left: 3%;
  padding-right: 3%;
}
@media screen and (max-width: 567px) {
  .padding-abstand {
    padding-left: 17px;
    padding-right: 17px;
  }
}
.content {
  box-sizing: border-box;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .content {
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 750px) and screen and (max-width: 567px) {
  .content {
    padding-left: 17px;
    padding-right: 17px;
  }
}
/* Font Max Size*/
/***
    Components
****************************************************************************/
/* Link mit Pfeil
 * --------------
 */
.link-mit-pfeil {
  text-decoration: none;
}
.link-mit-pfeil:hover {
  text-decoration: none;
}
.link-mit-pfeil:after {
  content: "\f105";
  font-family: "Font Awesome 5 Free";
  font-size: 1.2em;
  padding: 0 0.3em;
  transition: padding 0.3s cubic-bezier(.65,.05,.36,1);
}
.link-mit-pfeil:hover:after {
  padding-left: 0.5em;
}
/* Buttons
 * -------
 * dem a-Element hinzufügen
 */
/***
    States
****************************************************************************/
/* Button Animation
 * ----------------
 * dem a-Element hinzuf端gen
 */
.button-animation:hover {
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  transform: scale(1.01);
  -webkit-transform: scale(1.01);
}
.button-animation:active {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  transform: scale(1);
  -webkit-transform: scale(1);
}
@media only screen and (max-width: 768px) {
  .button-animation:hover {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
    transform: none;
    -webkit-transform: none;
  }
  .button-animation:active {
    transform: none;
    -webkit-transform: none;
  }
}
/* Mixin f端r Image Zoom Effekt.
 * ----------------------------
 * Dem das Bild umgebenden Element hinzuf端gen.
 */
.image-zoom {
  overflow: hidden;
  display: block;
}
.image-zoom img {
  transform: scale(1);
  -webkit-transform: scale(1);
  transition: transform 0.4s cubic-bezier(.65,.05,.36,1);
}
.image-zoom img:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}
@media only screen and (max-width: 768px) {
  .image-zoom img {
    transform: none;
    -webkit-transform: none;
  }
  .image-zoom img:hover {
    transform: none;
    -webkit-transform: none;
  }
}
.noOpacity {
  opacity: 1;
}
@media only screen and (max-width: 992px) {
  .nomobile {
    display: none;
  }
}
/***
    Skins
****************************************************************************/
.box-bg {
  background-color: #fff;
}
/* Material Design Shadows
 * -----------------------
 * Author: Florian Kutschera (@gefangenimnetz), Conceptboard GmbH (@conceptboardapp)
 * https://medium.com/@Florian/freebie-google-material-design-shadow-helper-2a0501295a2d#.qwk59xyp0
 */
/***
    Vendor Prefixes
****************************************************************************/
.notselection {
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Chrome/Safari/Opera */
  -khtml-user-select: none;
  /* Konqueror */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently */
}
.borderBox {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.animation_fadein {
  -webkit-animation: 1.2 ease 0s normal forwards 1 fadein;
  animation: 1.2s ease 0s normal forwards 1 fadein;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  33% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.animation_fade {
  -moz-transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
html {
  font-size: 1.1em;
  line-height: 1.7;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 400;
  color: #333333;
  overflow-x: hidden;
  -webkit-animation: 1.2 ease 0s normal forwards 1 fadein;
  animation: 1.2s ease 0s normal forwards 1 fadein;
}
@media only screen and (max-width: 480px) {
  html {
    font-size: 1em;
    line-height: 1.5;
  }
}
body {
  margin: 0;
  padding: 0;
  background-color: #fff;
}
ul {
  list-style-type: none;
  display: inherit;
}
p {
  margin-top: 0;
  margin-bottom: 1em;
}
a {
  color: #949ea8;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
/* §Überschriften h1, h2, h3, h4, h5 ,h6*/
h6 {
  font-size: 9.69230769px;
  font-weight: 300;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  text-align: left;
  color: #949ea8;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
h6 a,
h6 a:link,
h6 a:hover,
h6 a:visited {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #949ea8;
  text-decoration: none;
}
h5 {
  font-size: 11.23076923px;
  font-weight: 300;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  text-align: left;
  color: #949ea8;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
h5 a,
h5 a:link,
h5 a:hover,
h5 a:visited {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #949ea8;
  text-decoration: none;
}
h4 {
  font-size: 14.30769231px;
  font-weight: 300;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  text-align: left;
  color: #949ea8;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
h4 a,
h4 a:link,
h4 a:hover,
h4 a:visited {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #949ea8;
  text-decoration: none;
}
h3 {
  font-size: 18.92307692px;
  font-weight: 300;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  text-align: left;
  color: #949ea8;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
h3 a,
h3 a:link,
h3 a:hover,
h3 a:visited {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #949ea8;
  text-decoration: none;
}
h2 {
  font-size: 25.07692308px;
  font-weight: 300;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  text-align: left;
  color: #949ea8;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
h2 a,
h2 a:link,
h2 a:hover,
h2 a:visited {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #949ea8;
  text-decoration: none;
}
h1 {
  font-size: 32.76923077px;
  font-weight: 300;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  text-align: left;
  color: #949ea8;
  margin-bottom: 0.5em;
  line-height: 1.2;
}
h1 a,
h1 a:link,
h1 a:hover,
h1 a:visited {
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  color: #949ea8;
  text-decoration: none;
}
.mm-wrapper {
  overflow-x: unset;
}
@media only screen and (max-width: 480px) {
  h6 {
    font-size: 15.17647059px;
    font-weight: 400;
    line-height: 1.1em;
    margin-bottom: 1em;
  }
  h5 {
    font-size: 15.70588235px;
    font-weight: 400;
    line-height: 1.1em;
    margin-bottom: 1em;
  }
  h4 {
    font-size: 17.41176471px;
    font-weight: 400;
    line-height: 1.1em;
    margin-bottom: 1em;
  }
  h3 {
    font-size: 20.29411765px;
    font-weight: 400;
    line-height: 1.1em;
    margin-bottom: 1em;
  }
  h2 {
    font-size: 24.35294118px;
    font-weight: 400;
    line-height: 1.1em;
    margin-bottom: 1em;
  }
  h1 {
    font-size: 29.58823529px;
    font-weight: 400;
    line-height: 1.1em;
    margin-bottom: 1em;
  }
}
h1 {
  color: #333333;
}
img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
}
figure {
  margin: 0;
}
strong,
b {
  font-weight: bold;
}
hr {
  border: 0;
  border-top: 3px solid #949ea8;
  height: 1px;
  margin-top: 4%;
  margin-bottom: 28px;
}
blockquote {
  background: #DFDFDF;
  border-left: 10px solid #CFCFCF;
  margin: 1.5em 0;
  padding: 0.5em 10px;
  quotes: "\201C" "\201D" "\2018" "\2019";
}
blockquote:before {
  color: #CFCFCF;
  content: open-quote;
  font-size: 4em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
}
table thead {
  background: #c5c5c5;
}
table tbody tr:nth-child(2n+1) {
  background: #CFCFCF;
}
@media only screen and (max-width: 1200px) {
  .view-section .tabelle {
    width: 100%;
    overflow-y: auto;
    margin: 0 0 1em;
  }
  .view-section .tabelle::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 14px;
    height: 14px;
  }
  .view-section .tabelle::-webkit-scrollbar-thumb {
    border-radius: 8px;
    border: 3px solid #fff;
    background-color: rgba(0, 0, 0, 0.3);
  }
  .view-section .tabelle .views-table thead tr td:first-child,
  .view-section .tabelle .views-table tbody tr td:first-child {
    position: sticky;
    left: 0;
    background-color: #CFCFCF;
    border-bottom: 1px solid rgba(225, 225, 240, 0.4);
    min-width: 100px;
    box-shadow: 1px 2px rgba(80, 80, 80, 0.4);
  }
  .view-section .tabelle .views-table thead tr th:first-child,
  .view-section .tabelle .views-table tbody tr th:first-child {
    z-index: 10;
    position: sticky;
    left: 0;
    background-color: #c5c5c5;
    border-bottom: 1px solid rgba(225, 225, 240, 0.4);
    min-width: 100px;
    box-shadow: 1px 1px rgba(80, 80, 80, 0.4);
  }
  .view-section .tabelle .views-table thead tr:nth-child(2n) td:first-child,
  .view-section .tabelle .views-table tbody tr:nth-child(2n) td:first-child {
    background-color: #e1e1f0;
  }
}
/* iphone size-adjust ***********************************************/
p,
ul li,
ol,
li,
div {
  -webkit-text-size-adjust: none;
}
/* Animation ***********************************************/
.animation_fadein0 {
  opacity: 0;
  -webkit-transition: all 0.35s cubic-bezier(0.43, 1.04, 0.58, 0.85);
  -ms-transition: all 0.35s cubic-bezier(0.43, 1.04, 0.58, 0.85);
  transition: all 0.35s cubic-bezier(0.43, 1.04, 0.58, 0.85);
}
.animation_fadein1 {
  opacity: 1;
}
/* Editor Style ***********************************************/
span.tab {
  width: 180px;
  display: block;
  float: left;
}
@media only screen and (max-width: 768px) {
  span.tab {
    width: 100%;
    display: block;
    float: none;
    margin-top: 0.5em;
  }
}
/* Auf Content Breite für DIVs. ***********************************************/
.content-wraper {
  box-sizing: border-box;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .content-wraper {
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 750px) and screen and (max-width: 567px) {
  .content-wraper {
    padding-left: 17px;
    padding-right: 17px;
  }
}
/* imagelightbox ***********************************************/
#imagelightbox {
  background: #fff;
}
.path-search .block-system-main-block {
  box-sizing: border-box;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .path-search .block-system-main-block {
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 750px) and screen and (max-width: 567px) {
  .path-search .block-system-main-block {
    padding-left: 17px;
    padding-right: 17px;
  }
}
.path-search section.search {
  box-sizing: border-box;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .path-search section.search {
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 750px) and screen and (max-width: 567px) {
  .path-search section.search {
    padding-left: 17px;
    padding-right: 17px;
  }
}
.path-search section.search ol {
  padding-left: 0;
}
.path-search section.search ol li:nth-child(2n+1) {
  background: #CFCFCF;
}
.social-wrapper {
  box-sizing: border-box;
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .social-wrapper {
    padding-left: 3%;
    padding-right: 3%;
  }
}
@media screen and (max-width: 750px) and screen and (max-width: 567px) {
  .social-wrapper {
    padding-left: 17px;
    padding-right: 17px;
  }
}
.social-wrapper .phone,
.social-wrapper .mail,
.social-wrapper .facebook,
.social-wrapper .xing,
.social-wrapper .linkedin,
.social-wrapper .youtube,
.social-wrapper .instagram,
.social-wrapper .twitter {
  display: inline-block;
  font-family: "Font Awesome 5 Brands";
  font-size: 12px;
  text-decoration: none;
  color: #ffffff;
  border-right: 0 solid #e1e1f0;
  padding: 0px 10px 0px 10px;
  width: 35px;
  text-align: center;
  margin-left: -5px;
}
.social-wrapper .phone:last-child,
.social-wrapper .mail:last-child,
.social-wrapper .facebook:last-child,
.social-wrapper .xing:last-child,
.social-wrapper .linkedin:last-child,
.social-wrapper .youtube:last-child,
.social-wrapper .instagram:last-child,
.social-wrapper .twitter:last-child {
  border: none;
}
.social-wrapper .phone:hover,
.social-wrapper .mail:hover,
.social-wrapper .facebook:hover,
.social-wrapper .xing:hover,
.social-wrapper .linkedin:hover,
.social-wrapper .youtube:hover,
.social-wrapper .instagram:hover,
.social-wrapper .twitter:hover {
  background-color: #788591;
}
@media only screen and (max-width: 1200px) {
  .social-wrapper .phone,
  .social-wrapper .mail,
  .social-wrapper .facebook,
  .social-wrapper .xing,
  .social-wrapper .linkedin,
  .social-wrapper .youtube,
  .social-wrapper .instagram,
  .social-wrapper .twitter {
    margin-top: 3%;
  }
}
.social-wrapper .phone {
  font-family: "Font Awesome 5 Free";
}
.social-wrapper .phone:before {
  content: "\f095";
}
.social-wrapper .mail {
  font-family: "Font Awesome 5 Free";
}
.social-wrapper .mail:before {
  content: "\f0e0";
}
.social-wrapper .facebook:before {
  content: "\f39e";
}
.social-wrapper .instagram:before {
  content: "\f16d";
}
.social-wrapper .twitter:before {
  content: "\f099";
}
.social-wrapper .youtube:before {
  content: "\f167";
}
.social-wrapper .xing:before {
  content: "\f168";
}
.social-wrapper .linkedin:before {
  content: "\f0e1";
}
.landing-page {
  position: fixed;
  top: 0;
  z-index: 500;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
}
.landing-page img {
  width: 40%;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .landing-page img {
    width: 60%;
  }
}
.hide-landingpage {
  display: none;
  transition: all 3s ease;
}
:root {
  --ctColor1: #949ea8;
  --ctColor1Lighten: #ffffff;
  --ctColor1Background: #fff;
  --ctHeaderMaxHeightBig: 100px;
}
