/* global button  */
.button-container {
  margin-top: 40px;
  text-align: center;
}

.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;

  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition:
    opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.visible-button .visit-btn {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.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);
}

/* contact button  */
.contact-button-container {
  margin-top: 18px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 12px 24px;
  border: 2px solid var(--pmk-green);
  border-radius: 14px;

  color: var(--pmk-green-dark);
  background-color: transparent;

  font-size: 1rem;
  font-weight: 600;

  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.contact-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
  transition: left 0.6s ease;
}

.contact-button:hover::before {
  left: 120%;
}

.contact-button i {
  font-size: 1.1rem;
  transition: all 0.35s ease;
}

.contact-button:hover {
  color: var(--pmk-white);
  background-color: var(--pmk-green);

  box-shadow: 0 12px 24px rgba(0, 148, 106, 0.18);
  transform: translateY(-3px);
}

.contact-button:hover i {
  transform: rotate(-8deg) scale(1.08);
}

.contact-button:active {
  transform: translateY(0);
}

/* responsive styles:: small devices  */
@media (max-width: 767.98px) {
}

/* responsive styles:: medium devices  */
@media (min-width: 768px) and (max-width: 991.98px) {
}

/* responsive styles:: large devices  */
@media (min-width: 992px) and (max-width: 1199.98px) {
}

/* responsive styles:: extra large devices  */
@media (min-width: 1200px) and (max-width: 1399.98px) {
}

/* responsive styles:: extra extra large devices  */
@media (min-width: 1400px) {
}
