* {
    margin: 0;
    padding: 0;
    font-size: 100%;
    font-weight: inherit;
    font-style: inherit;
    font-family: 'Oswald Regular';
    box-sizing: border-box;
}

/*--- Schrift ---*/

@font-face {
    font-family: 'Oswald Regular';
    src: url(../fonts/Oswald-Regular.woff);
}

@font-face {
    font-family: 'Oswald Light';
    src: url(../fonts/Oswald-Light.woff);
}

@font-face {
    font-family: 'Oswald Bold';
    src: url(../fonts/Oswald-Bold.woff);
}

h1 {
    font-family: 'Oswald Bold';
    font-size: 2.45em;
    line-height: 1.3em;
    margin-bottom: .3em;
}

h2 {
    font-family: 'Oswald Bold';
    font-size: 2.45em;
    line-height: 1.3em;
    margin-bottom: .3em;
}

h3 {
    font-family: 'Oswald Bold';
    font-size: 1.2em;
    line-height: 1.6em;
    margin-bottom: 2%;
}

p {
    font-size: 1.2em;
    line-height: 1.7em;
    margin-bottom: 2%;
}

a {
    text-decoration: none;
    color: var(--primary-black);
}

/*--- Utility Class ---*/

.scale {
    width: 100%;
    height: auto;
}

.clearer {
    clear: both;
}

:root {
    --primary-white:  #f0f0f0;
    --primary-black: #1e1e1e;

    --secondary-white: #fff;
}

.error-message {
    color: red;
}

.success-message {
    color: #1fb52c;
}

.disabled-lang {
    display: none;
}

/*--- Main --*/

body {
    background-color: var(--primary-white);
}


nav {
    position: fixed;
    display: flex;
    z-index: 5;
    justify-content: space-between;
    margin: 0 auto;
    width: 100%;
    padding: 0 5%;
    background-color: var(--primary-white);
    box-shadow: -5px 0px 20px .7px #1e1e1e;
}

#nav-logo {
    width: 20%;
    min-width: 250px;
    max-width: 350px;
    margin: auto 0;
}

#nav-btn-list {
    height: 70%;
    margin: auto 0;
    display: flex;
}

#ig-icon {
    height: 40px;
}

#mm-svg {
    height: 35px;
}

#nav-btn-list button {
    display: flex;
    padding: .5em 1em;
    margin: 1.4em .8em;
    background-color: #1e1e1e;
    color: var(--primary-white);
    border: none;
    border-radius: 6px;
    border: solid 1px var(--primary-black);
    fill: var(--primary-white);
    transition: all .3s ease-in-out;
}

#nav-btn-list button:hover {
    background-color: var(--secondary-white);
    color: #1e1e1e;
    fill: var(--primary-black);
    border: solid 1px var(--primary-black);
}

#nav-btn-list button em {
    display: block;
    margin-right:10px;
/*    margin: auto 0.5em 0 0;  */
    font-size: 1.6em;
}

#nav-btn-list button img {
    height: 40px;
    width: auto;
}

.switch {
    position: relative;
    display: inline-block;
    margin: auto 0;
  }
  
  .switch > span {
    position: absolute;
    top: 14px;
    pointer-events: none;
    font-family: 'Helvetica', Arial, sans-serif;
    font-weight: bold;
    font-size: 12px;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .06);
    width: 50%;
    text-align: center;
  }
  
  input.check-toggle-round-flat:checked ~ .off {
    color: var(--primary-black);
  }
  
  input.check-toggle-round-flat:checked ~ .on {
    color: #fff;
  }
  
  .switch > span.on {
    left: 0;
    padding-left: 2px;
    color: var(--primary-black);
  }
  
  .switch > span.off {
    right: 0;
    padding-right: 4px;
    color: #fff;
  }
  
  .check-toggle {
    position: absolute;
    margin-left: -9999px;
    visibility: hidden;
  }
  .check-toggle + label {
    display: block;
    position: relative;
    cursor: pointer;
    outline: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  input.check-toggle-round-flat + label {
    padding: 2px;
    width: 97px;
    height: 35px;
    background-color: var(--primary-black);
    -webkit-border-radius: 60px;
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
  }
  input.check-toggle-round-flat + label:before, input.check-toggle-round-flat + label:after {
    display: block;
    position: absolute;
    content: "";
  }
  
  input.check-toggle-round-flat + label:before {
    top: 2px;
    left: 2px;
    bottom: 2px;
    right: 2px;
    background-color: var(--primary-black);    
    -moz-border-radius: 60px;
    -ms-border-radius: 60px;
    -o-border-radius: 60px;
    border-radius: 60px;
  }
  input.check-toggle-round-flat + label:after {
    top: 4px;
    left: 4px;
    bottom: 4px;
    width: 48px;
    background-color: var(--primary-white);
    -webkit-border-radius: 52px;
    -moz-border-radius: 52px;
    -ms-border-radius: 52px;
    -o-border-radius: 52px;
    border-radius: 52px;
    -webkit-transition: margin 0.2s;
    -moz-transition: margin 0.2s;
    -o-transition: margin 0.2s;
    transition: margin 0.2s;
  }
  
  input.check-toggle-round-flat:checked + label:after {
    margin-left: 44px;
  }

section {
    margin: 0 auto;
    width: 100%;
    padding: 3% 5%;
}

#intro-section {
        padding: 6em 0 0 0;
} 

