﻿body {
    margin: 0;
    padding: 0;
    font-family: Quicksand;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 72px;
    padding: 10px;
    transition: .3s;
    background: #000;
}

nav.black {
    background: rgba(0,0,0,0.8);
    height: 100px;
    padding: 10px 100px;
}

    nav .logo {
        font-size: 24px;
        transition: .3s;
        font-family: sans-serif;
        margin-left: auto;
        margin-right: auto;
        margin-top: -10px;
        background: url(../Assets/Images/logo-transp_500Px.png);
        height: 65px;
        width: 369px;
        background-size: cover;
        /*float: left;
    font-size: 24px;
    transition: .3s;
    font-family: sans-serif;
    margin-left: -10px;
    margin-top: -10px;*/
        /*background: url(../Assets/Images/Techtalents_Logo.jpg);*/
        /*background: url(../Assets/Images/logo-transp_500Px.png);
    height: 65px;
    width: 369px;
    background-size: cover;*/
    }

nav.black .logo {
    color: #fff;
}

    nav ul {
        list-style: none;
        float: right;
        margin: 0;
        padding: 0;
        display: flex;
        margin-top: -55px;
    }

nav ul li {
    list-style: none;
}

    nav ul li a {
        line-height: 54px;
        color: #151515;
        padding: 12px 25px;
        /*padding: 12px 5px;*/
        text-decoration: none;
        transition: .3s;
        font-family: sans-serif;
        font-size: 15px;
    }

nav.black ul li a {
    color: #fff;
}

nav ul li a:focus {
    outline: none;
}

nav ul li a.active {
    background: #E2472F;
    color: #fff;
    border-radius: 6px;
}

section.bannersection {
    width: 100%;
    height: 40vh;
}

.banner {
    height: 100%;
    width: 100%;
    /*background: url(../Assets/Images/banner_hero.png);*/
    /*background: url(../Assets/Images/520548198_blue.jpg);*/
    background: url(../Assets/Images/Allesondercontrole_6.jpg);
    /*background: url(../Assets/Images/IMG_1126.JPG);*/
    background-size: cover;
    background-position-x: left;
    background-position-y: 0vh;
    padding-top: 450px;
    position: center;
}

.navigation-container {
    margin-right: auto;
    margin-left: auto;
    max-width: 1000px;
    width: 1000px;
}

.menu-toggle {
    padding: 1em;
    position: relative;
    top: 10px;
    right: .5em;
    left: 10px;
    cursor: pointer;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    content: '';
    display: block;
    background: #818181;
    height: 3px;
    width: 1.75em;
    border-radius: 3px;
    transition: all ease-in-out 200ms;
}

.hamburger::before {
    transform: translateY(-9px);
}

.hamburger::after {
    transform: translateY(6px);
}

.open .hamburger {
    transform: rotate(45deg);
}

.open .hamburger::before {
    opacity: 0;
}

.open .hamburger::after {
    transform: translateY(-3px) rotate(-90deg);
}


.menu-toggle:hover > div[class="hamburger"], 
.menu-toggle:hover > div[class="hamburger"]::before, 
.menu-toggle:hover > div[class="hamburger"]::after {
    background-color: #A4CB00;
}


.navItem {
    color: #818181;
}

.navItem:hover {
    color: #A4CB00;
}