


:root {
    --content-bg-color: rgb(212, 226, 188);
    --content-text-color: rgb(0, 0, 0);
    --content-side-color: rgb(96, 124, 90);
    
    --content-link-visited: rgb(0,0,0);
    --content-link-color: rgb(11, 48, 25);
    

    --navbar-color: rgba(11, 48, 25,.97);
     /* --navbar-color: rgb(11, 48, 25); */
    --navbar-links-hover-color: rgb(96, 124, 90);
    --navbar-links-color: rgb(230, 230, 230);
    --navbar-links-active: rgb(255, 225, 147);

    --navbar-height-big: 50vh;
    --navbar-height-small: 15vh;


    --footer-background-color: rgb(11, 48, 25);
    --footer-text-color: rgb(230, 230, 230);

    --pricebox-title-color: rgba(11, 48, 25,.97);
    --pricebox-price-color: rgb(96, 124, 90);
    --pricebox-permonth-color: rgba(0, 0, 0, 0.2);

    --pricebox-infobox-color: rgb(170, 184, 147);

    --pricebox-title-font-color: rgb(255, 255, 195); 

    --gallery-bg-color: rgb(211, 216, 201);


    --margin-bottom-gap-default: 5vh;
    --slide-img-width: 200px;
    --slide-img-width-mobile: 50px;


    --link-color: rgb(255,255,255);
    --link-hover-color: rgb(255, 225, 147);
    --link-visited-color: rgb(200, 200, 200);

}

*{
    margin: 0px;
    padding: 0px;
    border: 0px;
    box-sizing: border-box;
}


body{
    font-size: 1em;
    background-color: var(--content-side-color);
    overflow-x: hidden;

}



#background { 
    background-size: 100% auto;
    background-color: var(--content-side-color);

    /* background-image: url("imgs/Test_BG.jpg");     */
}


html {
    scroll-behavior: smooth;
}


h1{
    font-size: 1.7em;
}

h2{
    font-size: 1.3em;
    text-align: center;
    width:100%;
    font-weight: bold;
    margin-top: 1vh;
    margin-bottom: 3vh;
}


.footer a {
    color: var(--link-color) !important;
    text-decoration: underline !important;
}


.footer a:hover{
    color: var(--link-hover-color) !important;
    text-decoration: underline !important;
}

.footer a:visited {
    color: var(--link-visited-color) !important;
    
    text-decoration: underline !important;
}




#banner-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50vh;
    max-height: 50vh;
    min-height: 50vh;       
}


#banner-container img {
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    max-height: inherit;

}

#banner-img {
    max-width: 100%; 
    max-height: 100%;
    text-align: center;

}
  

#inline-banner img{
    display: none;
    min-width: 300px

}


#navbar {
    background-color: var(--navbar-color);
    box-shadow: 
        0px 3px 10px var(--navbar-color),
        0px -1px var(--navbar-color);   
    align-items: center;
    display: flex; 
    justify-content:space-between;
    font-family: Tahoma, sans-serif;
    /* font-family: 'Redressed', cursive; */
    /* font-family: 'Kanit', sans-serif;*/
    z-index:99; 
    width: 100%;
    top: 0; 
    position: -webkit-sticky; /* Safari */
    position: sticky;
    transition: all 0.5s linear;
}


.nav-big{
   height: 50vh;
}

.nav-small{
    height: 15vh;
}

.do-transition{
    transition: 0.3s;
}

.no-transition{
    transition: 0s;
}

#logo-container {
    position: relative; 
    display: flex;
    height: 27vh;
    width: 27vh;
    background-image: url("/imgs/imgs_page/LogoArrow.webp");
    background-size: cover;
    border-radius: 50%;
    opacity: 1;
    transition: width 0.5s, height 0.5s;
    transition-timing-function: ease-out;    
    left: 50px;

}

#logo-container img {
    position: absolute; /* Hinzugefügt: Position absolut setzen */
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Hinzugefügt: Objektgröße anpassen */
    border-radius: 50%;
    opacity: 1;    
}


