
.buttonstyel {
  position: relative;
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 2.5em;
  display: inline-block;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  font-weight: 500;
  color: black;
  background-color: white;
}

.buttonstyel:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.buttonstyel:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}

.buttonstyel::after {
  content: "";
  display: inline-block;
  height: 100%;
  width: 100%;
  border-radius: 50px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: all 0.4s;
}

.buttonstyel::after {
  background-color: #fff;
}

.buttonstyel:hover::after {
  transform: scaleX(1.4) scaleY(1.6);
  opacity: 0;
}

.transition-button .text {
  max-width: 0;
  opacity: 0;
  white-space: nowrap;
  transition: max-width 0.3s ease, opacity 0.3s ease;
}

.transition-button:hover .text {
  max-width: 200px;
  opacity: 1;
}
.buttonstyeles{
    position: relative;
  font-size: 17px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1em 2.5em;
  display: inline-block;
  cursor: pointer;
  border-radius: 50px;
  transition: all 0.2s;
  border: none;
  font-family: inherit;
  font-weight: 500;
  color: black;
  background-color: white;
}

.buttonstyeles:hover {

  box-shadow: 0 10px 20px rgba(195, 192, 192, 0.2);
 
}





