*{
    margin: 0;
    padding: 0;
}
body{
    font-family: helvetica;
    max-width: 100%;
    height: 100vh;
    display: block;
    margin: 0 auto;
    padding: 0;
}
.no-scroll{
    overflow-y: hidden;
}
header{
    background-color: white;
    height: 7rem;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 3;

}
.container-header{
    display: flex;
    justify-content: flex-end;


}

.lang{
    position: absolute;
    top: 0rem;
    left: 0.5rem;
    color: #80808059;
    font-weight: 600;
    font-size: 15px;
    font-family: monospace;
}

.lang span:nth-child(1){
    cursor: pointer;
}
.lang span:nth-child(3){
    cursor: pointer;
}
.lang p{
    margin-right: 0.2rem;
}

.de{
    display: none;
}

main{
    padding: 0rem;
    margin-top: 8rem;
    width: 100%;
}
.logo{
    width: 10vw;
}
.main-header{
    display: flex;
}
.header-left{
    background-color: rgb(0, 158, 227);
    border-radius: 65px 0px 0px 65px;
    width: 80vw;
    margin-top: 1rem;
    max-width: 40rem;
    box-shadow: 5px 2px 5px #8888882e;

}

.header-left .navbar-brand{
    color: rgb(252, 0, 231);
    font-weight: bold;
    margin-bottom: 0;
    margin-left: 1rem;

}
.header-left{
    line-height: 1;

}
.header-right{
    background-color: rgb(225 205 205);
}

.col-sm-7 .col-sm-5{
    border: solid red 2px;
}

.bla{
    display: none;
 }
.nav-close{
    position: fixed;
    left: 320px;
    top: 120px;
    display: none;
    border: none;
    /*align-content: center;
    justify-content: center;
    align-items: center;*/
    background: none;
    font-size: 30px;
    transition: all 3s ease-in;
    z-index: 1;

}
.open{
    display: flex;
    -webkit-transition: all 3s ease;
    -moz-transition: all 3s ease;
    -o-transition: all 3s ease;
    transition: all 3s ease-in;
}




/*-------------------------------*/
/*     Sidebar nav styles        */
/*-------------------------------*/


.sidebar{
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    position: fixed;
    top: 8rem;
    left: 0;
    margin-left: -17rem;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    z-index: 1;

}