#nav-links{
    width:70%;
    justify-content: right;
    display: flex;
    padding-right: 50px;
}

#nav-links ul{
    width:70%;
    justify-content: right;
    display: flex;
    

   
}

#nav-links li{
    padding: 3%;
    /*font-size: 25px;*/
    font-size: 1em;
    

    display: block;
    list-style: none;
    

    float: left;
    width: auto;
    list-style: outside none none;

}

#nav-links a:hover {
    list-style: none;
    color: var(--navbar-links-hover-color);
    cursor: pointer;
    /* TODO: gucken ob das noch auf gleicher Höhe geht */
    /* transition: color 0.5s, font-size 0.5s ease;
    font-size: 130%; */
}


a.active-navlink{
    color: var(--navbar-links-active) !important;
}
.active-navlink{
    color: var(--navbar-links-active);
}

#nav-links a{
    color: var(--navbar-links-color);
    text-decoration: none;
    letter-spacing: 3px;
    font-weight: bold;
}


a.content-link{
    color: var(--content-link-color);
    font-weight: bold;
    /* color-visited: ??*/
}

.burger{
    display: none;
    cursor: pointer;
    padding-right: 75px;
}

.burger div{
    width: 25px;
    height: 5px;
    background-color:var(--navbar-links-color);
    margin: 5px;
    transition: all 0.3s ease;
}


.toggle-burger .line1{
    transform: rotate(-45deg) translate(-8px,6px);    
}

.toggle-burger .line2{
    opacity: 0;
}

.toggle-burger .line3{
    transform: rotate(45deg) translate(-8px,-6px);    
}

#content-header{
    text-align: center;
    width:100%;
    font-weight: bold;
    font-size: 1.3em;
    margin-bottom: 10vh;
}

.font-right{
    text-align: right;

}


.footer {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    color: var(--footer-text-color);
    box-shadow: 
        0px -3px 10px var(--navbar-color),
        0px 1px var(--navbar-color);       
    font-family: Tahoma, sans-serif;
    font-size: 0.8em;
    min-height: 40vh;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--footer-background-color);
    color: white;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 0px;

}

.footer-link-container{
    display: flex;
    justify-content: space-evenly;
    align-content: baseline;
    width: 80%;
}

.footer a{
    color: white;
    text-decoration: none;   
}


.footer a:visited{
    color: grey;
    
}

.footer-item{
    display: flex;
    flex-direction: column;
    text-align: left;
    max-width: 20vw;
}

#impressum {
    max-width: 20vw;
}

#copyright {
    max-width: 40vw;
}


.gap{
    margin-bottom: var(--margin-bottom-gap-default);
}

.content{
    min-height: 100vh;
    width: 45%;
    min-width: 900px;


    padding-left: 50px;
    padding-right: 50px;
    padding-top: 10vh;
    padding-bottom: 20vh;
    margin: auto;
    margin-top: 5vh;
    margin-bottom: var(--margin-bottom-gap-default);
    font-size: 0.8em;
    text-align: justify;

    font-family: Tahoma, sans-serif;
    font-family: Verdana, sans-serif;

    background-color: var(--content-bg-color);

    /*box-shadow: var(--content-bg-color) 20px 20px 20px 100px;*/
    color: var(--content-text-color);
    /* font-family: 'Dancing Script', cursive; */

    box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px inset, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px inset;
    
}

#datenschutz-container{
    height: 100%;
    display: flex;
    vertical-align: baseline;
    text-align: end;
}



#btn_data_overlay{
    display: flex;
    justify-content: baseline;
}

.content-centered {
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding-left: 2.5%;
    padding-right: 2.5%;

}

.content-one-col {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    width: 75%;
}


.content-two-col {
    display: table;
}


.content-cell{
    display: table-cell;
    padding-right: 5%;
    vertical-align: middle;
    width: 50%;   
}

.content-img{
    border-style: solid;
    border-width: 2px;
    width: 95%;
    height:auto;
}

