.fancy_button_1 {
  /* min-width: 300px; */
  /* min-height: 60px; */
  /* font-size: 22px; */
  /* text-transform: uppercase; */
  letter-spacing: 1.3px;
  /* font-weight: 700; */
  color: #fffdfd;
  padding: 10px 50px;
  cursor: pointer;
  border-radius: 25px;
  background: #ca805b;
  background: linear-gradient(90deg, rgba(202,128,91,1) 0%, rgba(202,128,91,1) 100%);
  border: none;
  /* border-radius: 1000px; */
  box-shadow: 12px 12px 24px rgb(202 128 91 / 64%);
  transition: all 0.3s ease-in-out 0s;
  cursor: pointer;
  outline: none;
  position: relative;
  /* padding: 10px; */
  }

.fancy_button_1 button::before {
content: '';
  border-radius: 1000px;
  min-width: calc(300px + 12px);
  min-height: calc(60px + 12px);
  border: 6px solid #ca805b;
  box-shadow: 0 0 60px rgba(0,255,203,.64);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: all .3s ease-in-out 0s;
}

.fancy_button_1:hover, .fancy_button_1:focus {
  color: #fffdfd;
  transform: translateY(-6px);
}

.fancy_button_1:hover::before,:focus::before {
  opacity: 1;
}

.fancy_button_1::after {
  content: '';
  width: 30px; height: 30px;
  border-radius: 100%;
  border: 6px solid #ca805b;
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: ring 2s infinite;
}

.fancy_button_1:hover::after,:focus::after {
  animation: none;
  display: none;
}

@keyframes ring {
  0% {
    width: 10px;
    height: 10px;
    opacity: 0;
  }
  40% {
    width: 10px;
    height: 10px;
    opacity: 1;
  }
  100% {
    width: 300px;
    height: 300px;
    opacity: 0;
  }
}