.btn-close{
    border: none;
}
.open{
    margin-left: 0;
}
.opacity{
    opacity: 0.1;
    transition: all 0.2s ease-in-out;
}
.sidebar-nav {
    top: 0;
    width: 88vw;
    min-width: 311px;
    max-width: 326px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sidebar-nav li {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;

}
.nav-item{
    background-color: rgb(221 216 216);
    display: block;
    width: 100%;
    margin: 0.3rem;
    margin-left: 0;
    padding: 0rem;
    padding-left:  4.8px;
    padding-right: 0.5rem;
    font-weight: bolder;
    border-radius: 0 50px 50px 0;
    letter-spacing: -2px;
    cursor: pointer;
}

.nav-item a{
    color: white;

}
.nav-item:nth-child(1){
    background-color:  rgb(0, 255, 194);
}
.nav-item:nth-child(2),
.nav-item:nth-child(1){
    font-size: 30px;

    font-stretch: condensed;
}

.nav-item:nth-child(2){
    background-color: rgb(21, 163, 234);
    padding-right: 0.5rem;
}
/*.nav-item:nth-child(3){
    background-color: rgb(25, 252, 3);
    font-size: 20px;
    padding: 0.3rem;
    padding-right: 0.5rem;
}*/
.nav-item:nth-child(3){
    font-size: 20px;
    padding: 0.3rem;
    background-color: rgb(255, 229, 0);
}
.nav-item:nth-child(4){
    background-color: rgb(21, 163, 234);
    font-size: 20px;
    padding: 0.3rem;
    padding-right: 0.7rem;

}
.nav-item:nth-child(5){
    background-color: rgb(25, 252, 3);
    font-size: 20px;
    padding: 0.3rem;
    padding-right: 0.7rem;

}

.nav-icon{
    width: 65px;
}


.sidebar-nav li a {
    display: inline-block;
    color: whitesmoke;
    text-decoration: none;
    width: 80%;
}

 .sidebar-nav svg{
    margin-left: 2rem;
    color: rgb(252,0,231);
    opacity: 1;
    transition: all 0.4s ease-in;
     height: 55px
}
.svg-toggled{
    opacity: 0;
    transition: all 0.3s ease-out;

}




/*-------------------------------*/
/*       Hamburger-Cross         */
/*-------------------------------*/

.hamburger-nav {
    position: fixed;
    top: 190px;
    right: 25px;
    z-index: 1;
    display: block;
    width: 40px;
    height: 32px;
    margin-left: 15px;
    margin-top: 5px;
    background: transparent;
    border: none;
}
.hamburger-nav:hover,
.hamburger-nav:focus,
.hamburger-nav:active {
    outline: none;
}
.hamburger-nav.is-closed:hover:before {
    opacity: 1;
    display: block;
    -webkit-transform: translate3d(-100px,0,0);
    -webkit-transition: all .35s ease-in-out;
}

.hamburger-nav.is-closed .hamb-top,
.hamburger-nav.is-closed .hamb-middle,
.hamburger-nav.is-closed .hamb-bottom {
    position: absolute;
    left: 0;
    height: 2px;
    width: 100%;
}
.hamburger-nav.is-open .hamb-top,
.hamburger-nav.is-open .hamb-middle,
.hamburger-nav.is-open .hamb-bottom {
    position: absolute;
    left: 0;
    height: 2px;
    width: 50%;
}
.hamburger-nav.is-closed .hamb-top,
.hamburger-nav.is-closed .hamb-middle,
.hamburger-nav.is-closed .hamb-bottom {
    background-color: #1a1a1a;
}
.hamburger-nav.is-closed .hamb-top {
    top: 3px;
}
.hamburger-nav.is-closed .hamb-middle {
    top: 50%;
    margin-top: -2px;
}
.hamburger-nav.is-closed .hamb-bottom {
    bottom: 5px;
}

.hamburger-nav.is-closed:hover .hamb-top {
    top: 0;
}

.hamburger-nav.is-open .hamb-top,
.hamburger-nav.is-open .hamb-middle,
.hamburger-nav.is-open .hamb-bottom {
    background-color: #1a1a1a;
}
.hamburger-nav.is-open .hamb-top,
.hamburger-nav.is-open .hamb-bottom {
    top: 50%;
    margin-top: -2px;
    width: 5px;
}
.hamburger-nav.is-open .hamb-top {
    -webkit-transform: rotate(45deg);
    -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger-nav.is-open .hamb-middle { display: none; }
.hamburger-nav.is-open .hamb-bottom {
    -webkit-transform: rotate(-45deg);
    -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger-nav.is-open:before {
    content: '';
    display: block;
    width: 100px;
    font-size: 14px;
    color: #fff;
    line-height: 32px;
    text-align: center;
    opacity: 0;
    -webkit-transform: translate3d(0,0,0);
    -webkit-transition: all .35s ease-in-out;
}
.hamburger-nav.is-open:hover:before {
    opacity: 1;
    display: block;
    -webkit-transform: translate3d(-100px,0,0);
    -webkit-transition: all .35s ease-in-out;
}
/*Hamburger-nav */

.hamburger {
    position: absolute;
    top: 38px;
    right: 10px;
    z-index: 999;
    display: block;
    width: 40px;
    height: 27px;
    margin-left: 15px;
    z-index: 1;
    background: transparent;
    border: none;
}
.hamburger:hover,
.hamburger:focus,
.hamburger:active {
    outline: none;
}


.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom,
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
    position: absolute;
    left: 0;
    height: 2px;
    width: 80%;
    background-color: white;

}
.hamburger.is-closed .hamb-top,
.hamburger.is-closed .hamb-middle,
.hamburger.is-closed .hamb-bottom {
    background-color: white;
}
.hamburger.is-closed .hamb-top {
    top: 8px;
}
.hamburger.is-closed .hamb-middle {
    top: 50%;
}
.hamburger.is-closed .hamb-bottom {
    bottom: 5px;
}

.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-middle,
.hamburger.is-open .hamb-bottom {
    background-color: white;
}
.hamburger.is-open .hamb-top,
.hamburger.is-open .hamb-bottom {
    top: 50%;
    margin-top: -2px;
}
.hamburger.is-open .hamb-top {
    -webkit-transform: rotate(45deg);
    -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open .hamb-middle { display: none; }
.hamburger.is-open .hamb-bottom {
    -webkit-transform: rotate(-45deg);
    -webkit-transition: -webkit-transform .2s cubic-bezier(.73,1,.28,.08);
}
.hamburger.is-open:before {
    content: '';
    display: block;
    width: 100px;
    font-size: 14px;
    color: #fff;
    line-height: 32px;
    text-align: center;
    opacity: 0;
    -webkit-transform: translate3d(0,0,0);
    -webkit-transition: all .35s ease-in-out;
}
.hamburger.is-open:hover:before {
    opacity: 1;
    display: block;
    -webkit-transform: translate3d(-100px,0,0);
    -webkit-transition: all .35s ease-in-out;
}

/* content */




.campaign-link{

    background: rgb(253, 0, 233);
    width: 5rem;
    padding: 0.7rem;
    display: flex;
    justify-content: center;
    border-radius: 8px;
    transform: rotate(25deg);
    position: absolute;
    top: 136px;
    right: 38px;
    z-index: -1;

}

.btn-campaign img{
    border-radius: 10px;
    width: 90%;
}

.button a{
    color: white;
}
.button{
    border: solid white 3px;
    border-radius: 15px;
    background-color: white;
    
}

#anrede{
    display: none;
}
@keyframes blink {
    
    50% {border: solid 3px rgb(253, 0, 233);}
  }
  .button {
    
    color: white;
    animation: blink 1s linear infinite;
  }
  

/* IFRAME */

.container-iframe{
    
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
  }
  
  /* Then style the iframe to fit in the container div with full height and width */
  .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
  }

section{
    width: 70%;
    max-width: 40rem;
    margin: 0 auto;
}

.position::before {
    display: block;
    content: "";
    height: 8rem;
    margin-top: -8rem;
    visibility: hidden;
}

.section-header{
    display: flex;
    justify-content: flex-end;
}

.section-content{
    margin-bottom: 10rem;
}

.section-nav-item{
    background-color: rgb(221 216 216);
    display: flex;
    align-items: center;
    border-radius: 50px 0 0 50px;
    font-size: 30px;
    font-stretch: condensed;
    margin-left: 42vw;
    color: whitesmoke;
    font-weight: bold;
    box-shadow: 5px 4px 5px #8888882e;
    width: 67%;
}

.section-nav-item span{
    margin-left: 0.5rem;
}

.section-nav-icon{
    padding-left: 0.5rem;
    width: 60px;
}

.section-nav-icon-shop{
    width: 50px;
    padding-left: 1rem;
}

.section-nav-icon-kick{
    width: 45px;
    padding-left: 1rem;

}
.section-nav-icon-sustain{
    width: 50px;
    padding-left: 1rem;
}

.section-nav-icon-about{
    width: 30px;
    padding-left: 1rem;
}

.nav-long{
    font-size: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
}

img{
    width: 100%;
    height: auto;
}
.border-top-left{
    border-radius: 55px 5px 5px 5px;
}
.border-bottom-right{
    border-radius: 5px 5px 55px 5px;
}

.section-image{

    margin-bottom: 2rem;
}

figcaption{
    font-size: 10px;
    margin-top: 2px
}

.section-image-bottom{
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
}

.image-small{
    width: 20%;
    border-radius: 50%;
}

.section-text{
    padding-bottom: 3rem;
    margin-bottom: 3rem;
    margin-left: 2rem;
    margin-right: 0rem;
    border-bottom: solid #80808038 2px;
}

.mrg-top{
    margin-top: 3rem;
}

.form-control::placeholder{
    font-size: 14px;
    color: darkgray !important;
}

.form-control{
    padding: 0.7rem !important;
}

.btn{
    background-color: rgb(21, 163, 234) !important;
}

.section-text h3{
    margin-bottom: 1rem;
    font-weight: bold;
}

.section-text p{
    /*text-align: justify;*/
    font-weight: bold;
}

.section-text ul{
    list-style-type: square;
    font-weight: bold;
}

/* CONTACT FORM */

table{
    width: 70%;
    max-width: 30rem;
    margin: 0 auto;
}
#iframe-2270dde8efc31bf6145b46b1d1414c75e{
    width: 90%;
}