.hover-container {
    border-style: solid;
    border-width: 2px;
    text-align: center; 
    margin-left: auto;
     margin-right: auto;
    
    height: 100%;   
    width: 80%;   
    overflow: hidden;
}

.hover-container img {

    object-fit: cover;
    height: 100%;
    width: 100%;


}

.hoverzoom:hover {
    cursor: pointer;
    transition: 1.05s;

    transform:scale(1.05);
    -ms-transform:scale(1.05); 
    -moz-transform:scale(1.05);
    -webkit-transform:scale(1.05);
    -o-transform:scale(1.05); 
}

.content-multi-img{
    display: flex;

}

.content-img-cell img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}


.pawtable{
    display: table;
    margin-left: auto;
    margin-right: auto;
    border-spacing: 0.5em;
    table-layout: fixed;
    margin-bottom: var(--margin-bottom-gap-default);
}

.pawtable-row{
    display: table-row
}

.pawtable-pawcell{
    display: table-cell;
    width: 10%;
}

.pawtable-textcell{
    display: table-cell;
    text-align: left;
    vertical-align: middle;

}

.pawtable-datecell{
    display: table-cell;
    text-align: right;
    vertical-align: middle;
}


.paw-title-container{
    display: flex;   
    text-align: center;
    height: auto;
    margin-top: 10vh;
    margin-bottom: var(--margin-bottom-gap-default);
}

.paw-title-item{
    flex: 1;
    width: auto;
}

.paw-title-title{
    flex: 0 0 20%; /* Schmaler Container */
}

.paw-devider{
    display: inline-block;
    vertical-align: middle;
}

.paw-devider img{
    height: 1.6em;
}

.paw-icon-container{
    display: table-cell;
    width:5%;
    background-size: 1.3em;
    height: 3em;
    padding-right: 1em;
    text-align: center;

}

.paw-icon-container img{
    vertical-align: middle;
    height: 1.3em;
}

.contact-table{
    width: 1px;
    border-collapse: collapse;
    margin: 20px;
}

.contact-table td{
    text-align: center;
    padding: 1em;
    white-space:nowrap;
}

.pricelist-container {
    padding: 0;
    margin: 0;
    justify-content: center;
    flex-direction: row;
    list-style: none;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
  
  

  
  .pricelist-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
    /* flex: 0 0 calc(50% - 20px); */
    margin: calc(40px / 3) 0 0 calc(40px / 3);
    box-sizing: border-box;
    padding-left: 0%;
    padding-right: 0%;
   
  }
  

.content-prices td{
    text-align: left;
}


.content-boxes{
    column-count: 2;

    display: flex;
    flex-wrap: wrap;
    justify-content:space-around;
}

.content-single-box{
    display: block;
}


.pricebox{
    text-align: center;
    width: 25vw;
    max-width: 25em;
    min-width: 10em;
    border: 4px solid rgb(0, 0, 0);
    display: flex;
    flex-direction: column;
    margin-left:5px;
    margin-right:5px;
    box-shadow: -5px 5px 5px var(--navbar-color);      
    border-radius: 50px 50px 50px 50px;
    overflow: hidden;
    
}


.pricebox-title{
    background-color: var(--pricebox-title-color);
    display: flex;
    align-items: center;
    height: 50px;
    font-family: Tahoma;
    font-size: 1.5em;
    font-weight: bolder;
    color: var(--pricebox-title-font-color);
    justify-content: center;
    border-radius: 40px 40px 0 0 ;


}

.pricebox-price{
    background-color: var(--pricebox-price-color);
    padding-top: 5px;
    padding-bottom: 5px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1.5em;
    color:rgb(0, 0, 0);

}

.pricebox-price-value-euro{
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
    height: 3em;
    transform: rotate(-10deg);

    

}

.pricebox-price-value{
    font-size: 3em;
    text-shadow:0px 0px 30px rgba(248, 255, 183, 1);

}