#header-image-mob {
    display: none;
}

#usp-section {
    display: flex;
    justify-content: space-between;
}

.usp-liste {
    font-family: 'Oswald Light';
    text-align: center;
}

.usp-icon {
    width: 100%;
    margin-bottom: .2em;
}

#usp-border {
    height: 2px;
    width: 90%;
    border-radius: 4%;
    margin: 0 auto;
    background-color: var(--primary-black);
}

#mobile-ablauf {
    display: none;
}

#produkt-kategorien-liste {
    display: flex;                      /*--- Mobile untereinander ----*/
    justify-content: space-between;
    margin: 3em 0 14em 0;
    height: 100%;
}

.produkt-kategorie {
    padding-top: 10%;
    width: 21vw;
    height: auto;
    text-align: center;
    box-shadow: 5px 5px 15px 2px #6e6e6e;
    transition: all .3s ease-in-out;
}


.produkt-kategorie:hover {
transform: translateX(-50%);
transform: translateY(-50%);
transform: scale(105%);
background-color: var(--primary-black);
color: var(--primary-white);
}

.produkt-link {
    height: 22vh;
}

.produkt-image {
    width: 80%;
    margin: 0 auto;
}

#pitch-text {
    background-color: #1e1e1e;
    color: var(--primary-white);
    text-align: center;
    width: 100%;
    margin: 0 auto;
    padding: 2% 7% 5%;
    border-radius: 6px;
}

#pitch-text-spacer {
    margin-bottom: 4em;
}

#pitch-text p {
    max-width: 1080px;
    width: 100%;
    margin: 0 auto;
}

#pitch-ablauf {
    display: flex;
    justify-content: space-around;
}

.ablauf-box {
   position: relative;
   width: 20%;
   margin-bottom: 10%;
}

.ablauf-box p {
    font-family: 'Oswald Light';
    font-size: 1.2em;  /*--- Mobile kleiner ---*/
    color: #fff;
    position: absolute;
    text-align: center;
    z-index: 1;
    top: 60%;
    left: 43%;
    transform: translateX(-50%);
}

.ablauf-icon {
    position: relative;
    z-index: 0;
    margin: 0 auto;
    height: auto;
    width: 70%;
    min-width: 200px;
}

#form-section {
    display: flex;
    justify-content: space-around;
    margin-bottom: 5.5em;
}

#form-text {
    width: 30vw;
}

.language-spacer {
    margin-bottom: 5em;
    width: 100%;
    margin: 0 auto;
}

#form-text p {
    margin-top: 1.3em;
}

#form-section form{
    width: 40vw;
}

.form-spacer {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 2.5em;
}

.label-wrapper {
    margin: 0 1.4em 1.4em 0;
}

input {
    margin-top: .4em;
    width: 270px;
    height: 2.8em;
    border-radius: 8px;
    border: solid 1px #cbcbcb;
}

input:not(#send) {
    padding:.4em;
}

#gender-wrapper {
    position:fixed;
    height: calc(100% * 0);
    width: calc(100% * 0);
    overflow: hidden;
    margin: unset;
}

#sname {
    width: 370px;
}

textarea {
    margin-top: .4em;
    padding: .4em;
    width: 70%;
    max-width: 750px;
    min-width: 400px;
    height: 8em;
    display:block;
    border-radius: 8px;
    border: solid 1px #cbcbcb;
}

#dsgvo-check {
    width: 25px;
    height: 25px;
    margin-right: 1em;
}

.dsgvo-consent {
    line-height: 1.5em;
}

.dsgvo-link {
    color: var(--secondary-color);
    text-decoration: underline;
}

#send {
    background-color: var(--primary-black);
    color: var(--secondary-white);
    margin-top: 1em;
    height: 3.4em;
    transition: all .2s ease-in-out;
}

#send:hover {
    background-color: var(--primary-white);
    color: var(--primary-black);
    border: solid 1px var(--primary-black);
}

footer {
    background-color: #1e1e1e;
    color: #dedede;
    display: flex;
    justify-content: space-between;
    padding: 5%;
}

.footer-list {
    margin: 0 auto;
    list-style: none;
    line-height: 1.8em;
}

