a.new-btn-center {
  position: relative;
  display: inline-block;
  background: #9fa0a0;
  color: #ffffff;
  border: none;
  border-radius: 0;
  width: 100%;
  font-size: 120%;
  line-height: 1.9;
  text-align: center;
  text-decoration: none ;
  cursor: pointer;
  padding: 1em 2em;
  margin-bottom: 6px;
  transition: all 0.4s;
}
a.new-btn-center:visited {
  background: #9fa0a0;
  color: #ffffff;
  border: none;
  text-decoration: none;
}
a.new-btn-center:active {
  background: transparent;
  color: #555555;
  border: none;
  text-decoration: none;
}
a.new-btn-center:hover {
  background: transparent;
  color: #555555;
  border: none;
  text-decoration: none;
  opacity: 1;
}
a.new-btn-center:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  display: block;
  height: 2px;
  background: #aaaaaa;
  transition: all 0.4s;
}
a.new-btn-center:hover:before {
  left: 0;
  right: 0;
  background: #aaaaaa;
}


