.Footer__footerBg{
    display: none;
}
.HelpCta {
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: var(--color-greyTint85);
  padding: 50px 40px;
  border-radius: 0;
}

.HelpCta__title {
  margin: 0 0 8px 58px;
  font-size: 1.875rem;
  font-weight: 500;
  line-height: 1.15;
  color: #333;
}

.HelpCta__subtitle {
  margin: 0 0 0 60px;
  font-size: 16px;
  line-height: 1.5;
  color: #374151;
}

.HelpCta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 90px;

  padding: 11.2px 16px;
  border-radius: 2rem;
  background: #555;
  color: #ffffff;
  text-decoration: none;
  font-size: 1.0005rem;
  font-weight: 500;
  white-space: nowrap;

  transition: background 0.2s ease, transform 0.1s ease;
}

.HelpCta__button:hover {
  background: #e46317;
}

.HelpCta__button:active {
  transform: translateY(1px);
}

/* Mobile */
@media (max-width: 768px) {
  .HelpCta {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 20px;
  }

  .HelpCta__button {
    width: 100%;
  }
}
