.cta-custom {
  padding: 100px;
}

.cta-container{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  justify-content: center;
  max-width: 1240px;
  margin: 0 auto;
  width: 100%;
}

.cta__text {
  width: 70%
}

.cta__button {
  text-align: center;
  width: 30%;
}

.cta__button a {
  color: #fff;
  text-decoration: none;
  padding: 10px 30px;
} 
{# ---- Tablet Breakpoint ---- #}
@media (max-width: 992px) {
  .cta-custom {
    padding: 100px 20px;
  }

  .cta-container{
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .cta__text,
  .cta__button{
    width: 100%
  }
  .cta__button {
    display: flex;
    justify-content: center;
  }
}