div.contact-now {
  position: absolute;
  height: 60px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  z-index: var(--priority-z-index-0);
  right: 20px;
  flex-direction: column;
  gap: 20px;
  bottom: 80px;
  background-image: unset;
  box-shadow: unset;
}

div.contact-now a {
  min-height: 55px;
  width: 100%;
  transition: var(--default-transition);
  color: #ffffff;
}

div.contact-now a:hover {
  transform: var(--default-transform);
}

div.contact-now figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 6%;
  width: 100%;
  padding: 0.4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.25);
}

div.contact-now a:nth-last-child(1) figure {
  background: var(--primary-1-color);
}

div.contact-now a:nth-last-child(2) figure {
  background: var(--secondary-1-color);
}

div.contact-now a:hover {
  cursor: pointer;
}

div.contact-now figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 150%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  animation: shine 2s infinite;
}

div.contact-now figure img {
  width: 25px;
  transform: translatey(0px);
  animation: float 5s ease-in-out infinite;
}

.Phone {
  animation: ringing 2s ease-in-out infinite;
}

#p1 {
  transform-origin: bottom right;
  animation: reveal 2s ease-in-out infinite backwards;
}

#p2 {
  transform-origin: bottom right;
  animation: reveal 2s ease-in-out 0.2s infinite backwards;
}

@keyframes reveal {
  0% {
    opacity: 0;
    transform: scale(1);
  }

  20% {
    opacity: 0;
    transform: scale(1);
  }

  22% {
    opcaity: 1;
    transform: scale(1.05);
  }

  26% {
    opacity: 1;
    transform: scale(1);
  }

  40% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes scaleup {
  20% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.1);
  }

  40% {
    transform: scale(1);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes ringing {
  20% {
    transform: rotate(0deg);
  }

  21% {
    transform: rotate(10deg);
  }

  22% {
    transform: rotate(-10deg);
  }

  23% {
    transform: rotate(12deg);
  }

  24% {
    transform: rotate(-12deg);
  }

  25% {
    transform: rotate(12deg);
  }

  26% {
    transform: rotate(-12deg);
  }

  28% {
    transform: rotate(10deg);
  }

  30% {
    transform: rotate(-10deg);
  }

  32% {
    transform: rotate(5deg);
  }

  34% {
    transform: rotate(-5deg);
  }

  36% {
    transform: rotate(2deg);
  }

  38% {
    transform: rotate(0deg);
  }
}

@keyframes float {
  0% {
    transform: translatey(0px);
  }

  50% {
    transform: translatey(-2px);
  }

  100% {
    transform: translatey(0px);
  }
}

@keyframes shine {
  0% {
    left: -150%;
  }

  100% {
    left: 150%;
  }
}
