@import url("classes.css");
/* @import url("elements.css"); */

/* Table of Contents
   - - - - - - - - -
   Globals
   Typography
   Header
   Header when scrolled
   Navigation
   Full Width Layout
   One Page / Smooth Scroll
   Full Width BG
   Body / Content
   Teaser with icons
   Blog / News
   Downloads
   Kontakt
   Bottom
   Footer / Copyright
   Usercentrics Button & Modal + Back2Top
   Website specific
   Media Queries
   Animations
   - - - - - - - - -
*/
 
/* --------------------------------------------------------------------------------------------  */
/* ----------------------------------------- Globals ------------------------------------------  */
/* --------------------------------------------------------------------------------------------  */

 :root {
  --font-fallback: Arial, Helvetica, sans-serif;
  --sm: 576px;
  --md: 768px;
  --lg: 992px;
  --xl: 1200px;
  --xxl: 1400px;
  
  --bs-body-color: #212529;
  --bs-body-bg: #fff;
  --bs-body-font-size: clamp(16px,1.5vw, 18px);
}


/* -------- fix for x-overflowing full-width elements and sticky nav  -------- */
/* 
html, body{
  overflow-x: clip;
} 
*/
  
/* --------------------------------------------------------------------------------------------  */
/* ----------------------------------------- Typography ---------------------------------------  */
/* --------------------------------------------------------------------------------------------  */
  
body {
  font-family: var(--secondary-font), var(--font-fallback);
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

h1,h2,h3,h4,h5{
  font-family: var(--primary-font), var(--font-fallback);
  font-weight: 400;
}

.font-special{
  font-family: var(--tertiary-font), var(--font-fallback);
}

h1{
  /* font-size: clamp(28px, 3vw, 45px); */
  font-size: clamp(37px, 3vw, 50px);
  line-height: 1.1;
}
h2{
  font-size: clamp(22px, 2vw, 38px);
  color: var(--primary-color,#0f6a9e);
  font-weight: 400;
}
h3{
  font-size: clamp(20px, 2vw, 36px);
  font-weight: 400;
  color: var(--primary-color,#1781b9);
}

.page-header h1 {
    font-size: clamp(28px, 2.5vw, 34px);
    color: var(--primary-color-dark,#12148e);
    margin-bottom: 35px;
}
.item-page h2{
  text-transform: uppercase;
  margin-bottom: 0px;
}

.page-smaller-headlines h2{
  font-size: clamp(25px, 2vw, 35px);
  font-weight: 400;
  color: var(--primary-color-dark,#0f6a9e);
}
.page-smaller-headlines h3{
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 400;
  color: var(--primary-color,#1781b9);
}
.page-smaller-headlines h4{
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--primary-color,#1781b9);
}

/* --------------------------------------------------------------------------------------------  */
/* ------------------------------------------ Header ------------------------------------------  */
/* --------------------------------------------------------------------------------------------  */

#sp-header .sp-module{
  margin-left: 0px;
}

#sp-header {     /* Sticky Header script is working with fixed values, check dynamic script for Cassiopeia (custom-ba.js)  */
  height: auto;
  position: fixed;
  background: rgba(255,255,255,0);
  box-shadow: none;
}

body.layout-edit-iframe #sp-header{
  display: none;
}

/* --------------------------------------------------------------------------------------------  */
/* ------------------------------------------ Logo --------------------------------------------  */
/* --------------------------------------------------------------------------------------------  */

body.home #sp-logo{
  background: #fff;
  translate: 20px 15px;
  padding: 10px;
  border-radius: 50%;
}

.jf_logo .brand-logo{
  padding: 0px 0px !important;
}
.jf_logo .brand-logo svg{
  transition: all ease .35s;
}
/*
.jf_logo .brand-logo{
  translate: 0px -5px;
  scale: 1.35;
  transform-origin: bottom left;
  transition: all ease .5s;
}
@media screen and (max-width: 1400px) {
  .jf_logo .brand-logo{
    scale: 1.1;
  }
} 
@media screen and (max-width: 1200px) {
  .jf_logo .brand-logo{
    scale: 1;
  }
} 
@media screen and (max-width: 992px) {
  .jf_logo .brand-logo{
    scale: 1.2;
  }
}
@media screen and (max-width: 576px) { 
  .jf_logo .brand-logo{
    transform-origin: bottom center;
    scale: 1.1;
  }
}

#sp-header.header-sticky .jf_logo .brand-logo{
  scale: 1;
}
*/


/* --------------------------------------------------------------------------------------------  */
/* ------------------------------------ Header when scrolled ----------------------------------  */
/* --------------------------------------------------------------------------------------------  */

.sticky-header-placeholder{
  height: 0px !important
}

#sp-header.header-sticky{
  z-index: 999;
  height: auto;
  animation:none; 
}

#sp-header.header-sticky #sp-logo .brand-logo svg{
  width: 100px;
}


@media screen and (max-width: 992px) {
 #sp-header.header-sticky #offcanvas-toggler {
   background: #fff;
   height: fit-content;
   padding: 10px;
   pointer-events: auto;
 }
 
 #sp-header:not(.header-sticky) .burger-icon>span {
   background-color: #fff;
 }
 
}

@media screen and (max-width: 576px) { 
  #sp-header.header-sticky{  /* on mobile only show burger menu when scrolling */
    background: transparent;
    pointer-events: none;
  }
  
  #sp-header.header-sticky #sp-logo{
    display: none;
  }
  
  /* on mobile center logo  */
  /* 
  #sp-header .row{   
    display: flex;
    justify-content: center;  
  }
  */
  #sp-menu{
    position: absolute !important; 
    right: 0px;
  }
  
}

/* --------------------------------------------------------------------------------------------  */
/* ------------------------------------------ Topbar ------------------------------------------  */
/* --------------------------------------------------------------------------------------------  */

/* countModules not working in custom header from Helix ultimate // CSS "has" doesn`t work in FF yet...adding JS*/ 
/*
#sp-topbar{
  display: none;
}
#sp-topbar:has(.sp-module),       
#sp-topbar:has(.moduletable) {  
  display: flex;
  padding: 5px 0px;
  height: 35px;
  background-color: var(--primary-color);
}
*/

#sp-topbar{
  display: flex;
  padding: 5px 0px;
  height: 35px;
  background-color: var(--primary-color);
}

#sp-topbar .container{
  align-self: center;
}

#sp-topbar .sp-column,
.container-topbar .container{
  display: flex;
  height: 100%;
  justify-content: flex-end; /* right or end not working on iOS */
}

/* ------------------------------------------------------------------------------------------------  */
/* ------------------------------------------ Above Menu ------------------------------------------  */
/* ------------------------------------------------------------------------------------------------  */

/* countModules not working in custom header from Helix ultimate // CSS "has" doesn`t work in FF yet...adding JS*/ 
/*
#sp-above-menu{
  display: none;
}

#sp-above-menu:has(.sp-module),
#sp-above-menu:has(.mod-custom),
#sp-above-menu:has(.moduletable) {  
  display: flex;
  padding: 10px 0px 0px;
  height: auto;
  justify-content: flex-end; 
  align-items: center;
}
*/

#sp-above-menu{
  display: flex;
  padding: 10px 0px 0px;
  height: auto;
  justify-content: flex-end; 
  align-items: center;
}


#sp-above-menu p{
  margin: 0px;
}

#sp-above-menu div{
  width: fit-content;
}

#sp-above-menu img{
  transition: all ease .5s;
}
#sp-header.header-sticky #sp-above-menu img{ 
  height: 0px;
}

