@import url('https://fonts.googleapis.com/css?family=Arimo&display=swap');

*, *::after, *::before {
    box-sizing: border-box;
    --global-main-color: #BE1621;
    --global-gray-font: #313131;
}

body {
    font-family: 'Arimo', sans-serif;
    margin: 0;
}

.top-part-background {
    background-image: url("./Aussenaufnahme.jpg");
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 60%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.top-overlay {
    background-color: var(--global-main-color);
    background-position: center left;
    background-repeat: repeat;
    background-size: 0px auto;
    opacity: 1;
    mix-blend-mode: multiply;
    width: 100%;
    height: 60%;
    top: 0;
    left: 0;
    position: absolute;
    z-index: -1;
}

.top-part {
    color: #fff;
    height: 60vh;
} 

.top-part-nav {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8rem;
}

.top-part-nav nav {
    display: flex;
    align-items: center;
    justify-content: right;
}

.top-part-nav ul {
    width: 40rem;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: space-around;
}

.top-part-nav li, .top-part-nav a {
    text-decoration: none;
    list-style: none;
    color: #fff;
    font-size: large;
}

.top-part-nav a:hover {
    color: #bebebe;
}

.top-part-nav .head-logo {
    width: 13rem;
    margin: 2rem;
}

.top-part .hero {
    margin-left: 5rem
}

.top-part .hero img {
    width: 1.8rem;
    margin: 1rem;
}

main {
    background-color: white;
    height: 100%;
    margin-bottom: 10rem;
}

main .main-section {
    color: var(--global-gray-font);
    padding: 2rem;
}

main .main-section a {
    color: var(--global-main-color);
    font-weight: bold;
}

footer {
    color: var(--global-gray-font);
}

.first-footer {
    border-top: #e6e6e6 solid 1px;
}

.first-footer-content {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
}

.first-footer .logo {
    margin: 1.5rem 0 0 1.5rem;
    width: 10rem;
}

.first-footer .left {
    width: 20rem;
}

.first-footer p {
    margin: 0 0 0 3rem;

}

.first-footer .right {
    width: 30rem;
}