/* ==========================
   MENU FULLPAGE CSS
========================== */

.panel {
    position: fixed;
    right: -100%;
    /*left or right and the width of your navigation panel*/
    width:100%;
    /*should match the above value*/
}

.menu-link i {
    text-decoration: none;
    font-size: 40px;
    color: #fff;
}

#menu {
    background:#000000;
    z-index: 999999;
	border-radius:0px;
}

#menu ul {
    margin-top:90px;
	list-style:none;
}

#menu li {
    text-align: left;
    transition: all 0.4s ease;
    padding: 20px 116px;
	padding-bottom:0px;
}

#menu li a {
    color: #fff;
    font-size:27px;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 20px 0;
	font-weight:bold;
	padding-bottom:0px;

}

#menu li a.active {
 	background: linear-gradient(to right top, #86cc5a, #0dd4cd);
-webkit-background-clip: text;-webkit-text-fill-color: transparent;
}

#menu li a:hover {
    color: #edad29;
		background: linear-gradient(to right top, #86cc5a, #0dd4cd);
-webkit-background-clip: text;-webkit-text-fill-color: transparent;
}

.menu-link {
	
    z-index: 9999999999;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    overflow: hidden;
    margin: 0;
    padding: 0;
    width:72px;
    height:67px;
    font-size: 0;
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    border-radius: none;
    border: none;
    cursor: pointer;
    -webkit-transition: background 0.3s;
    transition: background 0.3s;
    background-color: transparent;
	    margin-right: 35px;
    margin-top: 9px;
}

.menu-link:focus {
    outline: none;
}

.menu-link span {
    display: block;
    position: absolute;
    top: 45px;
    left: 18px;
    right:22px;
    height:4px;
    border-radius:0px;
   background:#fff;
    -webkit-transition: background 0 0.3s;
    transition: background 0 0.3s;
}

.menu-link span::before,
.menu-link span::after {
    position: absolute;
    display: block;
    right: 0;
    width:100%;
    height:4px;
    border-radius:0px;
    background:#fff;
    content: "";
    -webkit-transition-duration: 0.3s, 0.3s;
    transition-duration: 0.3s, 0.3s;
    -webkit-transition-delay: 0.3s, 0;
    transition-delay: 0.3s, 0;
}

.menu-link span::before {
    top: -9px;
    -webkit-transition-property: top, -webkit-transform;
    transition-property: top, transform;
}

.menu-link span::after {
    bottom: -9px;
    -webkit-transition-property: bottom, -webkit-transform;
    transition-property: bottom, transform;
}

/* active state, i.e. menu open */

.menu-open {
    background-color: transparent;
}

.menu-open span {
    background: none;
}

.menu-open span::before {
    top: 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.menu-open span::after {
    bottom: 0;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.menu-open span::before,
.menu-open span::after {
    -webkit-transition-delay: 0, 0.5s;
    transition-delay: 0, 0.5s;
}

@media screen and (max-width: 1440px) {
    #menu ul {
        margin-top:40px;
    }
}

@media screen and (max-width: 991px) {
    #menu li a {
        font-size: 20px;
    }
}

@media screen and (max-width:800px) {
    #menu li {
        padding: 15px 0;
    }
    #menu ul {
        margin-top: 140px;
    }
}

@media screen and (max-width:480px) {
    .menu-link {
        width: 70px;
    }

}