@media screen and (max-width: 576px) { 
  #sp-header #sp-above-menu img{ 
    height: auto;
    width: 150px;
  }
}

/* --------------------------------------------------------------------------------------------  */
/* ---------------------------------------- Navigation ----------------------------------------  */
/* --------------------------------------------------------------------------------------------  */

.sp-megamenu-parent{
  translate: -50px 10px;
  background: #fff;
  padding: 0 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.sp-megamenu-parent>li>a, 
.sp-megamenu-parent>li>span {
  font-size: clamp(13px,2vw,14.5px);
  font-weight: 500;
  letter-spacing: 0.5px;
}

.sp-megamenu-parent > li > a, 
.sp-megamenu-parent > li > span, 
.sp-megamenu-parent .sp-dropdown li.sp-menu-item > a{
  font-family: var(--secondary-font), var(--font-fallback) !important;
  font-weight: 600;
  text-transform: uppercase;
}

.sp-megamenu-parent>li>a, 
.sp-megamenu-parent>li>span {
  padding: 0 15px;
  position: relative;
  line-height: 70px;
  color: var(--primary-color);
}

.sp-megamenu-parent>li:last-child>a{
  padding: 0 15px;
}

.sp-megamenu-parent>li:hover>a,
.sp-megamenu-parent>li.active>a, 
.sp-megamenu-parent>li.active:hover>a,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item>a:hover,
.sp-megamenu-parent .sp-dropdown li.sp-menu-item.active>a {
  color: var(--primary-color);
  font-weight: 600;
}

.offcanvas-menu .offcanvas-inner ul.menu li.active a,
.offcanvas-menu .offcanvas-inner ul.menu>li a:hover, 
.offcanvas-menu .offcanvas-inner ul.menu>li a:focus, 
.offcanvas-menu .offcanvas-inner ul.menu>li span:hover,
.offcanvas-menu .offcanvas-inner ul.menu>li span:focus{
   color: var(--secondary-color);
}

.sp-megamenu-parent .sp-dropdown .sp-dropdown-inner{
  background: #fff;
}
.sp-megamenu-parent .sp-dropdown li.sp-menu-item>a, 
.sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge) {
  color: var(--primary-color);
}


@media screen and (min-width: 992px) {
  
  /* hides arrows for subemnu on desktop view */
  #sp-menu .sp-megamenu-parent>li.sp-has-child>a:after, 
  #sp-menu .sp-megamenu-parent>li.sp-has-child>span:after {
    display: none;
  }
  
  #sp-menu .sp-megamenu-parent > li.sp-menu-item > a::before,
  #sp-menu .sp-megamenu-parent > li.sp-menu-item > span.sp-menu-heading::before {
    content: "";
    position: absolute;
    display: block;
    width: 70%;
    height: 2px;
    bottom: 20px;
    left: 50%;
    margin-left: -35%;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: top left;
    transition: transform 0.3s ease;
  }
  
  #sp-menu .sp-megamenu-parent > li.sp-menu-item.active > a::before,
  #sp-menu .sp-megamenu-parent > li.sp-menu-item:hover > a::before,
  #sp-menu .sp-megamenu-parent > li.sp-menu-item.active > span.sp-menu-heading::before,
  #sp-menu .sp-megamenu-parent > li.sp-menu-item:hover > span.sp-menu-heading::before {
    transform: scaleX(1);
  }
  
  .sp-megamenu-parent .sp-dropdown .sp-dropdown-inner {
   padding: 15px 20px;
   margin-top: 0;
   translate: -15px 0px;
   clip-path: polygon(5% 0, 100% 0, 95% 100%, 0% 100%);
  }
  
  .sp-megamenu-parent .sp-dropdown li.sp-menu-item>a, 
  .sp-megamenu-parent .sp-dropdown li.sp-menu-item span:not(.sp-menu-badge) {
    font-size: 14.5px;
    line-height: 1.2;
    display: inline-block;
    padding: 10px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 5px;
  }
  
  .sp-megamenu-parent .sp-dropdown li.sp-menu-item>a:hover,
  .sp-megamenu-parent .sp-dropdown li.sp-menu-item.active>a {
    background-color: var(--primary-color);
    clip-path: polygon(1% 0, 100% 0, 99% 100%, 0% 100%);
    color:#fff;
    /* text-decoration: underline; */
  }
  
  .container-header .mod-menu>li>a::after{
    display: none;
  } 
  
}

@media screen and (max-width: 1200px) {
  .sp-megamenu-parent>li>a, 
  .sp-megamenu-parent>li>span {
      padding: 0 15px;
  }
}

/* --------------------------------------------------------------------------------------------  */
/* -------------------------------------- Body / Content --------------------------------------  */
/* --------------------------------------------------------------------------------------------  */

/* positioning for edit icons */
main{
  position: relative;
}
.icons{
  position: absolute;
  top:-35px;
  display: none;
}

a, 
a:not([class]), 
.mod-list li a:hover,
.mod-list li.active>a{
  text-decoration: none;
  color: var(--primary-color);;
}

btn{border-radius: 0 !important;}

.btn-primary, 
.sppb-btn-primary{
  border-color: var(--primary-color);
  background-color: var(--primary-color);
}

.btn-primary:hover, 
.sppb-btn-primary:hover{
  border-color: var(--primary-color-dark);
  background-color: var(--primary-color-dark);
}

/* --------------------------------------------------------------------------------------------  */
/* ----------------------------------------- One Page / Smooth Scroll -------------------------  */
/* --------------------------------------------------------------------------------------------  */

.smooth-scroll {
  scroll-behavior: smooth;
  scroll-margin-top: 80px;
}

@media screen and (max-width: 576px) {
  .smooth-scroll {
    scroll-margin-top: 0px;
  }
}

.sm-scroll-mt-0 {scroll-margin-top: 0px;}
.sm-scroll-mt-10 {scroll-margin-top: 10px;}
.sm-scroll-mt-20 {scroll-margin-top: 20px;}
.sm-scroll-mt-30 {scroll-margin-top: 30px;}
.sm-scroll-mt-40 {scroll-margin-top: 40px;}
.sm-scroll-mt-50 {scroll-margin-top: 50px;}
.sm-scroll-mt-60 {scroll-margin-top: 60px;}
.sm-scroll-mt-70 {scroll-margin-top: 70px;}
.sm-scroll-mt-80 {scroll-margin-top: 80px;}
.sm-scroll-mt-90 {scroll-margin-top: 90px;}
.sm-scroll-mt-100 {scroll-margin-top: 100px;}
.sm-scroll-mt-110 {scroll-margin-top: 110px;}
.sm-scroll-mt-120 {scroll-margin-top: 120px;}
.sm-scroll-mt-130 {scroll-margin-top: 130px;}
.sm-scroll-mt-140 {scroll-margin-top: 140px;}
.sm-scroll-mt-150 {scroll-margin-top: 150px;}
.sm-scroll-mt-160 {scroll-margin-top: 160px;}
.sm-scroll-mt-170 {scroll-margin-top: 170px;}
.sm-scroll-mt-180 {scroll-margin-top: 180px;}
.sm-scroll-mt-190 {scroll-margin-top: 190px;}
.sm-scroll-mt-200 {scroll-margin-top: 200px;}

.sm-scroll-mt-75-neg {scroll-margin-top: -75px;}

section.active h3{
  text-decoration: underline;
  text-underline-offset: 8px;
}

section.active.bg-full::after {
    background: #ffdfb6;
}

