@charset "utf-8";

/* CSS Document */


/* header */

header {
    text-align: center;
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100px;
    z-index: 1025;
    border-bottom: 10px solid #911922;
    background: rgba(255, 255, 255, 0.5);
    /* border-bottom: 10px solid #911922; */
    /* background: rgba(255, 255, 255, 0.5); */
    /* background: url(../images/bottom_header_line.png) bottom center no-repeat #fff; */
}

nav {
    margin: 0px;
    margin-top: 0px;
    padding: 0px;
    height: 100px;
    /* */
}

header>nav>ul {
    margin: 0
}

#logo {
    display: block;
    float: left;
    margin: 5px 0 0 20px;
    /* margin: 5px 0 0 0; */
    background: url(../images/logo_sw_florian2.png) center center;
    background-size: cover;
}

.logolarge {
    width: 130px;
    height: 130px;
    transition: ease 1s;
}

.logosmall {
    width: 80px;
    height: 80px;
    transition: ease 1s;
}

header>nav>ul {
    position: relative;
    z-index: 1100;
    float: right;
    display: block;
    list-style-type: none;
}

header>nav>ul>li {
    text-align: center;
    position: relative;
    float: left;
    /* background-color: rgba(255, 255, 255, 0.1); */
}

header>nav>ul>li>a {
    width: 100%;
    height: 100%;
    display: block;
    font-weight: bold;
    padding: 30px 15px 25px 15px;
    margin: 0px;
    color: black;
    /* font-family: 'Didact Gothic', sans-serif;  'Roboto Condensed'*/
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 20px;
}

header>nav>ul>li>a:hover {
    color: rgb(255, 0, 13);
    transition: ease 0.5s;
}


/*submenu */

header>nav>ul>li>.submenu {
    display: none;
    position: absolute;
    z-index: 100;
    top: 100px;
    /* top: 125px; */
    left: 0px;
    background-color: rgba(255, 255, 255, 0.8);
    border-top: 4px solid #000;
    /* margin-top: -15px; */
    overflow: hidden;
    width: 250px;
}

header>nav>ul>li>.submenu>li {
    line-height: 25px;
    text-align: center;
    border-bottom: 1px solid #000;
    /* width: 100%; */
    padding: 3px 5px;
    list-style-type: none;
}

header>nav>ul>li>.submenu>li:last-child {
    margin-bottom: 0px;
}


/*
header>nav>ul>li>.submenu>li:first-child {
    margin-bottom: 0px;
}
*/

header>nav>ul>li>.submenu>li>a {
    display: block;
    padding: 10px 0;
    color: #000;
    font-size: 15px;
}

header>nav>ul>li>.submenu>li>a:hover {
    transition: ease 0.5s;
    color: rgb(255, 0, 13);
}

.menu-switcher {
    position: absolute;
    top: 25px;
    right: 20px;
    height: 50px;
    width: 50px;
    cursor: pointer;
    background-image: url(../images/menu-toggler.png);
    display: none;
}

.dummy-menu {
    display: none;
}

@media (max-width: 1200px) {}

@media (max-width: 992px) {
    header>nav>ul>li>a {
        padding: 40px 10px 45px 10px;
        font-size: 17px;
    }
    header>nav>ul>li>.submenu>li>a {
        display: block;
        padding: 10px 0;
        color: #000;
        font-size: 12px;
    }
    header>nav>ul>li>.submenu {
        width: 180px;
    }
}

@media (max-width: 768px) {
    #logo {
        margin: 5px 0 0 10px;
        width: 100px;
        height: 100px;
    }
    .menu-switcher {
        display: block;
    }
    .main-menu {
        display: none;
        position: absolute;
        width: 100%;
        top: 100px;
    }
    #sidemenu {
        display: none;
    }
    header>nav>ul>li {
        display: block;
        clear: both;
        width: 100%;
        background-color: rgba(255, 255, 255, 0.9);
    }
    header>nav>ul>li>a {
        display: block;
        clear: both;
        width: 100%;
        font-weight: bold;
        padding: 10px 0px 10px 0px;
        margin: 0px;
        color: black;
        border-bottom: 1px solid black;
        /* font-family: 'Didact Gothic', sans-serif; */
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 18px;
    }
    header>nav>ul>li>.submenu {
        margin-top: 0px;
    }
    .dummy-menu {
        display: block;
        background-color: #333;
        color: #fff;
    }
    header>nav>ul>li>.submenu>li>a {
        display: block;
        padding: 10px 0;
        color: #000;
        font-size: 17px;
    }
    header>nav>ul>li>.submenu {
        display: none;
        position: relative;
        z-index: 100;
        top: 0px;
        left: 0px;
        /* margin-top: -15px; */
        overflow: hidden;
        width: 100%
    }
}

@media (max-width: 576px) {
    header {
        position: absolute;
    }
    .submenu {
        display: none !important;
    }
}