/* CONTACT */

.contact-list{
    background-color: transparent;
}
#list-style{
    list-style-type: none;
    padding-left: 0;
}
.contact-list ul{
    list-style-type: none;
    
}
.contact-item{
    margin-bottom: 1rem;
}
.contact-item a{
    color: #4f4f4f;
}

/* The Modal (background) */
.modal {
    display: none;
    position: fixed;
    z-index: 1;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: #000000f0;
}

/* Modal Content */
.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 90% !important;
    max-width: 900px;
    border-radius: 0 !important;
}

/* The Close Button */
.close {
    color: white;
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #999;
    text-decoration: none;
    cursor: pointer;
}

.mySlides {
    display: none;
    justify-content: center;
}

.mySlides img{
    border-radius: 0;
}

.cursor {
    cursor: pointer;
}

/* Next & previous buttons */
/*.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    transition: 0.6s ease;
    border-radius: 0 3px 3px 0;
    user-select: none;
    -webkit-user-select: none;
}*/

/* Position the "next button" to the right */
/*.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}*/

/* On hover, add a black background color with a little bit see-through */
.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Number text (1/3 etc) */
.numbertext {
    color: #f2f2f2;
    font-size: 12px;
    padding: 8px 12px;
    position: absolute;
    top: 0;
}