/* --------------------------------------------------------------------------------------------  */
/* ----------------------------------------- Full Width BG ------------------------------------  */
/* --------------------------------------------------------------------------------------------  */

.bg-full {
  position: relative;
  display: grid;
}
.bg-full > * {
  position: relative;
  z-index: 2;
}
.bg-full::after {
  content: '';
  background: #c6e6d4;
  position: absolute;
  z-index: 0;
  height: 100%;
  width: 100vw;  
  margin-left: -50vw;
  left: 50%;
}
.bg-full-primary::after {
  background: var(--primary-color);
}
.bg-full-primary-light::after {
  background: var(--primary-color-light);
}
.bg-full-primary-dark::after {
  background: var(--primary-color-dark);
}
.bg-full-secondary::after {
  background: var(--secondary-color);
}
.bg-full-secondary-light::after {
  background: var(--secondary-color-light);
}
.bg-full-secondary-dark::after {
  background: var(--secondary-color-dark);
}
.bg-full-white::after {
  background: #fff;
}
.bg-full-eee::after {
  background: #eee;
}

.bg-full-overlay{
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin-left: -50vw;
  left: 50%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.8);
  pointer-events:none;
}


/* --------------------------------------------------------------------------------------------  */
/* --------------------------------------- Blog / News ----------------------------------------  */
/* --------------------------------------------------------------------------------------------  */

.blog-items {
  grid-gap: 35px;
}

.blog-items h2,
.blog-items h3{
  font-size: clamp(22px, 2vw, 26px);
  min-height: 65px;
  font-weight: 400;
}
.blog-featured .item-image img, 
.blog .item-image img, 
.latestnews .item-image img{
     object-fit: cover;
     filter: brightness(1) blur(0);
     transition: .2s ease-in-out;
}
.blog-featured .item-image img:hover, 
.blog .item-image img:hover, 
.latestnews .item-image img:hover{
     -webkit-filter: brightness(1.1) blur(0px) saturate(1.8);
     filter: brightness(1.1) blur(0px) saturate(1.8);
}

figure.float-start {
    margin-right: 2em;
}
figure.float-end {
    margin-left: 2em;
}


/* --------------------------------------------------------------------------------------------  */
/* ---------------------------------------- Downloads -----------------------------------------  */
/* --------------------------------------------------------------------------------------------  */

.downloads{
  margin: 2rem 0 2rem 0;
}
.downloads-item{
  background: #eee;
  padding: 10px;
  --dItemTransition: all ease .25s;
  transition: var(--dItemTransition);
}
.downloads-item:hover{
  transform: scale(1.05);
  background: #ddd;
}
.downloads-item_wfit{
  padding: 5px 35px 5px 5px;
  width: fit-content;
}
.downloads-item a{
 display: grid;
 grid-template-columns: 65px 1fr;
 align-items: center;
 gap: 15px;
 font-size: clamp(16px, 2vw, 18px);
 color: #555;
}
.downloads-item a:hover{
  color: var(--cassiopeia-color-link);
}
.downloads-item svg{
  transition: var(--dItemTransition);
  padding: 5px;
  width: 65px;
}
/*
.downloads-item a:hover svg .icon-corner{
  fill: #f34447;
}
.downloads-item a:hover svg .icon-body{
  fill: var(--primary-color-dark);
  fill: #aa0d00;
}
*/
.downloads-item a:hover svg .icon-body{
  fill: var(--primary-color-dark);
}
.downloads-item a svg .icon-text{
  transition: var(--dItemTransition);
}
.downloads-item a:hover svg .icon-text{
  scale: 1.05;
  transform-origin: 50% 60%;
}


/* --------------------------------------------------------------------------------------------  */
/* ------------------------------------------ Kontakt -----------------------------------------  */
/* --------------------------------------------------------------------------------------------  */

.com_contact #sp-main-body{
  padding-top: 0px;
}

.com-contact__container h3,
main .com-contact h3{
  display:none;
}
#contact-form button[type=submit]{
  float: right;
}

.contact .container-component .container{
  display: grid;
}

.contact .main-top{
  order: 1
}
.contact main{
  order: 2
}
.contact #system-message-container{
  order: 3;
  margin-top: 25px;
}

/*
.com-contact dl.dl-horizontal dd {
  grid-column-end: 3;
  grid-column-start: 2;
  margin-bottom: 0;
  padding: 0 0 0 1em;
}


#system-message-container{
  margin: 0 auto;
  width: 100%;
  height: 100%;
  padding: 5%;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 99999;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
}
  
#system-message-container joomla-alert{
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
  height: fit-content;  
}
*/

/* --------------------------------------------------------------------------------------------  */
/* ----------------------------------------- Bottom -------------------------------------------  */
/* --------------------------------------------------------------------------------------------  */

#sp-bottom{
  font-size: clamp(14px,2vw,16px);
}

/* auto width for bottom flex columns */
@media screen and (min-width: 1200px) {

  #sp-bottom1,
  #sp-bottom2,
  #sp-bottom3,
  #sp-bottom4{
    flex: 1 1 auto;
    width: auto;
  }

}


#sp-bottom .sp-module .sp-module-title {
  font-family: var(--secondary-font), var(--font-fallback);
  font-size: clamp(20px, 2vw, 24px);
  border-bottom: 1px solid var(--primary-color-dark,#555);
  padding-bottom: 5px;
  width: fit-content;
  font-weight: 600;
  color: var(--primary-color-dark,#555);
  margin-bottom: 25px;
}

#sp-bottom .sp-module ul{
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

#sp-bottom .sp-module ul>li{
  padding: 0 !important;
  margin: 0px;
}

#sp-bottom  a,
#sp-bottom .sp-module ul>li>a{
  color: #333;
}
#sp-bottom .sp-module ul>li>a a:hover{
  color: var(--primary-color);
}

#sp-bottom .sp-module ul>li.menu-divider {
  display: none;
}

/* --------------------------------------------------------------------------------------------  */
/* ------------------------------------ Footer / Copyright ------------------------------------  */
/* --------------------------------------------------------------------------------------------  */

#sp-footer .mod-footer .footer1,
.footer .mod-footer{
  position: relative;
  font-weight: 400;
  color: #eee;
  line-height: 2;
  display: flex;
  width: 100%;
  justify-content: space-between;
  font-size: clamp(14px,2vw,16px);
}

@media screen and (max-width: 1200px) {
  #sp-footer .mod-footer .footer1{
    flex-direction: column;
  }
}

#sp-footer .container-inner {
  padding: 20px 0;
}
#sp-footer a {
  color: #eee;
}

.footer .mod-menu{
  display: grid;
  grid-template-columns: repeat(5, auto); /* check how many items */
  gap: 10px;
  margin-bottom: 1em;	
}
.footer .mod-menu a{
  font-weight: 200;
  position: relative;
}
.footer .mod-menu>li>a::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  bottom: -5px;
  left: 0;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: top left;
  transition: transform 0.3s ease;
}
.footer .mod-menu li.active a::before,
.footer .mod-menu>li>a:hover::before {
  transform: scaleX(1);
}


/* ----------------------------------------------------------------------------------------------  */
/* ------------------------- Usercentrics Button & Modal v2 + Back2Top --------------------------  */
/* ----------------------------------------------------------------------------------------------  */



