.last__cta {
  padding: 48px 0;
  text-align: center;
}

.last__cta > *:not(:last-child) {
  margin-bottom: 20px;
}

.last__cta h2 {
  line-height: 27px;
}

.last__cta p {
  width: 60%;
  margin: 0 auto;
}

@keyframes textura {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: 100% 0px;
  }
}

.last__cta__button {
  font-size: 14px;
  padding: 20px;
  color: var(--primary);
  display: block;
  width: max-content;
  margin: 0 auto;
  text-transform: uppercase;
  font-weight: 700;
  background-image: linear-gradient(45deg, rgb(87, 253, 50), rgb(3, 137, 26), rgb(87, 253, 50), rgb(3, 137, 26));
  background-size: 400% 200%;
  animation: 3.4s cubic-bezier(0.2, 0.5, 0.9, 0.6) 2s infinite normal none running textura;
  transition: background .8s cubic-bezier(0.55, 0.1, 0.47, 0.94);
  transition: transform .5s ease-in-out;
}

.last__cta__button:hover {
  transform: translateZ(50px) scale(1.1);
}

.last__cta__button__icon {
  fill: var(--primary);
  width: 14px;
  margin-right: 10px;
  vertical-align: bottom;
}

@media (min-width: 1024px) {
  .last__cta {
    padding-top: 0;
  }

  .last__cta__button {
    padding: 20px 40px;
    font-size: 1rem;
  }
}