.hero-section{
    height: 70vh;padding-top: 100px;
    background-image: url(../assets/hero_background.jpg);
    background: linear-gradient(90deg, rgba(26,26,26,0.58) 0%, rgba(25,25,25,0.56) 4%, rgba(255,255,255,0) 89%),
    url(../assets/hero_background.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #FCFCFC;
  }
  .background-kachel{
    background-color: #FCFCFC;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);   
    -webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);  ; 
    -moz-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1)  ; 
  }
 
  .blaze-slider.dragging .blaze-track {
    cursor: grabbing;
  }
  

  .blaze-pagination {
    display: flex;
    gap: 15px;
  }
  
  .blaze-pagination button {
    font-size: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    outline: none;
    border: none;
    cursor: pointer;
    transition: transform 200ms ease, background-color 300ms ease;
    background-color: #98CC3E;
  }
  
  .blaze-pagination button.active {
    transform: scale(1.3);
    background-color: #98CC3E;
  }
  .blaze-next,
.blaze-prev {
  border: none;
  font-size: 0;
  height: 20px;
  background: none;
  cursor: pointer;
  background-position: center;
  background-size: 100%;
  background-image: url("../assets/chev-left.png");
  background-repeat: no-repeat;
}

.blaze-next {
  transform: rotate(180deg);
}

  .controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    gap: 20px;
  }

  .glide__track{
    width: 100%;
  }
  .glide__slides{
    width: 100%;
    gap: 2rem;
    padding: 0 30rem;
  }
  .glide__slide {
    background: #FCFCFC;
    /* margin: 40px; */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);   
	-webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);  ; 
	-moz-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1)  ; 
  min-height: 430px !important;
  max-height: 430px !important;
  }

  .kachel{
    padding: 3rem;
  }

  .slider-image-wrapper{
    width: 100%;
    height: 100%;
  }
  .slider-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .image-wrapper{
    width: 100%;
    height: 100%;
  }
  .image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .text-image-wrapper{
    height: 350px;
    display: flex;
  }
  .text-image-wrapper img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .modalDialog {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    z-index: 99999;
    opacity:0;
    -webkit-transition: opacity 300ms ease-in;
    -moz-transition: opacity 300ms ease-in;
    transition: opacity 300ms ease-in;
    pointer-events: none;
  }
  
  .modalDialog:target {
    opacity:1;
    pointer-events: auto;
  }
  
  .modalDialog > div {
    width: 50%;
    position: relative;
    margin: 10% auto;
    padding: 60px 80px;
    background: #FEFEFE;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);   
	-webkit-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);  ; 
	-moz-box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1)  ; 
  }
  
  .close {
    padding: 0;
    color:#F4970E;
    line-height: 50px;
    position: absolute;
    right: 10px;
    text-align: center;
    top: 10px;
    width: 50px;
    text-decoration: none;
    background:none;
    font-weight: bold;
    font-size: 40px;
  }
  
  .close:hover { 
  color: #181818;
  }

  .cascaded{
    padding: 120px 0 100px 0;
  }
  .cascaded-image-left{
    position: absolute;
    right: 0;
    width: 45%;
  }


  .cascaded-image-right{
    position: absolute;
    left: 0;
    width: 45%;
  }
  .cascaded-left-bg{
    background-image: url("../assets/waermepumpe_background.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }
  .cascaded-right-bg{
    background-image: url("../assets/waermepumpe_background_right.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .cascaded-image-tablet{
    display: none;
  }
  .parallax-wrapper{
    max-height: 500px;
    width: 100%;
    background-repeat: no-repeat;
  }
  .parallax-wrapper img{
    width: 100%;
    height: 100%;
    object-fit:cover;
  }


input {
  position: absolute;
  opacity: 0;
  z-index: -1;
}
.collapsible-item{
  padding: 0rem 3rem;
}
.collapsible-accordion {
  margin: 10px;
  overflow: hidden;
  box-shadow: 0 6px 10px rgba(0,0,0,0.15);
}
.collapsible-item-heading{
  background: #fff;
}
.collapsible-item-label {
  display: flex;
  justify-content: space-between;
  padding: 1em;
  font-weight: bold;
  cursor: pointer;
}
.collapsible-item-label::after {
  content: "\276F";
  width: 1rem;
  height: 1rem;
  text-align: center;
  transition: all 0.35s;
  color: #F4970E;
}
.collapsible-item-content {
  max-height: 0;
  padding: 0 1rem;
  background: white;
  transition: all 0.35s;
}
input:checked + .collapsible-item-label::after {
    transform: rotate(90deg);
  }
  input:checked ~ .collapsible-item-content {
    max-height: 100vh;
    padding: 1rem;
    padding-top: 0;
  }
  input:checked ~ .collapsible-item-content p{
    max-height: 100vh;
    width: 80%;
  }

  /* @media only screen and (max-width: 1675px) {
    .cascaded-image-left{
      max-width: 650px;
    }
  }
  @media only screen and (max-width: 1400px) {
    .cascaded-image-left{
      max-width: 650px;
    }
  } */
  @media only screen and (max-width: 1400px){
    .text-image-wrapper{
      width: 100%;
      height: 350px;
    }
    .text-image-wrapper img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
  @media only screen and (max-width: 991px) {
    .hero-section{
      height: 60vh;
      min-height: 600px;
    }
    .mobile-column-reverse{
      flex-direction: column-reverse;
    }
    .cascaded-left-bg{
      background-color: #F4F4F4;
      background-image: none;
    }
    .cascaded-right-bg{
      background-color: #F4F4F4;
      background-image: none;
    }
    .cascaded-image-tablet-none{
      display: none !important;
    }
    .cascaded-image-tablet{
      display: block;
    }
    .cascaded{
      padding: 80px 0 70px 0;
    }
    .image-wrapper{
      width: 100%;
      height: 500px;
    }
    .glide__slide {
      display: flex;
    }
    .slider-image-wrapper{
      height: 300px;
    }
    .kachel{
      padding: 2rem 1rem 1rem 1rem;
    }
    .glide__slide {
      max-height: unset !important;
    }
    .glide__slides{
      padding: 0 42rem;
    }
  }
  @media only screen and (max-width: 767px) {
    .collapsible-item{
      padding: 0rem 1rem;
    }
    input:checked ~ .collapsible-item-content p{
      width: 100% !important;
    }
  }
  @media only screen and (max-width: 575px) {
    .image-wrapper{
      width: 100%;
      height: 400px;
    }
    .parallax-wrapper{
      height: 300px;
      object-fit: cover;
    }
  }