:root {
  --btns-width: 50px;
  --btns-height: 50px;
  --btns-position: absolute;
  --btns-bg-color: #fff;
  --btns-bg-color-active:  #fff;
  --btns-color: var(--primary-color);
  --btns-border: 1px solid var(--primary-color);
  --btns-border-radius: 5px;
  --btn-backtop-size: 23px; /* font-size for arrow icon */
  --btn-uc-size: 1.2; /* scaling of the fingerprint icon */
  --btns-box-shadow: none;
  --btns-xl-mr: 15px;
  --btn-backtop-xl-mb: 150px;
  --btn-uc-xl-mb: calc(var(--btn-backtop-xl-mb) + 65px);
  --btn-uc-opacity: 0;
  --btns-sm-mb: 15px;
}

.sp-scroll-up{
  display: grid;
  place-content: center;
  position: var(--btns-position);
  bottom: var(--btn-backtop-xl-mb);
  right: var(--btns-xl-mr);
  width: var(--btns-width);
  height: var(--btns-height);
  padding: 0px;
  background: var(--btns-bg-color);
  border: var(--btns-border);
  border-radius: var(--btns-border-radius);
  box-shadow: var(--btns-box-shadow);
}

.sp-scroll-up:hover, 
.sp-scroll-up:active, 
.sp-scroll-up:focus{
  background: var(--btns-bg-color-active);
}

.sp-scroll-up span.fas{
  font-size: 25px;
  color: var(--btns-color);
}

@media screen and (max-width: 992px) {
  
  .sp-scroll-up {
    bottom: var(--btns-sm-mb);
  }
  
  #sp-footer {
    padding-bottom: 50px;
  }
  
}

/* ----------------------------------------------------------------------------------------------------  */
/* ----------------------------------------- Website specific -----------------------------------------  */
/* ----------------------------------------------------------------------------------------------------  */

@media (min-width: 1400px){ /* missing in SP PageBuilder Article Integration */
  .sppb-article-page-wrapper .sppb-row-container {
      max-width: 1320px;
  }
}

iframe{
  width: 100%;
}


.img-fit,
.img-fit .moduletable,
.img-fit .carousel,
.img-fit .carousel-inner,
.img-fit .carousel-item,
.img-fit .carousel-img{
  height: 100%;
}

.convertforms{
  background-color: #eee !important;
  max-width: 100% !important;
}

.ingallery-item-img img {
  filter: brightness(1.1) contrast(1.1) saturate(1.1);
}



@media screen and (max-width: 576px) {
  .ba-input-label-wrapper{
    font-size: 16px !important;
    padding-bottom: 20px;
    display: inline-block;
  }
  .upload-file-input .upload-file-btn {
    width: 100% !important;
  }
}

/* ------------------------------- floating contact links ------------------------------------  */

.side_contact {
  position: fixed;
  z-index: 1000;
  top: 30%;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  justify-content: flex-start;
  right: -360px;
  transition: all ease .5s;
  animation-name: contactIn;
  animation-delay: 3s;
  animation-duration: 1.5s;
  animation-iteration-count:1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes contactIn {
  0% {right: -360px;}
  100% {right: -300px;}
}	

.side_contact:hover {
  translate: -300px 0px;
}

.side_contact .sc__trigger {
  background: var(--primary-color);
  padding: 15px;
  height: fit-content;
}
.side_contact .sc__trigger img {
  height: 30px;
  width: 30px;
}

.sc__content {
  background: var(--primary-color);
  color: #fff;
}
.side_contact:hover .sc__content {
  box-shadow: 6px 8px 26px 0px rgb(10 45 77 / 18%);
}

.sc__content--text {
 padding: 25px;
}
.sc__content h3{
  color: #fff;
  font-size: clamp(20px, 2vw, 22px);
  font-weight: 600;
  margin-bottom: 10px;
}
.sc__content strong{
  margin-bottom: 15px;
  display: block;
}

.sc__content ul {
  margin: 0;
  padding: 0px;
  margin-bottom: 20px;
}
.sc__content ul li {
  list-style: none;
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
  justify-content: flex-start;
  align-items: center;
}
.sc__content ul li img {
  height: 20px;
  width: 20px;
}
.sc__content ul li a {
  font-size: 16px;
  text-decoration: none;
  color: #fff;
}
.sc__content ul li a:hover {
  color: var(--secondary-color);
}

.sc__content a.btn {
  border-radius: 0px;
  padding: 8px 12px;
  color: var(--primary-color);
  font-weight: 600;
}

@media screen and (max-width: 992px) {
  .side_contact{
    display: none;
  }
}

@media screen and (max-height: 1050px) {
  .side_contact {
   top: 23%;
   }
  .sc__content img {
    height: 275px;
    object-fit: cover;
    object-position: top;
  }
  .sc__content--text strong{
    display: none;
  }
}

/* ------------------------------- Text always 100% width to box / set parent to text-align: center / set H3 to element needed, also in JS ------------------------------------  */

.scale--js h3 {
  display: inline-block;
  transform-origin: 50% 0;
  -webkit-font-smoothing: antialiased;
  transform: translate3d( 0, 0, 0);
}

/* ------------------------------- hero Video Section & Animation ------------------------------------  */

#hero-video-section{
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
  background: #fff;
}

#hero-video-section .sppb-column-addons{
 display: grid;
}

#hero-content{
 z-index: 13 !important;
 grid-row: 1;
 grid-column: 1;
 opacity: 0;
 animation-name: fadeIn;
 animation-delay: 1s;
 animation-duration: 2s;
 animation-iteration-count:1;
 animation-direction: normal;
 animation-fill-mode: forwards;
}
#hero-content .sppb-container-inner{
  height: 100%;
  display: flex;
  place-content: center;
  align-items: center;
}
#hero-content .sppb-container-inner .sppb-nested-row{
  translate: 0px -50px;
  background: rgb(255 255 255 / 95%);
  padding: 50px;
  box-shadow: rgb(89 89 89 / 76%) 0px 50px 100px -20px, rgb(0 0 0 / 62%) 0px 30px 60px -30px;
  transition: all ease .75s;
}
#hero-content.active .sppb-container-inner .sppb-nested-row{
 opacity: 1;
}
#hero-content:not(.active) .sppb-container-inner .sppb-nested-row{
 opacity: 0.35;
}
#sppb-addon-1712788919325 .sppb-addon-header .sppb-addon-title{
  color: #fff !important;
}


#hero-video-overlay-dark{
 z-index: 12 !important;
 grid-row: 1;
 grid-column: 1;
 transition: all ease .75s;
}
#hero-video-overlay-dark.active{
 opacity: 0;
}
#hero-video-overlay-dark:not(.active){
 opacity: 1;
}
#hero-video-overlay-dark .sppb-addon-wrapper{
  width: 100vw;
  height: 100vh;
  background: rgb(0 0 0 / 80%);
}

#hero-video-overlay{
 z-index: 11 !important;
 grid-row: 1;
 grid-column: 1;
 animation-name: fadeIn;
 animation-duration: 2s;
 animation-iteration-count:1;
 animation-direction: normal;
 animation-fill-mode: forwards;
 background: rgb(129 140 207 / 19%);
 mix-blend-mode: plus-lighter;
}

#hero-video-content{
 z-index: 10 !important;
 grid-row: 1;
 grid-column: 1;
 animation-name: fadeIn;
 animation-duration: 2s;
 animation-iteration-count:1;
 animation-direction: normal;
 animation-fill-mode: forwards;
}

/*
.hero-video {
  width: 100vw;
  height: 100vh;
  animation-name: circleBlowUp;
  animation-duration: 4.5s;
  animation-iteration-count:1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
.hero-video video {
  width: 100%;
  height: 100%;
  object-fit:cover;
}
*/

