.button-hover {
  transition: all 0.3s ease-in-out;
  /* font-family: "Dosis", sans-serif; */
  text-decoration: none;
  color: white;
}

.button-hover {
  width: 150px;
  height: 60px;
  border-radius: 50px;
  background-image: linear-gradient(135deg, #feb692 0%, #ea5455 100%);
  box-shadow: 0 20px 30px -6px rgba(238, 103, 97, 0.5);
  outline: none;
  cursor: pointer;
  border: none;
  font-size: 24px;
  color: white;
  padding: 5px 30px;
}

.button-hover:hover {
  transform: translateY(3px);
  box-shadow: none;
}

.button-hover:active {
  opacity: 0.5;
}



/* start button link */

.button_link{
  text-decoration: none !important;
  color: white !important;
  font-size: 25px;
  cursor: pointer;
  border: 1px solid white;
  padding: 5px 30px;
  border-radius: 10px;
  transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.button_link:hover{
  padding: 5px 35px;
  background-color: rgba(0,0,0,0.2);
}
