.nav>li>a {
    font-size: 15px;
    color: #000;
}


.btn-hover {
  width: 200px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  margin: 20px;
  height: 55px;
  text-align: center;
  border: none;
  background-size: 300% 100%;

  border-radius: 50px;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn-hover:hover {
  background-position: 100% 0;
  moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
}

.btn-hover:focus {
  outline: none;
}

.btn-hover.color-1 {
    background-image: linear-gradient(
    to right,
    #000000,
    #29a500,
    #29a500,
    #000000
  );
    box-shadow: 0 3px 14px 0 rgb(213 213 213);
    margin: 0;
    justify-content: center;
    color: #fff;
    font-size: 15px;
    border-radius: 30px 30px 30px 0;
}

.btn-hover.color-1:hover {
    color: #fff;
}

.nav-left {
    justify-content: center;
}