#hero-video-content {
  width: 100vw;
  height: 100vh;
  animation-name: circleBlowUp;
  animation-duration: 4.5s;
  animation-iteration-count:1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 576px) {
  #hero-content .sppb-container-inner .sppb-nested-row {
    padding: 35px 25px;
  }
}

#hero-video-overlay,
#hero-video-overlay-dark,
#hero-content{
  pointer-events: none;
}
@media screen and (max-width: 576px){
  div.sp-slider .sp-nav-control{
    display: none;
  }
}



.sp-slider .sp-item.active .sp-background{
  animation: zoom 25s; 
}
@keyframes zoom {
  from {
   transform: scale(1);
  }
  to {
  transform: scale(1.5);
  }
}


body.home #sp-header{
  opacity:0;
  animation-name: headerDown !important;
  animation-delay: 2.5s;
  animation-duration: 0.5s;
  animation-iteration-count:1;
  animation-direction: normal;
  animation-fill-mode: forwards;
}

@keyframes from_center_2_boundaries {
  10% {
  width: 1vw;
  height: 0.5vh;
  }
  30% {
  width: 100vw;
  height: 2vh;
  }
  100% {
  width: 100vw;
  height: 100vh;
  } 
}

@keyframes headerDown {
  0% {top: calc(var(--headerHeight) * -1);}
  100% {top:0px;opacity:1;}  
}	

@keyframes circleBlowUp {
  0% {clip-path: circle(1%);}
  100% {clip-path: circle(100%);}  
}			




section.intro{
  height: 65vh;
}

section#karriere.intro{
  height: 65vh;
}

section#karriere .sppb-section-background-video video {
  object-fit: cover;
  object-position: 50% 45%;
  position: absolute;
  left: -10vw;
  top: 0;
  height: 100%;
  width: 120vw;
}

/* ------------------------------- Slideshow ------------------------------------  */

#jf-slideshow-117 .carousel-color-overlay{
  pointer-events: none;
}

#jf-slideshow-117 .carousel-item figcaption {
    background: var(--primary-color-a90) !important;
    backdrop-filter: blur(5px);
    padding: 50px !important;
}
/*
#jf-slideshow-117 .carousel-indicators [data-bs-target] {
  background: var(--primary-color);
  border-bottom: 5px solid transparent;
  border-top: 5px solid transparent;
}
*/
#jf-slideshow-117 .slides__caption-headline {
  color: #fff;
  font-size: clamp(15px,2.5vw,45px) !important;
  line-height: 1.2 !important;
  margin-bottom: 10px !important;
  font-weight: 800 !important;
}
#jf-slideshow-117 .slides__caption-subheadline {
  font-size: clamp(18px,1.5vw,22px);
  line-height: 1.2;
  color: #fff;
}
#jf-slideshow-117 .carousel-item figcaption .slides__caption-text{
  font-size: clamp(14px,2vw,22px) !important;
  color: #ddd !important;
  font-weight: 400 !important;
  line-height: 1.2;
  text-transform: initial !important;
  left: 0px !important;
  top:5px !important;
}
#jf-slideshow-117 .button-group {
  margin-top: 35px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
#jf-slideshow-117 .button-group .btn {
  border: 1px solid #fff;
  --bs-btn-border-radius: 0px;
}
/*
#jf-slideshow-117 .carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23144e9e' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}
#jf-slideshow-117 .carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23144e9e' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}
*/

#jf-slideshow-117 .carousel-item__caption_cnt {
  align-items: center !important;
  justify-content: flex-end !important;
}

#jf-slideshow-117 .carousel-item figcaption {
  translate: 0px -5vh;
}

#jf-slideshow-117 .carousel-text-overlay .subtext{
  text-align: center;
}
#jf-slideshow-117 .carousel-text-overlay .subtext a.btn-slider{
  border-color: var(--primary-color);
  background-color: var(--primary-color);
  border-radius: 0px;
  width: 225px;
  margin-top:10px;
}

@media screen and (max-width: 992px) {
  #jf-slideshow-117 .carousel-item figcaption {
    translate: 0px;
    padding: 25px;
  }
  #jf-slideshow-117 .slides__caption-subheadline {
    font-size: clamp(14px,1.5vw,22px);
  }
  #jf-slideshow-117 .button-group {
    grid-template-columns: 1fr;
    margin-top: 25px;
  }
  #jf-slideshow-117 .button-group .btn {
    width: fit-content;
    font-size: clamp(10px,1.5vw,16px);
  }
  #jf-slideshow-117 .carousel-item figcaption {
    padding: 35px !important;
  }
}

@media screen and (max-width: 576px) {
  #jf-slideshow-117 .carousel-item__caption_cnt {
    justify-content: center !important;
  }
  #jf-slideshow-117 .slides__caption-subheadline {
    display: none;
  }
  #jf-slideshow-117 .carousel-item:first-child .carousel-item__caption {
    display: none;
  }
  #jf-slideshow-117 .carousel-item figcaption {
    padding: 25px !important;
  }
  #jf-slideshow-117 .slides__caption-headline {
    margin-bottom: 0px !important;
  }
  #jf-slideshow-117 .button-group {
    margin-top: 15px !important; 
  }
}


/* ------------------------------- img-layout-box ------------------------------------  */

@media screen and (min-width: 992px) {
 .img-layout-box .sppb-col-sm-6:first-child{
   width: 70%;
   flex: 0 0 70%;
   max-width: initial;
 }
 .img-layout-box .sppb-col-sm-6:last-child{
   width: 30%;
   flex: 0 0 30%;
   max-width: initial;
 }
 .img-layout-box .sppb-addon-image-layout-content{
   width: 110%;
 }
}

/* ------------------------------- stellenanzeige ------------------------------------  */

body:not(.layout-edit-iframe) .stellenanzeige{
  opacity: 0;
  height: 0px;
  padding: 0px !important;
  transition: all ease .5s;
}

body:not(.layout-edit-iframe) .stellenanzeige.active{
  opacity: 1;
  height: initial;
  padding: 100px 0px !important;
}

/* ------------------------------- intro-overlay-box ------------------------------------  */

.intro-overlay-box img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.intro-overlay-box h3 {
  margin-bottom: 25px;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 600;
  position: relative;
  display: grid;
}
.intro-overlay-box h3::before {
  position: absolute;
  justify-self: center;
  height: 2px;
  width: 50%;
  bottom: -10px;
  background: var(--secondary-color);
  display: block;
  content: "";
}

/*
#sppb-addon-1706284419889::after{
  content: '';
  position: absolute;
  bottom: -25px;
  left: calc(50% - 37.5px);
  height: 1px;
  background: #fff;
  width: 75px;
}
*/

@media screen and (min-width: 992px) {
  #sppb-addon-1706284419889,
  #sppb-addon-405d8a23-815c-4c7a-b276-ae351089a332,
  #sppb-addon-f18f6b06-3a83-4855-84dc-0c87a05fe462{
    background: #fff;
    position: absolute;
    top: -15vmin;
    width: 100%;
    box-shadow: 2.5px 5px 26px rgb(0 0 0 / 15%);
  }
}


