/*
 * Platz für eigene Änderungen direkt als CSS
 * Die hier gemachten Änderungen überschreiben ggfs. andere Styles, da diese Datei als letzte geladen wird.
 */
#main-wrapper{
    max-width: 2048px;
    margin-left: auto;
    margin-right: auto;
    } 
.menupic {
    opacity: 90%;
   } 
.pictext{
    color: #fff;
    text-align: center;
    min-height: -webkit-fill-available;
    margin: 0px auto;
    position: absolute;
    left: 0;
    right: 0;
    transform: translateY(40%);
    font-size: 2.1em;
    font-weight: 800 !important;
    font-family: canada-type-gibson,sans-serif;
    text-transform: uppercase;
  }

.opc-container div{
    position: absolute;
}
.btn-secondary{
    background-color: rgb(102, 153, 153);
    border-color: rgb(102, 153, 153);
}

#footer {
     background-color: rgb(102, 153, 153);
}

#footer a:not(.btn):hover{
    color: rgb(181, 181, 181);
}    

.menuwpic{
    transition: 0.25s;
    margin-top: 10px;
    margin-right: 15px;
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.menuwpic span{
    color: #fff;
    text-align: center;
    margin: 0px auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 2.1em;
    font-weight: 800 !important;
    font-family: canada-type-gibson,sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.menuwpic img{
    max-width: 100%;
    touch-action: auto;
}
.techLink{
  font-size: 0.75rem;  
}

/* -------------------------------------- */
/* Slideshow */
 @keyframes fader {
    from { opacity: 1.0; }
    to   { opacity: 0.0; }
  }

  .fading-slideshow {
    position: relative;
    margin: 1em auto;
    padding: 0;
    list-style-type: none;
    max-width: 100%;
  }
  .fading-slideshow > li {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;  
    height: 100%; 
    overflow: hidden;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  /* current slide */

  .fading-slideshow > li:first-of-type {
    animation-name: fader;
    animation-delay: 8s;
    animation-duration: 2s;
    z-index: 20;
  }

  /* next slide to display */

  .fading-slideshow > li:nth-of-type(2) {
    z-index: 10;
  }

  /* all other slides */

  .fading-slideshow > li:nth-of-type(n+3) {
    display: none;
  }

