/* variables */
:root {
  /* colors */
  --sf0-color-primary-hsl: 250, 84%, 54%;
  --sf0-color-bg-hsl: 0, 0%, 100%;
  --sf0-color-contrast-high-hsl: 230, 7%, 23%;
  --sf0-color-contrast-higher-hsl: 230, 13%, 9%;
  --sf0-color-contrast-low-hsl: 240, 4%, 65%;
  --sf0-color-accent-hsl: 342, 89%, 48%;
  --sf0-color-contrast-lower-hsl: 240, 4%, 85%;

  /* spacing */
  --sf0-space-md: 1.25rem;
  --sf0-space-2xl: 5.25rem;
  --sf0-space-sm: 0.75rem;
  --sf0-space-xs: 0.5rem;

  /* typography */
  --sf0-text-sm: 0.833rem;
}

@media(min-width: 64rem){
  :root {
    /* spacing */
    --sf0-space-md: 2rem;
    --sf0-space-2xl: 8.25rem;
    --sf0-space-sm: 1.125rem;
    --sf0-space-xs: 0.75rem;

    /* typography */
    --sf0-text-sm: 1rem;
  }
}

/* component */
:root {
  --section-divider-width: 1920;
  --section-divider-height: 60;
  --section-divider-ratio: calc(100% * var(--section-divider-height) / var(--section-divider-width));
}

[class*=has-section-divider] {
  position: relative;
}

.has-section-dividers {
  padding-top: var(--section-divider-ratio);
  padding-bottom: var(--section-divider-ratio);
}
.has-section-dividers .section-divider + .section-divider {
  bottom: auto;
  top: -1px;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}

.has-section-divider-top {
  padding-top: var(--section-divider-ratio);
}
.has-section-divider-top .section-divider {
  bottom: auto;
  top: -1px;
  -webkit-transform: scaleY(-1);
          transform: scaleY(-1);
}

.has-section-divider-bottom {
  padding-bottom: var(--section-divider-ratio);
}

.section-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
}
.section-divider svg {
  position: relative;
  display: block;
  height: auto;
  max-width: none;
  width: 102%;
  left: -1%;
}

/* utility classes */
.sf0-text-component :where(h1, h2, h3, h4) {
  line-height: var(--sf0-heading-line-height, 1.2);
  margin-top: calc(var(--sf0-space-md) * var(--sf0-space-multiplier, 1));
  margin-bottom: calc(var(--sf0-space-sm) * var(--sf0-space-multiplier, 1));
}

.sf0-text-component :where(p, blockquote, ul li, ol li) {
  line-height: var(--sf0-body-line-height, 1.4);
}

.sf0-text-component :where(ul, ol, p, blockquote, .sf0-text-component__block) {
  margin-bottom: calc(var(--sf0-space-sm) * var(--sf0-space-multiplier, 1));
}

.sf0-text-component :where(ul, ol) {
  padding-left: 1.25em;
}

.sf0-text-component ul :where(ul, ol), .sf0-text-component ol :where(ul, ol) {
  padding-left: 1em;
  margin-bottom: 0;
}

.sf0-text-component ul {
  list-style-type: disc;
}

.sf0-text-component ol {
  list-style-type: decimal;
}

.sf0-text-component img {
  display: block;
  margin: 0 auto;
}

.sf0-text-component figcaption {
  margin-top: calc(var(--sf0-space-xs) * var(--sf0-space-multiplier, 1));
  font-size: var(--sf0-text-sm);
  text-align: center;}

.sf0-text-component em {
  font-style: italic;
}

.sf0-text-component strong {
  font-weight: bold;
}

.sf0-text-component s {
  text-decoration: line-through;
}

.sf0-text-component u {
  text-decoration: underline;
}

.sf0-text-component mark {
  background-color: hsla(var(--sf0-color-accent-hsl), 0.2);
  color: inherit;
}

.sf0-text-component blockquote {
  padding-left: 1em;
  border-left: 4px solid hsl(var(--sf0-color-contrast-lower-hsl));
  font-style: italic;
}

.sf0-text-component hr {
  margin: calc(var(--sf0-space-md) * var(--sf0-space-multiplier, 1)) auto;
  background: hsl(var(--sf0-color-contrast-lower-hsl));
  height: 1px;
}

.sf0-text-component > *:first-child {
  margin-top: 0;
}

.sf0-text-component > *:last-child {
  margin-bottom: 0;
}

.sf0-text-component.sf0-line-height-xs {
  --sf0-heading-line-height: 1;
  --sf0-body-line-height: 1.1;
}

.sf0-text-component.sf0-line-height-sm {
  --sf0-heading-line-height: 1.1;
  --sf0-body-line-height: 1.2;
}

.sf0-text-component.sf0-line-height-md {
  --sf0-heading-line-height: 1.15;
  --sf0-body-line-height: 1.4;
}

.sf0-text-component.sf0-line-height-lg {
  --sf0-heading-line-height: 1.22;
  --sf0-body-line-height: 1.58;
}

.sf0-text-component.sf0-line-height-xl {
  --sf0-heading-line-height: 1.3;
  --sf0-body-line-height: 1.72;
}

.sf0-max-width-adaptive-sm {
  max-width: 32rem;
}

@media(min-width: 48rem) {
  .sf0-max-width-adaptive-sm {
    max-width: 48rem;
  }
}

.sf0-container {
  width: calc(100% - 2*var(--sf0-space-md));
  margin-left: auto;
  margin-right: auto;
}

.sf0-padding-y-2xl {
  padding-top: var(--sf0-space-2xl);
  padding-bottom: var(--sf0-space-2xl);
}

.sf0-bg-contrast-low {
  --sf0-bg-o: 1;
  background-color: hsla(var(--sf0-color-contrast-low-hsl), var(--sf0-bg-o, 1));
}

.sf0-bg-no-repeat {
  background-repeat: no-repeat;
}

.sf0-bg-center {
  background-position: center;
}

.sf0-bg-cover {
  background-size: cover;
}

.sf0-bg-opacity-50\% {
  --sf0-bg-o: 0.5;
}