
@media screen and (min-width: 799px) {

.nav-wrapper {
  padding: 50px 0 0;
}

nav {
  position: relative;
}

ul {
  position: relative;
}

li {
  right: 0;
  position: relative;
  line-height:2.5em;
}




/* HOVER EFFECT 3 */

.effect-3 a:before,
.effect-3 a:after {
	content: "";
	height: 1px;
	width: 0;
	opacity: 0;
	background-color: #000;
	position: absolute;
	transition: all .5s;
}

.effect-3 a:before {
	top: -3px;
}

.effect-3 a:after {
	bottom: -3px;
	right: 0;
}

.effect-3 a:hover:before{
	width: calc(80% + 10px);
	opacity: 0.7;
}


.effect-3 a:hover:after {
	width: calc(80% + 30px);
	opacity: 0.7;
}
}