@media (min-width: 768px) {
  :root {
    font-size: calc(1rem + ((1vw - 7.68px) * 0.5952));
    min-height: 0vw;
  }
}
@media (min-width: 1165px) {
  :root {
    font-size: 20px;
  }
}
.footer-menu {
    display:flex;
    list-style-type:none;
    gap:30px;
    margin:5%;
}
:root {
    --swls-blue: #68B0D1;
    --swls-light-blue: #F2F8FB;
    --swls-medium-blue: #c0e2f1;
    --swls-grey: #52646C;
    --white: #fff;
    --sparkasse-red: #EE0000;
    --sparkasse-red-light: #FFEDED;
    --space-xxl: 6em;
    --space-xl: 5em;
    --space-l: 4em;
    --space-m: 3em;
    --space-s: 2em;
    --space-xs: 1em;
    --space-side: 40px;
    
    --font-size-sm: clamp(1.44rem, 0.06vi + 1.42rem, 1.5rem);
    --font-size-base: clamp(1.8rem, 0.19vi + 1.72rem, 2rem);
    --font-size-md: clamp(2.25rem, 0.4vi + 2.09rem, 2.67rem);
    --font-size-lg: clamp(2.81rem, 0.71vi + 2.53rem, 3.55rem);
    --font-size-xl: clamp(3.52rem, 1.17vi + 3.05rem, 4.74rem);
    --font-size-xxl: clamp(4.39rem, 1.85vi + 3.66rem, 6.31rem);
    --font-size-xxxl: clamp(5.49rem, 2.81vi + 4.37rem, 8.42rem);
    
    font-size: 62.5%;
}

.overflow-wrap {
    overflow-x: hidden;
}


/*BASIS*/

* {
    font-family: 'Barlow', sans-serif;
    color: var(--swls-grey);
    padding: 0;
    margin: 0;
    font-size: var(--font-size-base);
    line-height: 1.6;
}

h1,h2,h3,h4,h5,h6 {
    font-family: 'Barlow Condensed', sans-serif;
    font-weight: 500;
    color: var(--swls-blue);
    line-height: 1;
    text-transform: uppercase;
}

h1 {
    font-size: var(--font-size-xxxl);
}

h2 {
    font-size: var(--font-size-xxxl);
    max-width: 25ch;
}

.text--larger,
.text--larger * {
    font-size: var(--font-size-lg);
    line-height: 1.3;
    text-wrap: balance;
}

