@import url(https://fonts.googleapis.com/css?family=Raleway:400,500,800);
.snip {
  text-transform: uppercase;
  letter-spacing: 1px;
}

.snip * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}
.snip li {
  display: inline-block;
  list-style: outside none none;
  margin: 0.5em 1.5em;
  padding: 0;
}
.snip a {
  padding: 0.3em 0;
  color: rgba(255, 255, 255, 0.5);
  position: relative;
  text-decoration: none;
  display: inline-block;
}
.snip a:before,
.snip a:after {
  height: 1px;
  position: absolute;
  content: '';
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
  background-color: rgba(255, 255, 255, 0.5);
  width: 0;
}
.snip a:before {
  top: 0;
  left: 0;
}
.snip a:after {
  bottom: 0;
  right: 0;
}
.snip a:hover,
.snip .current a {
  color: #ffffff;
  letter-spacing: 3px;
}
.snip a:hover:before,
.snip .current a:before,
.snip a:hover:after,
.snip .current a:after {
  width: 100%;
}