@media screen and (max-width: 1400px) {
  .intro-overlay-box h3 {
    font-size: clamp(20px, 2vw, 22px);
  }
}
@media screen and (max-width: 1200px) {
  .intro-overlay-box h3 {
    font-size: clamp(15px, 2vw, 16px);
  }
}
@media screen and (max-width: 1200px) {
  .intro-overlay-box h3 {
    font-size: clamp(15px, 2vw, 16px);
  }
}
@media screen and (max-width: 992px) {
  #sppb-addon-1706284419889,
  #sppb-addon-405d8a23-815c-4c7a-b276-ae351089a332,
  #sppb-addon-f18f6b06-3a83-4855-84dc-0c87a05fe462{
    position: initial;
  }
  
  #section-id-1706284335540{
    margin-top: -120px !important;
    padding-bottom: 0px !important;
  }
  #section-id-1706284335540 > .sppb-row-container > .sppb-row {
    gap: 35px;
  }
}

.divider{
  height: 1px;
  background: var(--secondary-color, #2a1d71);
  width: 75px;
  margin: 0 auto;
  margin-bottom: 10px;
}

/* ------------------------------- underline ------------------------------------  */

.hl_underline h2,
.hl_underline h3{
  position: relative;
}
.hl_underline.w-fit h2,
.hl_underline.w-fit h3{
  width: fit-content;
}
.hl_underline h2::before,
.hl_underline h3::before {
  position: absolute;
  height: 2px;
  width: 50%;
  left: 0;
  bottom: -10px;
  background: var(--secondary-color);
  display: block;
  content: "";
}

.hl_underline.fff h2::before,
.hl_underline.fff h3::before {
  background: #fff;
}

.hl_underline_center h2{
  position: relative;
  display: grid;
}
.hl_underline_center h2::before {
  position: absolute;
  height: 2px;
  width: 40%;
  place-self: center;
  bottom: 25px;
  background: var(--secondary-color);
  display: block;
  content: "";
}

/* ------------------------------- middle stroke ------------------------------------  */

.mid-stroke {
  display: flex;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.mid-stroke::before,
.mid-stroke::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #fff;
}

.mid-stroke.dark::before,
.mid-stroke.dark::after {
  border-bottom: 1px solid #424d59;
}

.mid-stroke.pri::before,
.mid-stroke.pri::after {
  border-bottom: 1px solid var(--primary-color);
}

.mid-stroke.home {
  margin: 0 auto;
  max-width: 820px;
}

/* ------------------------------- partner ------------------------------------  */


#partner img{
  width: 100% !important;
}

@media screen and (min-width: 576px) {
  .sppb-carousel-extended-item{
    width: auto !important;
  }
}

.sppb-carousel-extended-item img {
  object-fit: contain !important;
  filter: grayscale(1);
  transition: all ease .35s;
}
.sppb-carousel-extended-item a:hover img {
  filter: grayscale(0);
  scale: 1.05;
}


/* ------------------------------- Link  ------------------------------------  */

.link{
  width: auto;
}

.link-bg{
  display: block;
  padding: 12px 15px 12px 15px;
  width: 100%;
  background-color: var(--primary-color);
  color: #fff !important;
  border: 1px solid var(--primary-color);
  transition: all ease .25s;
}
.link-bg:hover{
  background-color: #fff;
  color: var(--primary-color-dark) !important;
}

.link-bg.light{
  background-color: var(--primary-color-light);
  border: 1px solid var(--primary-color-light);
}
.link-bg.light:hover{
  background-color: #fff;
  color: var(--primary-color-dark) !important;
}



/* ------------------------------- list  ------------------------------------  */