.pricebox-perwalk{
    align-self: flex-end;
}

.pricebox-permonth{
    text-align: right;
    font-size: 0.8em;
    padding-top: 8px;
    padding-bottom: 5px;
    padding-right: 10px;
}


.pricebox-infobox{
    background-color: var(--pricebox-infobox-color);
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1.5em;
    color:rgb(0, 0, 0);
    box-shadow: rgba(255,255,195, 0.5) 0px 0px 120px 30px inset;
    
}


.pricebox-icon-container{
    display: table-cell;
    padding-left: 0.5em;
    padding-right: 0.5em;
    padding-top: 0.5em;
}

.pricebox-icon-container img{
    height: 1em;
    
}

.pricebox-infobox-text{
    font-size: 0.7em;
    

}

.pricebox-bottom{
    background-color: var(--pricebox-title-color);
    height: 35px;
    border-radius: 0px 0px 40px 40px;

}

hr.divider{
    border-top: 4px solid #000;
    border-radius: 2px;
   width: 80%;
   margin-left: 10%;
   margin-right: 10%;
   transform: rotate(-10deg);
}



/**
.container-preise{
    display:flex;
    flex-wrap: wrap;
    padding: 0;
    justify-content: space-around;
}
**/

.container-items{
    font-size: 20px;
    padding-top: 20%;
}

.container-items li{
    padding: 10%;
    margin-bottom:5%;
}

.container-items hr{
    margin-bottom:8%;
}



.container-preise li{
    list-style-type: none;
    padding-top: 0px; 
    padding-bottom: 0px;
}


.container-angebot{
    max-width: 50%;
    flex-shrink: 0;
    
    background-color: rgba(117, 136, 117, 0.7);
    
    
    
    height: 75%;
    text-align: center;

    border-radius: 0px 0 20px 0;
    margin: 2%;
    

    }

.container-angebot-titel-outline{
    background-color: #d6d6d6;
    border-radius: 0px 0 20px 0;
    height: 25%;


}

.container-angebot-titel{
    background-color: #102A10;
    color:rgb(199, 199, 199);
    height: 98%;
    /* line-height: 110px;     */
    white-space: nowrap;
    font-size: 2em;
    border-radius: 0px 0 20px 0;
    /* margin-left: 5px;
    margin-right: 5px; */
    
}

.container-angebot-titel li{
    transform: rotate(0deg);
    font-style: italic;
    padding-top: 10%;
}


.signature{
    font-family: 'Give You Glory', cursive;
    font-size: 2em;
}

.quote-name{
    display: flex;
    text-align: right;
    justify-content: end;
    width: 100%;
}

.quote-name b{
    font-size: 1.2em;
    flex-grow: 1;
    padding-right: 30px;
}


/*  SLIDESHOW */

#slider-widgets{
    display: flex;
    width: 100%; /* Breite des Haupt-Divs */
    height: 50vh; /* Höhe des Haupt-Divs */
    background-color: var(--content-bg-color);
    position: relative;
    text-align: center;
    justify-content: center;
  }
  
  #slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content:center;
    align-items: center;
  }
  
  .slide {
    cursor: pointer;

    position: absolute;
    object-fit: contain;
    padding: 50px;
    transition: transform 1.1s ease-in-out;

  }
  
  .slide > img {
    object-fit: cover;
    height: 50vh;
    width: auto; 
    max-width: 100%;
  }
  
  
  
  #prev-button,
  #next-button {
      display: flex;
      position: absolute;
      align-items: center;
      width: 1em;
      height: 100%;
      min-width: 1em;
      cursor: pointer;
      background-color: var(--navbar-color);
      color: white;
      padding: 0px 20px;
      text-decoration: none;
      opacity: .3;
      z-index: 4;
  
  }
  
  #prev-button {
      border-radius: 10px 0px 0px 10px;
      left: 0;
    }
    
    #next-button {    
      border-radius: 0px 10px 10px 0px;
    right:0;
  }
  
  #prev-button:hover,
  #next-button:hover {
    opacity: 0.6;
    transition: opacity 1.1s ease-in-out; /* checken!!! */
  }





