.main-buttons-container {
  display: flex;
  gap: 16px;
  align-items: center;
}

.animated-button {
  position: relative;
  height: 52px;
  padding: 0 64px;

  display: flex;
  align-items: center;

  font-size: 16px;
  font-weight: 600;
  cursor: pointer;

  border-radius: 8px;
  overflow: hidden;

  transition: all 0.5s ease;
}

.animated-button svg {
  position: absolute;
  width: 22px;
  transition: 0.6s ease;
}

.arr-1 {
  right: 16px;
}
.arr-2 {
  left: -25%;
}

.text {
  position: relative;
  z-index: 3;
  transition: 0.6s ease;
}

.circle {
  position: absolute;
  inset: 50%;
  width: 18px;
  height: 18px;
  background: var(--primary-hover);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: 0.6s ease;
}

.btn-fill {
  background: var(--primary-hover);
  color: #fff;
  border: 2px solid var(--primary-hover);
}

.btn-fill:hover {
  background: transparent;
  color: var(--primary-hover);
}

.btn-fill:hover .circle {
  opacity: 0;
}

.btn-outline {
  background: transparent;
  color: var(--primary-hover);
  border: 2px solid var(--primary-hover);
}

.btn-outline:hover {
  color: var(--bg-main);
}

.btn-outline:hover .circle {
  width: 220px;
  height: 220px;
  opacity: 1;
}

.animated-button:hover .arr-1 {
  right: -25%;
}
.animated-button:hover .arr-2 {
  left: 16px;
}
.animated-button:hover .text {
  transform: translateX(10px);
}

.animated-button:active {
  transform: scale(0.95);
}

@media (max-width: 768px) {
  .main-buttons-container {
    flex-wrap: wrap;
    gap: 12px;
  }

  .animated-button {
    height: 48px;
    padding: 0 28px;
    font-size: 15px;
  }

  .animated-button svg {
    width: 20px;
  }
}

@media (max-width: 480px) {
  .main-buttons-container {
    flex-direction: column;
    align-items: stretch;
  }

  .animated-button {
    width: 100%;
    justify-content: center;
    height: 46px;
    padding: 0 24px;
    font-size: 14px;
  }
}