ul.checkmark  {
  list-style-type: none;
  line-height: 1.75;
}
ul.checkmark li {
  background-image: url("data:image/svg+xml,%3Csvg version='1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' enable-background='new 0 0 48 48'%3E%3Cpolygon fill='%23009640' points='40.6,12.1 17,35.7 7.4,26.1 4.6,29 17,41.3 43.4,14.9'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: 0 0;
  background-size: 22px 22px;
  padding-left: 35px;
  transition: all ease 0.3s;
}

ul.checkmark.orange li {
  background-image: url("data:image/svg+xml,%3Csvg version='1' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 48' enable-background='new 0 0 48 48'%3E%3Cpolygon fill='%23c78d1a' points='40.6,12.1 17,35.7 7.4,26.1 4.6,29 17,41.3 43.4,14.9'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: 0 0;
  background-size: 22px 22px;
  padding-left: 35px;
  transition: all ease 0.3s;
}

ul.checkmark p {
  margin-bottom: 0px;
}
ul.checkmark a {
  color: #555555;
}
ul.checkmark a:hover {
  color: var(--primary-color-light);
}
ul.checkmark li:hover{
  background-position: 5px 0px;
}

@media screen and (max-width: 768px) {
  ul.checkmark  {
    margin-bottom: 0px;
  }
}

ul.tick  {
  list-style-type: none;
  line-height: 1.75;
  padding-left: 15px;
}
ul.tick li {
  position: relative;
  padding-left: 0px;
  display: grid;
  grid-template-columns: 30px auto;
  gap: 20px;
  transition: all ease 0.3s;
  margin-bottom: 5px;
}
ul.tick li::before{
  content: "";
  padding: 5px;
  display: inline-block;
  float: left;
  margin: 0 20px 0 0;
  vertical-align: middle;
  width: 30px;
  height: 30px;
  background: url("data:image/svg+xml,%3Csvg version='1.1' id='Ebene_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 21.3 20.6' style='enable-background:new 0 0 21.3 20.6;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bopacity:0.2;%7D .st1%7Bfill:%23FFFFFF;%7D%0A%3C/style%3E%3Cg class='st0'%3E%3Cpath d='M20.8,2l0.4,0.7c-2.8,2-5.4,4.5-7.8,7.5s-4.1,6-5.2,8.9l-0.6,0.4c-0.5,0.4-1,0.7-1.4,1.1c-0.1-0.3-0.3-0.9-0.6-1.7 l-0.3-0.8c-0.7-1.8-1.3-3-1.8-3.7s-1-1.1-1.6-1.1c0.8-0.7,1.4-1.1,2-1.1c0.8,0,1.7,1.1,2.6,3.2L7,16.5c1.7-3,3.7-5.8,6.1-8.4 S18.2,3.6,20.8,2z'/%3E%3C/g%3E%3Cg%3E%3Cpath class='st1' d='M18.8,0l0.4,0.7c-2.8,2-5.4,4.5-7.8,7.5s-4.1,6-5.2,8.9l-0.6,0.4c-0.5,0.4-1,0.7-1.4,1.1 c-0.1-0.3-0.3-0.9-0.6-1.7l-0.3-0.8c-0.7-1.8-1.3-3-1.8-3.7s-1-1.1-1.6-1.1c0.8-0.7,1.4-1.1,2-1.1c0.8,0,1.7,1.1,2.6,3.2L5,14.5 c1.7-3,3.7-5.8,6.1-8.4S16.2,1.6,18.8,0z'/%3E%3C/g%3E%3C/svg%3E%0A") no-repeat center center / 20px auto;
  background-color: var(--primary-color);
}

ul.tick.white li::before{
  background: url("data:image/svg+xml,%3Csvg version='1.1' id='Ebene_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 21.3 20.6' style='enable-background:new 0 0 21.3 20.6;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bopacity:0.2;%7D .st1%7Bfill:%23b20101;%7D%0A%3C/style%3E%3Cg class='st0'%3E%3Cpath d='M20.8,2l0.4,0.7c-2.8,2-5.4,4.5-7.8,7.5s-4.1,6-5.2,8.9l-0.6,0.4c-0.5,0.4-1,0.7-1.4,1.1c-0.1-0.3-0.3-0.9-0.6-1.7 l-0.3-0.8c-0.7-1.8-1.3-3-1.8-3.7s-1-1.1-1.6-1.1c0.8-0.7,1.4-1.1,2-1.1c0.8,0,1.7,1.1,2.6,3.2L7,16.5c1.7-3,3.7-5.8,6.1-8.4 S18.2,3.6,20.8,2z'/%3E%3C/g%3E%3Cg%3E%3Cpath class='st1' d='M18.8,0l0.4,0.7c-2.8,2-5.4,4.5-7.8,7.5s-4.1,6-5.2,8.9l-0.6,0.4c-0.5,0.4-1,0.7-1.4,1.1 c-0.1-0.3-0.3-0.9-0.6-1.7l-0.3-0.8c-0.7-1.8-1.3-3-1.8-3.7s-1-1.1-1.6-1.1c0.8-0.7,1.4-1.1,2-1.1c0.8,0,1.7,1.1,2.6,3.2L5,14.5 c1.7-3,3.7-5.8,6.1-8.4S16.2,1.6,18.8,0z'/%3E%3C/g%3E%3C/svg%3E%0A") no-repeat center center / 20px auto;
  background-color: #fff;
}

@media screen and (max-width: 576px) {
  ul.tick  {
    padding-left: 5px;
  }
}
/* ------------------------------- info circle  ------------------------------------  */

.extra_info{
  background-image: url('data:image/svg+xml,<svg width="800px" height="800px" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M12 17V11" stroke="%23b20067" stroke-width="1.5" stroke-linecap="round"/><circle cx="1" cy="1" r="1" transform="matrix(1 0 0 -1 11 9)" fill="%23b20067"/><path d="M22 12C22 16.714 22 19.0711 20.5355 20.5355C19.0711 22 16.714 22 12 22C7.28595 22 4.92893 22 3.46447 20.5355C2 19.0711 2 16.714 2 12C2 7.28595 2 4.92893 3.46447 3.46447C4.92893 2 7.28595 2 12 2C16.714 2 19.0711 2 20.5355 3.46447C21.5093 4.43821 21.8356 5.80655 21.9449 8" stroke="%23b20067" stroke-width="1.5" stroke-linecap="round"/></svg>');
  background-repeat: no-repeat no-repeat;
  background-position: 0 0;
  background-size: 25px;
  padding-left: 35px;
  transition: all ease 0.3s;
}

/* ------------------------------- box-container / kunden  ------------------------------------  */

.box-container{
  --box-el-trans: all ease .25s;
}

.box-container.active.grid-2 {
  grid-template-columns: 1fr;
}

.box-el,
.box-el .img{
  display: grid;
}
.box-el:not(.active):hover{
  cursor: pointer;
}

.box-el.active{
  gap: 25px;
  background: #ededed;
  padding: 35px;
}

.box-el img {
  width: auto;
  height: auto;
  grid-row: 1 / -1;
  grid-column: 1 / -1;
}
.box-el.active img {
  width: 100%;
  max-height: 20dvh;
  object-fit: cover;
  object-position: center;
}

.box-el .overlay_title {
  width: auto;
  height: auto;
  grid-row: 1 / -1;
  grid-column: 1 / -1;
  position: relative;
  z-index: 3;
  align-self: center;
  justify-self: center;
  align-items: center;
  display: flex;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 300;
  color: #fff;
  padding: 10px 25px;
  background:#555;
  line-height: 1.35;
  transition: var(--box-el-trans);
  opacity: 0;
  position: relative;
  z-index: 3;
}
.box-el:not(.active):hover .overlay_title {
  opacity: 1;
}

.box-el .overlay{
  width: 100%;
  height: 100%;
  grid-row: 1 / -1;
  grid-column: 1 / -1;
  margin: 0;
  transition: var(--box-el-trans);
  opacity: 0;
  position: relative;
  z-index: 2;
}
.box-el:not(.active):hover .overlay {
  background: var(--secondary-color-a50, rgba(46,80,157,0.75));
  opacity: 1;
}

.box-el .title{
  font-size: clamp(18px, 2vw, 22px);
  padding: 8px 15px;
  background: var(--primary-color);
  color: #fff;
  text-align: center;
  font-weight: 300;
  transition: var(--box-el-trans);
  position: relative;
}
.box-el:not(.active):hover .title {
  background: var(--primary-color-light);
}
.box-el.active .title{
  background:transparent;
  padding:initial;
  font-size: clamp(22px, 2vw, 26px);
  text-decoration: underline;
  text-underline-offset: 5px;
  color: var(--primary-color);
  text-align: left;
  font-weight: 400;
}


.box-el .info{
  display: none;
  position: relative;
}
.box-el.active .info{
  display: block;
}

.box-el .info a{
  width: fit-content;
  /* margin: 0 auto; */
  margin-top: 25px;
}

.close-btn {
  position: absolute;
  z-index: 99999;
  right: 0px;
  bottom: 0px;
  height: 40px;
  width: 40px;
  cursor: pointer;
  background: #fff;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
  /* border-radius: 5px; */
  transition: 250ms ease;
  transition: var(--box-el-trans);
  opacity: 0;
}
.box-el.active .close-btn{
  opacity: 1;
}
.close-btn:before, 
.close-btn:after {
  content: "";
  height: 2px;
  background: var(--primary-color);
  top: 50%;
  width: 50%;
  left: 25%;
  position: absolute;
  transition: 250ms ease;
}
.close-btn:before {
  transform: rotate(-45deg);
}
.close-btn:after {
  transform: rotate(45deg);
}
/*
.close-btn:hover, 
.close-btn:focus {
  border: 2px solid;
  border-radius: 100%;
}
*/
.close-btn:hover:before, 
.close-btn:hover:after, 
.close-btn:focus:before, 
.close-btn:focus:after {
  width: 75%;
  left: 13%;
}

/* ------------------------------- headline ------------------------------------  */

.headline-ul{
  font-size: clamp(30px, 2vw, 60px);
  font-weight: 300;
  color: #555;
  text-transform: uppercase;
  position: relative;
}
.headline-ul::before {
  position: absolute;
  height: 2px;
  width: 50%;
  left: 0;
  bottom: -10px;
  background: var(--primary-color-light);
  display: block;
  content: "";
}
.headline-ul.fff{
  color: #fff;
}
.headline-ul.fff::before { 
  background: #fff;
}
  

.hl-sm {
  font-size: clamp(20px, 2vw, 32px);
  font-weight: 400;
  text-transform: uppercase;
}
.hl-sm span {
  font-size: clamp(14px, 2vw, 20px);
  display: inline-block;
  translate: 0px -5px;
}

/* ------------------------------- contact block ------------------------------------  */

.contact_block__grid_item{
  gap: 15px !important;
  box-shadow: rgb(0 0 0 / 9%) 0px 2px 1px, rgb(0 0 0 / 9%) 0px 4px 2px, rgb(0 0 0 / 9%) 0px 8px 4px, rgb(0 0 0 / 9%) 0px 16px 8px;
}

.contact_block__grid_item:hover{
  box-shadow: rgb(0 0 0 / 9%) 0px 2px 1px, rgb(0 0 0 / 9%) 0px 4px 2px, rgb(0 0 0 / 9%) 0px 8px 4px, rgb(0 0 0 / 9%) 0px 16px 8px, rgb(0 0 0 / 9%) 0px 32px 16px;
}
.contact_block__text_text {
  font-size: 16px !important;
}

@media screen and (max-width: 450px) {
  .contact_block__grid_item{
    display: grid !important;
    gap: 10px !important;
    justify-items: center;
  }
  .contact_block__grid_item svg {
    width: 40px !important;
    height: 40px !important;
  }
}

#jf_contact_block-135 .grid-element.text{
  display: none;
}

/* ------------------------------- Acc  ------------------------------------  */

.accordion .details__summary {
  color: var(--primary-color);
  /* background: #ddd; */
}
.accordion .details__summary:before, 
.accordion .details__summary:after{
  background: var(--primary-color) !important;
}
/*
.accordion .details {
  border-bottom: 1px solid var(--primary-color);
}
*/

.accordion .is-active .details__summary {
  color: #fff !important;
  background: var(--primary-color) !important;
}

.accordion .is-active .details__summary:before, 
.accordion .is-active .details__summary:after{
  background: #fff !important;
}

.jf_accordion .details .details__summary .slide_subtitle {
  color: #e37503;
  font-size: 12px;
}
.jf_accordion .details.is-active .details__summary .slide_subtitle {
  color: #fff;
}

.details__content{
  display: grid;
}
.details__content .checkmark{
  padding-left: 0px;
}


/* ------------------------------- gallery ------------------------------------  */

.fancyboxgallery img {
  filter: grayscale(0) !important;
}

/* ------------------------------- languages ------------------------------------  */

 div.mod-languages ul li.lang-active {
    background-color: none !important;
    padding: 0px 5px 3px;
    border-radius: 0px;
    text-decoration: underline;
    text-decoration-color: var(--primary-color);
}

/* -------------------------------------------------------------------------------------------------------------------------------------  */
/* ------------------------------------------------------- Media Queries ---------------------------------------------------------------  */
/* -------------------------------------------------------------------------------------------------------------------------------------  */

@media screen and (max-width: 1400px) {
  
  
}

@media only screen and (max-width: 1400px) and (min-width: 1200px)  {
  #team .sppb-row-column  {
    max-width: 33.3333333%;
    flex-basis: 33.3333333%;
  }
  #team #column-wrap-id-QJ08EtEe_UCmp1nZ_U9GO {
    max-width: 100% !important;
    flex-basis: 100% !important;
  }
}


