@media only screen and (min-width: 1025px) and (max-width: 5000px) {
    .menuDesktop .navToggle {
        display: none;
    }
    .menuDesktop .menuWrap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
    }
    .menuDesktop .menuList li,
    .menuDesktop .menuList li:first-child {
        float: left;
        width: auto;
    }
    .menuDesktop .menuList {
        top: 0;
    }
    .menuDesktop .menuWrap.open {
        background: none;
    }
}
/**menu starts**/

.menuCont {
    position: absolute;
    right: 8em;
    top: 1em;
    z-index: 1000;
}
#nav-toggle {
    background: #fea302;
    position: relative;
    right: 0;
    top: 0;
    z-index: 19;
    cursor: pointer;
    padding: 17px 32px 18px 8px;
    z-index: 1001;
    border-radius: 0;
    width: auto;
    height: auto;
    border: none;
}
#nav-toggle.navToggle.active {
    /*position: fixed;*/
}
#nav-toggle span,
#nav-toggle span:before,
#nav-toggle span:after {
    cursor: pointer;
    height: 2px;
    width: 25px;
    background: #fff;
    position: absolute;
    display: block;
    content: '';
    transition: all 0.2s ease-in-out;
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -ms-transition: all 0.2s ease-in-out;
}
#nav-toggle span:before {
    top: -7px;
}
#nav-toggle span:after {
    bottom: -7px;
}
#nav-toggle.active span {
    background-color: transparent;
}
#nav-toggle.active span:before,
#nav-toggle.active span:after {
    top: 0;
}
#nav-toggle.active span:before {
    transform: rotate(45deg);
    background: #fff;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
}
#nav-toggle.active span:after {
    transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    background: #fff;
}
#nav-toggle.active span::after {
    background: #fff;
}
.menuItem {
    color: #fff;
    font-size: 200%;
    padding: .2em .6em;
    position: relative;
}
.menuItem:hover,
a.menuItemActive {
    color: #f8972f;
}
.menuItem:hover:after,
a.menuItemActive:after {
    /* content: "";
		background: #fff;
        position: absolute;
        left: 0;
        top: 16px;
        height: 2px;
        width: 100%;
         transform: rotate(5deg);
        -webkit-transform: rotate(5deg);*/
}
.menuWrap {
    min-height: 100%;
    position: fixed;
    width: 40%;
    right: -100%;
    top: 0;
    z-index: 400;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}
.menuWrap.open {
    background: #401b66;
    right: 0;
    overflow: hidden;
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
}
.menuList {
    padding: 0 0 0 2em;
    position: relative;
    top: 4em;
}
.menuItem {
    padding: 0.5em 0.3em;
    color: #fff;
    width: 100%;
    font-size: 16px
}
.para {
    padding: 0.5em 0.5em;
    color: #fff;
    width: 100%;
    font-size: 14px
}
.menuList li,
.menuList li:first-child {
    border-left: none;
    border-right: none;
    margin-bottom: 0;
    padding: 1em 0;
    width: 100%;
}
/**menu ends**/

@media only screen and (min-width: 768px) and (max-width: 1024px) {
    .menuWrap {
        width: 40%;
    }
    .menuCont {
        right: 1em;
    }
}
@media only screen and (min-width: 0px) and (max-width: 767px) {
    .menuWrap {
        width: 100%;
    }
    .menuCont {
        right: 0
    }
}
@media only screen and (min-height: 0px) and (max-height: 300px) {
    .menuList {
        height: 250px;
        overflow: auto;
    }
}