.get-in-touch {
  position: fixed;
  z-index: 1200;
  width: 40px;
  bottom: 300px;
  right: 22px;
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  gap: 18px;

  a:first-child {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    border-radius: 67px;
    border: 1px solid var(--black);
    background: var(--black);

    img {
      filter: brightness(0) saturate(100%) invert(100%) sepia(0%)
      saturate(7477%) hue-rotate(23deg) brightness(95%) contrast(110%);
    }
  }
  a:last-child {
    display: flex;
    width: 48px;
    height: 48px;
    padding: 12px;
    justify-content: center;
    align-items: center;
    border-radius: 67px;
    border: 1px solid var(--whatsapp-green);
    background: var(--whatsapp-green);
    img {
      width: 20px;
      height: 20px;
    }
  }
}

@media (max-width: 1024px) {
  .get-in-touch {
    bottom: 20px;
  }
}
