#toggle {
    position: absolute;
    right: 20px;
    top: 16px;
    z-index: 999;
    width: 30px;
    height: 40px;
    cursor: pointer;
    float: right;
    transition: all 0.3s ease-out;
    visibility: hidden;
    opacity: 0;
}

#toggle .span {
    height: 3px;
    transition: all 0.3s ease-out;
    backface-visibility: hidden;
    margin: 5px auto;
    background-color: #ffffff;
}

#toggle.on #one {
    transform: rotate(45deg) translateX(4px) translateY(5px);
}

#toggle.on #two {
    opacity: 0;
}

#toggle.on #three {
    transform: rotate(-45deg) translateX(6px) translateY(-7px);
}

@media (max-width:1023px) {
    #toggle {
        visibility: visible;
        opacity: 1;
    }
}

@media (max-width:479px) {
    #toggle {
        top: 8px;
    }
}

#topmenu {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    transition: background-color 500ms;
    z-index: 5;
    position: absolute;
    top: 128px;
}

@media (max-width:1024px) {
    #topmenu {
        height: 63px;
        top: 126px;
    }
}

@media (max-width:767px) {
    #topmenu {
        top: 60px;
    }
}

@media (max-width:479px) {
    #topmenu {
        height: 45px;
    }
}

#topmenu > .container {
    justify-content: space-between;
    align-items: center;
    position: relative;
}

@media (max-width:1024px) {
    #topmenu #logo {
        width: 130px;
    }
}

#topmenu #logo {
    padding-right: 20px;
}

#topmenu-buttons {
    display: flex;
    align-items: center;
    flex-basis: 3;
}

@media (max-width:1023px) {
    #topmenu-buttons {
        position: absolute;
        flex-direction: column;
        margin-right: 0px;
        margin-left: 0px;
        width: 100%;
        background-color: rgba(34, 146, 200, 0.79);
        top: 31px;
        display: none;
        padding: 20px 15px;
    }
}

@media (max-width:479px) {
    #topmenu-buttons {
        top: 22px;
    }
}

#topmenu-button {
    padding: 15px 35px;
    font-weight: bold;
    color: #ffffff;
    border-radius: 5px;
    margin-left: 30px;
    font-size: 16px;
    text-align: center;
}

@media (max-width:1024px) {
    #topmenu-button {
        padding: 10px 25px;
        font-size: 14px;
    }
}

@media (max-width:768px) {
    #topmenu-button {
        margin-left: 0px;
    }
}

.menu-button {
    font-family: 'Open Sans Condensed', sans-serif;
    color: #ffffff;
    text-decoration: none;
    transition: background-color 500ms;
    height: 60px;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding-right: 25px;
    padding-left: 25px;
}

.nav-link:hover .menu-button {
    background-color: #f98204;
}

.contact-button-link {
    text-decoration: none;
    flex-basis: 190px;
}

@media (max-width:480px) {
    .contact-button-link {
        flex-basis: 140px;
    }
}

.contact-button-link:hover > div {
    background-color: #ac0a0a;
}

.menubutton-container {
    display: flex;
    justify-content: center;
}

@media (max-width:768px) {
    .menubutton-container {
        margin-top: 14px;
    }
}

#logo img {
    width: 100%;
}

.fixed {
    position: fixed!important;
    top: 0px!important;
}

@media (max-width:767px) {
    .fixed {
        position: relative;
        top: 0px;
    }
}

@media (max-width:1023px) {
    #topmenu .Content-width {
        padding-left: 0px;
        padding-top: 0px;
        margin-top: 0px;
        padding-right: 0px;
    }
}