html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

[data-mobile-menu] {
  animation: mobileMenuIn 160ms ease-out;
}

@keyframes mobileMenuIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .text-headline-xl {
    font-size: 34px !important;
    line-height: 1.18 !important;
    letter-spacing: 0 !important;
  }

  .text-headline-lg {
    font-size: 26px !important;
    line-height: 1.25 !important;
    letter-spacing: 0 !important;
  }

  .text-headline-md {
    font-size: 21px !important;
    line-height: 1.3 !important;
    letter-spacing: 0 !important;
  }

  .text-body-lg {
    font-size: 16px !important;
    line-height: 1.55 !important;
  }

  section {
    scroll-margin-top: 80px;
  }

  .mobile-full-width {
    width: 100%;
  }

  .pricing-table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .pricing-table-scroll table {
    min-width: 720px;
  }
}
