@charset "UTF-8";
/* CSS Document */
@media only screen and (max-width: 767px) {
/********************** LAYOUT ******************/
    #wrapper{
        width:82%;
        padding-top:2rem;
    }
    .grid_3-1 {
    display:flex;
    }
    .grid_3-1 div:nth-child(2) {
    display: none;
}
    .grid_3-0 div:nth-child(2) {
        display:block;
    }
 
.header{
    height:auto;
    top: -15px;

}
    .header_container{
    display: grid;
    grid-template-rows:  0px 85px 0px;
    grid-template-columns: 9% 65% 17% 9%;
    grid-template-areas:"left menu logo right";

    }
    .header_container div:nth-child(2){
        flex-direction:row;
    }
    
    .header_container div:nth-child(3){
        grid-column-start: logo;
        grid-column-end: right;
        grid-row-start: 1;
        grid-row-end: 3;
        background-repeat:no-repeat;
        background-size:contain;
    }
    .header_container div:nth-child(4), .header_container div:nth-child(4){
        background:none;
    }
    .nav-list{
        flex-direction:column;
    }
    .slider_container{
        display: grid;
    grid-template-rows: 85px 17px;
    grid-template-columns: 9% 17% 65% 9%;
    grid-template-areas:"left content1 content2 right";
    }
    .slider_container div:nth-child(3){
   grid-row-end: 2;
    }
    .slider_container div:nth-child(2) {
background: var(--darkcolor);
grid-area: left;
grid-row-start: 2;
grid-row-end: 3;
}
    
    .scroll-container a {
    background:var(--accentcolor);
      position: sticky;
      top:50vh;
      cursor: pointer;
    padding: 10px 20px;
    color: var(--white);
    border-radius: 5px 0 0 5px;
    background-image:url(../images/iconTop.png);
    background-size:25px;
    background-repeat:no-repeat;
    background-position:center;
    }
    .home img{
        max-width:100%;
        width:auto;
    }
   .imptable tbody, .imptable tr {
        display: flex;
        flex-direction: column;
    }
    
/********************** END LAYOUT ******************/
/********************** TYPO ******************/
body { 
    line-height: 1.5;
    font-size:1rem; 
    }
    h1 {
        font-size: 1.5rem;
        line-height: 2.0rem;
    }
    .homelink{
    font-size:1.5rem;
    padding: 20px 10px 0 0;
    }
    p { 
        hyphens: auto; 
    }

/********************** END TYPO ******************/
/********************** MOBILE NAVIGATION ******************/
        label.hamburg { 
            display: block;
            background: none;
            width: 25px; 
            height: 25px; 
            position: relative; 
            margin-left: auto; 
            margin-right: auto;
         }
         .line { 
            position: absolute; 
            left:10px;
            height: 3px; width: 25px; 
            background: var(--white);
             border-radius: 2px;
            display: block; 
            transition: 0.5s; 
            transform-origin: center; 
         }
         
         .line:nth-child(1) { top: 10px; }
         .line:nth-child(2) { top: 20px; }
         .line:nth-child(3) { top: 30px; }
         
       /*  #hamburg:checked + .hamburg .line:nth-child(1){
            transform: translateY(12px) rotate(-45deg);
         }
         
         #hamburg:checked + .hamburg .line:nth-child(2){
            opacity:0;
         }
         
         #hamburg:checked + .hamburg .line:nth-child(3){
            transform: translateY(-12px) rotate(45deg);
         }*/
        
         .mobile-nav {
         background: none !important;
         margin: 20px;
         }
         .menu-nav{
            width: 100%;
            background:var(--darkcolor);
            position: fixed;
            padding:1rem;
            display:none;
            margin-top: 80px;
            transition: all 2s ease-in;
             margin-left:-9%;
             height:80vh;
             overflow-x:hidden;
         }
    .footer_container .menu-nav{
        margin-left:-26%;
        top:30vh;
        background:var(--accentcolor);
         width:100%;
        position:fixed;
    }
    .menu-nav .nav-list > li > a.current {
  text-decoration-line: underline;
  text-underline-offset: 0.3em;
  text-decoration-style: solid;
  text-decoration-color: var(--accentcolor);
  text-decoration-thickness: 2px;
}
footer .menu-nav .nav-list > li > a{
        color:var(--white);
    }
footer .menu-nav .nav-list > li > a.current {
  text-decoration-color: var(--darkcolor);
    }
/********************** END MOBILE NAVIGATION ******************/
/************************* FOOTER *************************/
    footer {
  margin-top: 30px;
  padding-bottom: 10px;
         overflow-x:hidden;
    }
    .footer_container {
    display: grid;
    grid-template-columns: 9% 17% 48% 17% 9%;
    grid-template-rows: 17px 30px 70px;
    grid-template-areas:"left content1 content2 content3 right";
        font-size:0.7rem;
        width:100%;
         overflow-x:hidden;
  }
    .footer_container div:nth-child(2) {
  grid-column-end: right;
        
}
    .footer_container div:nth-child(5){
    margin-top:20px;
    width: 100%;
    grid-column-start: 4;
    grid-column-end: 5;
    grid-row-start: 2;
    grid-row-end: 4;
    }
    Element {
}
    .footer_container div:nth-child(4) div:last-child{
    background-size: contain;
    }
    /************************* END FOOTER *************************/
}