/* IMAGE Overlay */

#gallery-overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(17, 22, 18, 0.9);
    z-index: 200;
    cursor: pointer;
    justify-content: center;
    /* opacity: 0; */
}

#gallery-overlay-img{
    /* background-color: #333; */
    height: 90%;
    width: 90%;
    max-height: 90%;
    max-width: 90%;
    min-height: 200px;
    min-width: 200px;
    height: auto;
    width: auto;
    margin: auto;
    border-style: solid;
    border-width: 2px;   
}


#img-overlay{
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(17, 22, 18, 0.9);
    z-index: 200;
    cursor: pointer;
    /* opacity: 0; */
}

#overlay-img{
    /* background-color: #333; */
    height: 90%;
    width: 90%;
    max-height: 90%;
    max-width: 90%;
    min-height: 200px;
    min-width: 200px;
    height: auto;
    width: auto;
    margin: auto;
    border-style: solid;
    border-width: 2px;
    
}

#gallery-button-left{
    color: white;
    background-color: black;
    width:4%;
    height: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    opacity: .3;
    font-size: 200%;
    border-radius: 0px 30px 30px 0px;
}

#gallery-button-right{
    color: white;
    background-color: black;
    width:4%;
    height: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    opacity: .3;
    font-size: 200%;
    border-radius: 30px 0px 0px 30px;
}


.overlay-button-close{
    color: white;
    background-color: black;
    width:80px;
    height: 80px;
    position: absolute;
    top: 10px;
    right: 20px;
    opacity: .3;
    font-size: 200%;
    border-radius: 50px;
}


#gallery-button-left:hover{
    transition: opacity 0.5s ease;
    opacity: 1;
}
#gallery-button-right:hover{
    transition: opacity 0.5s ease;
    opacity: 1;
}
#gallery-button-close:hover{
    transition: opacity 0.5s ease;
    opacity: 1;
}


#data-overlay{
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(17, 22, 18, 0.9);
    z-index: 200;
    cursor: pointer;
    /* opacity: 0; */
}



/*

@media all and (min-width: 50px)   {  body  { font-size:0.1em;  } }
@media all and (max-width: 100px)  {  body  { font-size:0.2em;  } }
@media all and (max-width: 200px)  {  body  { font-size:0.4em;  } }
@media all and (max-width: 300px)  {  body  { font-size:0.6em;  } }
@media all and (max-width: 400px)  {  body  { font-size:0.8em;  } }
@media all and (max-width: 500px)  {  body  { font-size:1.0em;  } }
@media all and (max-width: 600px)  {  body  { font-size:1.2em;  } }
@media all and (max-width: 700px)  {  body  { font-size:1.4em;  } }
@media all and (max-width: 800px)  {  body  { font-size:1.6em;  } }
@media all and (max-width: 1000px) {  body  { font-size:2.0em;  } }
@media all and (max-width: 1100px) {  body  { font-size:2.2em;  } }
@media all and (max-width: 1200px) {  body  { font-size:2.4em;  } }
@media all and (max-width: 1300px) {  body  { font-size:2.6em;  } }
@media all and (max-width: 1400px) {  body  { font-size:2.8em;  } }
@media all and (max-width: 1500px) {  body  { font-size:3.0em;  } }
@media all and (max-width: 1500px) {  body  { font-size:3.2em;  } }
@media all and (max-width: 1600px) {  body  { font-size:3.4em;  } }
@media all and (max-width: 1700px) {  body  { font-size:1em;  } }

/* TODO: hier anpassen */
/* SCROLLING FEHLER MUSS HIER IRGENDWO SEIN!!! */