section {
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-inner {
    max-width: 1165px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: var(--space-xxl) var(--space-side);
    position: relative;
}

.space-xl {
    gap: var(--space-xl);
}

.space-l {
    gap: var(--space-l);
}

.space-m {
    gap: var(--space-m);
}

.space-s {
    gap: var(--space-s);
}

.space-xs {
    gap: var(--space-xs);
}

.max-width-700 {
    max-width: 700px;
}

.max-width-900 {
    max-width: 900px;
}

.overflow-x-hidden {
    overflow-x: hidden;
    overflow-y: auto;
}

.desktop-center {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
}

.padding-bottom-0 {
    padding-bottom: 0!important;
}

.alternative-section {
    background-color: var(--swls-blue);
}

.alternative-section h2 {
    color: var(--white)!important;
}

h2.heading-thin {
    color: var(--swls-grey);
    font-weight: 300;
    text-decoration: none;
    transition: 0.3s;
}

h2.heading-thin:hover {
    color: var(--swls-blue);
}

a.link-decoration {
    text-decoration: none!important;
}

/*BUTTONS*/

.basis-button {
    padding: 0.75em 1em;
    transition: all 0.3s;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}

.primary-button {
    --button-background: var(--swls-blue);
    --button-color: var(--white);
    --button-border: var(--swls-blue);
    
    background-color: var(--button-background);
    color: var(--button-color);
    border: 2px solid var(--button-border);
}

.primary-button:hover {
    --button-background: var(--white);
    --button-color: var(--swls-blue);
    --button-border: var(--swls-blue);
}

.sparkasse-button {
    --button-background: var(--sparkasse-red);
    --button-color: var(--white);
    --button-border: var(--sparkasse-red);
    
    background-color: var(--button-background);
    color: var(--button-color);
    border: 2px solid var(--button-border);
}

.sparkasse-button:hover {
    --button-background: var(--white);
    --button-color: var(--sparkasse-red);
    --button-border: var(--sparkasse-red);
}


/*HERO Section*/

.hero-section {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-section .section-inner {
    padding-top: 0!important;
    align-items: center;
    position: relative;
}

.hero-section--img {
    min-width: 100vw;
    min-height: 450px;
    max-height: 1000px;
    object-fit: cover;
    object-position: bottom center;
}

.hero-section--bubble {
    background-image: url(img/bubble.svg);
    background-size: contain;
    background-repeat: no-repeat;
    aspect-ratio: 842 / 702;
    align-content: center;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    width: auto;
    align-self: flex-start;
    margin-top: -500px;

}


.hero-section--bubble h1 {
    color: var(--white)!important;
    z-index: 10;
    padding: 20%;
    font-size: var(--font-size-xxl);
    max-width: 25ch;
}

.hero-section--notice {
    background-color: #94C13D;
    color: var(--white);
    aspect-ratio: 1 / 1;
    border-radius: 5000px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    transform: rotate(20deg);
    position: absolute;
    top: 25%;
    right: var(--space-side);
}

.hero-section--notice p {
    max-width: 180px;
    text-transform: none;
    text-align: center;
    padding: 20px;
    line-height: 1;
    font-weight: 500;
    color: var(--white);
    font-size: var(--font-size-md);
}


/*Intro-Section*/

.intro-section .section-inner{
    padding-top: 0!important;
}


/*VIDEO*/

.video-section > .section-inner {
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: var(--space-xxl) var(--space-side);
    position: relative;
}


.video {
    aspect-ratio: 16 / 9;
    max-width: 100%!important;
    width: 1800px!important;
    background-color: var(--swls-blue);
    box-shadow:
      1px 1px 2.2px rgba(0, 0, 0, 0.02),
      3.4px 3.4px 5.3px rgba(0, 0, 0, 0.028),
      8.2px 8.2px 10px rgba(0, 0, 0, 0.035),
      17.6px 17.6px 17.9px rgba(0, 0, 0, 0.042),
      37.7px 37.7px 33.4px rgba(0, 0, 0, 0.05),
      100px 100px 80px rgba(0, 0, 0, 0.07)
    ;
}




/*GRÜNDE*/

.benefits-wrap {
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
    gap: var(--space-s);
}

.benefit {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    justify-content: center;
    align-items: center;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    padding: var(--space-xs);
    object-fit: contain;
    border-radius: 100px;
    background-color: var(--swls-light-blue);
    display: flex;
    align-items: center;
    justify-content: center;
}

.benefit-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    align-self: center;
    justify-self: center;
}


/*Rechner*/

.rechner-wrap-wrap {
    width: 100%;
}

ul.rechner-wrap {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: var(--space-xs);
    width: 100%;
}

.rechner-card {
    height: auto;
    background-color: var(--swls-light-blue);
    display: flex;
    flex-direction: column;
    gap: .25em;
    align-items: center;
    justify-content: center;
    height: auto;
    aspect-ratio: 1/1;
    width: calc(25% - var(--space-xs));
    min-width: 250px;
}

.rechner-icon {
    padding: var(--space-s);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
}

.rechner-icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    object-position: bottom center;
}


/*KABEL*/

.cable-spacer {
    height: 400px;
}

.cable {
    position: absolute;
    height: 100%;
    left: 25%;
    bottom: 0;
    z-index: -1;
}




/*SPARKASSE*/

.sparkasse-section h1,
.sparkasse-section h2,
.sparkasse-section h3{
    color: var(--sparkasse-red)
}

