/* ------------------------- */
.contact-button {
  outline: 0;
  border: 0;
  display: flex;
  flex-direction: column;
  width: fit-content;
  /* max-width: 160px; */
  height: 42px;
  /* border-radius: 100px !important; */
  /* box-shadow: 0 0.625em 1em 0 rgba(30, 143, 255, 0.35); */
  overflow: hidden;
}

.contact-button div {
  transform: translateY(0px);
  width: 100%;
}

.contact-button,
.contact-button div {
  transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.contact-button div span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 16px 20px;
  gap: 10px;
}

.contact-button div:nth-child(1) {
  background-color: #569156;
  /* background-color: #e5e5e5; */
}

.contact-button div:nth-child(2) {
  background-color: #569156;
}

.contact-button:hover {
  /* box-shadow: 0 0.625em 1em 0 rgba(33, 220, 98, 0.35); */
}

.contact-button:hover div {
  transform: translateY(-42px);
}

.contact-button p {
  font-family: "Inter Tight";
  font-size: 18px;
  color: #020202;
}

.contact-button:active {
  /* transform: scale(0.95); */
}