.gradient-button {
  display: inline-block;
  width: 240px;
  margin: 40px 0px;
  border-radius: 33px;

  color: #c8d0e7;
  font: 700 14px/60px "Droid Sans", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;

  background-image: linear-gradient(
    to right,
    #759dcd 0%,
    #0093b5 51%,
    #759dcd 100%
  );
  background-size: 200% auto;
  box-shadow: 0 8px 12px 0 rgba(0, 40, 120, 0.35);
  transition: 0.5s;
}
.gradient-button:hover {
  background-position: right center;
  box-shadow: 0 0 0 0 rgba(0, 40, 120, 0);
  color: white;
}

/* ----------------------------------- */

.wrap-btns {
  display: flex;
  align-content: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 10px 4px;
}

.wrap-btns-2 {
  display: flex;
  align-content: center;
  justify-content: center;
}

.liquid-button {
  margin: 40px 50px;
  display: flex;
  align-content: center;
  justify-content: center;
}

/* ___________*****___________ */
@media screen and (max-width: 900px) {
  .wrap-btns {
    flex-direction: column;
  }
  .gradient-button {
    margin: 12px 0px;
  }
}
/* ___________*****___________ */

/* ----------------------------------- */

.btn-liquid {
  display: inline-block;
  position: relative;
  width: 240px;
  height: 60px;

  border-radius: 27px;

  color: #c8d0e7;
  font: 700 14px/60px "Droid Sans", sans-serif;
  letter-spacing: 0.05em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.btn-liquid .inner {
  position: relative;

  z-index: 2;
}

.btn-liquid canvas {
  position: absolute;
  top: -50px;
  right: -50px;
  bottom: -50px;
  left: -50px;

  z-index: 1;
}

.btn-liquid:hover {
  color: white;
}
