.new_general_button > a {
  position: relative;
  color: white;
  text-decoration: none;
}

.new_general_button > a:hover {
  color: white;
}
.new_general_button > a:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: white;
  visibility: hidden;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
}

.new_general_button > a:hover:before {
  visibility: visible;
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

.new_general_button{   
     border-radius:5px;
     padding: 8px 20px;
     margin: 4px 2px;
     border: none;
     background-color: #3b5998;
     color:white;
     font-size:17px;
    }