.caption-container {
    text-align: center;
    background-color: black;
    padding: 2px 16px;
    color: white;
}

.demo {
    opacity: 0.6;
}

.active,
.demo:hover {
    opacity: 1;
}

img.hover-shadow {
    transition: 0.3s;
}

.hover-shadow:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

#impressum-content{
    font-weight: normal;
}

/*footer*/

footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    margin: 0 auto;
    background-color: white;
}

.footer-list{
    display: flex;
    list-style-type: none;
    background-color: whitesmoke;
    justify-content: space-around;
    padding: 1rem 0 1rem 0;
    margin: 0;
    border-radius: 10px 10px 0 0;
}

.footer-icon{
    width: 75%;
    margin: 0 auto;
}

.footer-icon svg, .contact-icon svg{
    width: 30px;
    height: 30px;
    color: rgb(252, 0, 231);
}

@media screen and (max-width: 420px){
    .nav-long{
        font-size: 15px;
        padding: 0.8rem 0 0.8rem 0;
    }
}

@media screen and (min-width: 730px){
    .section-nav-item{
        margin-left: 50vw;
        font-size: 45px;
    }
    .section-nav-icon{
        width: 70px;
    }
    .section-nav-icon-shop{
        width: 60px;
        padding-left: 1rem;
    }
    .section-nav-icon-kick{
        width: 50px;
        padding-left: 1rem;

    }
    .section-nav-icon-sustain{
        width: 60px;
        padding-left: 1rem;
    }
    .section-nav-icon-about{
        width: 40px;
        padding-left: 1rem;
    }
    .nav-long{
        font-size: 35px;
        padding-top: 8px;
        padding-bottom: 8px;
    }
}

@media screen and (min-width: 1300px){
    .hamburger{
        display: none !important;
    }
    .sidebar{
        margin-left: 0;
    }
    .opacity{
        opacity: 1;
    }

}