.tc-menu-10 {
  font-family: 'Raleway', Arial, sans-serif;
  text-align: center;
  text-transform: uppercase;
  font-weight: 500;
}

.tc-menu-10 * {
  box-sizing: border-box;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.tc-menu-10 li {
  display: inline-block;
  list-style: outside none none;
  margin: 0 1.2em;
  overflow: hidden;
}

.tc-menu-10 a {
  padding: 0 0.2em 0 0.5em;
  color: rgba(96,96,96,0.5);
  position: relative;
  display: inline-block;
  letter-spacing: 1px;
  margin: 0;
  text-decoration: none;
}

.tc-menu-10 a:before, .tc-menu-10 a:after {
  position: absolute;
  -webkit-transition: all 0.35s ease;
  transition: all 0.35s ease;
}

.tc-menu-10 a:before {
  left: 100%;
  display: block;
  width: 3px;
  height: 100%;
  content: "";
  background-color: #f39c12;
}

.tc-menu-10 a:after {
  padding: 0 0.2em 0 0.5em;
  position: absolute;
  left: 100%;
  top: 0;
  content: attr(data-hover);
  color: rgb(128,128,128);
  white-space: nowrap;
}

.tc-menu-10 li:hover a, .tc-menu-10 .current a {
  transform: translateX(-100%);
}

