.visit-btn {
  background: var(--pmk-green);
  color: var(--pmk-white);
  height: 50px;
  width: 225px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  position: relative;
  overflow: hidden;
}

.visit-btn span {
  z-index: 1000;
}

.button-effect::after {
  content: "";
  display: inline-block;
  height: 0px;
  width: 0px;
  border-radius: 50%;

  position: absolute;
  top: var(--topValue);
  left: var(--leftValue);
  transform: translate(-50%, -50%);

  background-color: var(--pmk-green-dark-sublet);

  transition: all 1s ease;
}

.button-effect:hover::after {
  height: 265px;
  width: 518px;
  border-radius: 0;
}

.btn-indicator {
  transform: rotate(-45deg);
  transition: transform 0.5s ease;
}

.visit-btn:hover .btn-indicator {
  transform: rotate(0deg);
}
