/**
 * Contact Push
 */

.contact-push {
  text-align: center;
  max-width: 540px;
  position: relative;
  margin: 0 auto;
}
.contact-push p {
 margin: 0;
}
.contact-push a {
  text-decoration: underline;
}
.contact-push::after {
  content: '';
  display: block;
  background-color: var(--brand-primary-light-color);
  position: absolute;
  top: -0.85rem;
  bottom: -0.85rem;
  left: -0.5rem;
  right: -0.5rem;
  z-index: -1;
}
@media all and (min-width: 750px) {
  .contact-push::after {
    left: -0.85rem;
    right: -0.85rem;
  }
}