#footer-ig {display: none;}


@media screen and (max-width: 1350px) {
    
    #produkt-kategorien-liste {
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        width: 100%;
        height: 67em;
        margin: 5% auto 5%;
    }
    
    .produkt-kategorie {
        display: block;
        width: 34vw;
    }

    #pitch-ablauf {
        display: flex;
        justify-content: space-around;
    }
    
    .ablauf-box {
       position: relative;
       width: 20%;
       margin-bottom: 10%;
    }
    
    .ablauf-box p {
        font-family: 'Oswald Light';
        font-size: 1em;  /*--- Mobile kleiner ---*/
        color: #fff;
        position: absolute;
        text-align: center;
        z-index: 1;
        top: 60%;
        left: 40%;
        transform: translateX(-50%);
    }
    
    .ablauf-icon {
        position: relative;
        z-index: 0;
        margin: 0 auto;
        height: auto;
        width: 70%;
        min-width: 160px;
    }
}


@media screen and (max-width: 907px) {

    h1 {
        font-size: 2.3em;
        margin-bottom: 4.5%;
    }

    #nav-logo {
            width: 30%;
            min-width: 170px;
    }

    #nav-btn-list button {
        margin: 1.4em .5em;
    }

    .switch {
        margin: auto 0;
       }

    #usp-section {
        display: flex;
        flex-wrap: wrap;
        gap: 3%;
        justify-content: center;
    }
    
    .usp-liste {
        font-family: 'Oswald Light';
        font-size: .9em;
        text-align: center;
        width: 30%;
        margin-top: 6%;
    }
    
    .usp-icon {
        width: 100%;
        margin-bottom: .2em;
    }


    #pitch-ablauf {
        display: none;
    }

    #produkt-kategorien-liste {
        margin: 5% 0 7% 0;
        display: block;
        height: 105%;
    }

    .produkt-kategorie {
        width: 65%;
        min-width: 320px;
        height: auto;
        margin: 5vh auto;
        padding-top: 4%;
    }

    #mobile-ablauf {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 3%;
        margin-bottom: 5%;
    }

    .mobile-ablauf-item {
        width: 17%;
        min-width: 130px;
        height: auto;
        align-items: center;
        text-align: center;
        background-color: var(--secondary-white);
        padding: 2%;
        margin-top: 6%;
        border-radius: 17px;
        box-shadow: 3px 3px 7px 5px #cbcbcb;
    }

    .mobile-ablauf-item img {
        width: 100%;
        height: auto;
    }

    #form-section {
        display: block;
    }

    #form-text {
        display: block;
        margin: 0;
        width: 100%;
    }

    .language-spacer {
        width: 80%;
        padding: 3% 5%;
        margin: 0;
    }

    #form-section form{
        width: 100%;
        margin: 0;
        padding: 3% 5%;
    }

    textarea {
        width: 75%;
    }

    footer {
       display: grid;
       grid-template-columns: 1fr 1fr;
       grid-template-rows: 1fr 1fr;
    }

}

@media screen and (max-width: 700px) {
    #nav-btn-list button {
        font-size: .7em;
    }

    #nav-btn-list button em {
        margin: auto 0;
        margin-right: .5em;
    }

    #intro-section {
        padding: 5.5em 0 0 0;
} 

    #header-image {
        display: none;
    }

    #header-image-mob {
        display: block;
    }
}


@media screen and (max-width: 560px) { 

    nav {
        display: block;
        padding: .8em 0;
    }

    #nav-logo {
        width: 55%;
        margin: 0 auto;
    }

    #mm-svg {
        height: 40px;
    }

   #nav-btn-list {
    justify-content: center;
    gap: 15px;
    margin: 0 auto;
    padding: 0;
    height: auto;
   }

   #nav-btn-list button {
    margin: 0;
   }

   .switch {
    margin-top: 1.2em;
   }
   
    #ig-button{
           display: none;
    }

    #intro-section {
        padding: 10em 0 0 0;
} 

    .language-spacer{
        width: 100%;
        margin-bottom: 4em;
    }

    .label-wrapper{
        width: 100%;
    }
    
    input {
        width: 100%;
    }

    #sname {
        width: 100%;
    }

    textarea {
        width: 100%;
        max-width: 450px;
        min-width: 0px;
    }

    #send {
        width: 100%;
    }

    footer {
        display: block;
     }
 
     .footer-list{
         margin:2em 0;
     }

    #footer-ig {
        display: block;
        width: 15%;
        margin: auto;
    }

    #footer-ig-icon {
        fill: var(--primary-white);
    }

}

/*
@media screen and (max-height: 650px) {
    nav {
        height: 25vh;
    }

    #nav-btn-list button {
        display: flex;
        padding: .5em 1em;
        margin:  .6em;
    }
}
*/