/* -- FOOTER -- */
footer {
    background-color: var(--main-color);
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    padding-top: 100px;
}

.footer-upper {
    display: flex;
    width: 80%;
    justify-content: space-around;
    align-items: flex-start;
    margin: 0;
    padding: 50px 10%;
}
.footer-upper-left {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  justify-content: space-between;
  align-items: baseline;
}
.footer-upper-left h3 {
    font-size: 18pt;
    color: var(--secondary-text-color);
    margin: 0;
    padding: 0;
}
.footer-upper-left-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    width: 40%;
    padding: 0;
    margin: 0;
}
.footer-upper-left-name {
  width: 50%;
  min-width: 400px;
}
.footer-uppper-left-name-h2 {
    margin-bottom: 0.5em;
}

.footer-logo {
    height: auto;
    padding: 0;
    margin: 0;
    margin-bottom: 50px;
    
}
.footer-logo h2 {
    font-size: 24pt;
    margin: 0;
    margin-top: 50px;
    
    padding: 0;
}

.footer-logo img {
    width: 250px;
    height: auto;
    padding: 0;
    margin-bottom: 0;
}
.footer-links {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    width: 50%;
    padding-top: 20px;
    padding-left: 20px;
}
.footer-links a {
  text-decoration: none;
}
.sozial-media {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 60%;
}
.sozial-media img {
    width: 50px;
    height: auto;
    padding: 10px 0;
    padding-right: 20px;
    margin: 0;
    opacity: 0.8;
}
.sozial-media img:hover {
    opacity: 0.5;
}
.footer-image {
    width: 300px;
    height: auto;
    padding: 0;
    margin: 0;
}
.footer-image img {
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
footer hr {
    width: 70%;
    margin: 20px 15%;
    height: 1px;
    background-color: #333;
    border: none;
    
}
.footer-agb {
    padding: 30px 200px 20px;
    margin: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer-agb p {
    color: var(--link-color);
    font-size: 14pt;
}
.footer-agb > p > a {
    text-decoration: none;
    color: var(--link-color);
}
.footer-agb a:hover{
    color: var(--hover-color);
}
