.link-arrow {
  color: $purple;
  text-decoration: none;
  position: relative;
  font-size: 1rem;
  line-height: 28px;
  font-weight: 500;
  &:hover {
    &:after {
      right: -45px;
    }
  }
  &:after {
    content: "";
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 20px;
    background-image: url("../../Images/purple-arrow-right.svg");
    background-size: 100% 100%;
    transition: all .3s ease-in-out;
  }
}
.link-arrow-black {
  color: $black;
  text-decoration: none;
  position: relative;
  font-size: 1rem;
  line-height: 28px;
  font-weight: 500;
  &:hover {
    &:after {
      right: -45px;
    }
  }
  &:after {
    content: "";
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 20px;
    background-image: url("../../Images/purple-arrow-right.svg");
    background-size: 100% 100%;
    transition: all .3s ease-in-out;
  }
}
.btn-purple {
  color: white;
  text-decoration: none;
  background-color: $purple;
  border: 1px solid $purple;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 1rem;
  line-height: 28px;
}
.btn-white {
  color: $purple;
  text-decoration: none;
  background-color: $white;
  border: 1px solid $white;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 1rem;
  line-height: 28px;
}
.btn-transparent {
  color: $purple;
  text-decoration: none;
  background-color: transparent;
  border: 1px solid $purple;
  border-radius: 50px;
  padding: 10px 20px;
  font-size: 1rem;
  line-height: 28px;
}