/** Srart Variable **/
:root {
    --secound-color: #333;
    --high-color: #000000;
    --third-color: rgba(139, 139, 139, 0.7);
    --font-color: #000000;
}

/** End Variable **/

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

html {
    scroll-behavior: smooth;
}

ul {
    list-style-type: none;
}

body {
    font-family: 'Open Sans', sans-serif;
    background-color: var(--high-color);

}

.container {
    padding-left: 15px;
    padding-right: 15px;
    margin-right: auto;
    margin-left: auto;
}

/** Small **/
@media (min-width: 768px) {
    .container {
        width: 750px;
    }
}

/** Medium **/
@media (min-width: 992px) {
    .container {
        width: 970px;
    }
}

/** Large **/
@media (min-width: 1270px) {
    .container {
        width: 1270px;
    }
}

/** Start Header Design **/
.header-text {
    position: relative;
}

.header-text .container::after {
    content: "";
    position: absolute;
    height: 2px;
    width: 120px;
    background-color: white;
    left: 50%;
    bottom: -30px;
    transform: translate(-50%);
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
}

.header-text .container h1 {
    color: white;
    text-align: center;
    margin-top: 160px;
    margin-bottom: 0;
    font-size: 70px;
    text-transform: uppercase;
}

.header-text .container p {
    color: white;
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 14px;
    margin-top: 0;
    margin-bottom: 100px;
    font-weight: 500;
}

@media (max-width: 767px) {
    .header-text .container h1 {
        font-size: 50px;
    }

    .header-text .container p {
        font-size: 14px;
    }
}

/** Start NavBar Design **/
nav {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 2;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 100px;
    position: relative;
}

nav .container::after {
    content: "";
    position: absolute;
    width: 90%;
    height: 1px;
    background-color: white;
    bottom: -15px;
    width: calc(100% - 30px);

}

nav .container .logo a img {
    width: 200px;
    margin: 0;
}

@media (max-width: 768px) {
    nav .container .logo a img {
        width: 120px;
    }
}

nav .container .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
}

nav .container .nav-links li {
    padding: 0 40px;
}
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    nav .container .nav-links {
        position: absolute;
        right: 0;
        height: 100vh;
        top: 0;
        background-color: #000000;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: space-evenly;
        width: 50%;
        transform: translateY(-150%);
        -webkit-transform: translateY(-150%);
        -moz-transform: translateY(-150%);
        -ms-transform: translateY(-150%);
        -o-transform: translateY(-150%);
        transition: 1s;
        -webkit-transition: 1s;
        -moz-transition: 1s;
        -ms-transition: 1s;
        -o-transition: 1s;
        z-index: 2;
    }
}

nav .container .nav-active {
    transform: translateY(0%);
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
}

nav .container .nav-links li a {
    text-decoration: none;
    font-weight: 700;
    color: white;
    font-size: 16px;
}

@media (max-width: 768px) {
    nav .container .nav-links li a {
        color: white;
    }
}

nav .container .nav-links li a:hover {
    color: #777;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

nav .container .burger {
    display: none;
    cursor: pointer;
    z-index: 10;
}

@media (max-width: 768px) {
    nav .container .burger {
        display: block;
    }
}

nav .container .burger div {
    width: 23px;
    height: 3px;
    background-color: white;
    margin: 6px;
}

/** End NavBar Design **/
/** Start copyright Design **/
.datenschutz .container{
    color: white;
}
.datenschutz .container h1{
    color: #777;
    font-size: 25px;
    padding-bottom: 40px;
}
.datenschutz .container h2{
    font-size: 20px;
    padding: 30px 0 30px 0;
    color: #777;
}
.datenschutz .container h3{
    padding: 20px 0 20px 0;
    font-size: 22px;
}
.datenschutz .container p{
    line-height: 1.7;
}
.datenschutz .container a{
    overflow: hidden;
}
/** End copyright Design **/
