.pacho-btn1 {
  display: inline-block;
  vertical-align: middle;
  -webkit-appearance: none;
  border: none;
  outline: none !important;
  background-color: transparent;
  border-radius: 0;
  color: #000;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--pacho-font, "Rubik", sans-serif);
  padding: 14px 40px;
  transition: 500ms;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.pacho-btn__item1 {
  position: absolute;
  background-color: #000;
}
.pacho-btn__item1:nth-child(1) {
  top: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  -webkit-animation: 2s animateTop linear infinite;
  animation: 2s animateTop linear infinite;
}
.pacho-btn__item1:nth-child(2) {
  top: 0px;
  right: 0px;
  height: 100%;
  width: 2px;
  -webkit-animation: 2s animateRight linear -1s infinite;
  animation: 2s animateRight linear -1s infinite;
}
.pacho-btn__item1:nth-child(3) {
  bottom: 0px;
  left: 0px;
  width: 100%;
  height: 2px;
  -webkit-animation: 2s animateBottom linear infinite;
  animation: 2s animateBottom linear infinite;
}
.pacho-btn__item1:nth-child(4) {
  top: 0px;
  left: 0px;
  height: 100%;
  width: 2px;
  -webkit-animation: 2s animateLeft linear -1s infinite;
  animation: 2s animateLeft linear -1s infinite;
}
.pacho-btn1:hover {
  color: var(--pacho-black, #122f2a);
}
.pacho-btn1:hover .pacho-btn__item {
  animation-play-state: paused;
}