.ctas {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cta {
  display: flex;
  padding: 12px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  width: fit-content;
  border-radius: 15px;
  transition: all ease .25s;
}

.cta::after {
  display: block;
  content: '';
  width: 30px;
  min-width: 30px;
  height: 30px;
  background-position: center;
  background-repeat: repeat;
  object-fit: contain;
}

.cta--green {
  background: var(--color-secondary--1);
  color: var(--color-white);
  border: 1px solid var(--color-secondary--1);
}

.cta--green::after {
  background-image: url(../../images/cta/arrow--white.svg);
}

.cta--green:hover {
  color: var(--color-secondary--1);
  background: var(--color-white);
  border: 1px solid var(--color-secondary--1);
}

.cta--green:hover::after {
  background-image: url(../../images/cta/arrow--green.svg);
}



.cta--white {
  color: var(--color-secondary--1);
  background: var(--color-white);
  border: 1px solid var(--color-secondary--1);
}

.cta--white::after {
  background-image: url(../../images/cta/arrow--green.svg);
}

.cta--white:hover {
  background: var(--color-secondary--1);
  color: var(--color-white);
  border: 1px solid var(--color-secondary--1);
}

.cta--white:hover::after {
  background-image: url(../../images/cta/arrow--white.svg);
}

.text-align-center .cta {
  margin: 0 auto;
}



@media all and (min-width:600px) {
  .ctas {
    flex-direction: row;
    flex-wrap: wrap;
  }


}



