* {
    margin: 0;
    padding: 0;
    font-family: 'Oxygen', sans-serif;
}

*:focus {
    outline: none;
}

button {
    border: none;
    background: none;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
}



    header {
        width: 100%;
        height: 100px;
        background: white;
        position: relative;
        z-index: 5;

        -webkit-box-shadow: 0px 7px 25px -9px rgba(0, 0, 0, 0.4);
        -moz-box-shadow: 0px 7px 25px -9px rgba(0, 0, 0, 0.4);
        box-shadow: 0px 7px 25px -9px rgba(0, 0, 0, 0.4);
    }

    #nyhetsbrev {
        width: 210px;
        height: 60px;
        margin-top: 20px;
        background-image: url("../img/mail.png");
        background-size: 60px 50px;
        background-position: left;
        background-repeat: no-repeat;

        position: absolute;
        left: 80px;
        z-index: 8;
    }

    #nyhetsbrev h3 {
        font-size: 18px;
        color: black;
        float: right;
        margin-top: 7px;
    }

    #triangle {
        width: 900px;
        height: 135px;

        position: absolute;
        left: 50%;
        -ms-transform: translateX(-50%) scale(3, 1); /* IE 9 */
        -moz-transform: translateX(-50%) scale(3, 1); /* Firefox */
        -webkit-transform: translateX(-50%) scale(3, 1); /* Chrome, Safari, Opera */
        transform: translateX(-50%) scale(3, 1);
        z-index: 7;

        transition: .3s;
    }

    #triangle:after {
        content: "";
        position: absolute;
        width: 900px;
        height: 900px;
        background: white;
        transform: rotate(45deg); /* Prefixes... */
        top: -960px;
        -webkit-box-shadow: -2px -2px 10px -2px rgba(0, 0, 0, 0.5);
        -moz-box-shadow: -2px -2px 10px -2px rgba(0, 0, 0, 0.5);
        box-shadow: -2px -2px 10px -2px rgba(0, 0, 0, 0.5);

        transition: .3s;
    }

    #mobileNav {
        position: absolute;
    }

    #mobileNavButton {
        display: none;
    }

    #logo {
        width: 300px;
        height: 80px;
        margin-top: 5px;
        background-image: url("../img/Logo-Kba-Revision-500px-webb.png");
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;

        position: absolute;
        left: 50%;
        -ms-transform: translateX(-50%); /* IE 9 */
        -moz-transform: translateX(-50%); /* Firefox */
        -webkit-transform: translateX(-50%); /* Chrome, Safari, Opera */
        transform: translateX(-50%);
        z-index: 8;
    }

    nav {
        position: absolute;
        right: 80px;
        display: table;
        line-height: 100px;
        z-index: 8;
    }

    nav ul {
        list-style: none;
    }

    nav ul li {
        display: inline;
        margin: 0px 10px 0px 10px;
        font-size: 20px;
        font-weight: 600;
        text-transform: uppercase;
        position: relative;
        transition: .25s;
    }

    nav ul li:after {
        content: '';
        position: absolute;
        bottom: -20px;
        left: 0;
        width: 100%;
        height: 2px;
        background: #000000;
        opacity: 0;
        transition: .25s;
    }

    nav ul li:hover::after {
        opacity: 0.7;
        bottom: -10px;
    }

    nav ul li a {
        text-decoration: none;
        color: black;
        padding: 10px 0px 10px 0px;
    }

    #wrapper {
        width: 60%;
        max-width: 1300px;
        height: 100%;
        margin: 0 auto 0 auto;
        background: white;

        -webkit-box-shadow: 7px 0px 15px -5px rgba(0, 0, 0, 0.3), -7px 0px 15px -5px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 7px 0px 15px -5px rgba(0, 0, 0, 0.3) . -7px 0px 15px -5px rgba(0, 0, 0, 0.3);
        box-shadow: 7px 0px 15px -5px rgba(0, 0, 0, 0.3), -7px 0px 15px -5px rgba(0, 0, 0, 0.3);
    }

    main {
        width: 100%;
        min-height: 600px;
        background-image: url("../img/bg-min.jpg");
        background-size: cover;
    }

    footer {
        width: 100%;
        height: 130px;
        position: relative;
        background-color: #555555;
    }

    footer ul {
        position: absolute;
        width: 100%;
        text-align: center;
        top: 50%;
        -ms-transform: translateY(-50%); /* IE 9 */
        -webkit-transform: translateY(-50%); /* Chrome, Safari, Opera */
        transform: translateY(-50%);
    }

    footer ul li {
        display: inline-table;
        margin: 0 10px;
        font-size: 17px;
    }

    footer ul li a {
        text-decoration: none;
        color: white;
    }

    #copyright {
        position: absolute;
        bottom: 10px;
        left: 10px;
        font-size: 13px;
        color: white;
    }

    #kontaktuppgifter {
        position: absolute;
        top: 50%;
        -ms-transform: translateY(-50%); /* IE 9 */
        -webkit-transform: translateY(-50%); /* Chrome, Safari, Opera */
        transform: translateY(-50%);

        right: 50px;
        color: white;
        font-size: 14px;
    }

    .clear {
        clear: both;
        display: block;
    }