.bb-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 3em;
}
@media (max-width: 800px) {
  .bb-container {
    padding: 0 1.5em;
  }
}
@media (max-width: 500px) {
  .bb-container {
    padding: 0 1em;
  }
}

/* 1. Use a more-intuitive box-sizing model */
*, *::before, *::after {
  box-sizing: border-box;
}

/* 2. Remove default margin */
* {
  margin: 0;
  padding: 0;
}

/* 3. Enable keyword animations */
@media (prefers-reduced-motion: no-preference) {
  html {
    interpolate-size: allow-keywords;
  }
}
body {
  /* 4. Add accessible line-height */
  line-height: 1.5;
  /* 5. Improve text rendering */
  -webkit-font-smoothing: antialiased;
  font-family: "Work Sans", "Open Sans", sans-serif;
  font-style: normal;
  font-weight: 400;
}

/* 6. Improve media defaults */
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

/* 7. Inherit fonts for form controls */
input, button, textarea, select {
  font: inherit;
}

/* 8. Avoid text overflows */
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

h1 + p, h2 + p, h3 + p, p + p {
  margin-top: 1em;
}
h1 + .bb-buttons-wrapper, h2 + .bb-buttons-wrapper, h3 + .bb-buttons-wrapper, p + .bb-buttons-wrapper {
  margin-top: 1em;
}

/* 9. Improve line wrapping */
p {
  text-wrap: pretty;
}

h1, h2, h3, h4, h5, h6 {
  text-wrap: balance;
}

@media screen and (max-width: 500px) {
  h2 {
    font-size: 2em;
  }
}

/*
  10. Create a root stacking context
*/
#root, #__next {
  isolation: isolate;
}

ul {
  margin: 0;
}

li {
  list-style-type: none;
}

.fade-element {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 500ms ease-out, transform 500ms ease-out;
}

.fade-element.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.hover-red a:hover, .hover-red a:focus {
  color: var(--wp--preset--color--custom-secondary) !important;
  transition: 300ms ease;
}

.form-button button {
  padding-top: 0.667em;
  padding-right: 1.33em;
  padding-bottom: 0.667em;
  padding-left: 1.33em;
}
.form-button:hover, .form-button:focus {
  color: var(--wp--preset--color--custom-secondary) !important;
  transition: 300ms ease;
}

/*# sourceMappingURL=global.css.map */