@media all and (max-width: 900px)  {
    
   
    .content { width:90%; min-width: 300px;
    }
    .content-two-col {display: flex; flex-direction: column; align-items: center;
        justify-content: center;}
    
    .reverse-display {
        flex-direction: column-reverse;
    }
    #firstview {
        display: flex;
        flex-direction: column-reverse;
    }

    .content-img {
        width: 60%;
    }


    /*
    .firstview {
        display: flex;
        flex-direction: column-reverse;
    }
    */

    .content-cell{display: flex; flex-direction: column; align-items: center;width: auto; padding: 0; padding-bottom: 3dvh;}
    
    
    /* MOBILE - NAVBAR */
    #navbar {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 100;
        height: 10vh;
    }

    

    #firstview {
        position: fixed;
        top: 0;
        width: 100%;
        z-index: 100;
        height:10vh;
    }

    #banner-container {
        display: none;
        height: 0%;
    }

    #logo-container {
        height: 8vh;
        width: 8vh;
    }

    
    #inline-banner {
        position: relative;
        
        height: 100vh;
        width: auto;
    }
    
    #inline-banner img {
        display: flex;
        object-fit: cover;
        height:100vh;   
        width:100%;
    }


    #nav-links{
        /*display: none;*/
        position: absolute;
        height: 100vh;
        width:60vw;
        top: 0px; 
        left: 100vw;
        flex-direction: column;
        background-color: var(--navbar-color);
        padding-top: 10vh;
        padding-left: 20px;
    }

        
    #nav-links ul{
        display: flex;
        flex-direction: column;
        justify-content: left;
        padding-top: 1em;        
    }

    #nav-links li {
        font-size: 1.2em;
        padding-top: 2em;
    }
        
    @keyframes navbarShrink {
        from{
            height: 15vh;

        }
        to{
            height: 50vh;
        }               
    }

    @keyframes navbarGrow {
        from{
            height: 50vh;
        }
        to{
            height: 15vh;
        }        
    }

    @keyframes navLinkFadeIn {
        from{
            transform: translate(0vw);
        }
        to{
            transform: translate(-60vw);
        }        
    }

    
    @keyframes navLinkFadeOut {
        from{
            transform: translate(-60vw);
        }
        to{
            transform: translate(0vw);
        }        
    }

    



    .burger{
        display: block;
    }





    
    .paw-title-container {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    .paw-title-item {
        white-space: nowrap;
        min-width: 100%;
    }
    
    .paw-title-title h1 {   
        max-width: fit-content;
    }

    .paw-devider {
    }

    .paw-devider img {
        width: 10px;
    }

    .content-img-cell {
        padding-left: 5%;
    }

    /* PAW TABLE FOR SEMINARS */
    .pawtable{
        display:flex;
        flex-direction: column;
        align-items: center;
        margin-left: auto;
        margin-right: auto;
        border-spacing: 0.5em;
        margin-bottom: var(--margin-bottom-gap-default);
    }

    .pawtable img {
        height: 1.5em;
    }

    .pawtable-row{
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .pawtable-pawcell{
        display: flex;
        flex-direction: column;
        margin-bottom: 2em;
    }

    .pawtable-textcell{
        display: table-cell;
        text-align: center;
        vertical-align: middle;
        margin-bottom: 1em;
        
    }

    .pawtable-datecell{
        display: table-cell;
        text-align: center;
        vertical-align: middle;
        margin-bottom: 2em;
    }





    .pricelist-container {
        justify-content: center;
        margin-left: auto;
        margin-right: auto;        
        
    }

    .pricebox {
        min-width: 40vw;
        width: 70vw;
    }


    #slider-widgets {
        height: 50vh;
    }

    .slide >img {
        height: 30vh;

    }




    /* FOOTER */

    .footer {
        padding-top: 10vh;
        padding-left: 5vw;
        padding-right: 5vw;

    }

    .footer-link-container {
        flex-direction: column;
    }

    .footer-item{
        display: flex;
        flex-direction: column;
        text-align: left;
        
    }

    #impressum {
        max-width: 80vw;
        padding-bottom: 8vh;
    }

    #copyright {
        max-width: 80vw;
    }


}    