/* button css start */


.btn-animation {
  display: inline-block;
  border-radius: 50px;
  border: none;
  color: #fff;
  cursor: pointer;
  text-shadow: 0px 2px 0px rgba(0, 0, 0, 0.15);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size:18px;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  background: linear-gradient(101.3deg, #017AAE 4.3%, #1CC1FF 91.67%);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 2px 4px, rgba(0, 0, 0, 0.2) 0px 7px 13px -3px, rgba(0, 0, 0, 0.2) 0px -4px 0px inset;
  flex-shrink: 0;
  width: fit-content;
  text-transform: uppercase;
}
.btn-animation span {
  display: block;
  padding: 16px 48px;
}
.btn-animation .active-text {
  position: absolute;
}
.btn-animation .active-text div {
  transform: translatey(-60px);
}
/* button css end */
@media (max-width: 1024px) {
  .btn-animation span {
    padding: 12px 36px;
    font-size: 16px;
  }
  .btn-animation {
    font-size: 16px;
  }
}