@charset "UTF-8";
/**
 * Makes a unit-based variable unitless
 * @param {number (with units)} $value      The variable that should be converted to unitless
 */
/**
 * Converts a variable (either px, unitless or rem) to a pixel based value. Assumes that 1rem
 * corresponds to 16px.
 * @param {number} $value      The variable that should be converted pixels
 */
/**
 * Creates a variable that represents a fluid value; it grows from $minPropertyValue to
 * $maxPropertyValue while the viewport width is between $minWidth and $maxWidth.
 * Return value always uses the same unit as $min/maxPropertyValue and adds pixel based value
 * depending on screen size.
 * Use rem units for $min/maxPropertyValue for fonts (for accessibility reasons; users can
 * thereby chose their default font size in the OS/browser) and px for layouts.
 * @param {number (px/rem)} $minPropertyValue       Fluid value will correspond to this value if
 *                                                  the viewport has $minWidth and will not fall
 *                                                  below this value
 * @param {number (px/rem)} $maxPropertyValue       Fluid value will correspond to this value if
 *                                                  the viewport has $maxWidth and will go above
 *                                                  this value
 * @param {number (px)} $minWidth                   Fluid value will be $minPropertyValue if the
 *                                                  viewport has this size or is smaller
 * @param {number (px)} $maxWidth                   Fluid value will be $maxPropertyValue if the
 *                                                  viewport has this size or is larger
 */
/**
 * Returns the layout fluid base unit multiplied with the factor provided
 * @param {number} $factor      Factor that the layout's fluid base unit should be multiplied with
 */
.e-heading, .c-editor h2, .c-editor h3, .c-editor h4 {
  margin-top: 0;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  line-height: 1.1;
}
.e-heading--h1 {
  font-size: min(60px, max(32px, calc(32px + 0.0324825986 * calc(100vw - 320px))));
  line-height: min(68px, max(42px, calc(42px + 0.030162413 * calc(100vw - 320px))));
}
.e-heading--h2, .c-editor h2 {
  margin-bottom: calc(min(16px, max(12px, calc(12px + 0.0046403712 * calc(100vw - 320px)))) * 1.5);
  font-size: min(36px, max(24px, calc(24px + 0.0139211137 * calc(100vw - 320px))));
  line-height: min(40px, max(32px, calc(32px + 0.0092807425 * calc(100vw - 320px))));
}
.e-heading--h3, .c-editor h3 {
  margin-bottom: calc(min(16px, max(12px, calc(12px + 0.0046403712 * calc(100vw - 320px)))) * 0.75);
  font-size: min(24px, max(20px, calc(20px + 0.0046403712 * calc(100vw - 320px))));
  line-height: min(36px, max(28px, calc(28px + 0.0092807425 * calc(100vw - 320px))));
}
.e-heading--h4, .c-editor h4 {
  margin-bottom: calc(min(16px, max(12px, calc(12px + 0.0046403712 * calc(100vw - 320px)))) * 0.5);
  font-size: min(18px, max(18px, calc(18px + 0 * calc(100vw - 320px))));
  line-height: min(36px, max(36px, calc(36px + 0 * calc(100vw - 320px))));
}

.e-link, .c-editor a {
  font-weight: inherit;
  font-size: inherit;
  font-family: "Open sans", serif;
  text-decoration: none;
  border: none;
  border-bottom: 1px solid transparent;
  transition-timing-function: cubic-bezier(0.2, 0.9, 0.4, 1);
  transition-duration: 0.35s;
  transition-property: color, border-bottom;
}
.e-link:link, .e-link:visited, .c-editor a:link, .c-editor a:visited {
  color: #e30613;
}
.e-link:hover, .e-link:focus, .e-link:active, .c-editor a:hover, .c-editor a:focus, .c-editor a:active {
  color: #B51822;
  border-bottom: 1px solid #B51822;
}
.e-link:focus-visible, .c-editor a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #444852;
}
.e-link--has-arrow::before {
  display: inline-block;
  margin-right: 0.25em;
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1);
  content: "→";
}
.e-link--has-arrow:hover::before {
  transform: translateX(0.25em);
}

@media (min-width: 52.5em) {
  .c-editor {
    display: grid;
    grid-column-gap: calc(min(16px, max(12px, calc(12px + 0.0046403712 * calc(100vw - 320px)))) * 2.5);
    grid-template-columns: repeat(12, 1fr);
  }
  .c-editor__content {
    grid-column: 3/10;
  }
}
.c-editor h2:not(:first-child) {
  margin-top: calc(min(16px, max(12px, calc(12px + 0.0046403712 * calc(100vw - 320px)))) * 4);
}
.c-editor h3 {
  margin-top: calc(min(16px, max(12px, calc(12px + 0.0046403712 * calc(100vw - 320px)))) * 2.5);
}
.c-editor h4 {
  margin-top: calc(min(16px, max(12px, calc(12px + 0.0046403712 * calc(100vw - 320px)))) * 2);
  margin-bottom: calc(min(16px, max(12px, calc(12px + 0.0046403712 * calc(100vw - 320px)))) * 0.5);
}
.c-editor p:last-child {
  margin-bottom: 0;
}
.c-editor strong, .c-editor b {
  font-weight: 700;
}
.c-editor em, .c-editor i {
  font-style: italic;
}
.c-editor ul,
.c-editor ol {
  margin: calc(min(16px, max(12px, calc(12px + 0.0046403712 * calc(100vw - 320px)))) * 1.5) 0;
}
.c-editor ul li,
.c-editor ol li {
  margin-bottom: calc(min(16px, max(12px, calc(12px + 0.0046403712 * calc(100vw - 320px)))) * 0.5);
}
.c-editor ul ul,
.c-editor ul ol,
.c-editor ol ul,
.c-editor ol ol {
  margin: calc(min(16px, max(12px, calc(12px + 0.0046403712 * calc(100vw - 320px)))) * 0.5) 0;
}
.c-editor ul {
  padding-left: calc(min(16px, max(12px, calc(12px + 0.0046403712 * calc(100vw - 320px)))) * 2);
}
.c-editor ul li {
  position: relative;
  list-style: none;
}
.c-editor ul li::before {
  position: absolute;
  top: 0.25em;
  left: -1.25em;
  display: block;
  box-sizing: border-box;
  width: 0.5em;
  height: 0.5em;
  content: "";
}
.c-editor ul > li::before {
  background-color: #e30613;
}
.c-editor ul > li > ul > li::before {
  background-color: transparent;
  border: 1px solid #e30613;
}
.c-editor ol {
  padding-left: calc(min(16px, max(12px, calc(12px + 0.0046403712 * calc(100vw - 320px)))) * 2);
  list-style-type: decimal;
}
.c-editor ol ::marker {
  color: #e30613;
}
.c-editor ol li {
  padding-left: calc(min(16px, max(12px, calc(12px + 0.0046403712 * calc(100vw - 320px)))) * 0.5);
}
.c-editor ol > li > ol {
  list-style-type: lower-latin;
}