body {
    background-color: #f3f3f3;
}
.xcom-menu {
    background-color: #fff;
    height: 75px;
    width: 100%;
    box-shadow: 1px 1px 6px #ddd;
}

.xcom-menu .menu-inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
}

.xcom-menu .menu-inner .items {
    float: left;
    background-color: #fff;
}

.xcom-menu .menu-inner .items ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.xcom-menu .menu-inner .items > ul > li {
    float: left;
}

.xcom-menu .menu-inner .items ul li a {
    text-decoration: none;
    display: block;
}


.xcom-menu .menu-inner .items ul li a > span {
    font-family: "Open Sans";
    text-transform: uppercase;
    font-size: 0.867em;
    font-weight: bold;
    padding: 0 15px;
    line-height: 75px;
    color: #343434;;
}

.xcom-menu .menu-inner .items ul li a:hover span {
    color: #fff;
}

.xcom-menu .menu-inner .items ul li a:hover {
    background-color: #ff9638;;
}

.xcom-menu.sticky {
    position: fixed;
    z-index: 9;
    top: 0;
}

.xcom-menu.sticky + div {
    margin-top: 75px;
}

.xcom-menu .logo {
    position: absolute;
    width: 200px;
    top: 10px;
    margin-left: 15px;
}

.xcom-menu .logo img {
    width: 100%
}

.xcom-menu .submenus {
    display: none;
    list-style: none;
    position: absolute;
    top: 75px;
    z-index: 999;
    background-color: #fff;
    box-shadow: 5px 5px 10px #424242;
    transition: opacity 0.2s;
}

.xcom-menu .submenus li {
    min-width: 250px;
}

.xcom-menu .submenus li a {
    text-decoration: none;
    display: block;
}

.xcom-menu .submenus a > span {
    font-family: "Open Sans";
    text-transform: uppercase;
    font-size: 0.867em;
    font-weight: bold;
    padding: 0 15px;
    line-height: 75px;
    text-align: left;
    color: #343434;
}

.xcom-menu .open {
    position: absolute;
    display: none;
    top: 10px;
    right: 10px;
    font-size: 40px;
    text-decoration: none !important;
}

.xcom-menu .open a{
    color: #343434;
}

@media screen and (max-width: 999px) {
    .xcom-menu {
        height: auto;
        padding-bottom: 75px;
    }
    .xcom-menu.sticky {
        position: relative !important;
    }
    .xcom-menu.sticky + div {
        margin-top: 0px;
    }
    .xcom-menu .items {
        float: none;
        display: none;
        top: 75px;
        width: 100%;
    }
    .xcom-menu .items li{
        float: none;
        width: 100%;
    }
    .xcom-menu .open {
        display: block;
    }
    .xcom-menu .submenus {
        position: relative;
        top: 0;
    }
    .xcom-menu li {
        text-align: center;
    }
}
@media screen and (min-width: 1000px) {
    .xcom-menu .items {
        display: block !important;
    }
}
