/* ------------------------- */
.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: 0.75em 1.125em;
  gap: 10px;
}

.contact-button div:nth-child(1) {
  background-color: #c8f560;
}

.contact-button div:nth-child(2) {
  background-color: #c8f560;
}

.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); */
}

/* ------------------------- */
.start-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;
}

.start-button div {
  transform: translateY(0px);
  width: 100%;
}

.start-button,
.start-button div {
  transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.start-button div span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 42px;
  padding: 0.75em 1.125em;
  gap: 10px;
}

.start-button div:nth-child(1) {
  background-color: #c8f560;
}

.start-button div:nth-child(2) {
  background-color: #c8f560;
}

.start-button:hover {
  /* box-shadow: 0 0.625em 1em 0 rgba(33, 220, 98, 0.35); */
}

.start-button:hover div {
  transform: translateY(-42px);
}

.start-button p {
  font-family: "Inter Tight";
  font-size: 18px;
  color: #020202;
}

.start-button:active {
  /* transform: scale(0.95); */
}

/* ------------------------- */
.button-more-content .button {
  line-height: 1;
  text-decoration: none;
  display: inline-flex;
  border: none;
  cursor: pointer;
  align-items: center;
  gap: 0.75rem;
  background-color: var(--clr);
  color: #fff;
  border-radius: 10rem;
  font-weight: 400;
  padding: 0.75rem 1.5rem;
  padding-left: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background-color 0.3s;
}

.button-more-content .button__icon-wrapper {
  flex-shrink: 0;
  width: 25px;
  height: 25px;
  position: relative;
  color: var(--clr);
  background-color: #c8f560;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.button-more-content .button:hover {
  background-color: #13382f;
}

.button-more-content .button:hover .button__icon-wrapper {
  color: #13382f;
}

.button-more-content .button__icon-svg--copy {
  position: absolute;
  transform: translate(-150%, 150%);
}

.button-more-content .button:hover .button__icon-svg:first-child {
  transition: transform 0.3s ease-in-out;
  transform: translate(150%, -150%);
}

.button-more-content .button:hover .button__icon-svg--copy {
  transition: transform 0.3s ease-in-out 0.1s;
  transform: translate(0);
}
