.side-menu {
    position: fixed;
    top: 11.4vw;
    left: 4.16vw;
    z-index: 1002;
}

.side-menu ul {
    margin: 0;
    padding: 0;
}

.side-menu li{
    margin-bottom: .98vw;
    list-style-type: none;
}

.side-menu li a {
    padding-left: .26vw;
    font-size: calc(16px * .75);
    line-height: calc(19px * .75);
    color: #000;
    display: block;
    text-decoration: none;
    text-transform: uppercase;
    transition: all .15s;
}

.side-menu li:hover a {
    color: #D2A460!important;
    cursor: pointer!important;
}

.side-menu li a:hover {
    color: #D2A460!important;
    cursor: pointer!important;
}

.side-menu ul .active {
    border-left: 1px solid #D2A460;
    color: #D2A460;
}

@media only screen and (max-width: 565px) {
    .side-menu {
        display: none;
    }
}

@media only screen and (min-width: 566px) and (max-width: 767px) {
    .side-menu {
        display: none;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .side-menu {
        display: none;
    }
}

@media only screen and (min-width: 1600px) {
    .side-menu li a {
        padding-left: .26vw;
        font-size: 16px;
        line-height: 19px;
        color: #000;
        display: block;
        text-decoration: none;
        text-transform: uppercase;
        transition: all .15s;
    }
}