@media screen and (max-width: 1200px) {
  /*
  img.logo-bottom{
    float: initial !important;
  }*/
  
  .overlayer_teasers .box {
    max-width: 800px;
  }
  
  .partner_footer{
    float: left !important;
    margin-top: 25px;
  }
  
}


@media screen and (max-width: 992px) {
  
  .blog-items {
    grid-template-columns: 1fr 1fr;
  }
  .container-component {
      margin-top: 0px;
  }
  .com_contact .col-lg-4{
    margin-top: 10px;
  }
  .com_contact .col-lg-4.empty{
    display: none;
  }
  
  .container-topbar .container{
    justify-content: center;
  }
  .container-header .container-nav .container{
    display: flex;
    justify-content: center;
  }
  .container-header .container-nav .container{
    grid-template-columns: 1fr;
  }
  
   .mod-languages {
     position: initial;
   }
  div.mod-languages li {
   margin: 0 0.5rem !important;
  }
  div.mod-languages ul {
    margin: -10px 0 10px !important;
  }
  
 
  
  .footer .mod-footer {
      flex-direction: column;
      place-items: center;
  }
  
  .overlay__teaser_cnt{
    max-width: initial;
    padding: 50px !important;
  }
  
  .footer1 {
    font-size: 0.85rem;
    margin-bottom: 25px;
    text-align: center;
  }
  
  .close-btn{
    bottom: initial;
    top: -60px;
  }
  
  #partner .sppb-row{
    gap: 25px;
  }
  
  #sp-page-builder .page-content .sppb-section:not(div.sppb-section):first-child {
      padding-top: 50px;
  }
  
  #sp-bottom4 img{
    margin: 0px !important;
  }
  
  #sp-page-builder .page-content .sppb-section:nth-child(2) {
    padding-top: 50px;
  }
  #section-id-1712874330309,
  #hero-video-content{
    padding-top: 0px !important;
  }
  
}
  

@media screen and (max-width: 768px) {

  #partner-imgs .sppb-nested-row{
    gap: 50px;
  }
  
  #column-id-1700269791945{
    background-image: none !important;
  }
  
  .blog-items {
    grid-template-columns: 1fr;
  }
  .blog-featured .item-image img, 
  .blog .item-image img, 
  .latestnews .item-image img {
      width: 100%;
  }
  .com-contact h3{
    margin-top: 50px;
  }
  .com-contact__container h3{
    margin-top: 0px;
  }
  
  .footer2{
    padding: 0 50px;
  }
  .footer a{
    color: #ccc;
  }
  
  #jf-slideshow-117 .carousel-text-overlay .text.text {
    font-size: clamp(35px, 2vw, 50px) !important;
  }
  
  .ingallery-layout-grid .ingallery-cell{
    width: 50% !important;
  }

}

@media screen and (max-width: 576px) {
  
  .container-topbar .contact_item, 
  .container-topbar a.contact_item {
    font-size: 0px;
  }
  .container-topbar .contact_item svg {
    width: 25px;
    height: 25px;
  }
    
  .container-footer-top .container {
      padding: 75px 35px 30px;
  }
  
  
  .footer .grid-child .mod-footer {
      text-align: center;
      padding: 0 15px;
  }
  
  .moduletable.fax{
    display: none;
  }
  
  .grid-child.container-component{
    padding-left: 0px;
    padding-right: 0px;
  }
  
  #jf-slideshow-117 .carousel-text-overlay .text.text {
    font-size: clamp(25px, 2vw, 50px) !important;
  }
  
  .ingallery-layout-grid .ingallery-cell{
    width: 100% !important;
  }
  
  .hero-video video{
    object-position: left;
  }
  
  #sp-main-body {
      padding-bottom:50px;
  }
  
  section.intro{
    height: 60vw;
  }
  
  ul.checkmark {
    padding: 0px;
    line-height: 1.35
  }
  ul.checkmark li {
    margin-bottom: 3px;
  }
  
  .sm_noParallax{
    background-attachment: scroll;
    background-position: center;
  }
  
  .sm\:noHyphen{
    hyphens: none;
    -webkit-hyphens: none;
    -ms-hyphens: none;
  }
  
  .contact_block__headline{
      hyphens: none;
      -webkit-hyphens: none;
      -ms-hyphens: none;
  }
  
}

@media screen and (max-width: 400px) {
 
  .footer .grid-child {
      justify-content: center;
      flex-direction: column;
      padding: 1.5rem 0.5em 4rem;
  }
}

@media screen and (max-width: 375px) {
  h1,h2,h3,h4,h5,p,span,a{
    overflow-wrap: break-word;
    /* word-break: break-all; */
  }
}


@media screen and (min-width: 992px) {
  
  .footer1 a {
    position: absolute;
    right: 0px;
    top: 0px;
  }
    
}

@media screen and (min-width: 768px) {

    /* same height for images in Blog (Desktop view)  */
  .blog-featured .item-image img, 
    .blog .item-image img, 
    .latestnews .item-image img {
     width: 100%;
     height: 175px;
    }
  /*
  .com-contact__form.contact-form,
  .com-contact__container {
    width: 50%;
    float: left;
  }
  .com-contact h3{display: none;}
    */
}



@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.001s !important;
  }
}

/* ----------------------------------------------------------------------------------------------  */
/* ----------------------------------------- Animations -----------------------------------------  */
/* ----------------------------------------------------------------------------------------------  */

@keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
}
@keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(200px);
    }
    to {
      opacity: 1;
    }
}

@keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-200px);
    }
    to {
      opacity: 1;
    }
}