.sparkasse-card {
    background-color: var(--sparkasse-red-light);
    padding: var(--space-m);
}


/*Future*/

.future-section {
    background: linear-gradient(var(--white) 30%, var(--swls-light-blue) 30%);
}

.produkte-img {
    width: 100%;
}


/*Mobile*/

@media screen and (max-width: 768px) {
    
    :root {
        --space-side: 30px;
    }
    
    .section-inner {
        max-width: 1440px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: var(--space-xl) var(--space-side);
        position: relative;
    }
    
    .mobile-left {
        display: flex;
        flex-direction: column;
        align-self: flex-start;
        align-content: flex-start;
        align-items: flex-start;
        text-align: left;
        justify-content: flex-start;
    }
    
    .benefits-wrap {
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .benefit-icon {
        width: 50px;
        height: 50px;
    }

    .benefit-icon img {
        width: 35px;
        height: 35px;
    }
    
    .cable-spacer {
        height: 300px;
        display: none;
    }
    
    .cable {
        position: absolute;
        height: 70%;
        left: 10%;
        bottom: 0;
        z-index: -1;
        display: none;
    }
    
    .hero-section--img {
        min-width: 100vw;
        min-height: 350px;
        height: 100vh;
        max-height: 750px;
        object-fit: cover;
        object-position: bottom center;
    }
    
    
     .hero-section--bubble {
        margin-left: calc(-1 * calc(20% - var(--space-side)));
        margin-top: -300px;
    }
    
    
    .hero-section--bubble h1 {
        max-width: 35ch;
    }
    
    .hero-section--notice {
        top: 15%;
        right: var(--space-side);
        position: relative;
        align-self: flex-end;
    }

    .rechner-card {
        height: auto;
        background-color: var(--swls-light-blue);
        display: flex;
        flex-direction: column;
        gap: .25em;
        align-items: center;
        justify-content: center;
        height: auto;
        aspect-ratio: 1/1;
        width: calc(50% - var(--space-xs));
        min-width: auto;
    }
    
}
    
    
    
/*ANIMATIONS*/
    
.pulsate-fwd {
	-webkit-animation: pulsate-fwd 5s ease-in-out infinite both;
	        animation: pulsate-fwd 5s ease-in-out infinite both;
}
   

/* ----------------------------------------------
 * Generated by Animista on 2024-5-7 13:6:0
 * Licensed under FreeBSD License.
 * See http://animista.net/license for more info. 
 * w: http://animista.net, t: @cssanimista
 * ---------------------------------------------- */

/**
 * ----------------------------------------
 * animation pulsate-fwd
 * ----------------------------------------
 */
@-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1) rotate(20deg);
            transform: scale(1) rotate(20deg);
  }
  50% {
    -webkit-transform: scale(1.1) rotate(20deg);
            transform: scale(1.1) rotate(20deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(20deg);
            transform: scale(1) rotate(20deg);
  }
}
@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1) rotate(20deg);
            transform: scale(1) rotate(20deg);
  }
  50% {
    -webkit-transform: scale(1.1) rotate(20deg);
            transform: scale(1.1) rotate(20deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(20deg);
            transform: scale(1) rotate(20deg);
  }
}



/*Accordion*/

.faq-section h2 {
    max-width: 24ch;
}

.accordion-wrap {
    width: 100%;
    max-width: 900px;
    gap: 0.5em;
    display: flex;
    flex-direction: column;
}

.accordion {
    background-color: var(--white);
    color: #444;
    cursor: pointer;
    padding: var(--space-xs);
    width: 100%;
    border: none;
    text-align: left!important;
    outline: none;
    font-size: var(--font-size-base);
    transition: 0.4s;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: var(--font-size-sm);
    font-weight: 200!important;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }

  .panel p {
    text-align: left!important;
  }
  
  .active, .accordion:hover {
    background-color: var(--swls-medium-blue); 
  }
  
  .panel {
    padding: var(--space-xs);
    display: none;
    background-color: white;
    overflow: hidden;
  }