@media (min-width: 768px) {
    .c-menu, .o-wrapper {
        -webkit-transition: -webkit-transform .3s;
    }
    button.c-button {
        width: 60px;
        height: 60px;
        background-color: #a78a44;
        border: 0;
        position: fixed;
        top: 75px;
        right: 30px;
        z-index: 10;
        outline: none;
        padding: 0;
        margin: 0;
        cursor: pointer;
    }
    button.c-button div {
        padding: 23px 0 0 22px;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        -webkit-align-content: stretch;
        -ms-flex-line-pack: stretch;
        align-content: stretch;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
        line-height: 0;
        width: 60px;
        height: 60px;
    }
    button.c-button i {
        display: block;
        width: 16px;
        height: 2px;
        background-color: #fff;
        margin: 0 0 4px 0;
    }
    button.c-button i:last-child {
        margin: 0;
    }
    .c-menu {
        position: fixed;
        z-index: 200;
        width: 300px;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
        background-color: #242424;
        transition: transform 0.3s;
        padding: 0;
        box-sizing: border-box;
    }
    .c-menu__items {
        list-style: none;
        margin: 0;
        padding: 0;
        position: relative;
        width: 100%;
    }
    .c-menu__close {
        color: #fff;
        border: none;
        position: absolute;
        left: -100px;
        top: 75px;
        box-shadow: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        cursor: pointer;
        width: 60px;
        height: 60px;
        background-color: #a78a44;
    }
    .c-menu__close img {
        transform: rotate(45deg) ;
        -webkit-transform: rotate(45deg) ;
        -moz-transform: rotate(45deg) ;
        -o-transform: rotate(45deg) ;
        -ms-transform: rotate(45deg) ;
    }
    .c-menu__close:focus {
        outline: none;
    }
    body.has-active-menu {
        overflow: hidden;
    }
    .c-mask {
        position: fixed;
        z-index: 100;
        top: 0;
        left: 0;
        overflow: hidden;
        width: 0;
        height: 0;
        background-color: #000;
        opacity: 0;
        transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s;
    }
    .c-mask.is-active {
        width: 100%;
        height: 100%;
        opacity: 0.5;
        transition: opacity 0.3s;
    }
    .c-menu--push-right {
        width: 100%;
        height: 100%;
    }
    @media all and (min-width: 320px) {
        .c-menu--push-right {
            width: 300px;
        }
    }
    .c-menu--push-right .c-menu__item {
        display: block;
        text-align: center;
        padding: 0 25px 0 40px;
    }
    .c-menu--push-right .c-menu__item:not(.active):hover {
        background-color: #a78a44;
    }
    .c-menu--push-right .c-menu__item:first-child {
        border-top: none;
    }
    .c-menu--push-right .c-menu__item:last-child {
        border-bottom: none;
    }
    .c-menu--push-right .c-menu__item a {
        display: block;
        font-size: 16px;
        font-family: 'CorporateCondensed-Bold';
        color: #d3d3d3;
        padding: 13px 0;
        text-align: left;
    }
    .c-menu--push-right .c-menu__item.active a {
        color: #967835;
    }
    .c-menu--push-right .c-menu__close {
        visibility: hidden;
    }
    .c-menu.c-menu--push-right.is-active .c-menu__close {
        visibility: visible;
    }
    .c-menu--push-right {
        top: 0;
        right: 0;
        transform: translateX(100%);
    }
    @media all and (min-width: 320px) {
        .c-menu--push-right {
            transform: translateX(300px);
        }
    }
    .c-menu--push-right.is-active {
        transform: translateX(0);
    }

    .o-wrapper.has-push-right {
        transform: translateX(-100%);
    }

    @media all and (min-width: 320px) {
        .o-wrapper.has-push-right {
            transform: translateX(-300px);
        }
    }
    /*
    .c-menu > button {
        display: none !important;
        visibility: hidden !important;
    }*/
    .hasSubmenu {
        position: relative;
    }
    .hasSubmenu:after {
        position: absolute;
        right: 25px;
        top: 20px;
        background: transparent url(../images/hassubmenu.svg) no-repeat 0 0;
        width: 2px;
        height: 8px;
        content: "";
    }

    ul.submenu {
        display: none;
        position: absolute;
        top: -10px;
        left: -260px;
        list-style: none;
        background: #a78a44;
        padding: 20px 30px;
        z-index: 10;
        width: 260px;
    }
    ul.submenu li {
        width: 100%;
    }
    .c-menu--push-right .c-menu__item ul.submenu li a {
        padding: 10px 0;
        text-align: left;
    }
    .menuHelper {
        width: 100%;
        height: 100%;
        padding: 95px 0 40px 0;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -webkit-align-content: flex-start;
        -ms-flex-line-pack: start;
        align-content: flex-start;
        -webkit-align-items: flex-start;
        -ms-flex-align: start;
        align-items: flex-start;
    }
}
.menuBottom {
    padding: 20px 40px 0 40px;
    color: rgba(255,255,255,.5);
    font-size: 13px;
    font-weight: 400;
    width: 100%;
    position: relative;
}
.social {
    width: 100%;
    padding: 25px 0;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}
.menuBottom a {
    font-size: 13px;
    font-weight: 400;
    color: #ffffff;
}
.menuBottom:before {
    content: "";
    width: 40px;
    height: 2px;
    background-color: #d8d8d8;
    display: block;
    position: absolute;
    left: 40px;
    top: 0;
}