:root {
        --footer: radial-gradient(circle at top left, rgb(13, 141, 190) 0%, rgb(13, 141, 190) 46%,rgb(22, 153, 204) 46%, rgb(22, 153, 204) 49%,rgb(31, 166, 217) 49%, rgb(31, 166, 217) 52%,rgb(40, 178, 231) 52%, rgb(40, 178, 231) 54%,rgb(49, 190, 244) 54%, rgb(49, 190, 244) 100%);
    }

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    overflow-x: hidden;
}


.Banner{
    display: flex; 
    align-items: flex-start;
    background-image: url(img/WandN.jpg);
    background-size: 80% auto;
    background-attachment: fixed;
}


.Logo{
    width: 16vw; 
    margin: 2vw;
    margin-left: 10vw;
}

.Schrift_Banner{
    margin-top: 2vw;
    white-space: nowrap;
}

.Firma{
    font-weight: bolder;
    color: #0056A4; 
    font-size: 4rem;
}

.Malermeister{
    font-size: 2.5rem; 
    color: black;
}

.Wischer{
    transform: translate(30%, 25%) scale(150%);
    width: 30vw;
}

.navbar {
    display: flex;
    position: relative;
    justify-content: flex-end;
    align-items: center;
    background-color: #EBF6F8;
    background-image: url(img/Farben.jpg);
    background-repeat: no-repeat;
    background-size: 80% auto;
    background-position: right top;
    z-index: 100;
    border-bottom: #4BC2F1 .5rem solid;
    border-top: #4BC2F1 .5rem solid;
}


.brand-title {
    font-size: 2rem;
    margin: .7rem;
    font-family: 'Albertus Medium';
    font-style: normal;
    font-weight: normal;
    letter-spacing: 0.5rem;
}

.brand-title a{
    text-decoration: none;
}

.brand-title a:hover{
    font-size: 2.2rem;
}
.navbar-links {
    height: 100%;
}

.navbar-links ul {
    display: flex;
    margin: 0;
    padding: 0;
}

.navbar-links li {
    list-style: none;
}

.navbar-links li a {
    display: block;
    text-decoration: none;
    color: #4BC2F1;
    padding: 1.5rem;
    padding-bottom: 1rem;
    padding-top: 1rem ;
    font-size: 2rem;
    font-weight: bolder;
    transition: all 250ms ease;
}


.navbar-links li:hover{
    background-color: #4BC2F1;


}

.navbar-links li:hover a{
    text-shadow: none;
    color: white;
}

.navbar-links li a:hover{
    transform: translate(0, -.5rem);
}

.toggle-button {
    top: 1rem;
    right: 1rem;
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    align-self: flex-end;
    margin: .5rem;
}

.toggle-button .bar {
    height: 4px;
    width: 100%;
    background-color: #FCBF00;
    border-radius: 10px;
}

@keyframes Slide{
    0%{transform: translateX(0);}
 
    100%{transform: translateX(-70%);}
}

.navbar_toggle{
    position: fixed;
    top:0;
    width: 100%;
}


#Meldung{
    animation: Slide 45s infinite linear 2s;
    background-color: brown;
    font-size: 1em;
    position: absolute;
    width: 500vw;
    box-shadow: 0px 10px 15px black;
    padding-left: 100%;
    overflow-x: hidden;
    z-index: 10;
}





.HG_Footer{
    background-color: #0056A4;
    position: absolute;
    z-index: -20000;
    height: 20vh;
    width: 100%;
    overflow-y: hidden;
}


.HG_Footer div{
    position: absolute;
    border-radius: 50%;
    background-color: #4BC2F1;
    animation: ripple 40s infinite ease-in-out;
    box-shadow: 0px 0px 1px 0px #508fb9;
    z-index: -1000;
}


.HG_Footer > div:nth-of-type(1){
    width: 1000px;
    height: 1000px;
    left: -500px;
    bottom: -500px;
    opacity: .1;
}

.HG_Footer > div:nth-of-type(2){
    width: 800px;
    height: 800px;
    left: -400px;
    bottom: -400px;
    opacity: .2;
}

.HG_Footer > div:nth-of-type(3){
    width: 600px;
    height: 600px;
    left: -300px;
    bottom: -300px;
    opacity: .3;
}

.HG_Footer > div:nth-of-type(4){
    width: 400px;
    height: 400px;
    left: -200px;
    bottom: -200px;
    opacity: .4;
}

.HG_Footer > div:nth-of-type(5){
    width: 200px;
    height: 200px;
    left: -100px;
    bottom: -100px;
    opacity: .5;
}

@keyframes ripple{
    0%{
      transform: scale(0.8);
    }
    
    50%{
      transform: scale(1.2);
    }
    
    100%{
      transform: scale(0.8);
    }
  }



.footer-grid{
    padding-left: 2%;
    padding-top: 2%;
    padding-bottom: 2%;
    display: grid;
    grid-template-columns: 20% 25% 25% 20% 10%;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0px -10px 10px rgba(0, 0, 0, .5);

  }


.footer_fett{
    font-weight: bold;
    color: #0056A4;
  }

.footer-grid_item a{
    color: #FCBF00;
}

