

@media only screen and (max-width: 1250px) {

.c-hamburger {
    position: relative;
    overflow: hidden;
    margin: 0;
    float: right;
    top: 0;
    z-index: 99;
    padding: 0;
    width: 28px;
    height: 28px;
    font-size: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    background: transparent;
    outline: none;
    cursor: pointer;
}

.c-hamburger span {
    display: block;
    position: absolute;
    top: 11px;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 2px;
    background: #77b333;
}

.c-hamburger--htx span:before, .c-hamburger--htx span:after {
    transition-duration: 0.3s, 0.3s;
    transition-delay: 0.3s, 0s;
}

.c-hamburger--htx span:before {
    transition-property: top, transform;
}

.c-hamburger--htx span:after {
    transition-property: bottom, transform;
}

.c-hamburger span:before {
    top: -8px;
}

.c-hamburger span:after {
    bottom: -8px;
}

.c-hamburger span:before, .c-hamburger span:after {
    position: absolute;
    display: block;
    left: 0;
    width: 100%;
    height: 3px;
    background: #77b333;
    content: "";
    border-radius: 2px;
}

.c-hamburger--htx.is-active span {
    background: none;
}

.c-hamburger--htx.is-active span:before, .c-hamburger--htx.is-active span:after {
    transition-delay: 0s, 0.3s;
}

.c-hamburger--htx.is-active span:before {
    top: 0;
    transform: rotate(45deg);
}

.c-hamburger--htx.is-active span:after {
    bottom: 0;
    transform: rotate(-45deg);
}


.nav {
    position: fixed;
    width: 300px;
    height: 100%;
    top: 0;
    right: -310px;
    z-index: 99;
    background: #2d2f30;
    padding-top: 129px;
    overflow: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    -webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
    -moz-box-shadow: 0 0 10px rgba(0,0,0,.4);
    box-shadow: 0 0 10px rgba(0,0,0,.4);
    -webkit-transition: all 0.25s ease;
    -moz-transition: all 0.25s ease;
    -ms-transition: all 0.25s ease;
    -o-transition: all 0.25s ease;
    transition: all 0.25s ease;
}

.nav.active {
    right: 0;
}




}