/*
  4C Global Website Stylesheet
  Source reference: 4C Website Style Guide Preview and 4C styleguide test page, 2026.

  Purpose
  - This file is the global foundation: reset, design tokens, base typography,
    layout primitives, site chrome, core UI primitives, utilities, accessibility,
    light compatibility support and print.
  - Page-specific modules, campaign hero images, FAQ modules, award banners,
    temporary admin/test styles and one-off overrides should live outside this file.

  Import order
  1. 4c-global.css
  2. component/page styles
  3. temporary migration overrides, if unavoidable

  Governance
  - font-size must use rem or rem-based clamp()/calc() values only.
    The website font-size adjuster scales rem values and cannot scale px values.
  - Avoid !important. Reserve it for accessibility helpers or short-lived
    migration overrides with a removal note.
  - Prefer semantic tokens such as --color-text over primitive tokens in rules.
  - Keep selectors shallow and class-based where possible.
*/

@layer reset, tokens, base, layout, chrome, components, utilities, accessibility, compatibility, print;

@layer tokens {
  @font-face {
    font-family: "Lato Light";
    src: url("/templates/4c2021/font/Lato-Light.ttf") format("truetype");
    font-display: swap;
  }

  @font-face {
    font-family: "Lato";
    src: url("/templates/4c2021/font/Lato-Regular.ttf") format("truetype");
    font-display: swap;
  }

  @font-face {
    font-family: "Lato Bold";
    src: url("/templates/4c2021/font/Lato-Bold.ttf") format("truetype");
    font-display: swap;
  }

  @font-face {
    font-family: "Lato Italic";
    src: url("/templates/4c2021/font/Lato-Italic.ttf") format("truetype");
    font-display: swap;
  }

  :root {
    color-scheme: light;

    --blue-950: #082550;
    --blue-900: #293751;
    --blue-800: #303f55;
    --blue-700: #445266;
    --blue-600: #4f5f78;
    --blue-500: #6a7381;
    --orange-600: #d9651f;
    --orange-500: #ef7d32;
    --orange-legacy: #ff7900;
    --sand-500: #cdc4b5;
    --sand-700: #a08b71;
    --gray-50: #f8fafc;
    --gray-75: #f6f6f6;
    --gray-100: #eef2f6;
    --gray-200: #e2e6eb;
    --gray-300: #d8dee6;
    --gray-700: #525252;
    --white: #ffffff;
    --black: #111827;
    --red-600: #b42318;
    --green-700: #067647;
    --yellow-700: #b54708;

    --color-page: var(--white);
    --color-surface: var(--white);
    --color-surface-soft: var(--gray-50);
    --color-surface-muted: var(--gray-75);
    --color-text: var(--blue-900);
    --color-text-strong: var(--blue-950);
    --color-text-muted: var(--blue-600);
    --color-text-soft: var(--blue-500);
    --color-heading: var(--blue-900);
    --color-link: var(--blue-900);
    --color-link-hover: var(--orange-600);
    --color-border: var(--gray-200);
    --color-border-strong: var(--gray-300);
    --color-brand-primary: var(--blue-900);
    --color-brand-secondary: var(--blue-800);
    --color-action-primary: var(--orange-500);
    --color-action-primary-hover: var(--orange-600);
    --color-action-secondary: var(--blue-900);
    --color-accent-subtle: var(--sand-500);
    --color-focus: var(--orange-500);
    --color-disabled-surface: var(--gray-100);
    --color-disabled-text: var(--blue-500);
    --color-error: var(--red-600);
    --color-success: var(--green-700);
    --color-warning: var(--yellow-700);
    --color-info: var(--blue-800);
    --color-inverse-surface: var(--blue-900);
    --color-inverse-text: var(--white);
    --color-inverse-muted: rgba(255, 255, 255, 0.84);

    --font-regular: "Lato", Arial, sans-serif;
    --font-light: "Lato Light", "Lato", Arial, sans-serif;
    --font-bold: "Lato Bold", "Lato", Arial, sans-serif;
    --font-italic: "Lato Italic", "Lato", Arial, sans-serif;

    --content-wide: 86.25rem;
    --content-default: 75rem;
    --content-narrow: 56.25rem;
    --content-text: 70ch;
    --page-gutter: clamp(2.5rem, 7vw, 7.5rem);
    --page-gutter-mobile: 1.75rem;
    --page-gutter-small: 1.25rem;

    --space-2xs: 0.25rem;
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-section: clamp(3rem, 5vw, 5rem);

    --type-eyebrow: 0.6875rem;
    --type-xs: 0.75rem;
    --type-small: 0.875rem;
    --type-body: 1rem;
    --type-lead: 1.125rem;
    --type-card-title: 1.375rem;
    --type-section-title: clamp(2.125rem, 3.3vw, 2.875rem);
    --type-hero: clamp(2.25rem, 3.55vw, 3.125rem);
    --type-hero-compact: clamp(1.75rem, 5vw, 2.625rem);
    --type-button: 0.8125rem;

    --line-tight: 1.05;
    --line-heading: 1.12;
    --line-title: 1.28;
    --line-body: 1.55;
    --line-longform: 1.62;

    --border-width: 0.0625rem;
    --border-width-accent: 0.1875rem;
    --radius-none: 0;
    --radius-pill: 999rem;

    --shadow-card: 0 1.125rem 2.25rem rgba(41, 55, 81, 0.12);
    --shadow-media: 0 1.5rem 2.75rem rgba(41, 55, 81, 0.18);
    --focus-ring: 0 0 0 0.1875rem rgba(239, 125, 50, 0.36);

    --duration-fast: 120ms;
    --duration-base: 180ms;
    --duration-slow: 260ms;
    --ease-standard: ease;

    --z-base: 0;
    --z-raised: 1;
    --z-sticky: 10;
    --z-overlay: 100;
    --z-modal: 1000;
  }

  @media (max-width: 47.5rem) {
    :root {
      --page-gutter: var(--page-gutter-mobile);
      --space-section: 2.375rem;
      --type-section-title: 1.75rem;
      --type-hero: var(--type-hero-compact);
    }
  }

  @media (max-width: 35rem) {
    :root {
      --page-gutter: var(--page-gutter-small);
    }
  }
}

@layer reset {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    min-height: 100%;
    text-size-adjust: 100%;
  }

  body {
    min-height: 100%;
    margin: 0;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  p,
  ul,
  ol,
  figure,
  blockquote,
  dl,
  dd {
    margin-top: 0;
  }

  img,
  picture,
  svg,
  video,
  canvas,
  iframe {
    display: block;
    max-width: 100%;
  }

  img,
  video {
    height: auto;
  }

  button,
  input,
  select,
  textarea {
    font: inherit;
  }

  button {
    cursor: pointer;
  }

  table {
    border-collapse: collapse;
  }
}

@layer base {
  html {
    color: var(--color-text);
    background: var(--color-page);
    font-family: var(--font-regular);
    scroll-behavior: smooth;
  }

  body {
    color: var(--color-text);
    background: var(--color-page);
    font-family: var(--font-regular);
    font-size: var(--type-body);
    font-weight: 400;
    line-height: var(--line-body);
  }

  ::selection {
    color: var(--color-inverse-text);
    background: var(--color-action-primary);
  }

  a {
    color: var(--color-link);
    text-decoration-color: currentColor;
    text-decoration-thickness: 0.0625rem;
    text-underline-offset: 0.18em;
  }

  a:hover {
    color: var(--color-link-hover);
  }

  p,
  ul,
  ol {
    margin-bottom: var(--space-md);
  }

  p:last-child,
  ul:last-child,
  ol:last-child {
    margin-bottom: 0;
  }

  ul,
  ol {
    padding-inline-start: 1.25rem;
  }

  strong,
  b {
    font-family: var(--font-bold);
    font-weight: 400;
  }

  em,
  i {
    font-family: var(--font-italic);
    font-style: normal;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6 {
    margin: 0 0 var(--space-md);
    color: var(--color-heading);
    letter-spacing: 0;
  }

  h1,
  .h1 {
    font-family: var(--font-bold);
    font-size: var(--type-hero);
    font-weight: 400;
    line-height: var(--line-tight);
  }

  h2,
  .h2 {
    font-family: var(--font-light);
    font-size: var(--type-section-title);
    font-weight: 400;
    line-height: var(--line-heading);
  }

  h3,
  .h3 {
    font-family: var(--font-regular);
    font-size: clamp(1.375rem, 2vw, 1.75rem);
    font-weight: 400;
    line-height: 1.22;
  }

  h4,
  .h4 {
    font-family: var(--font-bold);
    font-size: clamp(1.125rem, 1.45vw, 1.375rem);
    font-weight: 400;
    line-height: var(--line-title);
  }

  h5,
  .h5,
  h6,
  .h6 {
    font-family: var(--font-bold);
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 1.35;
  }

  table {
    width: 100%;
    font-size: var(--type-body);
  }

  th,
  td {
    padding: 0.875rem 1rem;
    border-bottom: var(--border-width) solid var(--color-border);
    text-align: start;
    vertical-align: top;
  }

  th {
    color: var(--color-heading);
    font-family: var(--font-bold);
    font-weight: 400;
  }
}

@layer layout {
  .container:not([id^="container-"]),
  .site-container {
    width: min(var(--content-wide), calc(100vw - var(--page-gutter) - var(--page-gutter)));
    max-width: var(--content-wide);
    margin-inline: auto;
  }

  .container--default {
    width: min(var(--content-default), calc(100vw - var(--page-gutter) - var(--page-gutter)));
    max-width: var(--content-default);
  }

  .container--narrow {
    width: min(var(--content-narrow), calc(100vw - var(--page-gutter) - var(--page-gutter)));
    max-width: var(--content-narrow);
  }

  .section {
    padding-block: var(--space-section);
  }

  .section--soft {
    background: var(--color-surface-soft);
  }

  .section--dark {
    color: var(--color-inverse-text);
    background: var(--color-inverse-surface);
  }

  .section--dark h1,
  .section--dark h2,
  .section--dark h3,
  .section--dark h4,
  .section--dark h5,
  .section--dark h6,
  .section--dark .h1,
  .section--dark .h2,
  .section--dark .h3,
  .section--dark .h4,
  .section--dark .h5,
  .section--dark .h6 {
    color: var(--color-inverse-text);
  }

  .section--dark .lead,
  .section--dark .text-muted {
    color: var(--color-inverse-muted);
  }

  .grid {
    display: grid;
    gap: clamp(2rem, 3.2vw, 3rem);
  }

  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .split {
    display: grid;
    grid-template-columns: minmax(0, 0.48fr) minmax(0, 0.52fr);
    gap: clamp(2rem, 3.2vw, 3rem);
    align-items: start;
  }

  .stack {
    display: flex;
    flex-direction: column;
    gap: var(--stack-space, var(--space-md));
  }

  .cluster {
    display: flex;
    flex-wrap: wrap;
    gap: var(--cluster-space, var(--space-sm));
    align-items: center;
  }

  .flow > * + * {
    margin-top: var(--flow-space, var(--space-md));
  }

  @media (max-width: 73.75rem) {
    .split,
    .grid--2,
    .grid--3 {
      grid-template-columns: 1fr;
    }
  }

  @media (max-width: 47.5rem) {
    .container:not([id^="container-"]),
    .site-container,
    .container--default,
    .container--narrow {
      width: min(100% - (var(--page-gutter) * 2), var(--content-wide));
    }
  }
}

@layer chrome {
  .header {
    display: grid;
    grid-template-columns: 10.9375rem auto 6.875rem;
    height: calc(2.8125rem + 1.6875rem);
    padding: 1.6875rem 3.75rem 0;
  }

  .header_logo {
    z-index: 3;
    height: 2.8125rem;
  }

  .header_logo img {
    max-width: 100%;
    height: 2.8125rem;
  }

  .header_actions,
  .header_nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 2.8125rem;
  }

  .header_nav {
    z-index: 3;
    line-height: 2.8125rem;
  }

  .header_actions {
    z-index: 3;
    padding-left: 0.9375rem;
  }

  .header_action {
    color: #ffffff;
    padding-left: 1.25rem;
    font-size: 1.5rem;
    font-weight: 400;
  }

  .header_action:hover {
    color: #cdc4b5;
  }

  .header.sticky {
    position: fixed;
    z-index: 10;
    top: 0;
    width: 100%;
    max-width: 120rem;
    height: 6.1875rem;
    background-color: rgba(48, 63, 85, 0.9);
  }

  .action_search {
    cursor: pointer;
  }

  .action_contact {
    position: relative;
    flex-shrink: 0;
    width: 8.75rem;
    height: 2.125rem;
    margin-right: 1.875rem;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .action_contact-mobile {
    display: none;
  }

  .action_4cinsights {
    padding-right: 0;
    padding-left: 0;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 2.125rem;
    text-align: center;
    white-space: nowrap;
    background-color: #ff7900;
    border-radius: 100rem;
  }

  .action_4cinsights:hover {
    color: #ffffff;
  }

  .fourc_arrow_icon {
    display: inline-block;
    width: 0.8125rem;
    height: 1.125rem;
    margin-right: 0.125rem;
    margin-left: 0.125rem;
    line-height: 2.125rem;
    background-image: url("/templates/4c2021/img/driving_transformation_pfeil.svg");
    background-repeat: no-repeat;
    background-position: center 0.125rem;
    background-size: 0.8125rem 1.125rem;
  }

  .icon {
    background-repeat: no-repeat;
    background-position: center;
  }

  .icon_search {
    flex-shrink: 0;
    width: 1.5625rem;
    height: 1.5625rem;
    background-image: url("/templates/4c2021/img/icons/noun_magnifier_1056214.png");
    background-size: 1.5625rem;
  }

  .search_background,
  .subnav_background {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 3;
    display: none;
    height: 31.25rem;
    background-color: rgba(48, 63, 85, 0.9);
  }

  .search_background.sticky,
  .subnav_background.sticky {
    position: fixed;
    top: 6.1875rem;
    height: 25.0625rem;
  }

  .nav {
    position: relative;
    padding-right: 9.375rem;
    letter-spacing: 0.025rem;
  }

  .nav_icon {
    z-index: 3;
    align-self: center;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
  }

  .nav ul {
    padding-left: 2.5rem;
    margin: 0;
  }

  .nav li {
    list-style: none;
    white-space: nowrap;
  }

  .nav_root {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 0;
  }

  .nav_item {
    padding-left: 3.125rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 400;
  }

  .nav_item:not(a) {
    cursor: default;
  }

  .nav_item a {
    color: #ffffff;
    text-decoration: none;
  }

  .nav_item a:hover {
    color: #cdc4b5;
    border-bottom: 0.0625rem solid #cdc4b5;
  }

  .nav.nav-2023 {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .nav.nav-2023 .nav_root {
    justify-content: center;
  }

  .nav.nav-2023 .nav_root > .nav_item {
    padding: 0 1.5625rem;
    border-right: 0.125rem solid #ffffff;
  }

  .nav.nav-2023 .nav_root > .nav_item:last-of-type {
    border-right: none;
  }

  .nav.nav-2023 .nav_item a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
  }

  .nav.nav-2023 .nav_item a:hover {
    border: none;
  }

  .nav.nav-2023 .nav_submenu {
    position: absolute;
    right: -6.875rem;
    left: 39%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 3.6875rem;
    padding-left: 5rem;
  }

  .nav.nav-2023 .nav_submenu_mobile {
    display: none;
  }

  .nav.nav-2023 .nav_hot-topics {
    position: absolute;
    left: 22%;
    width: 18%;
    margin-top: 3.125rem;
    text-align: left;
  }

  .nav.nav-2023 .nav_teaser-text {
    position: absolute;
    left: -10.9375rem;
    width: calc(25% - 3.75rem + 10.9375rem);
    padding-right: 3.75rem;
    margin-top: 3.125rem;
    text-align: right;
    word-wrap: break-word;
    overflow-wrap: break-word;
    border-right: 0.125rem solid #ffffff;
  }

  .nav.nav-2023 .nav_teaser-text > li > div.teaser-text {
    padding-bottom: 1.25rem;
    padding-left: 1.875rem;
    font-family: "Lato Bold", sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 2.18rem;
    text-align: left;
    white-space: normal;
    border-left: 0.625rem solid #ff7900;
  }

  .nav.nav-2023 .nav_hot-topics .subnav_item {
    position: relative;
    width: 100%;
    padding: 0 1.875rem;
    line-height: 2.8125rem;
    border-right: 0.125rem solid #ffffff;
  }

  .nav.nav-2023 .nav_hot-topics .subnav_item_withchildren:not(.spacer):hover,
  .nav.nav-2023 .nav_hot-topics .subnav_item_withchildren.active:not(.spacer) {
    border-right: none;
  }

  .nav.nav-2023 .nav_hot-topics .subnav_item_withchildren:not(.spacer):hover::after,
  .nav.nav-2023 .nav_hot-topics .subnav_item_withchildren.active:not(.spacer)::after {
    position: absolute;
    top: 0.75rem;
    right: -1.375rem;
    display: block;
    width: 1.875rem;
    height: 1.5rem;
    content: "";
    background-image: url("/templates/4c2021/img/navigation/nav_arrow_right.svg");
    background-repeat: no-repeat;
  }

  .nav.nav-2023 .subnav_item {
    display: flex;
    justify-content: space-between;
    width: 50%;
    font-family: "Lato Bold", sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .nav.nav-2023 .subnav_item ul.nav_submenuL3 li {
    font-family: "Lato", sans-serif;
  }

  .nav.nav-2023 .subnav_item_singlerow {
    width: 100%;
  }

  .nav.nav-2023 .subnav_item--bold {
    font-family: "Lato Bold", sans-serif;
  }

  .nav.nav-2023 .subnav_item--pb {
    padding-bottom: 1.375rem;
  }

  .nav.nav-2023 .subnav_item--pr {
    padding-right: 1.375rem;
  }

  .nav.nav-2023 .nav_submenuL3 {
    font-family: "Lato", sans-serif;
  }

  .nav.nav-2023 .nav_submenuL3 .subnav_item {
    width: 100%;
  }

  .nav.nav-2023 .subnav_insights,
  .footer_nav-insights {
    height: 1.875rem;
    padding: 0 0.5rem;
    color: #303f55;
    font-size: 1rem;
    line-height: 1.875rem;
    text-align: center;
    background-color: #ffffff;
    border-radius: 0.25rem;
  }

  .nav.nav-2023 .subnav_insights {
    margin-top: 0.9375rem;
  }

  .nav.nav-2023 .subnav_insights:hover,
  .footer_nav-insights:hover {
    background-color: #cdc4b5;
  }

  .nav.nav-2023 .subnav_insights--pt {
    margin-top: 9.375rem;
  }

  .nav.nav-2023 .nav_footer {
    display: none;
  }

  .nav--open .banner {
    pointer-events: none;
  }

  a#menu_icon {
    position: absolute;
    top: 0.1875rem;
    left: 0;
    z-index: 200;
    width: 1.875rem;
    height: 1.875rem;
    cursor: pointer;
    background-position: center;
    transform: rotate(0);
    transition: 0.5s ease-in-out;
  }

  a#menu_icon span {
    position: absolute;
    left: 0;
    display: block;
    width: 1.875rem;
    height: 0.1875rem;
    background: #ffffff;
    opacity: 1;
    transform: rotate(0);
    transition: 0.25s ease-in-out;
  }

  a#menu_icon:hover span {
    background: #ffffff;
  }

  a#menu_icon span:first-child {
    top: 0;
  }

  a#menu_icon span:nth-child(2) {
    top: 0.625rem;
  }

  a#menu_icon span:nth-child(3) {
    top: 1.25rem;
  }

  a#menu_icon.open span:first-child,
  a#menu_icon.open span:nth-child(3) {
    top: 0.625rem;
  }

  a#menu_icon.open span:first-child {
    transform: rotate(135deg);
  }

  a#menu_icon.open span:nth-child(2) {
    opacity: 0;
  }

  a#menu_icon.open span:nth-child(3) {
    transform: rotate(-135deg);
  }

  @media only screen and (min-width: 90.5rem) {
    .header {
      width: 100vw;
      max-width: none;
      margin-right: calc(50% - 50vw);
      margin-left: calc(50% - 50vw);
    }

    .nav_icon,
    a#menu_icon {
      display: none;
    }
  }

  .footer {
    position: relative;
    width: 100%;
    background-color: #f6f6f6;
  }

  .footer.redesign {
    position: relative;
    color: #525252;
    font-size: 1rem;
    line-height: 1.2;
  }

  .footer.redesign #backtotop {
    position: fixed;
    right: 0;
    z-index: 1000;
    width: 3.3125rem;
    height: 3.0625rem;
  }

  .footer.redesign .back-to-top {
    display: flex;
    width: 3.3125rem;
    height: 3.0625rem;
    background-color: #a0b2b9;
  }

  .footer.redesign .back-to-top_arrow {
    width: 1.5rem;
    height: 0.9375rem;
  }

  .footer.redesign .footer_redesign_bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2rem 0.5rem;
    color: #ffffff;
    background-color: #303f55;
  }

  .footer.redesign .footer_redesign_bottom > * {
    width: 100%;
  }

  .footer.redesign .footer_menu-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 2rem;
  }

  .footer.redesign .footer_nav-column {
    position: relative;
    flex: 1;
    padding: 0 2rem;
  }

  .footer.redesign .footer_nav-column--right {
    padding-right: 2rem;
    padding-left: 0;
    text-align: right;
    border-right: 0.0625rem solid #ffffff;
  }

  .footer.redesign .footer_nav-column--left {
    padding-right: 0;
    padding-left: 2rem;
  }

  .footer.redesign .footer_nav-item {
    margin-bottom: 1rem;
  }

  .footer.redesign .footer_nav-item-title {
    display: block;
    margin-bottom: 1.5rem;
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1.2;
    text-decoration: none;
  }

  .footer.redesign .footer_nav-submenu {
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .footer.redesign .footer_nav-submenu li {
    margin-bottom: 0.25rem;
  }

  .footer.redesign .footer_nav-submenu a {
    color: #cccccc;
    font-size: 0.9em;
    line-height: 1.6;
    text-decoration: none;
  }

  .footer.redesign .footer_middle-wrapper {
    margin: 1.25rem 0;
  }

  .footer.redesign .footer_links {
    display: flex;
    flex: 1;
    gap: 1rem;
    justify-content: center;
  }

  .footer.redesign .footer_links.socials a {
    padding: 0.625rem;
    color: #ffffff;
  }

  .footer.redesign .svg-inline--fa {
    width: auto;
    height: 1.5rem;
    color: #ffffff;
  }

  .footer.redesign .footer_bottom-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }

  .footer.redesign .footer_logo-wrapper {
    flex: 1;
  }

  .footer.redesign .footer_logo {
    width: 11.5625rem;
    height: 3.125rem;
  }

  .footer.redesign .footer_links a {
    color: #ffffff;
    text-decoration: none;
  }

  .footer.redesign .footer_copyright {
    flex: 1;
    color: #ffffff;
    text-align: right;
  }

  .footer_nav-insights {
    position: absolute;
    bottom: 1.25rem;
    display: inline-block;
  }

  @media only screen and (min-width: 0) and (max-width: 90.4375rem) {
    .header {
      grid-template-columns: 25% 50% 25%;
      justify-content: space-between;
    }

    .header_logo {
      text-align: center;
    }

    .header_nav {
      position: absolute;
      top: 5.625rem;
      left: 0;
      display: none;
      justify-content: flex-start;
      width: 100%;
      height: auto;
    }

    .header_nav-visible {
      display: block;
    }

    .subnav_background {
      height: 100%;
      overflow: hidden;
      overscroll-behavior: contain;
      background-color: rgba(48, 63, 85, 0.9);
    }

    .subnav_background.sticky {
      height: 100%;
    }

    .nav {
      width: 100%;
    }

    .nav_root {
      flex-direction: column;
      align-items: flex-start;
    }

    .nav_item {
      padding-left: 3.75rem;
      line-height: 2;
    }

    .action_contact {
      display: none;
    }

    .nav.nav-2023 {
      display: initial;
      padding-right: 3.75rem;
      overflow-y: auto;
      overscroll-behavior: contain;
    }

    .nav.nav-2023 .nav_hot-topics {
      position: relative;
      left: 0;
      display: none;
      width: 100%;
      padding-bottom: 0;
      margin-top: 0;
      text-align: left;
      border-right: none;
    }

    .nav.nav-2023 .nav_hot-topics .subnav_item:not(.subnav_item--bold) {
      padding: 0;
      font-size: 1rem;
    }

    .nav.nav-2023 .nav_hot-topics .subnav_item {
      border-right: none;
    }

    .nav.nav-2023 .subnav_insights {
      display: inline-block;
      width: 7.5rem;
    }

    .nav.nav-2023 .subnav_insights-wrapper {
      width: 100%;
      margin-bottom: 3.125rem;
    }

    .nav.nav-2023 .subnav_insights--pt {
      margin-top: 0;
    }

    .nav.nav-2023 .nav_root > .nav_item {
      width: 100%;
      padding-right: 0;
      padding-left: 3.75rem;
      border-right: none;
    }

    .nav.nav-2023 .nav_submenu {
      right: 0;
      left: 0;
      padding-top: 0;
      padding-left: 0;
    }

    .nav.nav-2023 .submenu_wrap {
      display: block;
      width: calc(100% - 0.9375rem);
      max-width: 26.5625rem;
    }

    .nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer):hover::after,
    .nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer).selected::after {
      display: none;
    }

    .nav.nav-2023 .nav_submenuL3 {
      display: none;
      padding-bottom: 0.9375rem;
    }

    .nav.nav-2023 .nav_submenuL3 .subnav_item a {
      color: #ffffff;
      font-size: 1rem;
    }

    .nav.nav-2023 .nav_item a {
      position: relative;
      line-height: 2;
    }

    .nav.nav-2023 .nav_arrow {
      position: absolute;
      z-index: 20;
      width: 2.5rem;
      height: 100%;
    }

    .nav.nav-2023 .subnav_arrow {
      position: absolute;
      right: 0;
      z-index: 20;
      width: 1.875rem;
      height: 1.875rem;
    }

    .nav.nav-2023 .nav_item_first-level {
      display: inline;
    }

    .nav.nav-2023 .nav_item_first-level::after {
      display: inline-block;
      width: 1.875rem;
      height: 1.8125rem;
      content: "";
      vertical-align: text-bottom;
      background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_white.png");
      background-repeat: no-repeat;
      background-position: right;
      background-size: auto 1.625rem;
    }

    .nav.nav-2023 .nav_item.clicked > .nav_item_first-level::after {
      margin-left: 0.625rem;
      vertical-align: initial;
      transform: rotate(90deg);
    }

    .nav.nav-2023 .subnav_item {
      width: 100%;
    }

    .nav.nav-2023 .subnav_item--pr {
      padding-right: 0;
    }

    .nav.nav-2023 .subnav_item--pb {
      padding-bottom: 0;
    }

    .nav.nav-2023 .subnav_item--bold {
      color: #cdc4b5;
      font-family: "Lato", sans-serif;
    }

    .nav.nav-2023 .subnav_item--bold a {
      position: relative;
      padding-right: 2.1875rem;
      color: #cdc4b5;
    }

    .nav.nav-2023 .subnav_item--bold > a::after {
      position: absolute;
      top: 0.25rem;
      right: 0;
      display: inline-block;
      width: 1.875rem;
      height: 1.625rem;
      content: "";
      vertical-align: text-bottom;
      background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_sand.png");
      background-repeat: no-repeat;
      background-position: right;
      background-size: auto 1.5rem;
    }

    .nav.nav-2023 .subnav_item--bold.clicked > a::after {
      top: -0.1875rem;
      right: -0.1875rem;
      vertical-align: initial;
      transform: rotate(90deg);
    }

    .nav.nav-2023 .nav_footer {
      display: inline-flex;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 100%;
      padding: 2.5rem 3.75rem 0;
    }

    .nav.nav-2023 .nav_footer .social-media {
      position: relative;
      top: auto;
      left: auto;
    }

    .nav.nav-2023 .nav_footer .social-media_item {
      padding-right: 0.9375rem;
    }

    .nav.nav-2023 .nav_footer .action_select-lang {
      color: #ffffff;
      font-size: 1.5rem;
    }

    .nav.nav-2023 .subnav_insights--hidden {
      display: none;
    }

    .action_contact-mobile {
      display: block;
      padding-top: 0.1875rem;
      padding-right: 1.4375rem;
    }

    .header.sticky {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 3.125rem;
      padding-top: 0;
    }

    .header.sticky .header_logo {
      display: none;
    }

    .search_background.sticky,
    .subnav_background.sticky {
      top: 3.125rem;
      height: 28.125rem;
    }
  }

  @media only screen and (min-width: 0) and (max-width: 47.9375rem) {
    .footer.redesign .footer_links:not(.socials),
    .footer_bottom-wrapper {
      flex-direction: column;
    }

    .footer.redesign .footer_bottom-wrapper .footer_logo-wrapper {
      margin: 2rem 0;
    }

    .footer.redesign .footer_menu-bottom {
      flex-direction: column;
    }

    .footer.redesign .footer_nav-column--left {
      padding-left: 0;
      padding-top: 1.25rem;
      text-align: center;
    }

    .footer.redesign .footer_nav-column--right {
      padding-right: 0;
      text-align: center;
      border-right: none;
    }

    .footer_nav-insights {
      position: relative;
      bottom: initial !important;
      margin-bottom: 0.625rem;
    }
  }

  @media only screen and (min-width: 0) and (max-width: 31.1875rem) {
    .footer.redesign .footer_menu-bottom {
      flex-direction: column;
      align-items: center;
    }

    .footer.redesign .footer_nav-column--right {
      padding: 0;
      text-align: center;
      border-right: none;
    }

    .footer.redesign .footer_nav-column--left {
      padding: 0;
      margin-top: 2rem;
      text-align: center;
    }

    .footer.redesign .footer_links,
    .footer.redesign .footer_copyright {
      text-align: center;
    }
  }
}

@layer components {
  .eyebrow,
  .kicker {
    display: inline-flex;
    margin: 0 0 var(--space-sm);
    color: var(--color-action-primary);
    font-size: var(--type-eyebrow);
    font-weight: 400;
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
  }

  .lead {
    max-width: var(--content-text);
    color: var(--color-text-muted);
    font-size: var(--type-lead);
    line-height: 1.52;
  }

  .btn,
  a.btn,
  button.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    min-width: 0;
    padding: 0.75rem 1.25rem;
    border: var(--border-width) solid transparent;
    border-radius: var(--radius-none);
    font-family: var(--font-regular);
    font-size: var(--type-button);
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
      background-color var(--duration-base) var(--ease-standard),
      border-color var(--duration-base) var(--ease-standard),
      color var(--duration-base) var(--ease-standard),
      transform var(--duration-base) var(--ease-standard);
  }

  .btn:hover,
  .btn:focus-visible {
    transform: translateY(-0.0625rem);
  }

  .btn--primary {
    color: var(--color-inverse-text);
    background: var(--color-action-primary);
    border-color: var(--color-action-primary);
  }

  .btn--primary:hover,
  .btn--primary:focus-visible {
    color: var(--color-inverse-text);
    background: var(--color-action-primary-hover);
    border-color: var(--color-action-primary-hover);
  }

  .btn--secondary {
    color: var(--color-inverse-text);
    background: var(--color-action-secondary);
    border-color: var(--color-action-secondary);
  }

  .btn--secondary:hover,
  .btn--secondary:focus-visible {
    color: var(--color-accent-subtle);
    background: var(--color-action-secondary);
    border-color: var(--color-action-secondary);
  }

  .btn--outline {
    color: var(--color-action-primary);
    background: transparent;
    border-color: var(--color-action-primary);
  }

  .btn--outline:hover,
  .btn--outline:focus-visible {
    color: var(--color-inverse-text);
    background: var(--color-action-primary);
    border-color: var(--color-action-primary);
  }

  .btn[disabled],
  .btn[aria-disabled="true"],
  button:disabled,
  input:disabled,
  select:disabled,
  textarea:disabled {
    color: var(--color-disabled-text);
    cursor: not-allowed;
    background: var(--color-disabled-surface);
    border-color: var(--color-border-strong);
    transform: none;
  }

  .btn-group {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .arrow-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: var(--border-width) solid rgba(239, 125, 50, 0.84);
    border-radius: var(--radius-pill);
    color: var(--color-action-primary);
    background: transparent;
    font-size: 1.125rem;
    line-height: 1;
    transition:
      background-color var(--duration-base) var(--ease-standard),
      border-color var(--duration-base) var(--ease-standard),
      color var(--duration-base) var(--ease-standard);
  }

  .arrow-button:hover,
  .arrow-button:focus-visible {
    color: var(--color-inverse-text);
    background: var(--color-action-primary);
    border-color: var(--color-action-primary);
  }

  .hero {
    position: relative;
    min-height: clamp(26.875rem, 56vh, 32.5rem);
    overflow: hidden;
    color: var(--color-inverse-text);
    background: var(--color-inverse-surface);
  }

  .hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
      linear-gradient(180deg, rgba(16, 24, 38, 0.16) 0%, rgba(16, 24, 38, 0.28) 46%, rgba(16, 24, 38, 0.52) 100%),
      linear-gradient(90deg, rgba(16, 24, 38, 0.62) 0%, rgba(16, 24, 38, 0.2) 46%, rgba(16, 24, 38, 0.1) 100%);
    pointer-events: none;
  }

  .hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero__content {
    position: relative;
    z-index: var(--z-raised);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: clamp(26.875rem, 56vh, 32.5rem);
    padding-block: clamp(6rem, 10vw, 8.75rem) clamp(3rem, 6vw, 4.5rem);
  }

  .hero h1,
  .hero .h1 {
    max-width: 53.75rem;
    margin-bottom: 0.875rem;
    color: var(--color-inverse-text);
  }

  .hero p {
    max-width: 47.5rem;
    color: var(--color-inverse-muted);
    font-size: var(--type-lead);
    line-height: 1.5;
  }

  .hero-band {
    position: relative;
    z-index: var(--z-raised);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    background: rgba(22, 31, 46, 0.84);
    border-top: var(--border-width) solid rgba(255, 255, 255, 0.1);
  }

  .hero-band__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.875rem;
    min-height: 4.375rem;
    padding: 0.75rem 1.125rem;
    color: var(--color-inverse-text);
    transition: background-color var(--duration-base) var(--ease-standard);
  }

  .hero-band__item + .hero-band__item {
    border-inline-start: var(--border-width) solid rgba(255, 255, 255, 0.1);
  }

  .hero-band__item:hover,
  .hero-band__item:focus-visible {
    color: var(--color-inverse-text);
    background: rgba(255, 255, 255, 0.06);
  }

  .hero-band__title {
    font-size: 1.1875rem;
    line-height: 1.14;
  }

  .media-frame {
    position: relative;
    overflow: hidden;
    border: var(--border-width) solid var(--color-border);
    background: var(--color-surface-soft);
  }

  .media-frame::before {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    z-index: var(--z-raised);
    width: 100%;
    height: var(--border-width-accent);
    content: "";
    background: var(--color-action-primary);
  }

  .media-frame img,
  .media-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .card {
    position: relative;
    overflow: hidden;
    border: var(--border-width) solid var(--color-border);
    background: var(--color-surface);
  }

  .card--accent::before {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 0;
    width: 100%;
    height: var(--border-width-accent);
    content: "";
    background: var(--color-action-primary);
  }

  .card__content {
    padding: clamp(1.25rem, 2vw, 1.75rem);
  }

  .card__eyebrow {
    margin-bottom: var(--space-sm);
    color: var(--color-action-primary);
    font-size: var(--type-eyebrow);
    letter-spacing: 0.18em;
    line-height: 1;
    text-transform: uppercase;
  }

  .card__title {
    margin-bottom: var(--space-sm);
    color: var(--color-heading);
    font-size: var(--type-card-title);
    line-height: var(--line-title);
  }

  .card__text {
    color: var(--color-text-muted);
    font-size: var(--type-small);
    line-height: var(--line-longform);
  }

  .feature-list {
    display: grid;
    gap: var(--space-md);
    padding: 0;
    list-style: none;
  }

  .feature-list li {
    position: relative;
    padding-inline-start: 1.25rem;
    color: var(--color-text-muted);
  }

  .feature-list li::before {
    position: absolute;
    inset-block-start: 0.62em;
    inset-inline-start: 0;
    width: 0.375rem;
    height: 0.375rem;
    content: "";
    background: var(--color-action-primary);
  }

  .callout {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--space-lg);
    align-items: center;
    padding: 1.5rem 1.75rem;
    border: var(--border-width) solid var(--color-border);
    background: linear-gradient(180deg, var(--color-surface) 0%, var(--color-surface-soft) 100%);
  }

  .callout::before {
    position: absolute;
    inset-block-start: 0;
    inset-inline-start: 1.75rem;
    width: 4.5rem;
    height: 0.125rem;
    content: "";
    background: var(--color-action-primary);
  }

  .callout p {
    max-width: var(--content-text);
    color: var(--color-text);
    font-size: var(--type-lead);
    line-height: 1.5;
  }

  .form-field {
    display: grid;
    gap: var(--space-xs);
  }

  label,
  .form-label {
    display: inline-block;
    color: var(--color-text);
    font-family: var(--font-bold);
    font-size: var(--type-small);
  }

  .form-control,
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  input[type="url"],
  input[type="search"],
  input[type="password"],
  textarea,
  select {
    width: 100%;
    min-height: 2.875rem;
    padding: 0.75rem 0.875rem;
    border: var(--border-width) solid var(--color-border-strong);
    border-radius: var(--radius-none);
    color: var(--color-text);
    background: var(--color-surface);
    font-family: var(--font-regular);
    font-size: var(--type-body);
    line-height: 1.4;
  }

  textarea {
    min-height: 8.5rem;
    resize: vertical;
  }

  .form-control:focus,
  input:focus,
  textarea:focus,
  select:focus {
    border-color: var(--color-focus);
    outline: none;
    box-shadow: var(--focus-ring);
  }

  input[readonly],
  textarea[readonly] {
    background: var(--color-surface-muted);
  }

  input:autofill {
    box-shadow: 0 0 0 100rem var(--color-surface) inset;
    -webkit-text-fill-color: var(--color-text);
  }

  .form-helper {
    color: var(--color-text-muted);
    font-size: var(--type-small);
    line-height: 1.4;
  }

  .form-error {
    color: var(--color-error);
    font-size: var(--type-small);
    line-height: 1.4;
  }

  .form-success {
    color: var(--color-success);
    font-size: var(--type-small);
    line-height: 1.4;
  }

  .is-error,
  [aria-invalid="true"] {
    border-color: var(--color-error);
  }

  .is-success {
    border-color: var(--color-success);
  }

  .is-warning {
    border-color: var(--color-warning);
  }

  .is-disabled,
  [aria-disabled="true"] {
    color: var(--color-disabled-text);
    cursor: not-allowed;
  }

  .form-required {
    color: var(--color-action-primary);
  }

  .form-check {
    display: flex;
    gap: var(--space-sm);
    align-items: flex-start;
  }

  .form-check input[type="checkbox"],
  .form-check input[type="radio"] {
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    margin-top: 0.2em;
    accent-color: var(--color-action-primary);
  }

  @media (max-width: 47.5rem) {
    .hero {
      min-height: 23.625rem;
    }

    .hero__content {
      min-height: 23.625rem;
      padding-block: 7rem 2.5rem;
    }

    .hero p {
      max-width: 21.25rem;
      font-size: 0.9375rem;
      line-height: 1.56;
    }

    .hero-band {
      grid-template-columns: 1fr;
    }

    .hero-band__item {
      min-height: 3.375rem;
      padding: 0.625rem 0;
    }

    .hero-band__item + .hero-band__item {
      border-top: var(--border-width) solid rgba(255, 255, 255, 0.1);
      border-inline-start: 0;
    }

    .hero-band__title {
      font-size: 0.875rem;
      line-height: 1.18;
    }

    .btn,
    a.btn,
    button.btn {
      min-height: 3rem;
      white-space: normal;
    }

    .callout {
      grid-template-columns: 1fr;
    }

    .callout {
      padding: 1.375rem 1.25rem;
    }

    .callout::before {
      inset-inline-start: 1.25rem;
    }

    .callout p {
      font-size: var(--type-body);
    }
  }
}

@layer utilities {
  /*
    Global utilities should stay small and reusable. Add one-off layout tweaks in
    component/page CSS instead of growing this layer indefinitely.
  */

  .component-scope,
  .cq {
    container-type: inline-size;
  }

  .text-muted {
    color: var(--color-text-muted);
  }

  .text-orange {
    color: var(--color-action-primary);
  }

  .text-center {
    text-align: center;
  }

  .text-start {
    text-align: start;
  }

  .text-end {
    text-align: end;
  }

  .text-balance {
    text-wrap: balance;
  }

  .ratio-16-9 {
    aspect-ratio: 16 / 9;
  }

  .ratio-16-10 {
    aspect-ratio: 16 / 10;
  }

  .shadow-card {
    box-shadow: var(--shadow-card);
  }

  .u-hidden {
    display: none;
  }

  .u-full-bleed {
    width: 100vw;
    margin-inline-start: calc(50% - 50vw);
  }
}

@layer accessibility {
  :focus-visible {
    outline: 0.125rem solid var(--color-focus);
    outline-offset: 0.1875rem;
  }

  .skip-link {
    position: absolute;
    inset-block-start: 0.75rem;
    inset-inline-start: 0.75rem;
    z-index: var(--z-modal);
    padding: 0.75rem 1rem;
    color: var(--color-inverse-text);
    background: var(--color-action-secondary);
    transform: translateY(-150%);
  }

  .skip-link:focus-visible {
    transform: translateY(0);
  }

  .visually-hidden,
  .sr-only {
    position: absolute !important;
    width: 0.0625rem !important;
    height: 0.0625rem !important;
    padding: 0 !important;
    margin: -0.0625rem !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      scroll-behavior: auto !important;
      transition-duration: 0.001ms !important;
      animation-duration: 0.001ms !important;
      animation-iteration-count: 1 !important;
    }
  }
}

@layer compatibility {
  /*
    Light migration support for existing CMS/4C classes. Keep this layer small.
    Larger legacy fixes should go into a separate temporary migration stylesheet.
  */

  .content,
  .content-sub,
  .content-with-padding,
  .tinymce {
    color: var(--color-text);
    font-family: var(--font-regular);
  }

  #container-home,
  #container-sub {
    width: 100%;
    max-width: none;
    min-height: 100vh;
    margin: 0;
  }

  .main {
    width: 100%;
  }

  #content-home,
  #content-sub {
    width: 100%;
  }

  .banner-sub {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: clamp(22rem, 39vw, 31.25rem);
    overflow: hidden;
    color: var(--color-inverse-text);
    background-color: var(--color-inverse-surface);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .banner-sub::before {
    position: absolute;
    inset: 0;
    content: "";
    background:
      linear-gradient(90deg, rgba(41, 55, 81, 0.82) 0%, rgba(41, 55, 81, 0.42) 48%, rgba(41, 55, 81, 0.18) 100%),
      linear-gradient(180deg, rgba(41, 55, 81, 0.08) 0%, rgba(41, 55, 81, 0.38) 100%);
    pointer-events: none;
  }

  .banner-sub .banner_intro {
    position: relative;
    z-index: var(--z-raised);
    width: min(var(--content-default), calc(100vw - var(--page-gutter) - var(--page-gutter)));
    margin-inline: auto;
    padding-block: clamp(7rem, 13vw, 10rem) clamp(2.5rem, 5vw, 4rem);
  }

  .banner-sub h1,
  .banner-sub .h1 {
    max-width: 48rem;
    margin-bottom: var(--space-sm);
    color: var(--color-inverse-text);
    font-family: var(--font-light);
  }

  .banner-sub article {
    max-width: 42rem;
    color: var(--color-inverse-muted);
    font-size: var(--type-lead);
    line-height: 1.48;
  }

  .banner_title-underscore {
    width: 4.375rem;
    height: var(--border-width-accent);
    margin-bottom: var(--space-md);
    background: var(--color-action-primary);
  }

  .content-with-padding,
  .tinymce {
    width: min(var(--content-wide), calc(100vw - var(--page-gutter) - var(--page-gutter)));
    max-width: var(--content-wide);
    margin-inline: auto;
  }

  .content-with-padding {
    padding-block: var(--space-xl) var(--space-section);
  }

  .content-with-border {
    max-width: var(--content-default);
    padding-inline: var(--page-gutter);
    margin-inline: auto;
  }

  .row_twocols {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
  }

  .col_left,
  .col_right {
    min-width: 0;
  }

  .tinymce {
    line-height: var(--line-longform);
  }

  .tinymce > * + * {
    margin-top: var(--space-md);
  }

  .fourc_cta--orange--sm,
  .fourc_cta--orange--lg,
  .fourc_cta--blue--sm,
  .fourc_cta--blue--lg,
  .fourc_cta--outlined--sm,
  .fourc_cta--outlined--lg,
  .formbutton,
  .form_submitbutton input,
  .contact-widget__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.75rem 1.25rem;
    border: var(--border-width) solid transparent;
    font-family: var(--font-regular);
    font-size: var(--type-button);
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
  }

  .fourc_cta--orange--sm,
  .fourc_cta--orange--lg,
  .formbutton,
  .form_submitbutton input,
  .contact-widget__button {
    color: var(--color-inverse-text);
    background: var(--color-action-primary);
    border-color: var(--color-action-primary);
  }

  .fourc_cta--blue--sm,
  .fourc_cta--blue--lg {
    color: var(--color-inverse-text);
    background: var(--color-action-secondary);
    border-color: var(--color-action-secondary);
  }

  .fourc_cta--outlined--sm,
  .fourc_cta--outlined--lg {
    color: var(--color-action-primary);
    background: transparent;
    border-color: var(--color-action-primary);
  }

  .fourc_headline--h4orange {
    color: var(--color-action-primary);
    font-family: var(--font-bold);
    font-size: clamp(1.125rem, 1.45vw, 1.375rem);
    line-height: var(--line-title);
  }

  .breadcrumbs {
    color: var(--color-text-muted);
    font-size: var(--type-small);
  }

  .breadcrumbs ul {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    padding: 0;
    margin: 0;
    list-style: none;
  }

  .breadcrumbs li {
    display: inline-flex;
    align-items: center;
    min-width: 0;
  }

  .breadcrumbs a {
    color: var(--color-text-muted);
    text-decoration: none;
  }

  .breadcrumbs a:hover {
    color: var(--color-link-hover);
  }

  .breadcrumbs .separator::after {
    display: inline-block;
    margin-inline: var(--space-xs) 0;
    content: "/";
    color: var(--color-text-soft);
  }

  @media (max-width: 47.5rem) {
    .banner-sub {
      min-height: 21rem;
    }

    .banner-sub .banner_intro {
      width: min(100% - (var(--page-gutter) * 2), var(--content-default));
      padding-block: 6rem 2.5rem;
    }

    .banner-sub article {
      font-size: 0.9375rem;
      line-height: 1.56;
    }

    .content-with-padding,
    .tinymce {
      width: min(100% - (var(--page-gutter) * 2), var(--content-wide));
    }

    .content-with-padding {
      padding-block: var(--space-lg) var(--space-section);
    }

    .content-with-border {
      padding-inline: var(--page-gutter);
    }

    .row_twocols {
      grid-template-columns: 1fr;
    }
  }

  /*
    Legacy 4c2021 template contract.
    The 2026 test template still renders the old header/navigation/banner DOM.
  */

  .container[id^="container-"] {
    position: relative;
    width: 100%;
    max-width: 120rem;
    padding: 0;
    margin: 0 auto;
  }

  .content-with-border {
    max-width: none;
    padding-right: 3.75rem;
    padding-left: 3.75rem;
    margin-inline: 0;
  }

  .sf_row.sf_col--2 .sf_column:first-of-type .content-with-border,
  .sf_row.sf_col--2 .sf_column:first-of-type .form,
  .sf_row.sf_col--2 .sf_column:first-of-type .tinymce {
    padding-right: 0;
  }

  .sf_row.sf_col--2 .sf_column:last-of-type .content-with-border,
  .sf_row.sf_col--2 .sf_column:last-of-type .form,
  .sf_row.sf_col--2 .sf_column:last-of-type .tinymce {
    padding-left: 0;
  }

  .sf_row.sf_col--2 .sf_column:first-of-type .sf_pc_image {
    margin-left: 3.75rem;
  }

  .sf_row.sf_col--2 .sf_column:last-of-type .sf_pc_image {
    margin-right: 3.75rem;
  }

  .row_twocols .col_left .content-with-border {
    padding-right: 0;
  }

  .row_twocols .col_right .content-with-border {
    padding-left: 0;
  }

  .row_website_url {
    display: none !important;
  }

  .form,
  .tinymce {
    padding-right: 3.75rem;
    padding-left: 3.75rem;
  }

  .content-with-padding {
    position: relative;
    display: flex;
    flex-direction: column;
    width: auto;
    max-width: none;
    padding: 0;
    margin-inline: 0;
  }

  .content-with-padding h1 {
    display: none;
  }

  .main {
    position: relative;
  }

  .header {
    display: grid;
    grid-template-columns: 10.9375rem auto 6.875rem;
    height: calc(2.8125rem + 1.6875rem);
    padding: 1.6875rem 3.75rem 0;
  }

  .header_logo {
    z-index: 3;
    height: 2.8125rem;
  }

  .header_logo img {
    max-width: 100%;
    height: 2.8125rem;
  }

  .header_actions,
  .header_nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 2.8125rem;
  }

  .header_nav {
    z-index: 3;
    line-height: 2.8125rem;
  }

  .header_actions {
    z-index: 3;
    padding-left: 0.9375rem;
  }

  .header_action {
    padding-left: 1.25rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 400;
  }

  .header_action:hover {
    color: #cdc4b5;
  }

  .header.sticky {
    position: fixed;
    top: 0;
    z-index: 10;
    width: 100%;
    max-width: 120rem;
    height: 6.1875rem;
    background-color: rgba(48, 63, 85, 0.9);
  }

  .action_search {
    cursor: pointer;
  }

  .action_contact {
    position: relative;
    flex-shrink: 0;
    width: 8.75rem;
    height: 2.125rem;
    margin-right: 1.875rem;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .action_contact-mobile {
    display: none;
  }

  .action_4cinsights {
    padding-right: 0 !important;
    padding-left: 0 !important;
    color: #ffffff;
    font-size: 1.2rem;
    line-height: 2.125rem;
    text-align: center;
    white-space: nowrap;
    background-color: #ff7900;
    border-radius: 6.25rem;
  }

  .action_4cinsights:hover {
    color: #ffffff;
  }

  .search_wrapper {
    position: absolute;
    top: 15.5rem;
    left: 50%;
    display: none;
    width: 100%;
    max-width: 95rem;
    padding: 0 3.75rem;
    transform: translate(-50%, -50%);
  }

  .search_wrapper form {
    position: relative;
  }

  .search_field {
    width: 100%;
    height: 3.3125rem;
    padding: 0 4.0625rem;
    color: #ffffff;
    font-size: 1rem;
    background-color: transparent;
    background-image: url("/templates/4c2021/img/icons/noun_magnifier_1056214.png");
    background-repeat: no-repeat;
    background-position: 1.125rem center;
    background-size: 1.75rem auto;
    border: 0.0625rem solid #ffffff;
    outline: 0;
  }

  .search_button {
    position: absolute;
    left: calc(100% - 3.125rem);
    z-index: 100;
    width: 3.125rem;
    height: 3.3125rem;
    background-color: #ffffff;
    background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_blue.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 1.875rem;
    transition: background-image 0.4s ease-in-out;
  }

  .search_button:hover {
    background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_sand.png");
  }

  .search_background,
  .subnav_background {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 3;
    display: none;
    height: 31.25rem;
    background-color: rgba(48, 63, 85, 0.9);
  }

  .search_background.sticky,
  .subnav_background.sticky {
    position: fixed;
    top: 6.1875rem;
    height: calc(31.25rem - 6.1875rem);
  }

  .nav {
    position: relative;
    padding-right: 9.375rem;
    letter-spacing: 0.025rem;
  }

  .nav_icon {
    z-index: 3;
    align-self: center;
    color: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
  }

  .nav ul {
    padding-left: 2.5rem;
    margin: 0;
  }

  .nav li {
    list-style: none;
    white-space: nowrap;
  }

  .nav_root {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-left: 0;
  }

  .nav-not-linked span:hover {
    color: #cdc4b5;
    border-bottom: 0.0625rem solid #cdc4b5;
  }

  .nav_item {
    padding-left: 3.125rem;
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 400;
  }

  .nav_item:not(a) {
    cursor: default;
  }

  .nav_item a {
    color: #ffffff;
    text-decoration: none;
  }

  .nav_item a:hover {
    color: #cdc4b5;
    border-bottom: 0.0625rem solid #cdc4b5;
  }

  .nav_submenu {
    position: absolute;
    display: none;
    padding-top: 0.9375rem;
    padding-left: 0;
  }

  .nav_submenu-item {
    position: relative;
    font-size: 1rem;
    line-height: 2;
  }

  .nav_products {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    padding-left: 1.875rem;
  }

  .nav_products-item {
    position: relative;
    font-size: 1rem;
    line-height: 2;
  }

  .nav_teaser {
    position: absolute;
    top: 0;
    left: 100%;
    display: none;
    padding-left: 1.875rem;
  }

  .nav_teaser li.teaser a {
    cursor: pointer;
  }

  .nav_block {
    width: 15.625rem;
    line-height: 2.2;
    text-align: center;
  }

  .nav_block-item {
    color: #525252;
  }

  .nav_block-item a:hover {
    color: #303f55;
    font-family: "Lato Bold", sans-serif;
  }

  .nav_block-item-uppercase {
    font-family: "Lato Bold", sans-serif;
    text-transform: uppercase;
  }

  a#menu_icon {
    position: absolute;
    top: 0.1875rem;
    left: 0;
    z-index: 200;
    width: 1.875rem;
    height: 1.875rem;
    cursor: pointer;
    background-position: center;
    transform: rotate(0);
    transition: 0.5s ease-in-out;
  }

  a#menu_icon span {
    position: absolute;
    left: 0;
    display: block;
    width: 1.875rem;
    height: 0.1875rem;
    background: #ffffff;
    opacity: 1;
    transform: rotate(0);
    transition: 0.25s ease-in-out;
  }

  a#menu_icon:hover span {
    background: #ffffff !important;
  }

  a#menu_icon span:first-child {
    top: 0;
  }

  a#menu_icon span:nth-child(2) {
    top: 0.625rem;
  }

  a#menu_icon span:nth-child(3) {
    top: 1.25rem;
  }

  a#menu_icon.open span:first-child {
    top: 0.625rem;
    transform: rotate(135deg);
  }

  a#menu_icon.open span:nth-child(2) {
    opacity: 0;
  }

  a#menu_icon.open span:nth-child(3) {
    top: 0.625rem;
    transform: rotate(-135deg);
  }

  .nav.nav-2023 {
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .nav.nav-2023 .nav_root {
    justify-content: center;
  }

  .nav.nav-2023 .nav_root > .nav_item {
    padding: 0 1.5625rem;
    border-right: 0.125rem solid #ffffff;
  }

  .nav.nav-2023 .nav_root > .nav_item:last-of-type {
    border-right: none;
  }

  .nav.nav-2023 .nav_item a {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
  }

  .nav.nav-2023 .nav_item a:hover {
    border: none;
  }

  .nav.nav-2023 .nav_submenu {
    right: -6.875rem;
    left: 39%;
    display: flex;
    flex-wrap: wrap;
    padding-top: 3.6875rem;
    padding-left: 5rem;
  }

  .nav.nav-2023 .nav_submenu_mobile {
    display: none;
  }

  .nav.nav-2023 .nav_hot-topics {
    position: absolute;
    left: 22%;
    width: 18%;
    margin-top: 3.125rem;
    text-align: left;
  }

  .nav.nav-2023 .nav_teaser-text {
    position: absolute;
    left: -10.9375rem;
    width: calc(25% - 3.75rem + 10.9375rem);
    padding-right: 3.75rem;
    margin-top: 3.125rem;
    text-align: right;
    word-wrap: break-word;
    overflow-wrap: break-word;
    border-right: 0.125rem solid #ffffff;
  }

  .nav.nav-2023 .nav_teaser-text > li > div.teaser-text {
    padding-bottom: 1.25rem;
    padding-left: 1.875rem;
    font-family: "Lato Bold", sans-serif;
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 2.18rem;
    text-align: left;
    white-space: normal;
    border-left: 0.625rem solid #ff7900;
  }

  .nav.nav-2023 .nav_hot-topics .subnav_item {
    position: relative;
    width: 100%;
    padding: 0 1.875rem;
    line-height: 2.8125rem;
    border-right: 0.125rem solid #ffffff;
  }

  .nav.nav-2023 .nav_hot-topics .subnav_item_withchildren:not(.spacer):hover {
    border-right: none;
  }

  .nav.nav-2023 .nav_hot-topics .subnav_item_withchildren:not(.spacer):hover::after,
  .nav.nav-2023 .nav_hot-topics .subnav_item_withchildren.active:not(.spacer)::after {
    position: absolute;
    top: 0.75rem;
    right: -1.375rem;
    display: block;
    width: 1.875rem;
    height: 1.5rem;
    content: " ";
    background-image: url("/templates/4c2021/img/navigation/nav_arrow_right.svg");
    background-repeat: no-repeat;
  }

  .nav.nav-2023 .nav_hot-topics .subnav_item_withchildren.active:not(.spacer) {
    border-right: none;
  }

  .nav.nav-2023 .subnav_item {
    display: flex;
    justify-content: space-between;
    width: 50%;
    font-family: "Lato Bold", sans-serif;
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .nav.nav-2023 .subnav_item ul.nav_submenuL3 li {
    font-family: "Lato", sans-serif !important;
  }

  .nav.nav-2023 .subnav_item_singlerow {
    width: 100%;
  }

  .nav.nav-2023 .subnav_item--bold {
    font-family: "Lato Bold", sans-serif;
  }

  .nav.nav-2023 .subnav_item--pb {
    padding-bottom: 1.375rem;
  }

  .nav.nav-2023 .subnav_item--pr {
    padding-right: 1.375rem;
  }

  .nav.nav-2023 .nav_submenuL3 {
    font-family: "Lato", sans-serif;
  }

  .nav.nav-2023 .nav_submenuL3 .subnav_item {
    width: 100%;
  }

  .nav.nav-2023 .subnav_insights {
    height: 1.875rem;
    padding: 0 0.5rem;
    margin-top: 0.9375rem;
    color: #303f55;
    font-size: 1rem;
    line-height: 1.875rem;
    text-align: center;
    background-color: #ffffff;
    border-radius: 0.25rem;
  }

  .nav.nav-2023 .subnav_insights:hover {
    background-color: #cdc4b5;
  }

  .nav.nav-2023 .subnav_insights--pt {
    margin-top: 9.375rem;
  }

  .nav.nav-2023 .nav_footer {
    display: none;
  }

  .nav.nav-2023 .subnav--align-right {
    display: flex;
    justify-content: flex-end;
  }

  .w-100 {
    width: 100%;
  }

  .banner-sub {
    position: relative;
    display: block;
    align-items: initial;
    height: 31.25rem;
    min-height: 0;
    margin-top: -4.5rem;
    overflow: visible;
    color: inherit;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .banner-sub::before {
    content: none;
  }

  .banner_intro {
    position: absolute;
    bottom: 5rem;
    left: 13%;
    z-index: auto;
    width: auto;
    max-width: 76%;
    padding: 0;
    margin: 0;
  }

  .banner_intro .h1,
  .banner_intro h1 {
    max-width: none;
    margin-bottom: 0;
    color: #ffffff;
    font-family: "Lato Bold", sans-serif;
  }

  .banner_intro article {
    width: 100%;
    max-width: 50rem;
    padding-top: 1.25rem;
    color: #ffffff;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .banner_title-underscore {
    width: 40%;
    height: 0.3125rem;
    margin-top: 1.125rem;
    margin-bottom: 0;
    background-color: #f77602;
  }

  @media only screen and (min-width: 0) and (max-width: 90.4375rem) {
    .header {
      grid-template-columns: 25% 50% 25%;
      justify-content: space-between;
    }

    .header_logo {
      text-align: center;
    }

    .header_nav {
      position: absolute;
      top: 5.625rem;
      left: 0;
      display: none;
      justify-content: flex-start;
      width: 100%;
      height: auto;
    }

    .header_nav-visible {
      display: block;
    }

    .subnav_background {
      height: 100%;
      overflow: hidden;
      overscroll-behavior: contain;
      background-color: rgba(48, 63, 85, 0.9);
    }

    .subnav_background.sticky {
      height: 100%;
    }

    .nav {
      width: 100%;
    }

    .nav_root {
      flex-direction: column;
      align-items: flex-start;
    }

    .nav_item {
      padding-left: 3.75rem;
      line-height: 2;
    }

    .nav_submenu {
      position: relative;
      padding-top: 0;
      padding-left: 1.25rem;
    }

    .nav_submenu-item {
      line-height: 2.5;
    }

    .nav_products {
      position: relative;
      left: 0;
      padding-left: 1.25rem;
    }

    .nav_products-item {
      line-height: 2.5;
    }

    .action_contact {
      display: none;
    }

    .nav.nav-2023 {
      display: initial;
      padding-right: 3.75rem;
      overflow-y: auto;
      overscroll-behavior: contain;
    }

    .nav.nav-2023 .nav_hot-topics {
      position: relative;
      left: 0;
      display: none;
      width: 100%;
      padding-bottom: 0;
      margin-top: 0;
      text-align: left;
      border-right: none;
    }

    .nav.nav-2023 .nav_hot-topics .subnav_item:not(.subnav_item--bold) {
      padding: 0;
      font-size: 1rem;
    }

    .nav.nav-2023 .nav_hot-topics .subnav_item {
      border-right: none;
    }

    .nav.nav-2023 .subnav_insights {
      display: inline-block;
      width: 7.5rem;
    }

    .nav.nav-2023 .subnav_insights-wrapper {
      width: 100%;
      margin-bottom: 3.125rem;
    }

    .nav.nav-2023 .subnav_insights--pt {
      margin-top: 0;
    }

    .nav.nav-2023 .nav_root > .nav_item {
      width: 100%;
      padding-right: 0;
      padding-left: 3.75rem;
      border-right: none;
    }

    .nav.nav-2023 .nav_submenu {
      right: 0;
      left: 0;
      padding-top: 0;
      padding-left: 0;
    }

    .nav.nav-2023 .submenu_wrap {
      display: block;
      width: calc(100% - 0.9375rem);
      max-width: 26.5625rem;
    }

    .nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer):hover::after,
    .nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer).selected::after {
      display: none;
    }

    .nav.nav-2023 .nav_submenuL3 {
      display: none;
      padding-bottom: 0.9375rem;
    }

    .nav.nav-2023 .nav_submenuL3 .subnav_item a {
      color: #ffffff;
      font-size: 1rem;
    }

    .nav.nav-2023 .nav_item a {
      position: relative;
      line-height: 2;
    }

    .nav.nav-2023 .nav_arrow {
      position: absolute;
      z-index: 20;
      width: 2.5rem;
      height: 100%;
    }

    .nav.nav-2023 .subnav_arrow {
      position: absolute;
      right: 0;
      z-index: 20;
      width: 1.875rem;
      height: 1.875rem;
    }

    .nav.nav-2023 .nav_item_first-level {
      display: inline;
    }

    .nav.nav-2023 .nav_item_first-level::after {
      display: inline-block;
      width: 1.875rem;
      height: 1.8125rem;
      content: "";
      vertical-align: text-bottom;
      background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_white.png");
      background-repeat: no-repeat;
      background-position: right;
      background-size: auto 1.625rem;
    }

    .nav.nav-2023 .nav_item.clicked > .nav_item_first-level::after {
      margin-left: 0.625rem;
      vertical-align: initial;
      transform: rotate(90deg);
    }

    .nav.nav-2023 .subnav_item {
      width: 100%;
    }

    .nav.nav-2023 .subnav_item--pr {
      padding-right: 0;
    }

    .nav.nav-2023 .subnav_item--pb {
      padding-bottom: 0;
    }

    .nav.nav-2023 .subnav_item--bold {
      color: #cdc4b5;
      font-family: "Lato", sans-serif;
    }

    .nav.nav-2023 .subnav_item--bold a {
      position: relative;
      padding-right: 2.1875rem;
      color: #cdc4b5;
    }

    .nav.nav-2023 .subnav_item--bold > a::after {
      position: absolute;
      top: 0.25rem;
      right: 0;
      display: inline-block;
      width: 1.875rem;
      height: 1.625rem;
      content: "";
      vertical-align: text-bottom;
      background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_sand.png");
      background-repeat: no-repeat;
      background-position: right;
      background-size: auto 1.5rem;
    }

    .nav.nav-2023 .subnav_item--bold.clicked > a::after {
      top: -0.1875rem;
      right: -0.1875rem;
      vertical-align: initial;
      transform: rotate(90deg);
    }

    .nav.nav-2023 .nav_footer {
      display: inline-flex;
      flex-wrap: wrap;
      justify-content: space-between;
      width: 100%;
      padding: 2.5rem 3.75rem 0;
    }

    .nav.nav-2023 .nav_footer .social-media {
      position: relative;
      top: auto;
      left: auto;
    }

    .nav.nav-2023 .nav_footer .social-media_item {
      padding-right: 0.9375rem;
    }

    .nav.nav-2023 .nav_footer .action_select-lang {
      color: #ffffff;
      font-size: 1.5rem;
    }

    .nav.nav-2023 .subnav_insights--hidden {
      display: none !important;
    }

    .action_contact-mobile {
      display: block;
      padding-top: 0.1875rem;
      padding-right: 1.4375rem;
    }

    .header.sticky {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 3.125rem;
      padding-top: 0;
    }

    .header.sticky .header_logo {
      display: none;
    }

    .search_background.sticky,
    .subnav_background.sticky {
      top: 3.125rem;
      height: calc(31.25rem - 3.125rem);
    }
  }

  @media only screen and (min-width: 62rem) and (max-width: 81.1875rem) {
    .banner-sub {
      height: 23.75rem;
    }

    .banner_intro {
      bottom: 2.5rem;
    }
  }

  @media only screen and (min-width: 0) and (max-width: 47.9375rem) {
    .banner-sub {
      height: 30.625rem;
    }

    .banner_intro {
      bottom: 5.625rem;
      left: 0.9375rem;
      width: calc(100% - 0.9375rem);
      max-width: initial;
    }

    .banner_intro .h1,
    .banner_intro h1 {
      font-size: 1.75rem;
      line-height: 1.2;
    }

    .banner_intro article {
      width: calc(100% - 0.9375rem);
      padding-top: 0.625rem;
      line-height: 1.4;
    }

    .banner_title-underscore {
      width: 50%;
      margin-top: 0.9375rem;
    }
  }
}

@layer print {
  @media print {
    *,
    *::before,
    *::after {
      color: #000000 !important;
      background: transparent !important;
      box-shadow: none !important;
      text-shadow: none !important;
    }

    body {
      font-size: 1rem;
      line-height: 1.4;
    }

    a,
    a:visited {
      text-decoration: underline;
    }

    img,
    svg,
    video,
    canvas {
      max-width: 100% !important;
      page-break-inside: avoid;
    }

    h1,
    h2,
    h3,
    p {
      orphans: 3;
      widows: 3;
    }

    h1,
    h2,
    h3 {
      page-break-after: avoid;
    }

    .btn,
    .skip-link,
    .u-print-hidden {
      display: none !important;
    }
  }
}


/* ==========================================================================
   Bundled 4c2021 styles.css compatibility layer
   Keep at the end so the legacy template/menu DOM keeps the old behavior.
   Source: css/4c2021/css/styles.css
   ========================================================================== */

@font-face{
  font-family: 'Lato Light';
  src: url(/templates/4c2026/font/Lato-Light.ttf) format("truetype")
}

@font-face{
  font-family: Lato;
  src: url(/templates/4c2026/font/Lato-Regular.ttf) format("truetype")
}

@font-face{
  font-family: 'Lato Bold';
  src: url(/templates/4c2026/font/Lato-Bold.ttf) format("truetype")
}

@font-face{
  font-family: 'Lato Italic';
  src: url(/templates/4c2026/font/Lato-Italic.ttf) format("truetype")
}

@font-face{
  font-family: 'Lato Bold Italic';
  src: url(/templates/4c2026/font/Lato-BoldItalic.ttf) format("truetype")
}

@font-face {
  font-family: "Lato Light Italic";
  src: url(/templates/4c2026/font/Lato-LightItalic.ttf) format("truetype");
}

b, strong {
  font-family: "Lato Bold", sans-serif;
  font-weight: 400;
}

a {
  color: #525252;
  text-decoration: none;
}

a:hover {
  color: #525252;
  text-decoration: none;
}

em {
  font-family: "Lato Italic";
}

.banner_fancybox .banner_fancybox-content h2, .h2, h2, h3, h4, h5, h6 {
  margin-top: 0;
  color: #303f55;
}

.h1, h1 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: calc(1.3625rem + .84375vw);
  font-weight: 400;
  color: #fff;
}

.h2, h2 {
  font-family: "Lato Light", sans-serif;
  line-height: 1.2;
  margin-bottom: 1.6rem;
  font-size: calc(1.3475rem + .73125vw);
  font-weight: 400;
}

ol + h2, p + h2, ul + h2 {
  padding-top: 2rem;
}

h3, .h3 {
  font-family: Lato, sans-serif;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-size: calc(1.27rem + .15vw);
  letter-spacing: .04rem;
}

ol + h3, p + h3, ul + h3 {
  padding-top: 2rem;
}

h4, .h4 {
  font-family: "Lato Bold", sans-serif;
  margin-bottom: .5rem;
  line-height: 1.3;
  font-size: calc(1.265rem + .1125vw);
}

ol + h3, ol + h4, p + h3, p + h4, ul + h3, ul + h4 {
  padding-top: 1rem;
}

h5, .h5 {
  font-family: "Lato Light", sans-serif;
  margin-bottom: .5rem;
  line-height: 1.3;
  font-size: 1.1rem;
  font-weight: bold;
}

h6, .h6 {
  margin-bottom: .5rem;
  line-height: 1.3;
  font-size: 1.1rem;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

i {
  font-style: "Lato Italic";
}

a.email {
  text-decoration: underline;
  color: #303f55;
}

a.email:hover {
  color: #cdc4b5;
}

iframe {
  border: none;
}

.sf_text_white {
  color: #fff;
}

.fourc_cta--outlined--sm, a.fourc_cta--outlined--sm {
  display: inline-table;
  height: 25px;
  padding: 0 5px;
  background-color: #fff;
  color: #ff7900 !important;
  border: 2px solid #ff7900;
  border-radius: 4px;
  font-size: .9rem;
  letter-spacing: .05rem;
  line-height: 25px;
  white-space: nowrap;
}

.fourc_cta--outlined--lg, a.fourc_cta--outlined--lg {
  display: inline-table;
  height: 45px;
  padding: 0 10px;
  background-color: #fff;
  color: #ff7900 !important;
  border: 2px solid #ff7900;
  border-radius: 4px;
  font-size: 1rem;
  letter-spacing: .05rem;
  line-height: 45px;
  white-space: nowrap;
}

.fourc_cta--outlined--lg:hover, a.fourc_cta--outlined--lg:hover {
  color: #fff !important;
  background-color: #ff7900;
}

.fourc_cta--orange--sm, a.fourc_cta--orange--sm {
  display: inline-table;
  height: 25px;
  padding: 0 8px;
  background-color: #ff7900;
  color: #fff !important;
  border-radius: 4px;
  font-size: .9rem;
  letter-spacing: .05rem;
  line-height: 25px;
  white-space: nowrap;
}

.fourc_cta--orange--sm:hover, a.fourc_cta--orange--sm:hover {
  color: #cdc4b5 !important;
}

.fourc_cta--orange--lg, a.fourc_cta--orange--lg {
  display: inline-table;
  height: 45px;
  padding: 0 15px;
  background-color: #ff7900;
  color: #fff !important;
  border-radius: 4px;
  font-size: 1rem;
  letter-spacing: .05rem;
  line-height: 45px;
  white-space: nowrap;
}

.fourc_cta--orange--lg:hover, a.fourc_cta--orange--lg:hover {
  color: #cdc4b5 !important;
}

.fourc_cta--blue--sm, a.fourc_cta--blue--sm {
  display: inline-table;
  padding: 0 8px;
  height: 25px;
  background-color: #303f55;
  color: #fff !important;
  border-radius: 4px;
  font-size: .9rem;
  letter-spacing: .05rem;
  line-height: 25px;
  white-space: nowrap;
}

.fourc_cta--blue--sm:hover, a.fourc_cta--blue--sm:hover {
  color: #cdc4b5 !important;
}

.fourc_cta--blue--lg, a.fourc_cta--blue--lg {
  display: inline-table;
  height: 45px;
  padding: 0 15px;
  background-color: #303f55;
  color: #fff !important;
  border-radius: 4px;
  letter-spacing: .05rem;
  line-height: 45px;
  font-size: 1rem;
  white-space: nowrap;
}

.fourc_cta--blue--lg:hover, a.fourc_cta--blue--lg:hover {
  color: #cdc4b5 !important;
}

.fourc_checkmark {
  list-style-image: none !important;
  margin-left: 0 !important;
  margin-bottom: 10px;
  /*line-height: 2 !important; commented out for new blog design */
}

li.fourc_checkmark {
  position: relative;
  padding-left: 40px;
}

li.fourc_checkmark:before {
  position: absolute;
  left: 0;
  top: 9px;
}

.fourc_checkmark:before {
  display: inline-block;
  content: "";
  background-image: url("/templates/4c2021/img/icons/noun-checkmark-5430980-49576A.png");
  height: 25px;
  width: 40px;
  background-size: 30px auto;
  background-repeat: no-repeat;
  vertical-align: bottom;
}

.fourc_headline--h4orange {
  position: relative;
  font-size: 1.5rem !important;
  font-family: "Lato Bold";
  color: #ff7900;
  font-weight: 400;
  line-height: 1.5;
}

.fourc_headline--h4orange:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 70px;
  height: 3px;
  background-color: #49576a;
}

.fourc_icon--location, .fourc_icon--timetable, .fourc_icon--watch {
  display: block;
  height: 35px;
  line-height: 35px !important;
  background-size: contain;
  background-repeat: no-repeat;
  padding-left: 45px;
}

.fourc_icon--location {
  background-image: url("/templates/4c2021/img/icons/4C_Location.png");
  background-position: 4px center;
}

.fourc_icon--timetable {
  background-image: url("/templates/4c2021/img/icons/4C_Timetable.png");
  background-position: 1px center;
}

.fourc_icon--watch {
  background-image: url("/templates/4c2021/img/icons/4C_Watch.png");
  background-repeat: no-repeat;
}

h1.content {
  display: block !important;
  color: #303f55;
  font-weight: 400;
  margin-top: 0;
  margin-bottom: 1.6rem;
  font-size: calc(1.3625rem + .84375vw);
}

*, ::after, ::before {
  box-sizing: border-box;
}

@-moz-document url-prefix(){

  body {
    font-weight: lighter !important
  }

}

body {
  margin: 0;
  font-family: Lato, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.2;
  color: #525252;
  background-color: #f6f6f6;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(82, 82, 82, 0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smoothing: antialiased;
}

hr {
  margin: 1rem 0;
  color: #303f55;
  background-color: currentColor;
  border: 0;
  opacity: 1;
}

hr:not([size]) {
  height: 1px;
}

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  text-decoration: none;
}

a:focus-visible {
  outline: 0;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

input:focus, select:focus-visible, textarea:focus {
  outline: 0;
}

.back-to-top, .blog-author-box, .blog-contact-box .blog-contact-box_arrow, .centered, .event-details_form, .event-details_more, .event-details_prebooking-form-background, .event-details_title, .jobs_download-image, .product-list_circle, .product-list_page-link {
  display: flex;
  justify-content: center;
  align-items: center;
}

.blog-preview_item .blog-preview_arrow, .event-details_arrow, .event_button, .icon-right-container, .press-teaser_arrow, .teasercategory_arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 48px;
  width: 56px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #cdc4b5;
}

.blog-preview_lead .blog-preview_arrow, .download-ebooklet_form .form_submitbutton, .icon-right-container-large {
  position: absolute;
  right: 0;
  bottom: -5px;
  height: 48px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-right: 22px;
}

.betterslider_next, .betterslider_prev, .blog-contact-box .blog-contact-box_icon, .blog-preview_item .blog-preview_icon, .blog-preview_lead .blog-preview_icon, .event_icon, .events-teaser-slider.owl-carousel .owl-nav button.owl-next, .events-teaser-slider.owl-carousel .owl-nav button.owl-prev, .icon-right-blue, .jobs.v2024 .jobs_similar-positions .owl-carousel .owl-nav button.owl-next, .jobs.v2024 .jobs_similar-positions .owl-carousel .owl-nav button.owl-prev, .jobs_arrow, .press-teaser_icon, .product-list_link-icon, .teaser-slider_container.owl-carousel .owl-nav button.owl-next, .teaser-slider_container.owl-carousel .owl-nav button.owl-prev, .teasercategory_icon, .value-teaser_arrow {
  display: block;
  width: 15px;
  height: 24px;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_blue.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.icon-right-white, .job-teaser_arrow {
  display: block;
  width: 15px;
  height: 24px;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_white.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.event-details_arrow .arrow, .icon-bottom-blue, .zitat_showmore-icon {
  display: block;
  width: 24px;
  height: 15px;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_bottom_blue.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.back-to-top_arrow, .icon-top-white {
  display: block;
  width: 24px;
  height: 15px;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_top_white.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.download-ebooklet_text ul, .list, .text ul, .textwithdownload ul, .tinymce ul {
  padding: 0 0 1rem 0;
}

.download li, .download-ebooklet_text ul li, .list_item, .text ul li, .textwithdownload ul li, .tinymce ul li {
  list-style-type: none;
  margin-left: 18px;
  background-repeat: no-repeat;
  line-height: 1.5;
  padding-bottom: 5px;
}

.download li:last-of-type, .download-ebooklet_text ul li:last-of-type, .list_item:last-of-type, .text ul li:last-of-type, .textwithdownload ul li:last-of-type, .tinymce ul li:last-of-type {
  padding-bottom: 0;
}

.banner_fancybox .banner_fancybox-content a, .download-ebooklet_text a, .form a, .text a, .text-link, .tinymce a {
  color: #303f55;
  font-family: "Lato Bold", sans-serif;
}

.banner_fancybox .banner_fancybox-content a:hover, .download-ebooklet_text a:hover, .form a:hover, .text a:hover, .text-link:hover, .tinymce a:hover {
  color: #cdc4b5;
}

.manager_info .email, .three-dots {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body .home_background {
  background-color: #a08b71;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: -101;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
}

.content-with-border {
  padding-left: 60px;
  padding-right: 60px;
}

.sf_row.sf_col--2 .sf_column:first-of-type .content-with-border, .sf_row.sf_col--2 .sf_column:first-of-type .form, .sf_row.sf_col--2 .sf_column:first-of-type .tinymce {
  padding-right: 0;
}

.sf_row.sf_col--2 .sf_column:last-of-type .content-with-border, .sf_row.sf_col--2 .sf_column:last-of-type .form, .sf_row.sf_col--2 .sf_column:last-of-type .tinymce {
  padding-left: 0;
}

.sf_row.sf_col--2 .sf_column:first-of-type .sf_pc_image {
  margin-left: 60px;
}

.sf_row.sf_col--2 .sf_column:last-of-type .sf_pc_image {
  margin-right: 60px;
}

.row_twocols .col_left .content-with-border {
  padding-right: 0;
}

.row_twocols .col_right .content-with-border {
  padding-left: 0;
}

.row_website_url {
  display: none !important;
}

.form, .tinymce {
  padding-left: 60px;
  padding-right: 60px;
}

.header {
  display: grid;
  grid-template-columns: 175px auto 110px;
  padding: 27px 60px 0 60px;
  height: calc(45px + 27px);
}

.header_logo {
  z-index: 3;
  height: 45px;
}

.header_logo img {
  height: 45px;
  max-width: 100%;
}

.header_actions, .header_nav {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header_nav {
  z-index: 3;
  line-height: 45px;
}

.header_actions {
  padding-left: 15px;
  z-index: 3;
}

.header_action {
  color: #fff;
  padding-left: 20px;
  font-size: 1.5rem;
  font-weight: 400;
}

.header_action:hover {
  color: #cdc4b5;
}

.header.sticky {
  position: fixed;
  z-index: 10;
  top: 0;
  width: 100%;
  max-width: 1920px;
  height: 99px;
  background-color: rgba(48, 63, 85, .9);
}

.action_search {
  cursor: pointer;
}

.action_contact {
  position: relative;
  flex-shrink: 0;
  width: 140px;
  height: 34px;
  margin-right: 30px;
  background-repeat: no-repeat;
  background-size: contain;
}

.action_contact-mobile {
  display: none;
}

.action_4cinsights {
  background-color: #ff7900;
  border-radius: 100px;
  white-space: nowrap;
  font-size: 1.2rem;
  line-height: 34px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center;
  color: white;
}

.action_4cinsights:hover {
  color: white;
}

.fourc_arrow_icon {
  width: 13px;
  height: 18px;
  background-size: 13px 18px;
  background-position: center 2px;
  background-image: url(/templates/4c2026/img/driving_transformation_pfeil.svg);
  display: inline-block;
  background-repeat: no-repeat;
  margin-left: 2px;
  margin-right: 2px;
  line-height: 34px;

}

.icon {
  background-repeat: no-repeat;
  background-position: center;
}

.icon_search {
  background-image: url(/templates/4c2021/img/icons/noun_magnifier_1056214.png);
  width: 25px;
  height: 25px;
  background-size: 25px;
  flex-shrink: 0;
}

.search_wrapper {
  position: absolute;
  width: 100%;
  max-width: 1520px;
  padding: 0 60px;
  top: 248px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.search_wrapper form {
  position: relative;
}

.search_field {
  width: 100%;
  border: 1px solid #fff;
  height: 53px;
  padding: 0 65px;
  background-color: transparent;
  outline: 0;
  font-size: 1rem;
  color: #fff;
  background-image: url(/templates/4c2021/img/icons/noun_magnifier_1056214.png);
  background-repeat: no-repeat;
  background-size: 28px auto;
  background-position: 18px center;
}

.search_button {
  width: 50px;
  position: absolute;
  height: 53px;
  z-index: 100;
  background-color: #fff;
  left: calc(100% - 50px);
  background-image: url(/templates/4c2021/img/icons/noun_Arrow_3134195_right_blue.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 30px;
  transition: background-image .4s ease-in-out;
}

.search_button:hover {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_sand.png");
}

.search_background, .subnav_background {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 500px;
  z-index: 3;
  background-color: rgba(48, 63, 85, .9);
}

.search_background.sticky, .subnav_background.sticky {
  position: fixed;
  top: 99px;
  height: calc(500px - 99px);
}

.nav {
  position: relative;
  letter-spacing: .025rem;
  padding-right: 150px;
}

.nav_icon {
  z-index: 3;
  align-self: center;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.nav ul {
  margin: 0;
}

.nav li {
  list-style: none;
  white-space: nowrap;
}

.nav_root {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 0;
}

.nav-not-linked span:hover {
  color: #cdc4b5;
  border-bottom: 1px solid #cdc4b5;
}

.nav_item {
  padding-left: 50px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
}

.nav_item:not(a) {
  cursor: default;
}

.nav_item a {
  color: #fff;
}

.nav_item a:hover {
  color: #cdc4b5;
  border-bottom: 1px solid #cdc4b5;
}

.nav_submenu {
  display: none;
  position: absolute;
  padding-top: 15px;
  padding-left: 0;
}

.nav_submenu-item {
  position: relative;
  font-size: 1rem;
  line-height: 2;
}

.nav_products {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  padding-left: 30px;
}

.nav_products-item {
  position: relative;
  font-size: 1rem;
  line-height: 2;
}

.nav_teaser {
  position: absolute;
  display: none;
  top: 0;
  left: 100%;
  padding-left: 30px;
}

.nav_teaser li.teaser a {
  cursor: pointer;
}

.nav_block {
  width: 250px;
  line-height: 2.2;
  text-align: center;
}

.nav_block-item {
  color: #525252;
}

.nav_block-item a:hover {
  color: #303f55;
  font-family: "Lato Bold", sans-serif;
}

.nav_block-item-uppercase {
  font-family: "Lato Bold", sans-serif;
  text-transform: uppercase;
}

a#menu_icon {
  position: absolute;
  left: 0;
  top: 3px;
  z-index: 200;
  cursor: pointer;
  background-position: center;
  width: 30px;
  height: 30px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

a#menu_icon span {
  display: block;
  position: absolute;
  left: 0;
  height: 3px;
  width: 30px;
  background: #fff;
  opacity: 1;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

a#menu_icon:hover span {
  background: #fff !important;
}

a#menu_icon span:first-child {
  top: 0;
}

a#menu_icon span:nth-child(2) {
  top: 10px;
}

a#menu_icon span:nth-child(3) {
  top: 20px;
}

a#menu_icon.open span:first-child {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

a#menu_icon.open span:nth-child(2) {
  opacity: 0;
}

a#menu_icon.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nav.nav-2023 {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.nav.nav-2023 .nav_root {
  justify-content: center;
}

.nav.nav-2023 .nav_root > .nav_item {
  padding: 0 25px;
  border-right: 2px solid #fff;
}

.nav.nav-2023 .nav_root > .nav_item:last-of-type {
  border-right: none;
}

.nav.nav-2023 .nav_item a {
  cursor: pointer;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.nav.nav-2023 .nav_item a:hover {
  border: none;
}

.nav.nav-2023 .nav_submenu {
  display: flex;
  flex-wrap: wrap;
  /*  left: calc(48% - 175px);*/
  left: 39%;
  right: -110px;
  padding-top: 59px;
  padding-left: 80px;
}

.nav.nav-2023 .nav_submenu_mobile {
  display: none;
}


.nav.nav-2023 .nav_hot-topics {
  position: absolute;
  /*left: calc(25% - 175px);*/
  left: 22%;/*25%;*/
  width: 18%;/*24%;*/
  margin-top: 50px;
  text-align: left;
}

.nav.nav-2023 .nav_teaser-text {
  position: absolute;
  left: -175px;
  /*width: 24%;*/
  width: calc(25% - 60px + 175px);
  margin-top: 50px;
  border-right: 2px solid #fff;
  text-align: right;
  padding-right: 60px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.nav.nav-2023 .nav_teaser-text > li > div.teaser-text {
  white-space: normal;
  font-family: "Lato Bold", sans-serif;
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 2.18rem;
  border-left: solid 10px #ff7900;
  padding-bottom: 20px;
  padding-left: 30px;
  text-align: left;
}

.nav.nav-2023 .nav_hot-topics .subnav_item {
  width: 100%;
  padding: 0 30px;
  border-right: solid 2px #fff;
  position: relative;
  line-height: 45px;
}

/*.nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer).selected, .nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer):hover {*/
.nav.nav-2023 .nav_hot-topics .subnav_item_withchildren:not(.spacer):hover {
  border-right: none;
}

/*.nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer):hover:after, .nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer).selected:after {*/
.nav.nav-2023 .nav_hot-topics .subnav_item_withchildren:not(.spacer):hover:after {
  content: ' ';
  background-image: url(/templates/4c2021/img/navigation/nav_arrow_right.svg);
  background-repeat: no-repeat;
  width: 30px;
  height: 24px;
  display: block;
  position: absolute;
  right: -22px;
  top: 12px;
}

.nav.nav-2023 .nav_hot-topics .subnav_item_withchildren.active:not(.spacer):after {
  content: ' ';
  background-image: url(/templates/4c2021/img/navigation/nav_arrow_right.svg);
  background-repeat: no-repeat;
  width: 30px;
  height: 24px;
  display: block;
  position: absolute;
  right: -22px;
  top: 12px;
}

.nav.nav-2023 .nav_hot-topics .subnav_item_withchildren.active:not(.spacer) {
  border-right: none;
}

.nav.nav-2023 .subnav_item {
  width: 50%;
  justify-content: space-between;
  font-size: 1.1rem;
  line-height: 1.5;
  font-family: "Lato Bold", sans-serif
}

.nav.nav-2023 .subnav_item ul.nav_submenuL3 li {
  font-family: "Lato", sans-serif !important;
}

.nav.nav-2023 .subnav_item_singlerow {
  width: 100%;
}

.nav.nav-2023 .subnav_item--bold {
  font-family: "Lato Bold", sans-serif;
}

.nav.nav-2023 .subnav_item--pb {
  padding-bottom: 22px;
}

.nav.nav-2023 .subnav_item--pr {
  padding-right: 22px;
}

.nav.nav-2023 .nav_submenuL3 {
  font-family: Lato, sans-serif;
}

.nav.nav-2023 .nav_submenuL3 .subnav_item {
  width: 100%;
}

.nav.nav-2023 .subnav_insights {
  height: 30px;
  line-height: 30px;
  background-color: #fff;
  color: #303f55;
  margin-top: 15px;
  padding: 0 8px;
  font-size: 1rem;
  border-radius: 4px;
  text-align: center;
}

s .nav.nav-2023 .subnav_insights:hover {
  background-color: #cdc4b5;
}

.nav.nav-2023 .subnav_insights--pt {
  margin-top: 150px;
}

.nav.nav-2023 .nav_footer {
  display: none;
}

.nav.nav-2023 .subnav--align-right {
  display: flex;
  justify-content: flex-end;
}

.nav--open .banner {
  pointer-events: none;
}

.w-100 {
  width: 100%;
}

.content-home {
  position: absolute;
  z-index: 0;
  top: -72px;
  left: -60px;
  width: calc(100% + 60px);
  height: 3054px;
}

.content-with-padding {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
}

.content-with-padding h1 {
  display: none;
}

.content-home > * {
  padding-left: 0;
  padding-right: 0;
}

.main {
  position: relative;
}

.home .main {
  height: calc(3200px - 146px);
}

.home .fancybox-overlay {
  background: 0 0;
}

.social-media {
  position: absolute;
  left: 60px;
  top: 40vw;
  height: 30px;
  display: flex;
  align-items: center;
}

.social-media_item {
  color: #fff;
  font-size: 1.5rem;
  padding-right: 10px;
}

.social-media_item:hover:hover {
  color: #cdc4b5;
}

.social-media_item-footsteps {
  background-image: url("/templates/4c2026/img/icons/footsteps_colored_icon_120x100px.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 22px 18px;
  width: 22px;
  height: 18px;
}

#banner-cta-3 {
  max-width: 443px;
}

.cta {
  display: flex;
  align-items: center;
}

.cta h3 {
  font-family: Lato, sans-serif;
  font-size: 1.1875rem;
}

.cta h4 {
  margin-bottom: 0;
  font-family: Lato, sans-serif;
  font-weight: 400;
  font-size: 1.1875;
  padding-right: 25px;
}

.cta-padding-xs {
  padding-left: 15px;
}

.cta-padding-s {
  padding-left: 36px;
}

.cta-padding-m {
  padding-left: 70px;
}

.cta-padding-l {
  padding-left: 116px;
}

.cta_arrow {
  height: 45px;
  width: 28px;
  flex-shrink: 0;
  background-image: url(/templates/4c2021/img/icons/noun_arrow_3134195.png);
  background-size: 24px 45px;
  background-repeat: no-repeat;
  display: block;
}

.button {
  background-color: #f6f6f6;
}

.row_twocols {
  display: flex;
  width: 100%;
}

.col_left {
  flex: calc(50% - 30px);
  margin-right: 60px;
}

.col_right {
  flex: calc(50% - 30px);
}

.breadcrumbs {
  position: absolute;
  width: 100%;
  padding-left: 60px;
}

.breadcrumbs ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  height: auto;
  margin: 0;
  padding: 0;
}

.breadcrumbs li {
  font-size: 1rem;
}

.breadcrumbs li:last-of-type {
  font-family: "Lato Bold", sans-serif;
}

.breadcrumbs .separator::after {
  content: ">";
  color: #525252;
  padding: 0 9px 0 8px;
}

.breadcrumbs a {
  color: #525252;
  line-height: 2.5;
}

.breadcrumbs_h1 {
  position: absolute;
  left: 60px;
  bottom: 55px;
}

.breadcrumbs + .parallax-background {
  padding-top: 25px;
}

.breadcrumbs + .tinymce, .breadcrumbs + div {
  padding-top: 55px;
}

.footer {
  position: relative;
  width: 100%;
  background-color: #f6f6f6;
}

.footer_top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 60px 150px;
}

.footer_logo {
  height: 50px;
}

.footer_nav {
  display: flex;
  padding-top: 75px;
}

.footer_social-media i {
  padding: 0 10px;
}

.footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  background-color: #303f55;
  padding: 0 200px;
}

.footer_copyright {
  color: #fff;
}

.footer_menu-bottom {
  display: none;
}

.hidden {
  display: none;
}

.animate {
  -webkit-transition: all .35s linear .1s;
  transition: all .35s linear .1s;
  -moz-transition: all .35s linear .1s;
  -ms-transition: all .35s linear .1s;
  -o-transition: all .35s linear .1s;
}

.download-ebooklet_text, .text, .tinymce {
  font-size: 1.1rem;
  line-height: 1.5;
}

.download-ebooklet_text ol, .download-ebooklet_text ul, .text ol, .text ul, .tinymce ol, .tinymce ul {
  font-size: 1.1rem;
}

.download-ebooklet_text ul li, .text ul li, .tinymce ul li {
  list-style-image: url("/templates/4c2021/img/list-style-image.png");
}

.download-ebooklet_text ol, .text ol, .tinymce ol {
  margin: 0;
  padding: 0 0 1rem 30px;
  line-height: 1.5;
}

.download-ebooklet_text p, .text p, .tinymce p {
  font-size: 1.1rem;
  line-height: 1.5;
}

.download-ebooklet_text img, .text img, .tinymce img {
  max-width: 100%;
  height: auto;
}

.text--center {
  text-align: center;
}

.form .formbutton {
  width: initial;
  padding-right: 30px;
  border: none;
  padding-left: 10px;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_blue.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: auto 25px;
  color: #303f55;
  background-color: transparent;
  text-align: right;
  font-family: "Lato Bold", sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .05rem;
  cursor: pointer;
}

.form .formbutton:hover {
  color: #a08b71;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_ochra.png");
}

.form_submitbutton {
  display: flex;
  justify-content: flex-end;
}

.form input[type=checkbox] {
  height: 15px;
  width: 15px;
  margin: 0;
  border: 2px solid silver;
  border-radius: 0;
  line-height: 1;
  margin-right: 10px;
  margin-bottom: 20px;
}

.form input, .form select, .form textarea {
  width: 100%;
  border: 2px solid silver;
  margin-bottom: 28px;
  font-family: Lato, sans-serif;
  font-size: 1rem;
  padding-left: 6px;
}

.form input, .form select {
  height: 40px;
}

.form input {
  line-height: 40px;
}

.form textarea {
  padding-top: 6px;
}

.form .row_datenschutz {
  line-height: 1.5;
}

.tabs {
  width: 100%;
}

.tabs .tabcontent {
  clear: both;
}

.tabs .tab {
  display: none;
}

.tabs .tab.active.download--preview {
  width: 100% !important;
  max-width: initial;
}

.tabs .active {
  display: block;
}

.tabs .desktop {
  display: flex;
  flex-wrap: wrap;
}

.tabs .mobile {
  display: none;
}

.download-ebooklet_text .tabs ul, .tabs .download-ebooklet_text ul, .tabs .list, .tabs .text ul, .tabs .textwithdownload ul, .tabs .tinymce ul, .text .tabs ul, .textwithdownload .tabs ul, .tinymce .tabs ul {
  margin-top: 20px;
  padding-top: 20px;
  border-top: solid 1px rgba(48, 63, 85, .8);
}

.download-ebooklet_text .tabs ul:first-child, .tabs .download-ebooklet_text ul:first-child, .tabs .list:first-child, .tabs .text ul:first-child, .tabs .textwithdownload ul:first-child, .tabs .tinymce ul:first-child, .text .tabs ul:first-child, .textwithdownload .tabs ul:first-child, .tinymce .tabs ul:first-child {
  margin-top: 0;
  border-top: none;
  padding-top: 0;
}

.tabs .eventlist .list_image {
  max-width: 120px;
  max-height: 120px;
}

.tabs .list_image {
  float: left;
  overflow: hidden;
  margin-right: 20px;
}

.tabs .list_image img {
  display: block;
}

.tabnavigation {
  overflow: hidden;
  margin: 0 0 30px;
}

.tabnavigation select {
  height: 40px;
  width: 320px;
  max-width: 100%;
  margin-top: 5px;
  margin-bottom: 10px;
  padding-left: 6px;
  border: 2px solid silver;
  font-size: 1rem;
}

.tabnavigation ul, .tabnavigation ul li {
  margin: 0;
  padding: 0;
}

.tabnavigation ul {
  margin-bottom: 0;
}

.tabnavigation ul li {
  height: 41px;
  min-width: 185px;
  padding: 10px 20px;
  margin-right: 20px;
  margin-bottom: 10px;
  list-style-image: none;
  list-style-type: none;
  font-family: "Lato Bold", sans-serif;
  font-size: 1.1rem;
  letter-spacing: .05rem;
  line-height: 1;
  color: #fff;
  background-color: #303f55;
  border: 1px solid #303f55;
  border-radius: 4px;
  cursor: pointer;
  text-align: center;
  white-space: nowrap;
}

.tabnavigation ul li:hover {
  color: #cdc4b5;
}

.tabnavigation ul li.active {
  color: #303f55;
  background-color: transparent;
}

.counter_row {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  padding: 50px 60px 60px;
}

.countercontainer {
  display: flex;
  flex-direction: column;
}

p.count {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 200px;
  width: 200px;
  margin: 0 15px;
  font-size: 3.4rem;
  color: #303f55;
  background-color: #fff;
  border: 7px solid #deded7;
  border-radius: 50%;
}

p.countdescription {
  position: relative;
  text-align: center;
  padding: 25px 0 20px;
  color: #303f55;
  font-size: 1.125rem;
}

p.countdescription span {
  position: absolute;
  height: 3px;
  width: 44px;
  line-height: 0;
  border-bottom: 3px solid #deded7;
  left: calc(50% - 22px);
  bottom: 0;
}

#backtotop {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 0;
  z-index: 98;
}

.back-to-top {
  width: 42px;
  height: 40px;
  background-color: #a0b2b9;
  cursor: pointer;
  border-top-left-radius: 50%;
  border-bottom-left-radius: 50%;
}

.back-to-top_arrow {
  width: 20px;
  height: 11px;
  margin-left: 5px;
}

.fancybox-skin {
  border-radius: 0;
  position: relative;
  background: #f9f9f9;
  color: #444;
  text-shadow: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
}

.contactform div.form_label {
  display: none;
}

.contactform div.form_submitbutton .formbutton {
  width: 100%;
  height: 100%;
  padding-right: 0;
  background-image: url("/templates/4c2026/img/icons/noun_Arrow_3134195_right_white.png");
  background-color: #303f55;
  background-position: calc(100% - 8px) center;
  color: #fff;
  font-family: Lato, sans-serif;
  text-align: center;
}

.contactform div.form_submitbutton .formbutton:hover {
  color: #cdc4b5;
}

.contactform div.form_submitbutton:hover .formbutton {
  background-image: url("/templates/4c2026/img/icons/noun_Arrow_3134195_right_sand.png");
}

.form_errordata {
  margin-bottom: 28px;
}

.formerrors th {
  color: red;
  font-weight: 700;
  text-align: left;
}

.form_error {
  color: red;
}

.form_select {
  line-height: normal;
}

.ebookletform div.form_label {
  display: none;
}

.ebookletform div.form_submitbutton .formbutton {
  background-image: url("/templates/4c2026/img/icons/noun_Arrow_3134195_right_white.png");
  color: #fff;
}

.ebookletform div.form_submitbutton:hover .formbutton {
  background-image: url("/templates/4c2026/img/icons/noun_Arrow_3134195_right_ochra.png");
  color: #a08b71;
}

.parallax-background-content {
  width: calc(100% - 440px);
  background-color: #fff;
  padding: 20px;
  border-bottom: 5px solid #303f55;
  margin-top: 60px;
  margin-bottom: 60px;
}

.slider-pro .sp-button {
  background-color: #303f55;
  opacity: .5;
  border: none;
}

.slider-pro.slider-pro--light .sp-button {
  background-color: #fff;
}

.slider-pro .sp-selected-button {
  opacity: 1;
}

.slider-pro .sp-next-arrow::after, .slider-pro .sp-next-arrow::before, .slider-pro .sp-previous-arrow::after, .slider-pro .sp-previous-arrow::before {
  width: 15%;
  height: 50%;
  background-color: #303f55;
}

.slider-pro.slider-pro--light .sp-next-arrow::after, .slider-pro.slider-pro--light .sp-next-arrow::before, .slider-pro.slider-pro--light .sp-previous-arrow::after, .slider-pro.slider-pro--light .sp-previous-arrow::before {
  background-color: #fff;
}

.contact-widget {
  position: fixed;
  bottom: 0;
  right: 0;
  max-width: 550px;
  z-index: 99;
  display: none;
}

.contact-widget__opener {
  display: flex;
  align-items: center;
  height: 66px;
  padding: 14px 12px;
  background-color: #303f55;
  color: #fff;
}

.contact-widget__button {
  z-index: 1;
  background-color: #f77602;
  color: #fff;
  padding: 0 10px;
  margin-right: 25px;
  white-space: nowrap;
  height: 32px;
  line-height: 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: .95rem;
}

.contact-widget__button:hover {
  color: #cdc4b5;
}

.contact-widget__close {
  position: absolute;
  right: 5px;
  top: 5px;
  cursor: pointer;
}

.contact-widget__form-close {
  position: absolute;
  right: 20px;
  font-size: 1.2rem;
  top: 12px;
  cursor: pointer;
}

.contact-widget__arrow {
  position: absolute;
  top: -25px;
  left: 0;
  z-index: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 50px;
  background-color: #303f55;
  font-size: 1.4rem;
  border-radius: 50%;
  cursor: pointer;
}

.contact-widget__arrow svg {
  padding-bottom: 8px;
}

.contact-widget__arrow .fa-chevron-down {
  margin-bottom: 5px;
}

.contact-widget__form {
  position: absolute;
  bottom: 66px;
  right: 0;
  display: none;
  width: 100%;
  padding: 25px 20px 45px;
  background-color: #f6f6f6;
  -webkit-box-shadow: 1px 1px 5px 0 #49576a;
  -moz-box-shadow: 1px 1px 5px 0 #49576a;
  box-shadow: 1px 1px 5px 0 #49576a;
}

.contact-widget__form h3 {
  font-family: Lato, sans-serif;
}

.contact-widget__form .form {
  overflow: hidden;
  background-color: #fff;
  padding: 22px 17px;
}

.contact-widget__form .form_row {
  width: 100%;
  float: none;
  display: flex;
  gap: 15px;
}

.contact-widget__form .form_row.row_text {
  font-size: .85rem;
}

.contact-widget__form .form_row.row_text .form_label {
  display: none;
}

.contact-widget__form .form_row.row_text .form_field {
  width: 100%;
}

.contact-widget__form .form_label {
  width: 35%;
  padding-top: 4px;
  text-align: right;
}

.contact-widget__form .form_field {
  width: 65%;
}

.contact-widget__form .form_row2 {
  margin-left: 0;
}

.contact-widget__form .form input {
  line-height: 32px;
}

.contact-widget__form .form input, .contact-widget__form .form select {
  height: 32px;
}

.contact-widget__form .form input, .contact-widget__form .form select, .contact-widget__form .form textarea {
  margin-bottom: 15px;
}

.contact-widget__form .formbutton {
  background-color: #f77602;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_white.png");
  color: #fff;
  margin-top: 15px;
  padding: 0 15px 0 20px;
  min-width: 160px;
  text-align: center;
  background-position: 140px center;
}

.contact-widget__form .form .formbutton:hover {
  color: #cdc4b5;
}

.home2023 .counter_row {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0 30px;
}

.home2023 .countercontainer {
  padding: 20px 0;
  border-top: 1px solid #303f55;
  border-bottom: 1px solid #303f55;
}

.home2023 p.count {
  height: auto;
  width: auto;
  background: 0 0;
  border: none;
  font-size: 4rem;
}

.home2023 p.countdescription {
  font-family: "Lato Bold", sans-serif;
  padding: 12px 0;
  margin-bottom: 0;
}

.home2023 p.countdescription span {
  display: none;
}

.home2023 .contact-button {
  position: relative;
  display: inline-block;
  min-width: 275px;
  margin-top: 30px;
  padding: 0 30px;
  height: 45px;
  line-height: 45px;
  background-color: #303f55;
  color: #fff;
  font-family: Lato, sans-serif;
  white-space: nowrap;
  font-size: 1rem;
  text-align: center;
}

.home2023 .contact-button .arrow {
  position: absolute;
  padding-left: 5px;
  font-size: 1.5rem;
}

.home2023 .banner-primary {
  position: relative;
  margin-top: -72px;
  height: 100vh;
}

.home2023 .banner-primary .owl-next, .home2023 .banner-primary .owl-prev {
  position: absolute;
  top: calc(50% - 30px);
  color: #fff !important;
  font-size: 60px !important;
  line-height: 1 !important;
}

.home2023 .banner-primary .owl-nav {
  display: none;
  margin-top: 10px;
}

.home2023 .banner-primary .owl-dots {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.home2023 .banner-primary .owl-nav [class*=owl-] {
  color: #fff;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #d6d6d6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}

.home2023 .banner-primary .owl-nav [class*=owl-]:hover {
  background: #869791;
  color: #fff;
  text-decoration: none;
}

.home2023 .banner-primary .owl-nav .disabled {
  opacity: .5;
  cursor: default;
}

.home2023 .banner-primary .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}

.home2023 .banner-primary .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.home2023 .banner-primary .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
}

.home2023 .banner-primary .owl-dots .owl-dot.active span, .home2023 .banner-primary .owl-dots .owl-dot:hover span {
  background: #fff;
}

.home2023 .banner-primary .carousel_item {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.home2023 .banner-primary .carousel_item video {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.home2023 .banner-primary .carousel_scroll-arrow {
  display: block;
  position: absolute;
  z-index: 1;
  right: 60px;
  bottom: 24px;
  width: 36px;
  height: 54px;
  background-image: url("/templates/4c2021/img/icons/noun-arrow-down-ffffff.png");
  background-repeat: no-repeat;
  background-size: 36px auto;
  animation-duration: 6s;
}

.home2023 .banner_article {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  z-index: 1;
  margin-top: 0;
  width: 85%;
  background: 0 0;
}

.home2023 .banner_article h1, .home2023 .banner_article h2 {
  padding-top: 0;
  font-family: Lato, sans-serif;
  font-size: 5rem;
  letter-spacing: .01rem;
}

.home2023 .footer_top {
  display: none;
}

.home2023 .footer_bottom {
  flex-direction: row-reverse;
  height: 100px;
  padding: 0 60px;
}

.home2023 .footer_menu-bottom {
  display: block;
}

.home2023 .footer_menu-bottom .nav_block-item {
  display: inline-block;
  padding: 0 25px;
}

.home2023 .footer_menu-bottom .nav_block-item a {
  color: #fff;
}

.home2023 .footer_menu-bottom .nav_block-item a:hover {
  font-family: Lato, sans-serif;
  color: #cdc4b5;
}

.home2023 #homevideo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.home2023 #homevideotitle {
  font-size: 3rem;
  text-shadow: 1px 1px 1px #a9a9a9;
}

.home2023 #homevideotitle .smaller {
  font-size: 2.3rem;
}

.carousel_item {
  width: 100%;
  height: 500px;
  position: relative;
  overflow: hidden;
}

.carousel_image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transition: all 1.25s ease-in-out;
  -moz-transition: all 1.25s ease-in-out;
  -o-transition: all 1.25s ease-in-out;
  transition: all 1.25s ease-in-out;
}

.carousel_scroll-arrow {
  display: none;
}

.zoom_in .carousel_image {
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
}

.textdownload {
  padding-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.textdownload_showless, .textdownload_showmore {
  display: block;
  font-family: "Lato Italic";
  font-size: 1.1rem;
  color: #a08b71;
  cursor: pointer;
}

.textdownload_hidden {
  padding-top: 15px;
}

.textdownload_video {
  position: relative;
  width: 100%;
  padding-bottom: 56%;
}

.textdownload_video a, .textdownload_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.textdownload_video + .download_image {
  margin-top: 33px;
}

.video_preview-arrow {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  height: 100px;
  width: 100px;
  background-image: url(/templates/4c2021/img/icons/play-button.png);
  background-size: cover;
}

.textimagedownload {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 33.33%;
}

.textwithdownload {
  width: 66.66%;
  padding-right: 4%;
}

.textwithdownload p {
  margin-bottom: 1.4rem;
  line-height: 1.5;
  font-size: 1.1rem;
}

.textwithdownload h3 {
  padding-top: 1rem;
}

.textwithdownload ul li {
  font-size: 1.1rem;
  list-style-image: url("/templates/4c2021/img/list-style-image.png");
}

.textwithdownload ul a {
  color: #303f55;
}

.textwithdownload ol {
  margin: 0;
  padding: 0 0 1rem 16px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.textwithdownload ol li {
  padding-left: 3px;
}

.textwithdownload img {
  max-width: 100%;
  height: auto;
}

.banner {
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
}

.banner-primary {
  height: 1080px;
  background-color: #a08b71;
}

.banner-secondary {
  height: 530px;
  display: flex;
  align-items: center;
  padding: 0 60px 0 120px;
}

.banner-secondary a {
  color: #fff;
}

.banner-secondary.zoom_in {
  -moz-transform: scale(1.1, 1.1);
  -webkit-transform: scale(1.1, 1.1);
  -o-transform: scale(1.1, 1.1);
  -ms-transform: scale(1.1, 1.1);
}

.banner-bottom {
  height: 530px;
}

.banner-sub {
  position: relative;
  height: 500px;
  margin-top: -72px;
}

.banner-text-left {
  justify-content: flex-start;
}

.banner_cta {
  max-width: 310px;
}

.banner-text-right {
  justify-content: flex-end;
}

.banner-text-right .banner_text {
  justify-content: flex-end;
}

.banner_article {
  width: 445px;
  height: 100%;
  padding: 0 60px 0 120px;
  background-color: rgba(48, 63, 85, .8);
  animation-delay: .9s;
  animation-duration: 1.2s;
}

.banner_article h1, .banner_article h2, .banner_article p {
  color: #fff;
}

.banner_article h1, .banner_article h2 {
  margin-left: -3px;
  padding-top: 19vw;
  font-family: "Lato Light", sans-serif;
  font-weight: 300;
  line-height: 1.2;
  font-size: calc(1.425rem + 1.3125vw);
}

.banner_text {
  display: flex;
  width: 25%;
}

.banner_text h3, .banner_text h4 {
  color: #fff;
}

.banner_text h3 {
  margin-bottom: 1rem;
  font-family: "Lato Light", sans-serif;
  font-weight: 300;
  font-size: calc(1.5rem + 1.875vw);
}

.banner_fancybox {
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
}

.banner_fancybox .fancybox-skin {
  border-radius: 0;
}

.banner_fancybox .banner_fancybox-content {
  max-width: 1000px;
  padding: 0 60px;
  margin: 0 auto;
  line-height: 1.5;
}

.banner_fancybox .banner_fancybox-content h2 {
  font-family: "Lato Light", sans-serif;
  margin-bottom: 1rem;
  font-size: calc(1.3625rem + .84375vw);
}

.banner_intro {
  position: absolute;
  left: 13%;
  bottom: 80px;
  max-width: 76%;
}

.banner_intro .h1, .banner_intro h1 {
  font-family: "Lato Bold", sans-serif;
}

.banner_intro article {
  width: 100%;
  max-width: 800px;
  padding-top: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  color: #fff;
}

.banner_title-underscore {
  height: 5px;
  width: 40%;
  margin-top: 18px;
  background-color: #f77602;
}

.banner_quicklinks {
  position: absolute;
  left: 120px;
  bottom: 120px;
  z-index: 2;
}

.banner_quicklinks a {
  margin-right: 10px;
}

.download {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px solid #fff;
  padding: 45px 0;
}

.download:first-of-type {
  border-top: none;
  padding-top: 0;
}

.download_button-link {
  align-items: center;
}

.download_button-link i {
  margin-left: 10px;
}

.download_button {
  line-height: 1;
  display: flex;
  color: #303f55;
  text-transform: uppercase;
  padding-top: 33px;
}

.download_button:hover {
  color: #a08b71;
}

.download_button:hover i {
  background-image: url("/templates/4c2021/img/icons/noun_down-dot_accent-ochra.png");
}

.download_icon {
  display: inline-block;
  width: 21px;
  height: 14px;
  background-image: url("/templates/4c2021/img/icons/noun_down-dot_accent-blue.png");
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 5px;
}

.download li {
  list-style-image: url("/templates/4c2021/img/list-style-image.png");
}

.download_text {
  width: calc(100% - 250px);
  font-size: 1.1rem;
}

.download_text h5 {
  color: #a08b71;
  font-family: "Lato Bold", sans-serif;
  line-height: 1.6;
}

.download_text p, .download_text ul {
  line-height: 1.6;
}

.download_link {
  width: 250px;
}

.download_link img {
  margin-bottom: 10px;
}

.download_link .pdf {
  display: flex;
  align-items: center;
  font-family: "Lato Bold", sans-serif;
  text-transform: uppercase;
  color: #303f55;
}

.download_link .pdf:hover span {
  color: #cdc4b5;
}

.download_link .pdf:hover i {
  background-image: url("/templates/4c2021/img/icons/noun_down-dot_accent-ochra.png");
}

.download--insights .download {
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 45px 0;
  border-bottom: none;
}

.download--insights .download_link-insights {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  background-color: #fff;
  padding: 0 8px;
  height: 30px;
  line-height: 30px;
  color: #303f55;
  font-size: 1rem;
  border-radius: 4px;
}

.download--insights .download_text {
  width: 100%;
  max-width: 1200px;
  padding-top: 60px;
  color: #fff;
}

.download--insights .download_text h2, .download--insights .download_text h3, .download--insights .download_text h4, .download--insights .download_text h5 {
  color: #fff;
  font-size: 2rem;
  line-height: 1.35;
  font-family: Lato;
  letter-spacing: .1rem;
  text-align: center;
}

.download--insights .download_text p, .download--insights .download_text ul {
  font-size: 1.375rem;
  font-family: Lato Light;
  padding-top: 5px;
}

.download--insights .download_text p:last-of-type, .download--insights .download_text ul:last-of-type {
  margin-bottom: 0;
}

.download--insights .download_text p {
  line-height: 1.5;
  text-align: center;
}

.download--insights .download_text li {
  filter: brightness(0) invert(1);
}

.download--insights .download_link {
  padding-top: 50px;
}

.download--insights .download_button {
  display: flex;
  justify-content: center;
  background-color: #fff;
  text-transform: none;
  font-family: Lato;
  font-size: 1.2rem;
}

.download--preview {
  width: calc(100% - 120px) !important;
  max-width: 1365px;
  box-sizing: content-box;
  margin: auto;
  padding-bottom: 30px;
}

.download--preview .owl-stage {
  display: flex;
}

.download--preview .owl-stage-outer {
  padding-bottom: 14px;
}

.download--preview.owl-carousel .owl-item {
  min-height: 435px !important;
  flex: 1;
}

.download--preview.owl-carousel .owl-nav button.owl-next {
  position: absolute;
  right: 20px;
  top: calc(50% - 30px);
  display: block;
  width: 15px;
  height: 24px;
  color: transparent;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_blue.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.download--preview.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  left: 20px;
  top: calc(50% - 30px);
  display: block;
  width: 15px;
  height: 24px;
  color: transparent;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_blue.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  -ms-filter: "FlipH";
  filter: FlipH;
  text-align: right;
}

.download--preview .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
}

.download--preview .owl-dots {
  text-align: center;
}

.download--preview .owl-dots .owl-dot.active span, .download--preview .owl-theme .owl-dots .owl-dot:hover span {
  background-color: #869791;
}

.download--preview .download {
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: 435px;
  min-height: 435px;
  padding: 0;
  border-bottom: none;
}

.download--preview .download_background {
  height: 100%;
  padding: 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.download--preview .download_content {
  height: 100%;
  padding: 25px 22px;
  border-top: 8px solid #303f55;
  background-color: #fff;
}

.download--preview .download_label {
  display: flex;
  align-items: center;
  height: 20px;
  max-width: fit-content;
  padding: 4px 5px 5px;
  color: #fff;
  background-color: #303f55;
  border-radius: 5px;
  font-size: .75rem;
  text-transform: uppercase;
  letter-spacing: .05rem;
  line-height: 1;
}

.download--preview .download_text {
  width: fit-content;
  padding: 10px 0 18px;
}

.download--preview .download_text h5 {
  margin-bottom: .3rem;
  color: #303f55;
  font-family: Lato, sans-serif;
  font-size: 1.3rem;
  line-height: 1.35;
}

.download--preview .download_text p {
  line-height: 1.4;
}

.download--preview .download_text p:last-of-type {
  margin-bottom: 0;
}

.download--preview .download_text li {
  padding-bottom: 2px;
  line-height: 1.4;
}

.download--preview .download_button {
  justify-content: center;
  width: fit-content;
}

.download--preview .download_container.download_container--desktop {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.download--preview .download_container.download_container--mobile {
  display: none;
}

.download--preview .download_container.download_container--mobile .owl-dots .owl-dot {
  display: inline;
  background-color: transparent;
  border: none;
  padding: 0;
}

.download--preview .download_container.download_container--mobile .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 10px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
}

.download--preview .download_container.download_container--mobile .owl-dots {
  text-align: center;
}

.download--preview .download_container.download_container--mobile .owl-dots .owl-dot.active span, .download--preview .download_container.download_container--mobile .owl-theme .owl-dots .owl-dot:hover span {
  background-color: #869791;
}

.download--preview .infopool_loaddownloads {
  margin-top: 50px;
}

.download + .logos {
  padding-top: 45px;
}

.download_image {
  width: 100%;
  cursor: pointer;
  position: relative;
  border: 2px solid #deded7;
}

.download_image img {
  width: 100%;
  height: 100%;
}

.download_image_title {
  margin-bottom: 20px;
  display: block;
  margin-top: 0;
  line-height: 20px;
  font-size: 1.2rem;
  font-family: "Lato Bold", sans-serif;
}

.download_image_title a {
  color: #303f55 !important;
}

.download_image_small {
  background-image: url("/templates/4c2026/img/img2017/cfo_office.jpg");
  background-size: 260px 146px;
  width: 260px;
  height: 146px;
  background-repeat: no-repeat;
  display: block;
  margin-bottom: 35px;
  padding-bottom: 5px;
  background-color: #fff;
  padding-top: 5px;
  background-position: 0 5px;
}

.download_zoom {
  position: relative;
  display: block;
  padding-top: 33px;
  height: 34px;
}

.parallax-background-white .download {
  border-bottom-color: #f6f6f6;
}

.teasercategories {
  width: 100%;
  max-width: 1280px;
  margin: 0;
  padding: 0 50px 100px;
  list-style-type: none;
  display: flex;
  justify-content: center;
}

.teasercategories-padded {
  width: 100%;
  padding-left: 50px;
  padding-right: 50px;
}

.teasercategory-folding .teasercategory {
  height: 130px;
}

.teasercategory {
  position: relative;
  height: 185px;
  margin: 0 10px;
  background-color: rgba(48, 63, 85, .9);
  cursor: pointer;
}

.teasercategory:hover {
  background-color: rgba(255, 255, 255, .8);
}

.teasercategory:hover span {
  color: #303f55;
}

.teasercategory:hover .teasercategory_arrow {
  background-color: #fff;
}

.teasercategory:hover .teasercategory_icon {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_sand.png");
}

.teasercategory:hover a span:first-of-type, .teasercategory:hover span:first-of-type {
  color: #303f55;
  border-top-color: #303f55;
}

.teasercategory span:first-of-type {
  display: block;
  padding-top: 14px;
  color: #fff;
  font-size: 1.5rem;
  border-top: 3px solid #cdc4b5;
  hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
}

.teasercategory-padding {
  padding: 28px 32px;
}

.teasercategory_2col {
  width: calc(50% - 20px);
}

.teasercategory_3col {
  width: 33.33%;
}

.teasercategory_4col {
  width: 25%;
}

.teasercategory a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  padding: 28px 32px;
}

.teasercategory.open .teasercategory_arrow {
  background-color: #cdc4b5;
}

.teasercategory.open .teasercategory_icon {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_bottom_white.png");
  width: 24px;
  height: 15px;
}

.teaser_text {
  font-size: 1.1rem;
}

.teaser_preview-content {
  padding-right: 45px;
}

.teaser--regular {
  display: flex;
  justify-content: center;
  width: 100%;
}

.teaser--preview {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.teaser--preview .teaser {
  padding: 30px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.teaser--preview .teaser_container {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  column-gap: 30px;
  row-gap: 30px;
}

.teaser--preview .teaser_content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  position: relative;
  height: 100%;
  padding: 50px 20px;
  background-color: #fff;
}

.teaser--preview .teaser_text {
  text-align: center;
}

.teaser--preview .teaser_button {
  position: absolute;
  bottom: -12px;
  padding: 5px 8px 8px;
  background-color: #303f55;
  color: #fff;
  border-radius: 5px;
}

.teaser--preview .teaser_button:hover {
  color: #a08b71;
}

.teaser--preview .teaser_title {
  font-size: 1.5rem;
  font-family: Lato, sans-serif;
  text-align: center;
}

.teaser--preview .teaser_top-topic {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -22px;
  left: -20px;
  width: 55px;
  height: 55px;
  background-color: #fff;
  color: #303f55;
  border: 2px solid #303f55;
  border-radius: 50%;
  text-transform: uppercase;
  font-size: .65rem;
  text-align: center;
}

.teaser--preview .teaser_preview-content {
  display: none;
}

.teaser--foldable {
  width: 100%;
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fff;
}

.teaser--foldable .teaser {
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all .4s linear;
}

.teaser--foldable .teaser.mobile {
  display: none;
}

.teaser--foldable .teaser_container.desktop {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.teaser--foldable .teaser_container.desktop .teaser_background {
  opacity: .7;
}

.teaser--foldable .teaser_container.desktop .teaser.active .teaser_background {
  opacity: 1;
}

.teaser--foldable .teaser_container.desktop .teaser.active .teaser_collapsable-content {
  opacity: 1;
}

.teaser--foldable .teaser_container.desktop .teaser.active .teaser_active-line {
  opacity: 1;
}

.teaser--foldable .teaser_container.desktop .teaser_collapsable-content {
  opacity: .7;
}

.teaser--foldable .teaser_background {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 12vw;
  max-height: 240px;
  padding: 0 30px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all .4s linear;
}

.teaser--foldable .teaser_active-line {
  width: 100%;
  height: 30px;
  background-color: #303f55;
  opacity: 0;
  transition: all .4s linear;
}

.teaser--foldable .teaser_container {
  margin-bottom: 30px;
}

.teaser--foldable .teaser_container.mobile {
  display: none;
}

.teaser--foldable .teaser_content {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.teaser--foldable .teaser_title {
  margin-bottom: 0;
  font-family: "Lato Bold", sans-serif;
  font-size: 2rem;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  z-index: 2;
  word-wrap: break-word;
  -ms-word-wrap: break-word;
  word-break: break-word;
  text-shadow: rgba(18, 18, 18, .25) -.05em -.05em .2em;
}

.teaser--foldable .teaser_button {
  margin-top: 25px;
  color: #fff;
  background-color: #303f55;
  padding: 5px 12px 6px;
  border-radius: 4px;
  font-size: 1.05rem;
  font-family: "Lato Bold", sans-serif;
  letter-spacing: .045rem;
  cursor: pointer;
  transition: all .4s linear;
  z-index: 2;
}

.teaser--foldable .teaser_button .open {
  display: block;
}

.teaser--foldable .teaser_button .close {
  display: none;
}

.teaser--foldable .teaser.active .teaser_button .open {
  display: none;
}

.teaser--foldable .teaser.active .teaser_button .close {
  display: block;
}

.teaser--foldable .teaser_collapsable:first-of-type {
  display: block;
}

.teaser--foldable .teaser_collapsable {
  position: relative;
  display: none;
  padding: 45px 55px;
  background-color: #f6f6f6;
}

.teaser--foldable .teaser_collapsable-content {
  padding: 30px 25px;
  background-color: #f6f6f6;
  flex-grow: 1;
}

.teaser--foldable .teaser_close-button {
  position: absolute;
  right: 20px;
  top: 15px;
  cursor: pointer;
  font-size: 1.5rem;
}

.teaserlist {
  margin: 0 10px;
  padding: 50px 32px 45px;
  background-color: #cdc4b5;
}

.teaserlist h3 {
  margin-bottom: .5rem;
  font-family: Lato, sans-serif;
}

.teaserlist h3:hover {
  color: #fff;
}

.teaserlist .teaser {
  padding-bottom: 10px;
}

.teaserlist .teaser:last-of-type {
  padding-bottom: 0;
}

.teasercontainer {
  padding: 0 60px;
}

.teasercontainer ul.teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}

.teasercontainer li.teaser {
  padding: 16px 25px 25px;
  background-color: #fff;
  cursor: pointer;
}

.teasercontainer li.teaser:hover {
  color: #cdc4b5;
}

.teasercontainer li.teaser:hover a {
  color: #cdc4b5;
}

.teasercontainer li.teaser h3 {
  margin-bottom: 25px;
  font-family: "Lato Bold", sans-serif;
  font-size: 1.1rem;
}

.teasercontainer li.teaser h3 a {
  hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  color: #303f55;
}

.teasercontainer h5 {
  font-family: "Lato Bold", sans-serif;
  font-size: 1.1rem;
  padding-bottom: 2px;
}

.download-ebooklet_text .teasercontainer ul, .teasercontainer .download-ebooklet_text ul, .teasercontainer .list, .teasercontainer .text ul, .teasercontainer .textwithdownload ul, .teasercontainer .tinymce ul, .text .teasercontainer ul, .textwithdownload .teasercontainer ul, .tinymce .teasercontainer ul {
  width: 100%;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.teasercontainer .list_desc a {
  text-transform: uppercase;
  font-family: "Lato Bold", sans-serif;
  font-weight: 500 !important;
  color: #000 !important;
}

.teasercontainer .list_desc {
  float: left;
  width: calc(100% - 140px);
}

.teasercontainer .eventlist .list_desc {
  width: calc(100% - 140px);
}

.teasercontainer .list_desc h5 {
  margin-top: 0 !important;
  margin-bottom: 20px;
}

.teasercontainer .list_desc p {
  margin-bottom: 0 !important;
  line-height: normal !important;
}

.parallax-background {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
}

.parallax-background_title {
  padding-top: 40px;
}

.parallax-background_text {
  padding: 0 60px;
}

.parallax-background-white {
  background-color: #fff;
}

.parallax-background-white .teasercategory:hover {
  background-color: #f6f6f6;
}

.parallax-background-white .teasercontainer li.teaser {
  background-color: #f6f6f6;
}

.parallax-background-light {
  background-color: #f6f6f6;
}

.parallax-background-medium {
  background-color: #deded7;
}

.parallax-background-dark {
  background-color: silver;
}

.parallax-background-mint {
  background-color: #d4dfde;
}

.parallax-background-blue-gray-gradient {
  background-color: #6e7788;
  background-image: linear-gradient(180deg, #6e7788 0%, #f6f6f6 50%, #303f55 100%);
}

.parallax-background > .tinymce {
  width: 100%;
}

.teaser-image_container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 12px;
  max-width: 1320px;
  padding-bottom: 15px;
}

.teaser-image_image {
  width: 100%;
  padding-bottom: 67%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.teaser-image_title {
  padding: 12px 0 0;
}

.teaser-image_title h5 {
  font-family: "Lato Bold", sans-serif;
  font-size: 1.2rem;
}

.slider-pro .sp-slide .teaser-image_container {
  margin: 0 auto;
}

.accordeon_icon-arrow {
  position: absolute;
  left: 14px;
  top: 16px;
  width: 26px;
  height: 17px;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_bottom_blue.png");
  transition: background-image .8s ease-in-out;
  background-repeat: no-repeat;
  background-size: 25px auto;
  background-position: center;
}

.accordeon_icon-arrow:hover {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_bottom_white.png");
}

.accordeon_content .manager {
  padding-left: 0;
  padding-right: 5px;
}

.accordeon_content .manager_close {
  right: 5px;
  top: 5px;
}

.accordeon_content .teasercontainer {
  padding: 0;
}

.accordeon_content .teasercategories {
  padding-bottom: 0;
}

.accordeon_content .zitat_container:first-of-type {
  border-top: none;
}

.accordeon_content .tinymce {
  padding: 0;
}

.accordeon_content .tinymce + .download {
  padding-top: 30px;
}

.accordeon_content .blog-preview, .accordeon_content .download, .accordeon_content .logos, .accordeon_content .logoslidercontainer {
  padding-left: 0;
  padding-right: 0;
}

.accordeon_content .events {
  padding: 0;
}

.accordeon_open div.accordeon_header {
  border-bottom: none;
}

.accordeon_open div.accordeon_content {
  border-bottom: 3px solid #cdc4b5;
}

div.accordeon_container {
  margin-top: 0;
}

.accordeon_content > :last-child:not(.download) {
  padding-bottom: 0 !important;
}

div.accordeon_content {
  background-color: transparent;
  padding: 3% 0 40px;
}

.accordeon_open .accordeon_icon-arrow {
  transform: rotate(180deg);
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_bottom_white.png");
}

.accordeon_container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding-top: 28px;
}

.parallax-background .accordeon_container {
  max-width: 1160px;
}

div[class*=accordeon_container]:last-of-type {
  padding-bottom: 60px;
}

div.accordeon_header {
  padding-bottom: 30px;
  border-bottom: 3px solid #cdc4b5;
}

div.accordeon_header h3 {
  margin-left: 0;
  padding-bottom: 4px;
  font-family: "Lato Bold", sans-serif;
  font-size: calc(1.27rem + .15vw);
  color: #303f55;
}

div.accordeon_header p {
  margin-left: 0 !important;
  margin-bottom: 0;
  font-size: 1.1rem;
}

div.accordeon_header_begin {
  right: 0;
  bottom: 0;
  left: auto;
  top: auto;
  width: 53px;
  height: 46px;
  background-color: #cdc4b5;
  background-image: none;
}

.accordeon_open div.accordeon_header_begin {
  transform: none;
  background-image: none;
}

.contact-banner {
  height: 136px;
  max-width: 1120px;
  padding: 0 60px;
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-banner_text {
  color: #fff;
  font-size: 1.5rem;
  font-family: "Lato Bold", sans-serif;
  letter-spacing: .01rem;
}

.contact-banner_button {
  background-color: #303f55;
  display: block;
  padding: 0 40px;
  height: 60px;
  line-height: 60px;
  color: #fff;
  font-family: "Lato Bold Italic";
  letter-spacing: .01rem;
  white-space: nowrap;
}

.contact-banner_button:hover {
  color: #cdc4b5;
}

.manager {
  position: relative;
  max-width: 100%;
  width: 900px;
  padding: 15px;
  display: flex;
}

.manager_background {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  position: relative;
}

.manager_image {
  width: 25%;
  padding-top: 47px;
  padding-right: 13px;
}

.manager_image img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.manager_text {
  width: 75%;
  padding-left: 12px;
}

.manager_text h3 {
  border-bottom: 2px solid #cdc4b5;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.manager_position {
  font-family: "Lato Bold", sans-serif;
  font-size: 1.05rem;
  line-height: 1.4;
  padding-bottom: 14px;
}

.manager_description {
  line-height: 1.5;
  border-bottom: 2px solid #cdc4b5;
  padding-bottom: 20px;
}

.manager_email {
  padding-top: 15px;
}

.manager_close {
  top: 10px;
  right: 60px;
}

.manager_info {
  height: calc(70% - 25px);
  display: grid;
  grid-template-rows: 1fr 2fr 0fr;
  grid-auto-flow: column;
}

.manager_info p {
  margin-bottom: 4px;
  line-height: 1.7;
}

.manager_info .email {
  text-decoration: underline;
  display: block;
  padding-bottom: 6px;
}

.manager_teaser {
  display: flex;
  padding: 0 0 30px;
}

.manager_teaser_image {
  padding-right: 30px;
}

.manager_teaser_desc {
  display: flex;
  flex-direction: column;
  max-height: 200px;
}

.manager_name {
  font-size: 1.05rem;
  height: 30%;
  min-height: 46px;
}

.manager_name strong {
  color: #303f55;
}

.manager_name p {
  font-size: 1rem;
}

.manager_socialmedia {
  padding-top: 5px;
  padding-bottom: 8px;
}

.manager_socialmedia span {
  padding-right: 3px;
}

.manager_socialmedia a {
  padding: 0 5px;
}

.manager_profile-link {
  position: relative;
  padding-right: 20px;
  color: #303f55;
  width: 100px;
}

.manager_profile-link:after {
  content: "";
  position: absolute;
  height: 23px;
  width: 11px;
  right: 0;
  background-size: auto 21px;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_blue.png");
  background-repeat: no-repeat;
}

.manager_profile-link:hover {
  color: #cdc4b5;
}

.manager_profile-link:hover:after {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_sand.png");
}

.col_left .manager_teaser, .col_right .manager_teaser {
  width: 100%;
}

a.manager_linkedin, a.manager_xing {
  color: #303f55;
}

a.image_background {
  display: block;
  width: 200px;
  height: 200px;
  background-size: cover;
}

a.close {
  display: block;
  text-align: center;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 10px;
  right: 15px;
  cursor: pointer;
  background-image: url("/templates/4c2021/img/icons/noun_Close_2217430.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.page-contact .manager_info, .page-kontakt .manager_info {
  height: calc(70% - 36px);
}

.page-contact .manager_profile-link, .page-kontakt .manager_profile-link {
  width: 135px;
  margin-left: -15px;
  padding: 10px 20px 10px 15px;
  background-color: #fff;
}

.page-contact .manager_profile-link:after, .page-kontakt .manager_profile-link:after {
  right: 20px;
}

.page-contact .parallax-background-white .manager_profile-link, .page-kontakt .parallax-background-white .manager_profile-link {
  background-color: #f6f6f6;
}

.product-list {
  padding-bottom: 70px;
  margin: 0 auto;
}

.product-list_container {
  position: relative;
  display: flex;
  margin-bottom: 30px;
  padding: 50px 50px 60px 50px;
  background-color: #fff;
  border-bottom: 3px solid #cdc4b5;
}

.product-list_container:last-of-type {
  margin-bottom: 0;
}

.product-list_anchors {
  display: flex;
  padding: 45px 0;
}

.product-list_anchors li {
  position: relative;
}

.product-list_anchors li.active a, .product-list_anchors li:hover a {
  color: #303f55;
}

.product-list_anchors li.active .product-list_circle, .product-list_anchors li:hover .product-list_circle {
  border-color: #303f55;
}

.product-list_anchors li.active .product-list_circle-inner, .product-list_anchors li:hover .product-list_circle-inner {
  background-color: #303f55;
  width: 25px;
  height: 25px;
}

.product-list_anchors a {
  display: inline-block;
  width: 200px;
  padding: 40px 10px 60px;
  font-size: 1.125rem;
  font-family: "Lato Bold", sans-serif;
  color: #cdc4b5;
  text-align: center;
  hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
}

.product-list_anchors a:after {
  content: "";
  background: #cdc4b5;
  position: absolute;
  top: 0;
  height: 3px;
}

.product-list_anchors a.anchor-first:after {
  right: 0;
  width: 50%;
}

.product-list_anchors a.anchor-last:after {
  left: 0;
  width: 50%;
}

.product-list_anchors a.anchor-median:after {
  left: 0;
  width: 100%;
}

.product-list_circle {
  position: absolute;
  z-index: 1;
  top: -22px;
  left: calc(50% - 23px);
  width: 45px;
  height: 45px;
  border: 3px solid #cdc4b5;
  border-radius: 50%;
  background-color: #fff;
  cursor: pointer;
}

.product-list_circle-inner {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #cdc4b5;
}

.product-list_page-link {
  position: absolute;
  right: 0;
  bottom: -1px;
  height: 44px;
  padding: 0 25px;
  background-color: #cdc4b5;
  color: #303f55;
  text-transform: uppercase;
}

.product-list_page-link:hover {
  color: #fff;
}

.product-list_page-link:hover .product-list_link-icon {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_white.png");
}

.product-list_link-icon {
  margin-left: 10px;
}

.product-list_image--fullwidth {
  width: 100%;
}

.product-list_image--bordered {
  width: 300px;
  max-width: 100%;
  border: 2px solid #deded7;
}

.product-list_download {
  padding-right: 20px;
}

.product-list_download img {
  max-width: 100%;
  height: auto;
}

.product-list_image {
  height: auto;
  transition: all .3s ease-in-out;
}

.product-list_image-container {
  position: relative;
  padding-right: 50px;
  padding-bottom: 15px;
}

.product-list_image-container.video {
  margin-right: 50px;
  padding-bottom: 35.5%;
}

.product-list_image-right {
  flex-direction: row-reverse;
}

.product-list_image-right .product-list_download, .product-list_image-right .product-list_image-container {
  text-align: right;
  padding-right: 0;
  padding-left: 50px;
}

.product-list_image-right .product-list_image-container.video {
  margin-left: 50px;
  margin-right: 0;
}

.product-list_image:hover {
  transform: scale(1.1);
}

.product-list_title {
  margin-bottom: 1rem;
}

.product-list_text {
  line-height: 1.5;
}

.product-list--w33 {
  width: 33.33%;
}

.product-list--w66 {
  width: 66.66%;
}

.product-list--w50 {
  width: 50%;
}

.product-list--w100 {
  width: 100%;
}

.product-list--dnone {
  display: none;
}

.blog-preview {
  display: flex;
  justify-content: space-between;
  max-width: 1420px;
  padding: 0 0 60px;
  padding-top: 0;
  padding-bottom: 0;
}

.blog-preview_lead {
  position: relative;
  width: calc(50% - 30px / 2);
  margin-bottom: 30px;
  background-color: #f6f6f6;
  border-bottom: none;
}

.blog-preview_lead:hover {
  border-bottom-color: #303f55;
}

.blog-preview_lead:hover .blog-preview_arrow {
  background-color: #303f55;
}

.blog-preview_lead:hover .blog-preview_icon {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_sand.png");
}

.blog-preview_lead .blog-preview_arrow {
  width: 112px;
  background-color: #cdc4b5;
  bottom: 0;
}

.blog-preview_column {
  width: calc(50% - 30px / 2);
  /*
  display: flex;
  flex-direction: column;
  justify-content: space-between;
   */
  display: block;
  margin-bottom: 0;
}

.blog-preview_item {
  display: flex;
  margin-bottom: 30px;
  background-color: #f6f6f6;
  height: auto;
  flex-direction: column;
}

.blog-preview_item:hover .blog-preview_arrow {
  background-color: #303f55;
}

.blog-preview_item:hover .blog-preview_icon {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_sand.png");
}

.blog-preview_image-big {
  width: 100%;
  height: auto;
}

.blog-preview_image-small {
  width: 100%;
  max-width: initial;
  height: 70px;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.blog-preview_short-text {
  padding-bottom: 58px;
}

.blog-preview_info {
  position: relative;
  flex-grow: 1;
  padding: 5px 17px 20px;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-bottom: 10px;
}

.blog-preview_data {
  position: absolute;
  bottom: 17px;
  white-space: nowrap;
  overflow: hidden;
  max-width: 72%;
  text-overflow: ellipsis;
}

.blog-preview_data-offset-left-l {
  left: 40px;
}

.blog-preview_data-offset-left-s {
  left: 25px;
}

.blog-preview_text {
  display: block;
  padding: 5px 17px 0;
  line-height: 1.5;
}

.blog-preview_text h4 {
  margin-bottom: 1.2rem;
  line-height: 1.5;
}

.blog-preview_info h4 {
  position: relative;
  font-size: 1.1rem;
  hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  letter-spacing: normal;
}

.blog-preview-component {
  flex-wrap: wrap;
  width: 100%;
  max-width: 100%;
  padding: 0 60px 30px;
  gap: 15px;
  justify-content: left;
}

.blog-preview-component .blog-preview_item {
  width: calc(50% - 15px);
  background-color: #deded7;
  position: relative;
  flex: 0 0 calc((100% - 30px) / 3);
}

.blog-preview-component .blog-preview_item h4 {
  hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
}

.blog-preview-component .blog-preview_item:nth-child(2n) {
  margin-left: 15px;
}

.blog-preview-component .blog-preview_item:nth-child(odd) {
  margin-right: 15px;
}

.blog-preview-component .blog-preview_item .blog-preview_arrow {
  background-color: #303f55;
}

.blog-preview-component .blog-preview_item .blog-preview_info:hover .blog-preview_arrow {
  background-color: #fff;
}

.blog-preview-component .blog-preview_item .blog-preview_icon {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_sand.png");
}

.blog-archived {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-column-gap: 50px;
  grid-row-gap: 50px;
  max-width: 1420px;
  padding: 0 0 80px;
  padding-bottom: 80px;
}

.blog-archived_image-placeholder {
  width: 100%;
  height: 12.7vw;
  background-color: silver;
}

.blog-archived_image {
  display: block;
  max-width: 100%;
  height: auto;
}

.blog-archived_image-wrap {
  position: relative;
}

.blog-archived_image-hover {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 34px 30px 60px;
}

.blog-archived_image-hover:hover {
  background-color: rgba(48, 63, 85, .8);
}

.blog-archived_image-hover:hover h4 {
  display: block;
}

.blog-archived_image-hover h4 {
  color: #fff;
  display: none;
}

.blog-archived_item {
  position: relative;
  background-color: #fff;
}

.blog-archived_info {
  display: block;
  padding: 34px 30px 60px;
}

.blog-archived_info h4:hover {
  color: #cdc4b5;
}

.blog-archived_data {
  position: absolute;
  left: 30px;
  bottom: 37px;
}

.blog-single_content {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.blog-single_text {
  width: 100%;
  padding-bottom: calc(58px - 1rem);
}

.blog-single_share {
  display: flex;
  align-items: flex-end;
}

.blog-single_share span {
  color: #303f55;
  padding-right: 15px;
}

.blog-single_share a i {
  padding-left: 10px;
  color: #cdc4b5;
  font-size: 1.1rem;
}

.blog-single_share a i:hover {
  color: #303f55;
}

.blog-single_video {
  width: 100%;
  max-width: 640px;
  height: 360px;
  margin-bottom: 30px;
}

.blog-single_video iframe {
  width: 100%;
  height: 100%;
}

.blog-comments {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
}

.blog-comments_form .form {
  overflow: hidden;
}

.blog-comments_form .form form {
  width: calc(50% - 25px);
  display: flex;
  flex-direction: column;
}

.blog-comments_form .form form .form_row {
  width: 100%;
}

.blog-comments_form .form .row_comment {
  margin-left: 0;
}

.blog-comments_form .form_label {
  display: none;
}

.blog-comments_privacy {
  width: calc(50% - 25px);
  font-size: .9rem;
}

.blog-comments_list {
  width: calc(100% - 380px);
  padding-top: 14px;
}

.blog-comments_list h3 {
  padding-top: 5px;
  margin-bottom: 26px;
}

.blog-comments_text {
  line-height: 1.5;
}

.blog-comments_text a {
  padding-left: 5px;
  font-family: "Lato Bold";
  color: #303f55;
}

.blog-comments_text a:hover {
  color: #cdc4b5;
}

.blog-comments_text hr {
  margin: 34px 0 32px;
}

.blog-comments_text-child {
  padding-left: 130px;
}

.blog-more-info {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 60px 0 40px;
}

.blog-author-box {
  position: relative;
  flex-direction: column;
  width: calc(50% - 25px);
  padding: 40px 0 77px 60px;
  background-image: url("/templates/4c2021/img/sub/Subpage_Contact_Logo_Background_1800x938.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-bottom: 5px solid #303f55;
}

.blog-author-box_data {
  display: flex;
  width: 100%;
  padding-top: 20px;
}

.blog-author-box_data img {
  width: 172px;
}

.blog-author-box_info {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-left: 30px;
  line-height: 1.5;
}

.blog-author-box_info .manager_socialmedia {
  padding-bottom: 0;
}

.blog-author-box_info .email {
  color: #303f55;
}

.blog-author-box_name {
  color: #303f55;
  font-size: 1.05rem;
  cursor: pointer;
}

.blog-author-box img {
  cursor: pointer;
}

.blog-author-box .manager {
  height: auto;
  padding-bottom: 15px;
}

.blog-author-box .manager_close {
  top: 10px;
  right: 10px;
}

.blog-contact-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  width: calc(50% - 25px);
  background-color: rgba(48, 63, 85, .8);
  background-image: url("/templates/4c2021/img/blog/4C_web_Singular-Blog-Post_Banner_620x380px.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 40px 6.25vw 65px;
  border-bottom: 5px solid #cdc4b5;
}

.blog-contact-box h3, .blog-contact-box p {
  color: #fff;
  text-align: center;
}

.blog-contact-box h3 {
  margin-bottom: 1.3rem;
}

.blog-contact-box_button {
  position: absolute;
  right: 0;
  bottom: -5px;
  height: 69px;
  width: 264px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding-left: 30px;
  padding-right: 3px;
  text-transform: uppercase;
  background-color: #cdc4b5;
  color: #303f55;
}

.blog-contact-box_button:hover {
  color: #fff;
}

.blog-contact-box_button:hover .blog-contact-box_icon {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_white.png");
}

.blog-contact-box .blog-contact-box_arrow {
  height: 48px;
  width: 56px;
  background-color: #cdc4b5;
}

.download-ebooklet_form .form select {
  margin-bottom: 12px;
}

.download-ebooklet_form-helptext {
  display: inline-block;
  font-size: .875rem;
  padding-bottom: 31px;
}

.download-ebooklet {
  padding-top: 60px;
  background-color: #fff;
}

.download-ebooklet_row {
  display: flex;
  justify-content: space-between;
}

.download-ebooklet_column {
  width: calc(50% - 15px);
}

.download-ebooklet_intro {
  padding: 0 0 80px;
}

.download-ebooklet_intro h2 {
  margin-bottom: 1.8rem;
}

.download-ebooklet_form-container {
  background-color: #f6f6f6;
  height: 750px;
}

.download-ebooklet_background {
  position: relative;
  height: 600px;
  padding-top: 300px;
  background-image: url("/templates/4c2021/img/sub/e-booklet-download-background.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.download-ebooklet_slider p {
  padding-top: 30px;
  margin-bottom: 0;
}

.download-ebooklet_slider-heading {
  margin-bottom: 20px;
}

.download-ebooklet_slider .image-slider {
  flex-direction: column;
  padding: 0;
}

.download-ebooklet_slider .image-slider_desc {
  display: none;
}

.download-ebooklet_slider .image-slider_stage {
  width: 100%;
}

.download-ebooklet_form {
  position: absolute;
  top: 300px;
  right: 60px;
  width: calc(100% - 440px);
  min-width: 950px;
  min-height: 336px;
  padding: 40px 15px;
  background-color: #fff;
  border-bottom: 5px solid #303f55;
}

.download-ebooklet_form-column {
  width: calc(50% - 15px);
}

.download-ebooklet_form-column--first {
  display: flex;
  flex-direction: column;
  width: 66.66%;
  padding: 0 15px;
}

.download-ebooklet_form-column--second {
  width: 33.33%;
  padding: 0 15px;
}

.download-ebooklet_form-column-two {
  padding-top: 127px;
}

.download-ebooklet_form-subtitle {
  padding-bottom: 15px;
}

.download-ebooklet_form-privacy {
  padding: 3px 0 0;
}

.download-ebooklet_form .form form {
  display: flex;
}

.download-ebooklet_form .form_row {
  display: flex;
  justify-content: space-between;
}

.download-ebooklet_form .form_field {
  width: 100%;
}

.download-ebooklet_form .form_field_checkbox {
  display: flex;
  align-items: center;
  width: 25px;
}

.download-ebooklet_form .form_label_checkbox {
  width: 100%;
}

.download-ebooklet_form .form_field-column {
  width: calc(50% - 7px);
}

.download-ebooklet_form .form_submitbutton {
  width: 148px;
  background-color: #303f55;
}

.download-ebooklet_form .form_submitbutton .formbutton {
  width: 148px;
  height: 48px;
  margin-bottom: 0;
  padding-right: 0;
  color: transparent;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_white.png");
}

.download-ebooklet_form .form_submitbutton .formbutton:hover {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_ochra.png");
}

.download-ebooklet_form-header {
  width: 100%;
}

.download-ebooklet_form-fields {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.download-ebooklet_summary {
  position: absolute;
  left: 60px;
  bottom: 50px;
  width: 300px;
  color: #fff;
}

.download-ebooklet_summary h5 {
  font-family: "Lato Bold";
  font-size: 1.375rem;
  color: #fff;
}

.download-ebooklet_summary ul {
  list-style: disc;
  padding-left: 20px;
}

.image-slider {
  display: flex;
  width: 100%;
}

.image-slider-left {
  flex-direction: row-reverse;
}

.image-slider-left .image-slider_desc {
  padding-right: 0;
  padding-left: 30px;
}

.image-slider-left .image-slider_desc p:has(+ .showmore) {
  margin-bottom: .25rem;
}

.image-slider_desc {
  width: 50%;
  padding-right: 30px;
}

.image-slider_desc p:has(+ .showmore) {
  margin-bottom: .25rem;
}

.image-slider_stage {
  width: 50%;
}

.stage {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.stagecontainer {
  height: 28.5vw !important;
  max-height: 600px;
  margin-bottom: 40px;
}

.stage .stage_item {
  position: absolute;
  display: none;
  left: 0;
  top: 0;
  width: 100%;
  background-repeat: no-repeat;
  overflow: hidden;
  height: 100%;
  background-size: contain;
  background-position: center top;
}

.stage .stage_item + a {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.stage .stage_content {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 62px;
  padding-left: 20px;
  padding-right: 20px;
}

.stage .stage_content h4 {
  font-size: 1.1rem;
  margin: 0;
  color: #000;
  font-weight: 400;
  margin-top: 5px;
}

.stage .stage_content p {
  line-height: normal !important;
}

.betterslider_prev {
  transform: rotate(180deg);
  position: absolute;
  left: 0 !important;
  bottom: 0 !important;
  top: unset !important;
  z-index: 0;
  cursor: pointer;
}

.betterslider_next {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 0;
  cursor: pointer;
}

.betterslider_pagination {
  position: absolute;
  bottom: 2px;
  left: 40%;
  width: 23%;
  text-align: center;
}

.betterslider_pagination a {
  background-color: #cdc4b5;
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-left: 3px;
  margin-right: 3px;
  cursor: pointer;
}

.betterslider_pagination a.current {
  background-color: #303f55;
}

.logoslider {
  height: 110px;
}

.logoslidercontainer {
  width: 100%;
  max-width: 1600px;
  height: 150px;
  margin: 0 auto;
  padding: 20px 60px;
}

.logoslidercontainer .stage {
  max-width: 100%;
}

.logoslideritem {
  width: 15%;
  margin-right: 2%;
  float: left;
  height: 110px;
  background-color: #fff;
  position: relative;
}

.logoslideritem_logo {
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

.teaser-slider_container {
  margin-bottom: 50px;
}

.teaser-slider_container.owl-carousel .owl-nav button.owl-next, .teaser-slider_container.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  bottom: 0;
  z-index: 0;
  cursor: pointer;
  color: transparent;
}

.teaser-slider_container.owl-carousel .owl-nav button.owl-prev {
  transform: rotate(180deg);
  left: 200px;
}

.teaser-slider_container.owl-carousel .owl-nav button.owl-next {
  right: 200px;
  bottom: 0;
}

.teaser-slider_container .owl-dots {
  position: absolute;
  bottom: 2px;
  left: 40%;
  width: 20%;
  text-align: center;
}

.teaser-slider_container.owl-carousel button.owl-dot {
  background-color: #cdc4b5;
}

.teaser-slider_container .owl-dot {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin-left: 3px;
  margin-right: 3px;
  cursor: pointer;
}

.teaser-slider_container.owl-carousel button.owl-dot.active {
  background-color: #303f55;
}

.teaser-slider_image {
  padding-bottom: 67%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.teaser-slider_title {
  padding: 12px 0 0;
}

.teaser-slider_title h5 {
  font-family: "Lato Bold", sans-serif;
  font-size: 1.1rem;
}

.teaser-slider_container.v2024 {
  max-width: 1365px;
  box-sizing: content-box;
}

.teaser-slider_container.v2024 .teaser-slider {
  display: flex;
  justify-content: space-between;
}

.teaser-slider_container.v2024 .teaser-slider_image {
  width: 49%;
  padding-bottom: initial;
  min-height: 330px;
}

.teaser-slider_container.v2024 .teaser-slider_content {
  width: 51%;
  padding-left: 30px;
}

.teaser-slider_container.v2024 .teaser-slider_content h3 {
  font-size: 1.75rem;
  font-family: "Lato Bold", sans-serif;
}

.teaser-slider_container.v2024 .teaser-slider_button {
  margin-top: 20px;
}

.teaser-slider_container.v2024 .owl-nav {
  position: absolute;
  height: 40px;
  left: 0;
  right: 0;
  top: calc(50% - 20px);
}

.teaser-slider_container.v2024 .owl-next, .teaser-slider_container.v2024 .owl-prev {
  height: 40px;
  width: 21px;
}

.teaser-slider_container.v2024.owl-carousel .owl-nav button.owl-prev {
  left: 25px;
}

.teaser-slider_container.v2024.owl-carousel .owl-nav button.owl-next {
  right: 25px;
}

.teaser-slider_container.v2024 .owl-dots {
  bottom: -40px;
}

.events {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
}

.events_tab-content {
  padding: 80px 60px 45px;
  background-color: #fff;
}

.event {
  display: flex;
  position: relative;
  width: calc(50% - 15px);
  max-height: 303px;
  margin-bottom: 30px;
  overflow: hidden;
}

.event:nth-child(odd) {
  margin-right: 15px;
}

.event:nth-child(2n) {
  margin-left: 15px;
}

.event_image {
  line-height: 0;
}

.event_image img {
  width: 100%;
  height: auto;
}

.event_image-small {
  width: 20%;
  max-width: 120px;
}

.event_image-small img {
  width: 100%;
  max-width: 120px;
  height: auto;
}

.event_image-big {
  width: 48%;
  max-width: 300px;
}

.event_image-big img {
  width: 100%;
  max-width: 300px;
  height: auto;
}

.event_desc {
  padding-left: 30px;
}

.event_desc h4 {
  margin-bottom: 20px;
  font-size: 1.375rem;
  color: #303f55;
}

.event_desc h5 {
  font-family: "Lato Bold";
}

.event_desc p {
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.5;
}

.event_desc-wide {
  width: 80%;
}

.event_desc-wide p {
  font-size: 1.05rem;
  line-height: 1.25;
}

.event_desc-wide p a {
  color: #a08b71;
}

.event_desc-short {
  width: 52%;
  padding-bottom: 47px;
}

.event_button {
  margin-bottom: -1px;
  cursor: pointer;
}

.event_icon:hover {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_white.png");
}

.event_form {
  padding: 0 60px;
}

.event-border-bottom {
  border-bottom: 3px solid #cdc4b5;
}

.event-details_text-image {
  display: flex;
  justify-content: space-between;
}

.event-details_text-image .download-ebooklet_text, .event-details_text-image .text {
  padding-right: 20px;
}

.event-details_more {
  flex-direction: column;
  width: 100%;
  padding-top: 80px;
}

.event-details_anchor-links {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 990px;
  padding-bottom: 80px;
}

.event-details_anchor-links a {
  position: relative;
  height: 82px;
  line-height: 82px;
  padding-left: 30px;
  border-bottom: 3px solid #cdc4b5;
  background-color: #303f55;
  color: #cdc4b5;
  font-size: 1.55rem;
}

.event-details_anchor-links a.col-100 {
  width: 100%;
}

.event-details_anchor-links a.col-50 {
  width: calc(50% - 10px);
}

.event-details_anchor-links a.col-33 {
  width: calc(33.33% - 10px);
}

.event-details_anchor-links a.col-25 {
  width: calc(25% - 10px);
}

.event-details_anchor-links a:hover {
  background-color: #fff;
}

.event-details_anchor-links a:hover .arrow {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_bottom_white.png");
}

.event-details_form {
  position: relative;
  width: 100%;
  margin-top: 90px;
  padding-bottom: 80px;
}

.event-details_form .form {
  position: relative;
  width: 100%;
  max-width: 990px;
  margin-top: -90px;
  padding: 35px 20px 100px;
  background-color: #cdc4b5;
  border-bottom: 3px solid #303f55;
}

.event-details_form .form .textarea, .event-details_form .form input.download-ebooklet_text, .event-details_form .form input.text, .event-details_form .form select {
  border-color: #deded7;
  background-color: #cdc4b5;
  margin-bottom: 0;
}

.event-details_form .form label {
  visibility: hidden;
}

.event-details_form .form_submitbutton {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 48px;
  min-width: 180px;
}

.event-details_form .form_submitbutton .formbutton {
  width: 100%;
  height: 100%;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_white.png");
  background-position: calc(100% - 20px) center;
  text-align: center;
  font-family: Lato, sans-serif;
  color: #fff;
  background-color: #303f55;
}

.event-details_form .form_submitbutton .formbutton:hover {
  color: #cdc4b5;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_sand.png");
}

.event-details_form .form_row.row_title .form_label {
  display: none;
}

.event-details_prebooking-form-background {
  position: absolute;
  z-index: 0;
  left: -60px;
  top: 0;
  right: -60px;
  bottom: 0;
  border-top: 3px solid #cdc4b5;
  background-image: url("/content/events/img/4c_web_39_1920x1080px.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.event-details_speaker {
  position: relative;
  width: 100%;
  padding-top: 84px;
}

.event-details_speaker .manager_background {
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
  padding-top: 80px;
}

.event-details_agenda {
  position: relative;
  width: 100%;
  padding-top: 84px;
}

.event-details_agenda .textdownload {
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
  padding-top: calc(80px - 1rem);
}

.event-details_title {
  position: absolute;
  top: 0;
  left: -60px;
  width: calc(100% + 120px);
  height: 84px;
  background-color: #f6f6f6;
  border-bottom: 3px solid #cdc4b5;
}

.event-details_title h3 {
  position: relative;
  margin-bottom: 0;
  width: 100%;
  max-width: 990px;
}

.event-details_title-square {
  position: absolute;
  left: 0;
  bottom: -40px;
  z-index: 10;
  height: 14px;
  width: 17px;
  background-color: #cdc4b5;
}

.events-teaser-slider {
  padding: 0 50px;
  max-width: 1365px;
  box-sizing: content-box;
}

.events-teaser-slider_slide {
  position: relative;
  width: 100%;
  height: 410px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center -80px;
}

.events-teaser-slider_headline {
  width: 80%;
  padding-left: 30px;
  padding-top: 70px;
}

.events-teaser-slider_subtitle, .events-teaser-slider_title {
  color: #fff;
}

.events-teaser-slider_title {
  font-size: 2.1rem;
  font-family: "Lato Bold", sans-serif;
  letter-spacing: .075rem;
}

.events-teaser-slider_subtitle {
  font-size: 1rem;
  padding-top: 12px;
  letter-spacing: .025rem;
}

.events-teaser-slider_apply-now {
  position: absolute;
  right: 20px;
  top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  background-color: #ff7900;
  color: #fff;
  text-transform: uppercase;
  border-radius: 50%;
  text-align: center;
  font-size: .9rem;
  font-family: "Lato Bold", sans-serif;
  letter-spacing: .025rem;
}

.events-teaser-slider_time-data {
  position: absolute;
  height: 150px;
  width: 100%;
  bottom: 0;
  padding-bottom: 50px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  background-color: #f6f6f6;
  letter-spacing: .065rem;
  line-height: 1.2;
}

.events-teaser-slider_time-data > div {
  display: flex;
  align-items: center;
}

.events-teaser-slider_button {
  position: absolute;
  bottom: 37px;
  left: calc(50% - 70px);
  background-color: #303f55;
  color: #fff;
  border-radius: 5px;
  line-height: 24px;
  padding: 0 16px 3px;
  letter-spacing: .035rem;
}

.events-teaser-slider_button:hover {
  color: #cdc4b5;
}

.events-teaser-slider_line--white {
  width: 100%;
  height: 50px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
}

.events-teaser-slider.owl-carousel .owl-nav button.owl-next, .events-teaser-slider.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  bottom: calc(50% - 12px);
  z-index: 0;
  cursor: pointer;
  color: transparent;
}

.events-teaser-slider.owl-carousel .owl-nav button.owl-prev {
  transform: rotate(180deg);
  left: 0;
}

.events-teaser-slider.owl-carousel .owl-nav button.owl-next {
  right: 0;
}

.events-teaser-slider .owl-dots {
  position: absolute;
  bottom: 0;
  left: calc(50% - 20px);
  margin-left: -8px;
  counter-reset: slides-num;
}

.events-teaser-slider .owl-dots:after {
  content: counter(slides-num);
  display: inline-block;
  font-size: 1.5rem;
  line-height: 1;
  vertical-align: middle;
  margin-left: 0;
}

.events-teaser-slider .owl-dot {
  display: inline-block;
  counter-increment: slides-num;
  margin-right: 10px;
}

.events-teaser-slider .owl-dot span {
  display: none;
}

.events-teaser-slider .owl-dot.active:before {
  position: absolute;
  left: -11px;
  top: 0;
  display: inline-block;
  vertical-align: middle;
  content: counter(slides-num) " / ";
  font-size: 1.5rem;
  line-height: 1.05;
  font-weight: 700;
}

.logos.simple {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding: 0;
  line-height: 1.5;
}

.logos.simple .partner {
  width: 15%;
  height: 125px;
}

.logos.simple .partnerlogo {
  display: block;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto 80%;
}

.logos.simple .partner_text {
  padding-right: 30px;
  hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
}

.logos.download-ebooklet_text, .logos.text {
  padding: 0;
  line-height: 1.5;
}

.logos.download-ebooklet_text .partner, .logos.text .partner {
  display: flex;
}

.logos.download-ebooklet_text .partnerlogo, .logos.text .partnerlogo {
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center center;
}

.logos.download-ebooklet_text .partner_text, .logos.text .partner_text {
  padding-right: 30px;
  hyphens: auto;
  -ms-hyphens: auto;
  -moz-hyphens: auto;
  -webkit-hyphens: auto;
}

.real_character {
  margin-top: -60px;
  padding: 100px 0 0;
  font-size: 1.1rem;
  background-color: #fff;
}

.real_character h1 {
  padding-left: 60px;
}

.real_character_intro {
  display: flex;
  position: relative;
  padding: 0 60px 50px;
}

.real_character_title {
  width: 60%;
  padding-bottom: 60px;
}

.real_character_slogan {
  width: 60%;
  padding-left: 50px;
}

.real_character_quote {
  position: relative;
  width: 70%;
  padding-left: 85px;
  font-size: 1.375rem;
  color: #8b8b83;
}

.real_character_quote em {
  line-height: 1.5;
}

.real_character_quote span {
  position: absolute;
  top: -16px;
  left: 25px;
  font-size: 134px;
  line-height: 1;
}

.real_character_quote_author {
  text-align: right;
  padding-top: 15px;
}

.real_character_photo {
  width: 35%;
}

.real_character_image {
  width: 100%;
  padding-bottom: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.real_character_story {
  padding: 70px 60px 145px;
  background-color: #f6f6f6;
  line-height: 1.5;
}

.real_character_story h3 {
  font-size: calc(1.3625rem + .84375vw);
  margin-bottom: 35px;
}

.real_character_story section {
  columns: 2;
}

.real_character_personal {
  display: flex;
  padding: 60px 60px;
}

.real_character_personal-text {
  width: 25%;
  padding: 10px 30px 30px 0;
}

.real_character_personal-text strong {
  letter-spacing: .25px;
}

.real_character_personal-text div {
  padding-top: 35px;
}

.real_character_personal-photo {
  position: absolute;
  left: 65%;
  bottom: 58px;
  width: 247px;
  height: 272px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #a08b71;
  flex-shrink: 0;
}

.real_character_cv {
  position: relative;
  width: 75%;
  height: 532px;
}

.real_character_cv-text {
  position: absolute;
  height: 640px;
  width: 67%;
  margin-top: -127px;
  display: flex;
  align-items: center;
  padding: 0 14% 0 12%;
  background-color: #deded7;
}

.real_character_cv-text li {
  padding: 16px 0 8px;
  border-bottom: 3px solid #cdc4b5;
}

.real_character_cv-text li span {
  color: #303f55;
  font-family: "Lato Bold", sans-serif;
}

.real_character_cv-sign {
  position: absolute;
  left: 30px;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 65px;
  height: 100px;
  padding-bottom: 20px;
  font-size: 1.75rem;
  font-family: "Lato Light", sans-serif;
  color: #fff;
  background-color: #cdc4b5;
}

.rc23 {
  margin-top: -60px;
  font-size: 1.1rem;
  line-height: 1.5;
}

.rc23_intro {
  padding: 90px 60px 40px;
  display: flex;
  justify-content: space-between;
  background-color: #fff;
}

.rc23_slogan, .rc23_story {
  width: calc(50% - 20px);
}

.rc23_slogan p {
  font-family: "Lato Light", sans-serif;
  font-size: 2.375rem;
  color: #006f9e;
}

.rc23_slogan b {
  display: block;
  padding-top: 25px;
}

.rc23_personal {
  display: flex;
  justify-content: space-between;
  background-color: #deded7;
}

.rc23_personal-photo {
  width: 50%;
  background-size: cover;
  background-position: center;
}

.rc23_personal-cv {
  width: 50%;
  padding: 50px 30px 35px 60px;
}

.rc23_personal-cv li {
  position: relative;
  padding-left: 15px;
  padding-bottom: 15px;
}

.rc23_personal-cv li::before {
  position: absolute;
  left: 0;
  top: 4px;
  content: "";
  background-size: auto 15px;
  background-repeat: no-repeat;
  background-position: bottom;
  height: 16px;
  width: 10px;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_blue.png");
}

.rc23_personal-intro {
  padding-bottom: 30px;
}

.rc23_list {
  display: grid !important;
  grid-template-columns: repeat(6, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 50px;
  width: 100%;
  padding-top: 30px;
}

.rc23_list-item {
  display: flex;
  flex-direction: column;
  font-size: 1.1rem;
}

.rc23_list-image {
  height: 335px;
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  filter: grayscale(.9);
}

.rc23_slider {
  position: relative;
}

.rc23_slider .owl-dots {
  display: none;
}

.rc23_slider .owl-carousel .owl-nav {
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  display: flex;
  justify-content: center;
  height: 48px;
}

.rc23_slider .owl-carousel .owl-nav button.owl-next, .rc23_slider .owl-carousel .owl-nav button.owl-prev {
  height: 48px;
  width: 56px;
  background-color: transparent;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_blue.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px auto;
}

.rc23_slider .owl-carousel .owl-nav button.owl-next span, .rc23_slider .owl-carousel .owl-nav button.owl-prev span {
  color: transparent;
}

.rc23_slider .owl-carousel .owl-nav button.owl-next:hover, .rc23_slider .owl-carousel .owl-nav button.owl-prev:hover {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_sand.png");
  background-position: center 10px;
  background-color: transparent;
}

.rc23_slider .owl-carousel .owl-nav button.owl-prev {
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  -ms-filter: "FlipH";
}

.searchresults h1, .searchresults hr {
  display: none;
}

.searchresults_form {
  display: flex;
  padding: 40px 0 82px;
  background-color: #f6f6f6;
}

.searchresults .form {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.searchresults input.download-ebooklet_text, .searchresults input.text {
  width: calc(100% - 330px);
}

.searchresults .formbutton {
  width: 300px;
  background-color: #deded7;
  background-image: none;
  text-align: center;
  color: #303f55;
  letter-spacing: 0;
}

.searchresults .formbutton:hover {
  background-image: none;
}

.searchresults_list {
  padding: 60px 60px 0;
  background-color: #fff;
}

.searchresults_list .download {
  padding-left: 0;
  border-top-color: #cdc4b5;
}

.searchresults_list .download_text h5 {
  color: #303f55;
}

.searchresults_list:last-of-type {
  padding-bottom: 60px;
}

.searchresults .noresult {
  padding-top: 20px;
}

.searchresult_title {
  font-size: calc(1.3475rem + .73125vw);
}

.searchresult_link {
  color: #303f55;
}

.searchresult-margin-bottom {
  margin-bottom: 75px;
}

.character {
  width: 150px;
  height: 150px;
  position: relative;
  cursor: pointer;
  margin: 0 20px 80px;
  padding: 0 20px 60px;
}

.character strong {
  position: absolute;
  top: 140px;
  left: 0;
  right: 0;
  text-align: center;
  width: 100%;
}

.character_container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin: 0 auto;
  padding: 30px 60px;
}

.characterimage {
  position: absolute;
  left: 10px;
  width: 130px;
  height: 130px;
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 50%;
}

.network {
  position: relative;
  width: 100%;
  background-color: #fff;
}

.network_wrap {
  display: flex;
  width: 100%;
  padding: 30px 0;
  background-color: #fff;
}

.network_intro {
  width: 25%;
  min-width: 400px;
  margin-right: 30px;
  padding: 60px;
  background-color: #f6f6f6;
}

.network_intro h3 {
  color: #a08b71;
}

.network_logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 20px;
  grid-row-gap: 20px;
  flex-grow: 1;
  padding: 40px 60px 60px;
  background-color: #f6f6f6;
}

.network_logo {
  height: 100px;
  padding: 15px 25px;
  border-bottom: 3px solid #cdc4b5;
}

.network_logo-image {
  display: block;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.network .teasercategory_2col {
  width: 100%;
}

.video {
  display: flex;
  align-items: center;
}

.video_embed {
  flex-shrink: 0;
  position: relative;
  margin-bottom: 50px;
}

.video_desc {
  flex-grow: 1;
}

.video iframe {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.video--left .video_embed {
  margin-right: 30px;
  padding: 36px 0 0 28px;
}

.video--right {
  flex-direction: row-reverse;
}

.video--right .video_embed {
  margin-left: 30px;
  padding: 0 28px 36px 0;
}

.video--right .video_square--right {
  bottom: 0;
}

.video--top {
  position: relative;
  flex-direction: column;
  padding: 36px 28px;
}

.video--top .video_embed {
  width: 100%;
  max-width: 1280px;
  margin-bottom: 30px;
  z-index: 2;
}

.video--top .video_subtitle {
  font-size: .9rem;
  bottom: -60px;
}

.video_square {
  position: absolute;
  width: 35%;
  height: 55%;
  background-color: #303f55;
}

.video_square--left {
  top: 0;
  left: 0;
}

.video_square--right {
  right: 0;
  bottom: 30px;
  z-index: 1;
}

.video_iframe {
  position: relative;
  width: 100%;
  padding-bottom: 56%;
}

.video_subtitle {
  position: absolute;
  bottom: -40px;
}

.video--w33 {
  width: 33.33%;
}

.video--w50 {
  width: 50%;
}

.video--w66 {
  width: 66.66%;
}

.video--w100 {
  width: 100%;
}

.video--dnone {
  display: none;
}

.value-teaser {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  max-width: 1410px;
  padding-top: 20px;
  padding-bottom: 60px;
}

.value-teaser_header {
  position: relative;
  height: 200px;
  padding: 50px 25px 0;
  cursor: pointer;
  background-color: #cdc4b5;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.value-teaser_header h4, .value-teaser_header h5 {
  color: #fff;
}

.value-teaser_header h4 {
  font-family: "Lato Light", sans-serif;
  font-size: 1.875rem;
  letter-spacing: .05rem;
}

.value-teaser_header h5 {
  font-size: 1rem;
  letter-spacing: .01rem;
}

.value-teaser_item {
  max-width: 300px;
}

.value-teaser_arrow {
  position: absolute;
  right: 18px;
  bottom: 15px;
  z-index: 2;
}

.value-teaser_arrow-open {
  width: 24px;
  height: 15px;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_bottom_white.png");
}

.value-teaser_text {
  display: none;
  min-height: 310px;
  padding: 25px 30px 30px;
  background-color: #f6f6f6;
  line-height: 1.5;
}

.partner-slider.v2023 .partner-slider_title {
  position: relative;
  left: auto;
  top: auto;
  color: inherit;
}

.partner-slider.v2023 .partner-slider_image {
  position: relative;
  right: auto;
  top: auto;
  height: 100%;
  width: 100%;
  border-radius: 0;
  border: none;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  filter: grayscale(100%);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
}

.partner-slider.v2023 .partner-slider_image:hover {
  -webkit-filter: none;
  -moz-filter: none;
  -o-filter: none;
  filter: none;
}

.partner-slider.v2023 .partner-slider_item {
  position: relative;
  width: 225px;
  height: 320px;
  padding-top: 0;
  border-bottom: none;
  padding-bottom: 20px;
}

.partner-slider.v2023 .partner-slider_container {
  margin-left: -60px;
  margin-right: -60px;
}

.partner-slider.v2023 .partner-slider_profile {
  padding-top: 40px;
}

.partner-slider.v2023 .partner-slider_profile-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.partner-slider.v2023 .partner-slider_profile-item {
  width: 100%;
}

.partner-slider.v2023 .partner-slider_profile-item h3 {
  margin-bottom: 5px;
  font-family: Lato, sans-serif;
  font-size: calc(1.3625rem + .84375vw);
  font-weight: 400;
}

.partner-slider.v2023 .partner-slider_profile-item h5.partner-slider_role {
  font-size: 1.1rem;
}

.partner-slider.v2023 .partner-slider_role {
  padding-bottom: 15px;
  margin-bottom: 0;
}

.partner-slider.v2023 .partner-slider_profile-presentation {
  width: 66.66%;
  padding-top: 10px;
  padding-right: 50px;
}

.partner-slider.v2023 .partner-slider_profile-header {
  width: 100%;
}

.partner-slider.v2023 .partner-slider_profile-text {
  padding-bottom: 35px;
}

.partner-slider.v2023 .partner-slider_profile-expertise {
  width: 33.33%;
  padding-left: 30px;
  border-left: 1px solid #525252;
}

.partner-slider.v2023 .partner-slider_profile-expertise h5 {
  text-transform: uppercase;
  margin-bottom: 15px;
}

.partner-slider.v2023 .partner-slider_profile-expertise ul {
  padding-bottom: 30px;
}

.partner-slider.v2023 .partner-slider_profile-container.no-sidebar .partner-slider_profile-presentation {
  width: 100%;
}

.partner-slider.v2023 .partner-slider_social-media {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  margin: 0 5px 10px 0;
  color: #fff;
  background-color: #525252;
  border-radius: 5px;
}

.partner-slider.v2023 .partner-slider_video {
  position: relative;
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 52.4633207373%;
}

.partner-slider.v2023 .partner-slider_video a, .partner-slider.v2023 .partner-slider_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.partner-slider.v2023 .partner-slider_video-container {
  width: 100%;
  max-width: 900px;
}

.partner-slider.v2023 .owl-carousel .owl-stag-outer {
  overflow-x: hidden;
  overflow-y: visible;
}

.partner-slider.v2023 .owl-nav {
  right: 0;
  bottom: auto;
  top: -75px;
  width: auto;
  display: flex;
  justify-content: center;
  height: 48px;
}

.partner-slider.v2023 .owl-carousel .owl-nav button.owl-next, .partner-slider.v2023 .owl-carousel .owl-nav button.owl-prev {
  background-color: transparent;
}

.partner-slider.v2023 .owl-carousel .owl-nav button.owl-next:hover, .partner-slider.v2023 .owl-carousel .owl-nav button.owl-prev:hover {
  background-color: transparent;
  border-bottom: none;
}

.partner-slider.v2023 .owl-item.active.center {
  transform: scale(1.05);
}

.partner-slider.v2023 .owl-item.active.center .partner-slider_image {
  position: absolute;
  top: 25px;
  -webkit-filter: none;
  -moz-filter: none;
  -o-filter: none;
  filter: none;
}

.partner-slider.v2023 #partner-slider.owl-carousel {
  height: 340px;
}

.partner-slider {
  position: relative;
  width: 100%;
}

.partner-slider_title {
  position: absolute;
  left: 60px;
  top: 100px;
  color: silver;
}

.partner-slider_item {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 990px;
  padding-top: 450px;
  border-bottom: 3px solid #cdc4b5;
}

.partner-slider_textbox {
  position: relative;
  width: 700px;
  max-width: 100%;
  max-height: 450px;
  padding: 45px 30px 98px;
  background-color: #f6f6f6;
}

.partner-slider_text {
  max-height: 240px;
  overflow-y: auto;
  padding-right: 5px;
}

.partner-slider_image {
  position: absolute;
  right: 6px;
  top: -35px;
  height: 120px;
  width: 120px;
  border-radius: 50%;
  border: 1px solid #fff;
  background-size: cover;
  background-repeat: no-repeat;
}

.partner-slider_bgimage {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  left: 0;
  background-repeat: no-repeat;
  background-position: 45% top;
  filter: brightness(120%);
}

.partner-slider_name-big {
  position: absolute;
  top: 100px;
  width: 100%;
  display: flex;
  justify-content: center;
  color: #f6f6f6;
  font-size: 12rem;
  white-space: nowrap;
}

.partner-slider_name-small {
  margin-bottom: 5px;
}

.partner-slider_role {
  padding-bottom: 35px;
  font-size: 1.1rem;
  color: #303f55;
}

.partner-slider_at a {
  position: absolute;
  left: 30px;
  bottom: 35px;
  font-family: "Lato Bold", sans-serif;
  font-size: 1.7rem;
  color: silver;
}

.partner-slider_at a:hover {
  color: #303f55;
}

.partner-slider_nav {
  display: flex;
  justify-content: center;
}

.partner-slider_nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 145px;
  padding: 20px 10px 60px;
}

.partner-slider_nav-item img {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  filter: grayscale(100%);
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
}

.partner-slider_nav-item:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -o-filter: none;
  filter: none;
}

.partner-slider_nav-item span {
  padding-top: 14px;
  text-align: center;
}

.partner-slider .owl-carousel {
  position: relative;
  width: auto;
}

.partner-slider .owl-carousel .owl-item {
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.partner-slider .owl-dots {
  position: absolute;
}

.partner-slider .owl-nav {
  position: absolute;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  height: 48px;
}

.partner-slider .owl-carousel .owl-nav button.owl-next, .partner-slider .owl-carousel .owl-nav button.owl-prev {
  height: 48px;
  width: 56px;
  background-color: #cdc4b5;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_blue.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px auto;
}

.partner-slider .owl-carousel .owl-nav button.owl-next span, .partner-slider .owl-carousel .owl-nav button.owl-prev span {
  color: transparent;
}

.partner-slider .owl-carousel .owl-nav button.owl-next:hover, .partner-slider .owl-carousel .owl-nav button.owl-prev:hover {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_sand.png");
  background-color: #fff;
  background-position: center 10px;
  border-bottom: 3px solid #cdc4b5;
}

.partner-slider .owl-carousel .owl-nav button.owl-prev {
  -moz-transform: scaleX(-1);
  -o-transform: scaleX(-1);
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
  -ms-filter: "FlipH";
}

.partner-slider.v2023 .partner-slider_grid {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-left: -60px;
  margin-right: -60px;
}

.partner-slider.v2023 .partner-slider_grid .partner-slider_item {
  width: 300px;
  flex: 0 0 300px;
  height: 400px;
  cursor: pointer;
}

.partner-slider.v2023 .partner-slider_grid .partner-slider_item.active .partner-slider_image {
  position: absolute;
  top: 25px;
  -webkit-filter: none;
  -moz-filter: none;
  -o-filter: none;
  filter: none;
}

.partner-slider.v2023 .partner-slider_profile--static .partner-slider_profile-item {
  display: none;
}

.partner-slider.v2023 .partner-slider_profile--static .partner-slider_profile-item.active {
  display: block;
}

.press-teaser {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 80px;
  grid-row-gap: 80px;
  padding-top: 20px;
  padding-bottom: 80px;
  width: 100%;
}

.press-teaser_item {
  position: relative;
  padding-bottom: 15px;
  border-bottom: 3px solid #cdc4b5;
}

.press-teaser h4 {
  margin-bottom: 22px;
}

.press-teaser_loadmore {
  display: block;
  padding-bottom: 60px;
  font-size: 1.5rem;
}

.press-teaser_link p {
  padding-bottom: 20px;
  color: #a08b71;
}

.press-teaser_data {
  position: absolute;
  bottom: 15px;
  font-size: 1.1rem;
}

.press-teaser_arrow:hover .press-teaser_icon {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_white.png");
}

.press-teaser_back {
  width: 100%;
  padding-top: 45px;
}

.press-info {
  display: flex;
  background-color: #a0b2b9;
}

.press-info.download-ebooklet_text a.email, .press-info.text a.email {
  font-family: Lato, sans-serif;
  text-decoration: none;
}

.press-info_contact {
  padding: 65px 100px 65px 0;
  color: #fff;
}

.press-info_contact h3 {
  padding-bottom: 30px;
}

.press-info_contact h4 {
  color: #fff;
  font-size: 1.2rem;
  font-family: Lato;
  letter-spacing: .03rem;
}

.press-info_contact a.email {
  color: #fff;
}

.press-info_material {
  position: relative;
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
}

.press-info_background {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  right: -60px;
  bottom: 0;
  background-image: url("/templates/4c2021/img/component/press-background.jpg");
  background-repeat: no-repeat;
  background-size: cover;
}

.press-info_downloads {
  position: relative;
  z-index: 1;
  padding: 65px 40px;
}

.press-info_downloads h3 {
  padding-bottom: 30px;
}

.press-info_downloads h4 {
  padding-bottom: 5px;
  color: #a0b2b9;
  font-size: 1.2rem;
  font-family: Lato;
  letter-spacing: .03rem;
}

.press-info_download {
  position: relative;
  padding-left: 20px;
}

.press-info_download:hover:before {
  background-image: url("/templates/4c2021/img/icons/noun-checkmark-2193607-cdc4b5.png");
}

.press-info_download:before {
  content: "";
  background-image: url("/templates/4c2021/img/icons/noun-checkmark-2193607-303f55.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 17px;
  height: 22px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.press-info_title-padding-top {
  padding-top: 40px;
}

.jobs_banner {
  line-height: 0;
}

.jobs_banner img {
  width: 100%;
  height: auto;
}

.jobs_textdownload {
  padding-bottom: 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.jobs_description {
  width: 75%;
  padding-right: 4%;
}

.jobs_download {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 25%;
}

.jobs_download-image {
  width: 300px;
  max-width: 100%;
  height: 188px;
  padding: 0 30px;
  background-color: #003327;
  color: #cdc4b5;
  font-family: "Lato Bold", sans-serif;
  font-size: 2rem;
  letter-spacing: .05rem;
  text-transform: uppercase;
}

.jobs_download-image:hover {
  color: #cdc4b5;
}

.jobs_container-fullwidth {
  display: flex;
  justify-content: space-between;
  border-top: 35px solid #fff;
  border-bottom: 30px solid #fff;
}

.jobs_container {
  position: relative;
  width: 70%;
  padding-top: 45px;
  padding-bottom: 100px;
}

.jobs_benefits {
  display: flex;
  padding: 0 60px 25px;
  border-bottom: 30px solid #fff;
}

.jobs_benefits h3 {
  padding-right: 60px;
}

.jobs_benefits-moreinfo {
  display: none;
  hyphens: auto;
}

.jobs_requirements {
  padding: 50px 60px 40px;
}

.jobs_conditions {
  display: flex;
  width: calc(100% - (2 * 60px));
  padding-top: 18px;
  margin-left: 60px;
  border-top: 3px solid #a08b71;
}

.jobs_conditions .column {
  width: 33.33%;
}

.jobs_conditions h5 {
  margin-bottom: .25rem;
  font-size: 1.25rem;
  color: #a08b71;
}

.jobs_conditions h5.pt-1 {
  padding-top: 1.4rem;
}

.jobs_conditions p {
  margin-bottom: .1rem;
}

.jobs_share i {
  padding-right: 10px;
}

.jobs_start-here {
  position: absolute;
  right: 30px;
  bottom: 38px;
  font-family: "Lato Bold", sans-serif;
  font-size: 2rem;
  letter-spacing: .15rem;
  text-transform: uppercase;
}

.jobs_start-here a {
  color: #003327;
}

.jobs_start-here a:hover {
  color: #cdc4b5;
}

.jobs_download img, .jobs_start-here img {
  width: 100%;
  max-width: 360px;
  height: auto;
}

.jobs_similar-positions {
  width: 30%;
  padding: 50px 60px 20px 30px;
  border-left: 30px solid #fff;
}

.jobs_similar-positions h3 {
  text-align: center;
  margin-bottom: 60px;
}

.jobs_similar-positions h5 {
  margin-top: 1rem;
  font-size: 1.25rem;
  color: #303f55;
}

.jobs_similar-positions p {
  padding-top: 12px;
  padding-right: 5px;
}

.jobs_similar-position {
  display: block;
  position: relative;
  padding-bottom: 34px;
  margin-bottom: 50px;
}

.jobs_similar-position:hover {
  color: #cdc4b5;
}

.jobs_similar-position:hover h5 {
  color: #cdc4b5;
}

.jobs_similar-position:hover .jobs_arrow {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_sand.png");
}

.jobs_arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
}

.jobs.v2024 {
  background-color: #fff;
  padding-top: 0;
}

.jobs.v2024 .jobs_row {
  display: grid;
  padding-bottom: 24px;
}

.jobs.v2024 .jobs_row--66-33 {
  grid-template-columns: 2fr 1fr;
}

.jobs.v2024 .jobs_row--33-66 {
  grid-template-columns: 1fr 2fr;
}

.jobs.v2024 .jobs_row--33-33-33 {
  grid-template-columns: 1fr 1fr 1fr;
}

.jobs.v2024 .jobs_row--wogap {
  grid-column-gap: 0;
}

.jobs.v2024 .jobs_column-gap--left {
  border-left: solid 12px #fff;
}

.jobs.v2024 .jobs_column-gap--right {
  border-right: solid 12px #fff;
}

.jobs.v2024 .jobs_benefits, .jobs.v2024 .jobs_description, .jobs.v2024 .jobs_download, .jobs.v2024 .jobs_download-pdf, .jobs.v2024 .jobs_requirements {
  background-color: #f6f6f6;
}

.jobs.v2024 .jobs_download-pdf {
  text-align: right;
  padding-right: 60px;
  font-family: "Lato Bold", sans-serif;
  font-size: 1.1rem;
  line-height: 70px;
}

.jobs.v2024 .jobs_download-pdf a:hover {
  color: #cdc4b5 !important;
}

.jobs.v2024 .jobs_description {
  width: inherit;
  padding: 50px 60px 40px;
  min-height: 420px;
}

.jobs.v2024 .jobs_benefits {
  padding: 50px 60px 40px;
  border-bottom: none;
}

.jobs.v2024 .jobs_video {
  padding: 32px 60px 32px 32px;
  background-color: #f6f6f6;
}

.jobs.v2024 .jobs_video .video_iframe {
  padding-bottom: 0;
  height: 100%;
}

.jobs.v2024 .jobs_video iframe {
  width: 100%;
  height: 100%;
}

.jobs.v2024 .jobs_apply-now {
  padding: 35px 0 23px;
  background-color: #f6f6f6;
}

.jobs.v2024 .jobs_apply-now img {
  width: 100%;
  max-width: 360px;
  height: auto;
}

.jobs.v2024 .jobs_apply-now--padding {
  padding: 32px 60px;
}

.jobs.v2024 .jobs_apply-now-text {
  position: relative;
  background-color: #f6f6f6;
}

.jobs.v2024 .jobs_overflow-box {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: absolute;
  bottom: 0;
  left: -24px;
  right: -24px;
  height: 400px;
  padding: 32px 84px 32px 32px;
  border-top: 24px solid #fff;
  border-left: 24px solid #fff;
  background-color: #f6f6f6;
  overflow: auto;
}

.jobs.v2024 .jobs_similar-positions {
  overflow: hidden;
  width: 100%;
  padding: 40px 60px 0;
  background-color: #f6f6f6;
}

.jobs.v2024 .jobs_similar-positions h3 {
  margin-bottom: 70px;
}

.jobs.v2024 .jobs_similar-positions .owl-carousel .owl-nav button.owl-next, .jobs.v2024 .jobs_similar-positions .owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  bottom: 0;
  z-index: 0;
  cursor: pointer;
  color: transparent;
}

.jobs.v2024 .jobs_similar-positions .owl-carousel .owl-nav button.owl-prev {
  transform: rotate(180deg);
  left: 0;
}

.jobs.v2024 .jobs_similar-positions .owl-carousel .owl-nav button.owl-next {
  right: 0;
}

.jobs.v2024 .jobs_similar-position {
  margin-bottom: 0;
}

.jobs.v2024 .jobs_contact-person, .jobs.v2024 .jobs_facts, .jobs.v2024 .jobs_quicklinks {
  background-color: #f6f6f6;
}

.jobs.v2024 .jobs_contact-person h4, .jobs.v2024 .jobs_facts h4, .jobs.v2024 .jobs_quicklinks h4 {
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-family: Lato, sans-serif;
}

.jobs.v2024 .jobs_facts {
  padding: 32px 32px 32px 60px;
}

.jobs.v2024 .jobs_facts table {
  border-spacing: 0;
}

.jobs.v2024 .jobs_facts td {
  padding: 5px 0;
}

.jobs.v2024 .jobs_facts td:first-of-type {
  min-width: 150px;
  vertical-align: top;
}

.jobs.v2024 .jobs_facts-table--valign-top {
  vertical-align: top;
  padding-right: 10px;
}

.jobs.v2024 .jobs_contact-person {
  padding: 32px;
}

.jobs.v2024 .jobs_contact-person .manager_teaser {
  padding-bottom: 0;
}

.jobs.v2024 .jobs_quicklinks {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 60px 32px 32px;
}

.jobs.v2024 .jobs_quicklinks-external, .jobs.v2024 .jobs_quicklinks-internal {
  display: flex;
  gap: 30px;
}

.jobs.v2024 .jobs_quicklinks-external > div, .jobs.v2024 .jobs_quicklinks-internal > div {
  width: 50%;
}

.jobs.v2024 .jobs_quicklinks-external--right, .jobs.v2024 .jobs_quicklinks-internal--right {
  text-align: right;
}

.jobs.v2024 .jobs_quicklinks-internal a {
  width: 160px;
  margin-bottom: 5px;
  text-align: center;
}

.jobs.v2024 .jobs_quicklinks-external--right {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 20px;
}

.jobs.v2024 .jobs_quicklinks .fa-facebook-f {
  font-size: 1.75em;
}

.jobs.v2024 .jobs_icon {
  height: 35px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.jobs.v2024 .jobs_icon--kununu {
  width: 50px;
  background-image: url("/templates/4c2021/img/icons/4cgroup_kununu.png");
}

.jobs.v2024 .jobs_icon--kununu:hover {
  background-image: url("/templates/4c2021/img/icons/4cgroup_kununu_hover.png");
}

.jobs.v2024 .jobs_icon--instagram {
  width: 35px;
  background-image: url("/templates/4c2021/img/icons/4cgroup_instagram.png");
}

.jobs.v2024 .jobs_icon--instagram:hover {
  background-image: url("/templates/4c2021/img/icons/4cgroup_instagram_hover.png");
}

.jobs.v2024 a.jobs_benefits:hover .job-benefits_item {
  color: #303f55;
}

.job-teaser {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
  max-width: 1410px;
  padding-top: 20px;
  padding-bottom: 60px;
}

.job-teaser_item {
  position: relative;
  min-height: 238px;
  background-size: cover;
  padding: 40px 60px 20px 30px;
}

.job-teaser_item h3 {
  color: #fff;
  text-transform: uppercase;
}

.job-teaser_item p {
  color: #fff;
  line-height: 1.4;
}

.job-teaser_arrow {
  position: absolute;
  right: 18px;
  bottom: 15px;
  z-index: 2;
}

.job-benefits {
  display: flex;
  justify-content: center;
  width: 100%;
}

.job-benefits_item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 25px;
  color: #a08b71;
}

.job-benefits_item img {
  flex-grow: 0;
  height: 75px;
  width: auto;
  padding-bottom: 15px;
}

.quality-tiles {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  width: 100%;
  color: #fff;
  text-align: center;
}

.quality-tiles h3 {
  text-transform: uppercase;
  margin-bottom: 6px;
  font-size: 1.8rem;
  letter-spacing: .1rem;
}

.quality-tiles a {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  bottom: 30px;
  width: 100%;
}

.quality-tiles a .rsaquo {
  font-size: 1.5rem;
  padding-left: 5px;
}

.quality-tiles a, .quality-tiles h3 {
  color: #fff;
}

.quality-tiles_item {
  position: relative;
  height: 220px;
  display: flex;
  flex-direction: column;
  padding-top: 59px;
  background-color: #cdc4b5;
  cursor: pointer;
}

.quality-tiles_item:hover {
  background-color: #303f55;
}

.quality-tiles_intro {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
}

.quality-tiles_more {
  position: absolute;
  bottom: 30px;
}

.quality-tiles_text {
  display: none;
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  background-color: #303f55;
  line-height: 1.5;
}

.quality-tiles--centered {
  position: absolute;
  width: 100%;
  top: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0;
  padding: 0 10%;
}

.icon-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  width: 100%;
  padding-bottom: 60px;
  text-align: center;
}

.icon-tiles_container a {
  width: 100%;
  display: inline-block;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 700;
}

.icon-tiles_item {
  padding: 30px 0;
  color: #303f55;
  font-size: 1.1rem;
  border-top: 1px solid #303f55;
  border-bottom: 1px solid #303f55;
}

.icon-tiles_item p {
  margin-bottom: 0;
}

.icon-tiles_item img {
  padding-bottom: 25px;
  height: 200px;
}

.icon-tiles_text {
  padding-top: 30px;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
}

.text_tile_tiles {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  margin: 0 -15px;
}

.text_tile_title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
  color: #000;
  border: 2px solid #303f55;
  padding: 25px 15px;
  width: calc(25% - 30px);
  min-height: 100px;
  text-overflow: ellipsis;
  text-align: center;
  margin: 0 15px;
  cursor: pointer;
  box-sizing: border-box;
}

.text_tile_title_icon {
  background-repeat: no-repeat;
  background-position: center 10px;
  background-size: auto 100px;
  padding-top: 120px;
}

.text_tile_title:hover {
  background-color: #303f55;
  color: #fff;
}

.text_tile_content {
  padding-top: 25px;
  margin-left: 25%;
  margin-right: 25%;
}

.text_tile_text {
  display: none;
  padding-bottom: 20px;
}

.text_tile-open {
  background-color: #303f55;
  color: #fff;
}

.banner-carousel .owl-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}

.banner-carousel .owl-nav {
  display: none;
}

.banner-carousel .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
}

.banner-carousel .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #d6d6d6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity .2s ease;
  border-radius: 30px;
}

.banner-carousel .owl-dots .owl-dot.active span, .banner-carousel .owl-dots .owl-dot:hover span {
  background: #fff;
}

.content-sub > .banner-carousel {
  margin-top: -72px;
}

.tabs23 {
  width: 100%;
}

.tabs23_titles {
  display: flex;
  flex-wrap: wrap;
}

.tabs23_title {
  padding-right: 35px;
  padding-bottom: 15px;
  cursor: pointer;
  color: #a08b71;
}

.tabs23_title.active {
  font-family: "Lato Bold", sans-serif;
  color: #303f55;
}

.tabs23_title.active span {
  border: none;
}

.tabs23_title span {
  border-bottom: 1px solid #a08b71;
  padding-bottom: 3px;
}

.tabs23_content-areas {
  padding-top: 20px;
}

.tabs23_content {
  display: none;
}

.tabs23_content:first-of-type {
  display: block;
}

.tabs23_content > div {
  max-height: 388px;
  padding-right: 15px;
  overflow-y: scroll;
}

.headline {
  display: flex;
  width: 100%;
  font-family: Lato, Arial;
  align-items: center;
  margin: 0;
}

.headline_container {
  position: relative;
  box-sizing: content-box;
  width: 100%;
  height: 50px;
  padding: 20px 0;
}

.headline_line {
  flex-grow: 1;
  height: 1px;
  width: 100%;
}

.headline_line-left {
  text-align: right;
  padding-right: 10%;
}

.headline_line-left .headline_text {
  padding-left: 25px;
}

.headline_line-right {
  flex-direction: row-reverse;
  text-align: left;
  padding-left: 10%;
}

.headline_line-right .headline_text {
  padding-right: 25px;
}

.headline_line-full {
  height: 50px;
  text-align: center;
}

.headline_line-full .headline_text {
  padding: 0 25px;
}

.headline_dark {
  color: #303f55;
}

.headline_dark .headline_line {
  background-color: #303f55;
}

.headline_light .headline_text {
  color: #fff;
}

.headline_light .headline_line {
  background-color: #fff;
}

.headline_text {
  white-space: nowrap;
}

.text-image {
  display: flex;
  gap: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}

.text-image--row-reverse {
  flex-direction: row-reverse;
}

.text-image__image {
  width: 50%;
  text-align: center;
}

.text-image__image img {
  max-width: 100%;
  height: auto;
}

.text-image__content {
  width: 50%;
}

.text-image__showless, .text-image__showmore {
  cursor: pointer;
}

@charset "UTF-8";
.fancybox-image, .fancybox-inner, .fancybox-nav, .fancybox-nav span, .fancybox-outer, .fancybox-skin, .fancybox-tmp, .fancybox-wrap, .fancybox-wrap iframe, .fancybox-wrap object{

  padding: 0;
  margin: 0;
  border: 0;
  outline: 0;
  vertical-align: top

}

.fancybox-wrap {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 8020;
}

.fancybox-opened {
  z-index: 8030;
}

.fancybox-opened .fancybox-skin {
  -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
  -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
  box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
}

.fancybox-inner, .fancybox-outer {
  position: relative;
}

.fancybox-inner {
  overflow: hidden;
}

.fancybox-type-iframe .fancybox-inner {
  -webkit-overflow-scrolling: touch;
}

.fancybox-error {
  color: #444;
  font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 15px;
  white-space: nowrap;
}

.fancybox-iframe, .fancybox-image {
  display: block;
  width: 100%;
  height: 100%;
}

.fancybox-image {
  max-width: 100%;
  max-height: 100%;
}

#fancybox-loading, .fancybox-close, .fancybox-next span, .fancybox-prev span {
  background-image: url('fancybox_sprite.png');
}

#fancybox-loading {
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -22px;
  margin-left: -22px;
  background-position: 0 -108px;
  opacity: .8;
  cursor: pointer;
  z-index: 8060;
}

#fancybox-loading div {
  width: 44px;
  height: 44px;
  background: url('fancybox_loading.gif') center center no-repeat;
}

.fancybox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  z-index: 8040;
}

.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  background: transparent url('blank.gif');
  -webkit-tap-highlight-color: transparent;
  z-index: 8040;
}

.fancybox-prev {
  left: 0;
}

.fancybox-next {
  right: 0;
}

.fancybox-nav span {
  position: absolute;
  top: 50%;
  width: 36px;
  height: 34px;
  margin-top: -18px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
}

.fancybox-prev span {
  left: 10px;
  background-position: 0 -36px;
}

.fancybox-next span {
  right: 10px;
  background-position: 0 -72px;
}

.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-tmp {
  position: absolute;
  top: -99999px;
  left: -99999px;
  visibility: hidden;
  max-width: 99999px;
  max-height: 99999px;
  overflow: visible !important;
}

.fancybox-lock {
  overflow: hidden !important;
  width: auto;
}

.fancybox-lock body {
  overflow: hidden !important;
}

.fancybox-lock-test {
  overflow-y: hidden !important;
}

.fancybox-overlay {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  display: none;
  z-index: 8010;
  background: url('fancybox_overlay.png');
}

.fancybox-overlay-fixed {
  position: fixed;
  bottom: 0;
  right: 0;
}

.fancybox-lock .fancybox-overlay {
  overflow: auto;
  overflow-y: scroll;
}

.fancybox-title {
  visibility: hidden;
  font: normal 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
  position: relative;
  text-shadow: none;
  z-index: 8050;
}

.fancybox-opened .fancybox-title {
  visibility: visible;
}

.fancybox-title-float-wrap {
  position: absolute;
  bottom: 0;
  right: 50%;
  margin-bottom: -35px;
  z-index: 8050;
  text-align: center;
}

.fancybox-title-float-wrap .child {
  display: inline-block;
  margin-right: -100%;
  padding: 2px 20px;
  background: rgba(0, 0, 0, .8);
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  text-shadow: 0 1px 2px #222;
  color: #fff;
  font-weight: 700;
  line-height: 24px;
  white-space: nowrap;
}

.fancybox-title-outside-wrap {
  position: relative;
  margin-top: 10px;
  color: #fff;
}

.fancybox-title-inside-wrap {
  padding-top: 10px;
}

.fancybox-title-over-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  padding: 10px;
  background: rgba(0, 0, 0, .8);
}

@font-face{

  font-family: "Lato Light";
  src: url(/templates/4c2026/font/Lato-Light.ttf) format("truetype")

}

@font-face{

  font-family: Lato;
  src: url(/templates/4c2026/font/Lato-Regular.ttf) format("truetype")

}

@font-face{

  font-family: "Lato Bold";
  src: url(/templates/4c2026/font/Lato-Bold.ttf) format("truetype")

}

@font-face{

  font-family: "Lato Italic";
  src: url(/templates/4c2026/font/Lato-Italic.ttf) format("truetype")

}

@font-face{

  font-family: "Lato Bold Italic";
  src: url(/templates/4c2026/font/Lato-BoldItalic.ttf) format("truetype")

}

.banner_fancybox .banner_fancybox-content h2, .h2, h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  color: #303f55;
}

h3 {
  font-family: Lato, sans-serif;
  margin-bottom: 1rem;
  line-height: 1.3;
  font-size: calc(1.27rem + .15vw);
  letter-spacing: .04rem;
}

h4 {
  font-family: "Lato Bold", sans-serif;
  margin-bottom: .5rem;
  line-height: 1.2;
  font-size: 1.1rem;
  letter-spacing: .02rem;
}

ol + h4, p + h4, ul + h4 {
  padding-top: 1rem;
}

h5 {
  font-family: "Lato Light", sans-serif;
  margin-bottom: .5rem;
  line-height: 1.3;
  font-size: 1.1rem;
}

h6 {
  margin-bottom: .5rem;
  line-height: 1.3;
  font-size: 1.1rem;
}

.fourc_large_white {
  font-size: 2rem;
  line-height: 2.4rem;
  color: #fff;
}

.cursor-pointer {
  cursor: pointer;
}

@-moz-document url-prefix(){

  body {
    font-weight: lighter !important
  }

}

a#menu_icon span:nth-child(1) {
  top: 0;
}

a#menu_icon.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

.blog-loadblogarticles {
  display: block;
  width: 100%;
  margin-bottom: 30px;
  text-align: center;
}

.event:nth-child(even) {
  margin-left: 15px;
}

.text-image__image--smaller {
  width: 60%;
}

.fa, .fab, .fad, .fal, .far, .fas {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}

.fa-lg {
  font-size: 1.33333em;
  line-height: .75em;
  vertical-align: -.0667em;
}

.fa-xs {
  font-size: .75em;
}

.fa-sm {
  font-size: .875em;
}

.fa-1x {
  font-size: 1em;
}

.fa-2x {
  font-size: 2em;
}

.fa-3x {
  font-size: 3em;
}

.fa-4x {
  font-size: 4em;
}

.fa-5x {
  font-size: 5em;
}

.fa-6x {
  font-size: 6em;
}

.fa-7x {
  font-size: 7em;
}

.fa-8x {
  font-size: 8em;
}

.fa-9x {
  font-size: 9em;
}

.fa-10x {
  font-size: 10em;
}

.fa-fw {
  text-align: center;
  width: 1.25em;
}

.fa-ul {
  list-style-type: none;
  margin-left: 2.5em;
  padding-left: 0;
}

.fa-ul > li {
  position: relative;
}

.fa-li {
  left: -2em;
  position: absolute;
  text-align: center;
  width: 2em;
  line-height: inherit;
}

.fa-border {
  border: .08em solid #eee;
  border-radius: .1em;
  padding: .2em .25em .15em;
}

.fa-pull-left {
  float: left;
}

.fa-pull-right {
  float: right;
}

.fa.fa-pull-left, .fab.fa-pull-left, .fal.fa-pull-left, .far.fa-pull-left, .fas.fa-pull-left {
  margin-right: .3em;
}

.fa.fa-pull-right, .fab.fa-pull-right, .fal.fa-pull-right, .far.fa-pull-right, .fas.fa-pull-right {
  margin-left: .3em;
}

.fa-spin {
  -webkit-animation: fa-spin 2s linear infinite;
  animation: fa-spin 2s linear infinite;
}

.fa-pulse {
  -webkit-animation: fa-spin 1s steps(8) infinite;
  animation: fa-spin 1s steps(8) infinite;
}

@-webkit-keyframes fa-spin{

  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }

}

@keyframes fa-spin{

  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }

}

.fa-rotate-90 {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.fa-rotate-180 {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.fa-rotate-270 {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}

.fa-flip-horizontal {
  -webkit-transform: scaleX(-1);
  transform: scaleX(-1);
}

.fa-flip-vertical {
  -webkit-transform: scaleY(-1);
  transform: scaleY(-1);
}

.fa-flip-both, .fa-flip-horizontal.fa-flip-vertical {
  -webkit-transform: scale(-1);
  transform: scale(-1);
}

:root .fa-flip-both, :root .fa-flip-horizontal, :root .fa-flip-vertical, :root .fa-rotate-180, :root .fa-rotate-270, :root .fa-rotate-90 {
  -webkit-filter: none;
  filter: none;
}

.fa-stack {
  display: inline-block;
  height: 2em;
  line-height: 2em;
  position: relative;
  vertical-align: middle;
  width: 2.5em;
}

.fa-stack-1x, .fa-stack-2x {
  left: 0;
  position: absolute;
  text-align: center;
  width: 100%;
}

.fa-stack-1x {
  line-height: inherit;
}

.fa-stack-2x {
  font-size: 2em;
}

.fa-inverse {
  color: #fff;
}

.fa-500px:before {
  content: "\f26e";
}

.fa-accessible-icon:before {
  content: "\f368";
}

.fa-accusoft:before {
  content: "\f369";
}

.fa-acquisitions-incorporated:before {
  content: "\f6af";
}

.fa-ad:before {
  content: "\f641";
}

.fa-address-book:before {
  content: "\f2b9";
}

.fa-address-card:before {
  content: "\f2bb";
}

.fa-adjust:before {
  content: "\f042";
}

.fa-adn:before {
  content: "\f170";
}

.fa-adversal:before {
  content: "\f36a";
}

.fa-affiliatetheme:before {
  content: "\f36b";
}

.fa-air-freshener:before {
  content: "\f5d0";
}

.fa-airbnb:before {
  content: "\f834";
}

.fa-algolia:before {
  content: "\f36c";
}

.fa-align-center:before {
  content: "\f037";
}

.fa-align-justify:before {
  content: "\f039";
}

.fa-align-left:before {
  content: "\f036";
}

.fa-align-right:before {
  content: "\f038";
}

.fa-alipay:before {
  content: "\f642";
}

.fa-allergies:before {
  content: "\f461";
}

.fa-amazon:before {
  content: "\f270";
}

.fa-amazon-pay:before {
  content: "\f42c";
}

.fa-ambulance:before {
  content: "\f0f9";
}

.fa-american-sign-language-interpreting:before {
  content: "\f2a3";
}

.fa-amilia:before {
  content: "\f36d";
}

.fa-anchor:before {
  content: "\f13d";
}

.fa-android:before {
  content: "\f17b";
}

.fa-angellist:before {
  content: "\f209";
}

.fa-angle-double-down:before {
  content: "\f103";
}

.fa-angle-double-left:before {
  content: "\f100";
}

.fa-angle-double-right:before {
  content: "\f101";
}

.fa-angle-double-up:before {
  content: "\f102";
}

.fa-angle-down:before {
  content: "\f107";
}

.fa-angle-left:before {
  content: "\f104";
}

.fa-angle-right:before {
  content: "\f105";
}

.fa-angle-up:before {
  content: "\f106";
}

.fa-angry:before {
  content: "\f556";
}

.fa-angrycreative:before {
  content: "\f36e";
}

.fa-angular:before {
  content: "\f420";
}

.fa-ankh:before {
  content: "\f644";
}

.fa-app-store:before {
  content: "\f36f";
}

.fa-app-store-ios:before {
  content: "\f370";
}

.fa-apper:before {
  content: "\f371";
}

.fa-apple:before {
  content: "\f179";
}

.fa-apple-alt:before {
  content: "\f5d1";
}

.fa-apple-pay:before {
  content: "\f415";
}

.fa-archive:before {
  content: "\f187";
}

.fa-archway:before {
  content: "\f557";
}

.fa-arrow-alt-circle-down:before {
  content: "\f358";
}

.fa-arrow-alt-circle-left:before {
  content: "\f359";
}

.fa-arrow-alt-circle-right:before {
  content: "\f35a";
}

.fa-arrow-alt-circle-up:before {
  content: "\f35b";
}

.fa-arrow-circle-down:before {
  content: "\f0ab";
}

.fa-arrow-circle-left:before {
  content: "\f0a8";
}

.fa-arrow-circle-right:before {
  content: "\f0a9";
}

.fa-arrow-circle-up:before {
  content: "\f0aa";
}

.fa-arrow-down:before {
  content: "\f063";
}

.fa-arrow-left:before {
  content: "\f060";
}

.fa-arrow-right:before {
  content: "\f061";
}

.fa-arrow-up:before {
  content: "\f062";
}

.fa-arrows-alt:before {
  content: "\f0b2";
}

.fa-arrows-alt-h:before {
  content: "\f337";
}

.fa-arrows-alt-v:before {
  content: "\f338";
}

.fa-artstation:before {
  content: "\f77a";
}

.fa-assistive-listening-systems:before {
  content: "\f2a2";
}

.fa-asterisk:before {
  content: "\f069";
}

.fa-asymmetrik:before {
  content: "\f372";
}

.fa-at:before {
  content: "\f1fa";
}

.fa-atlas:before {
  content: "\f558";
}

.fa-atlassian:before {
  content: "\f77b";
}

.fa-atom:before {
  content: "\f5d2";
}

.fa-audible:before {
  content: "\f373";
}

.fa-audio-description:before {
  content: "\f29e";
}

.fa-autoprefixer:before {
  content: "\f41c";
}

.fa-avianex:before {
  content: "\f374";
}

.fa-aviato:before {
  content: "\f421";
}

.fa-award:before {
  content: "\f559";
}

.fa-aws:before {
  content: "\f375";
}

.fa-baby:before {
  content: "\f77c";
}

.fa-baby-carriage:before {
  content: "\f77d";
}

.fa-backspace:before {
  content: "\f55a";
}

.fa-backward:before {
  content: "\f04a";
}

.fa-bacon:before {
  content: "\f7e5";
}

.fa-bacteria:before {
  content: "\e059";
}

.fa-bacterium:before {
  content: "\e05a";
}

.fa-bahai:before {
  content: "\f666";
}

.fa-balance-scale:before {
  content: "\f24e";
}

.fa-balance-scale-left:before {
  content: "\f515";
}

.fa-balance-scale-right:before {
  content: "\f516";
}

.fa-ban:before {
  content: "\f05e";
}

.fa-band-aid:before {
  content: "\f462";
}

.fa-bandcamp:before {
  content: "\f2d5";
}

.fa-barcode:before {
  content: "\f02a";
}

.fa-bars:before {
  content: "\f0c9";
}

.fa-baseball-ball:before {
  content: "\f433";
}

.fa-basketball-ball:before {
  content: "\f434";
}

.fa-bath:before {
  content: "\f2cd";
}

.fa-battery-empty:before {
  content: "\f244";
}

.fa-battery-full:before {
  content: "\f240";
}

.fa-battery-half:before {
  content: "\f242";
}

.fa-battery-quarter:before {
  content: "\f243";
}

.fa-battery-three-quarters:before {
  content: "\f241";
}

.fa-battle-net:before {
  content: "\f835";
}

.fa-bed:before {
  content: "\f236";
}

.fa-beer:before {
  content: "\f0fc";
}

.fa-behance:before {
  content: "\f1b4";
}

.fa-behance-square:before {
  content: "\f1b5";
}

.fa-bell:before {
  content: "\f0f3";
}

.fa-bell-slash:before {
  content: "\f1f6";
}

.fa-bezier-curve:before {
  content: "\f55b";
}

.fa-bible:before {
  content: "\f647";
}

.fa-bicycle:before {
  content: "\f206";
}

.fa-biking:before {
  content: "\f84a";
}

.fa-bimobject:before {
  content: "\f378";
}

.fa-binoculars:before {
  content: "\f1e5";
}

.fa-biohazard:before {
  content: "\f780";
}

.fa-birthday-cake:before {
  content: "\f1fd";
}

.fa-bitbucket:before {
  content: "\f171";
}

.fa-bitcoin:before {
  content: "\f379";
}

.fa-bity:before {
  content: "\f37a";
}

.fa-black-tie:before {
  content: "\f27e";
}

.fa-blackberry:before {
  content: "\f37b";
}

.fa-blender:before {
  content: "\f517";
}

.fa-blender-phone:before {
  content: "\f6b6";
}

.fa-blind:before {
  content: "\f29d";
}

.fa-blog:before {
  content: "\f781";
}

.fa-blogger:before {
  content: "\f37c";
}

.fa-blogger-b:before {
  content: "\f37d";
}

.fa-bluetooth:before {
  content: "\f293";
}

.fa-bluetooth-b:before {
  content: "\f294";
}

.fa-bold:before {
  content: "\f032";
}

.fa-bolt:before {
  content: "\f0e7";
}

.fa-bomb:before {
  content: "\f1e2";
}

.fa-bone:before {
  content: "\f5d7";
}

.fa-bong:before {
  content: "\f55c";
}

.fa-book:before {
  content: "\f02d";
}

.fa-book-dead:before {
  content: "\f6b7";
}

.fa-book-medical:before {
  content: "\f7e6";
}

.fa-book-open:before {
  content: "\f518";
}

.fa-book-reader:before {
  content: "\f5da";
}

.fa-bookmark:before {
  content: "\f02e";
}

.fa-bootstrap:before {
  content: "\f836";
}

.fa-border-all:before {
  content: "\f84c";
}

.fa-border-none:before {
  content: "\f850";
}

.fa-border-style:before {
  content: "\f853";
}

.fa-bowling-ball:before {
  content: "\f436";
}

.fa-box:before {
  content: "\f466";
}

.fa-box-open:before {
  content: "\f49e";
}

.fa-box-tissue:before {
  content: "\e05b";
}

.fa-boxes:before {
  content: "\f468";
}

.fa-braille:before {
  content: "\f2a1";
}

.fa-brain:before {
  content: "\f5dc";
}

.fa-bread-slice:before {
  content: "\f7ec";
}

.fa-briefcase:before {
  content: "\f0b1";
}

.fa-briefcase-medical:before {
  content: "\f469";
}

.fa-broadcast-tower:before {
  content: "\f519";
}

.fa-broom:before {
  content: "\f51a";
}

.fa-brush:before {
  content: "\f55d";
}

.fa-btc:before {
  content: "\f15a";
}

.fa-buffer:before {
  content: "\f837";
}

.fa-bug:before {
  content: "\f188";
}

.fa-building:before {
  content: "\f1ad";
}

.fa-bullhorn:before {
  content: "\f0a1";
}

.fa-bullseye:before {
  content: "\f140";
}

.fa-burn:before {
  content: "\f46a";
}

.fa-buromobelexperte:before {
  content: "\f37f";
}

.fa-bus:before {
  content: "\f207";
}

.fa-bus-alt:before {
  content: "\f55e";
}

.fa-business-time:before {
  content: "\f64a";
}

.fa-buy-n-large:before {
  content: "\f8a6";
}

.fa-buysellads:before {
  content: "\f20d";
}

.fa-calculator:before {
  content: "\f1ec";
}

.fa-calendar:before {
  content: "\f133";
}

.fa-calendar-alt:before {
  content: "\f073";
}

.fa-calendar-check:before {
  content: "\f274";
}

.fa-calendar-day:before {
  content: "\f783";
}

.fa-calendar-minus:before {
  content: "\f272";
}

.fa-calendar-plus:before {
  content: "\f271";
}

.fa-calendar-times:before {
  content: "\f273";
}

.fa-calendar-week:before {
  content: "\f784";
}

.fa-camera:before {
  content: "\f030";
}

.fa-camera-retro:before {
  content: "\f083";
}

.fa-campground:before {
  content: "\f6bb";
}

.fa-canadian-maple-leaf:before {
  content: "\f785";
}

.fa-candy-cane:before {
  content: "\f786";
}

.fa-cannabis:before {
  content: "\f55f";
}

.fa-capsules:before {
  content: "\f46b";
}

.fa-car:before {
  content: "\f1b9";
}

.fa-car-alt:before {
  content: "\f5de";
}

.fa-car-battery:before {
  content: "\f5df";
}

.fa-car-crash:before {
  content: "\f5e1";
}

.fa-car-side:before {
  content: "\f5e4";
}

.fa-caravan:before {
  content: "\f8ff";
}

.fa-caret-down:before {
  content: "\f0d7";
}

.fa-caret-left:before {
  content: "\f0d9";
}

.fa-caret-right:before {
  content: "\f0da";
}

.fa-caret-square-down:before {
  content: "\f150";
}

.fa-caret-square-left:before {
  content: "\f191";
}

.fa-caret-square-right:before {
  content: "\f152";
}

.fa-caret-square-up:before {
  content: "\f151";
}

.fa-caret-up:before {
  content: "\f0d8";
}

.fa-carrot:before {
  content: "\f787";
}

.fa-cart-arrow-down:before {
  content: "\f218";
}

.fa-cart-plus:before {
  content: "\f217";
}

.fa-cash-register:before {
  content: "\f788";
}

.fa-cat:before {
  content: "\f6be";
}

.fa-cc-amazon-pay:before {
  content: "\f42d";
}

.fa-cc-amex:before {
  content: "\f1f3";
}

.fa-cc-apple-pay:before {
  content: "\f416";
}

.fa-cc-diners-club:before {
  content: "\f24c";
}

.fa-cc-discover:before {
  content: "\f1f2";
}

.fa-cc-jcb:before {
  content: "\f24b";
}

.fa-cc-mastercard:before {
  content: "\f1f1";
}

.fa-cc-paypal:before {
  content: "\f1f4";
}

.fa-cc-stripe:before {
  content: "\f1f5";
}

.fa-cc-visa:before {
  content: "\f1f0";
}

.fa-centercode:before {
  content: "\f380";
}

.fa-centos:before {
  content: "\f789";
}

.fa-certificate:before {
  content: "\f0a3";
}

.fa-chair:before {
  content: "\f6c0";
}

.fa-chalkboard:before {
  content: "\f51b";
}

.fa-chalkboard-teacher:before {
  content: "\f51c";
}

.fa-charging-station:before {
  content: "\f5e7";
}

.fa-chart-area:before {
  content: "\f1fe";
}

.fa-chart-bar:before {
  content: "\f080";
}

.fa-chart-line:before {
  content: "\f201";
}

.fa-chart-pie:before {
  content: "\f200";
}

.fa-check:before {
  content: "\f00c";
}

.fa-check-circle:before {
  content: "\f058";
}

.fa-check-double:before {
  content: "\f560";
}

.fa-check-square:before {
  content: "\f14a";
}

.fa-cheese:before {
  content: "\f7ef";
}

.fa-chess:before {
  content: "\f439";
}

.fa-chess-bishop:before {
  content: "\f43a";
}

.fa-chess-board:before {
  content: "\f43c";
}

.fa-chess-king:before {
  content: "\f43f";
}

.fa-chess-knight:before {
  content: "\f441";
}

.fa-chess-pawn:before {
  content: "\f443";
}

.fa-chess-queen:before {
  content: "\f445";
}

.fa-chess-rook:before {
  content: "\f447";
}

.fa-chevron-circle-down:before {
  content: "\f13a";
}

.fa-chevron-circle-left:before {
  content: "\f137";
}

.fa-chevron-circle-right:before {
  content: "\f138";
}

.fa-chevron-circle-up:before {
  content: "\f139";
}

.fa-chevron-down:before {
  content: "\f078";
}

.fa-chevron-left:before {
  content: "\f053";
}

.fa-chevron-right:before {
  content: "\f054";
}

.fa-chevron-up:before {
  content: "\f077";
}

.fa-child:before {
  content: "\f1ae";
}

.fa-chrome:before {
  content: "\f268";
}

.fa-chromecast:before {
  content: "\f838";
}

.fa-church:before {
  content: "\f51d";
}

.fa-circle:before {
  content: "\f111";
}

.fa-circle-notch:before {
  content: "\f1ce";
}

.fa-city:before {
  content: "\f64f";
}

.fa-clinic-medical:before {
  content: "\f7f2";
}

.fa-clipboard:before {
  content: "\f328";
}

.fa-clipboard-check:before {
  content: "\f46c";
}

.fa-clipboard-list:before {
  content: "\f46d";
}

.fa-clock:before {
  content: "\f017";
}

.fa-clone:before {
  content: "\f24d";
}

.fa-closed-captioning:before {
  content: "\f20a";
}

.fa-cloud:before {
  content: "\f0c2";
}

.fa-cloud-download-alt:before {
  content: "\f381";
}

.fa-cloud-meatball:before {
  content: "\f73b";
}

.fa-cloud-moon:before {
  content: "\f6c3";
}

.fa-cloud-moon-rain:before {
  content: "\f73c";
}

.fa-cloud-rain:before {
  content: "\f73d";
}

.fa-cloud-showers-heavy:before {
  content: "\f740";
}

.fa-cloud-sun:before {
  content: "\f6c4";
}

.fa-cloud-sun-rain:before {
  content: "\f743";
}

.fa-cloud-upload-alt:before {
  content: "\f382";
}

.fa-cloudflare:before {
  content: "\e07d";
}

.fa-cloudscale:before {
  content: "\f383";
}

.fa-cloudsmith:before {
  content: "\f384";
}

.fa-cloudversify:before {
  content: "\f385";
}

.fa-cocktail:before {
  content: "\f561";
}

.fa-code:before {
  content: "\f121";
}

.fa-code-branch:before {
  content: "\f126";
}

.fa-codepen:before {
  content: "\f1cb";
}

.fa-codiepie:before {
  content: "\f284";
}

.fa-coffee:before {
  content: "\f0f4";
}

.fa-cog:before {
  content: "\f013";
}

.fa-cogs:before {
  content: "\f085";
}

.fa-coins:before {
  content: "\f51e";
}

.fa-columns:before {
  content: "\f0db";
}

.fa-comment:before {
  content: "\f075";
}

.fa-comment-alt:before {
  content: "\f27a";
}

.fa-comment-dollar:before {
  content: "\f651";
}

.fa-comment-dots:before {
  content: "\f4ad";
}

.fa-comment-medical:before {
  content: "\f7f5";
}

.fa-comment-slash:before {
  content: "\f4b3";
}

.fa-comments:before {
  content: "\f086";
}

.fa-comments-dollar:before {
  content: "\f653";
}

.fa-compact-disc:before {
  content: "\f51f";
}

.fa-compass:before {
  content: "\f14e";
}

.fa-compress:before {
  content: "\f066";
}

.fa-compress-alt:before {
  content: "\f422";
}

.fa-compress-arrows-alt:before {
  content: "\f78c";
}

.fa-concierge-bell:before {
  content: "\f562";
}

.fa-confluence:before {
  content: "\f78d";
}

.fa-connectdevelop:before {
  content: "\f20e";
}

.fa-contao:before {
  content: "\f26d";
}

.fa-cookie:before {
  content: "\f563";
}

.fa-cookie-bite:before {
  content: "\f564";
}

.fa-copy:before {
  content: "\f0c5";
}

.fa-copyright:before {
  content: "\f1f9";
}

.fa-cotton-bureau:before {
  content: "\f89e";
}

.fa-couch:before {
  content: "\f4b8";
}

.fa-cpanel:before {
  content: "\f388";
}

.fa-creative-commons:before {
  content: "\f25e";
}

.fa-creative-commons-by:before {
  content: "\f4e7";
}

.fa-creative-commons-nc:before {
  content: "\f4e8";
}

.fa-creative-commons-nc-eu:before {
  content: "\f4e9";
}

.fa-creative-commons-nc-jp:before {
  content: "\f4ea";
}

.fa-creative-commons-nd:before {
  content: "\f4eb";
}

.fa-creative-commons-pd:before {
  content: "\f4ec";
}

.fa-creative-commons-pd-alt:before {
  content: "\f4ed";
}

.fa-creative-commons-remix:before {
  content: "\f4ee";
}

.fa-creative-commons-sa:before {
  content: "\f4ef";
}

.fa-creative-commons-sampling:before {
  content: "\f4f0";
}

.fa-creative-commons-sampling-plus:before {
  content: "\f4f1";
}

.fa-creative-commons-share:before {
  content: "\f4f2";
}

.fa-creative-commons-zero:before {
  content: "\f4f3";
}

.fa-credit-card:before {
  content: "\f09d";
}

.fa-critical-role:before {
  content: "\f6c9";
}

.fa-crop:before {
  content: "\f125";
}

.fa-crop-alt:before {
  content: "\f565";
}

.fa-cross:before {
  content: "\f654";
}

.fa-crosshairs:before {
  content: "\f05b";
}

.fa-crow:before {
  content: "\f520";
}

.fa-crown:before {
  content: "\f521";
}

.fa-crutch:before {
  content: "\f7f7";
}

.fa-css3:before {
  content: "\f13c";
}

.fa-css3-alt:before {
  content: "\f38b";
}

.fa-cube:before {
  content: "\f1b2";
}

.fa-cubes:before {
  content: "\f1b3";
}

.fa-cut:before {
  content: "\f0c4";
}

.fa-cuttlefish:before {
  content: "\f38c";
}

.fa-d-and-d:before {
  content: "\f38d";
}

.fa-d-and-d-beyond:before {
  content: "\f6ca";
}

.fa-dailymotion:before {
  content: "\e052";
}

.fa-dashcube:before {
  content: "\f210";
}

.fa-database:before {
  content: "\f1c0";
}

.fa-deaf:before {
  content: "\f2a4";
}

.fa-deezer:before {
  content: "\e077";
}

.fa-delicious:before {
  content: "\f1a5";
}

.fa-democrat:before {
  content: "\f747";
}

.fa-deploydog:before {
  content: "\f38e";
}

.fa-deskpro:before {
  content: "\f38f";
}

.fa-desktop:before {
  content: "\f108";
}

.fa-dev:before {
  content: "\f6cc";
}

.fa-deviantart:before {
  content: "\f1bd";
}

.fa-dharmachakra:before {
  content: "\f655";
}

.fa-dhl:before {
  content: "\f790";
}

.fa-diagnoses:before {
  content: "\f470";
}

.fa-diaspora:before {
  content: "\f791";
}

.fa-dice:before {
  content: "\f522";
}

.fa-dice-d20:before {
  content: "\f6cf";
}

.fa-dice-d6:before {
  content: "\f6d1";
}

.fa-dice-five:before {
  content: "\f523";
}

.fa-dice-four:before {
  content: "\f524";
}

.fa-dice-one:before {
  content: "\f525";
}

.fa-dice-six:before {
  content: "\f526";
}

.fa-dice-three:before {
  content: "\f527";
}

.fa-dice-two:before {
  content: "\f528";
}

.fa-digg:before {
  content: "\f1a6";
}

.fa-digital-ocean:before {
  content: "\f391";
}

.fa-digital-tachograph:before {
  content: "\f566";
}

.fa-directions:before {
  content: "\f5eb";
}

.fa-discord:before {
  content: "\f392";
}

.fa-discourse:before {
  content: "\f393";
}

.fa-disease:before {
  content: "\f7fa";
}

.fa-divide:before {
  content: "\f529";
}

.fa-dizzy:before {
  content: "\f567";
}

.fa-dna:before {
  content: "\f471";
}

.fa-dochub:before {
  content: "\f394";
}

.fa-docker:before {
  content: "\f395";
}

.fa-dog:before {
  content: "\f6d3";
}

.fa-dollar-sign:before {
  content: "\f155";
}

.fa-dolly:before {
  content: "\f472";
}

.fa-dolly-flatbed:before {
  content: "\f474";
}

.fa-donate:before {
  content: "\f4b9";
}

.fa-door-closed:before {
  content: "\f52a";
}

.fa-door-open:before {
  content: "\f52b";
}

.fa-dot-circle:before {
  content: "\f192";
}

.fa-dove:before {
  content: "\f4ba";
}

.fa-download:before {
  content: "\f019";
}

.fa-draft2digital:before {
  content: "\f396";
}

.fa-drafting-compass:before {
  content: "\f568";
}

.fa-dragon:before {
  content: "\f6d5";
}

.fa-draw-polygon:before {
  content: "\f5ee";
}

.fa-dribbble:before {
  content: "\f17d";
}

.fa-dribbble-square:before {
  content: "\f397";
}

.fa-dropbox:before {
  content: "\f16b";
}

.fa-drum:before {
  content: "\f569";
}

.fa-drum-steelpan:before {
  content: "\f56a";
}

.fa-drumstick-bite:before {
  content: "\f6d7";
}

.fa-drupal:before {
  content: "\f1a9";
}

.fa-dumbbell:before {
  content: "\f44b";
}

.fa-dumpster:before {
  content: "\f793";
}

.fa-dumpster-fire:before {
  content: "\f794";
}

.fa-dungeon:before {
  content: "\f6d9";
}

.fa-dyalog:before {
  content: "\f399";
}

.fa-earlybirds:before {
  content: "\f39a";
}

.fa-ebay:before {
  content: "\f4f4";
}

.fa-edge:before {
  content: "\f282";
}

.fa-edge-legacy:before {
  content: "\e078";
}

.fa-edit:before {
  content: "\f044";
}

.fa-egg:before {
  content: "\f7fb";
}

.fa-eject:before {
  content: "\f052";
}

.fa-elementor:before {
  content: "\f430";
}

.fa-ellipsis-h:before {
  content: "\f141";
}

.fa-ellipsis-v:before {
  content: "\f142";
}

.fa-ello:before {
  content: "\f5f1";
}

.fa-ember:before {
  content: "\f423";
}

.fa-empire:before {
  content: "\f1d1";
}

.fa-envelope:before {
  content: "\f0e0";
}

.fa-envelope-open:before {
  content: "\f2b6";
}

.fa-envelope-open-text:before {
  content: "\f658";
}

.fa-envelope-square:before {
  content: "\f199";
}

.fa-envira:before {
  content: "\f299";
}

.fa-equals:before {
  content: "\f52c";
}

.fa-eraser:before {
  content: "\f12d";
}

.fa-erlang:before {
  content: "\f39d";
}

.fa-ethereum:before {
  content: "\f42e";
}

.fa-ethernet:before {
  content: "\f796";
}

.fa-etsy:before {
  content: "\f2d7";
}

.fa-euro-sign:before {
  content: "\f153";
}

.fa-evernote:before {
  content: "\f839";
}

.fa-exchange-alt:before {
  content: "\f362";
}

.fa-exclamation:before {
  content: "\f12a";
}

.fa-exclamation-circle:before {
  content: "\f06a";
}

.fa-exclamation-triangle:before {
  content: "\f071";
}

.fa-expand:before {
  content: "\f065";
}

.fa-expand-alt:before {
  content: "\f424";
}

.fa-expand-arrows-alt:before {
  content: "\f31e";
}

.fa-expeditedssl:before {
  content: "\f23e";
}

.fa-external-link-alt:before {
  content: "\f35d";
}

.fa-external-link-square-alt:before {
  content: "\f360";
}

.fa-eye:before {
  content: "\f06e";
}

.fa-eye-dropper:before {
  content: "\f1fb";
}

.fa-eye-slash:before {
  content: "\f070";
}

.fa-facebook:before {
  content: "\f09a";
}

.fa-facebook-f:before {
  content: "\f39e";
}

.fa-facebook-messenger:before {
  content: "\f39f";
}

.fa-facebook-square:before {
  content: "\f082";
}

.fa-fan:before {
  content: "\f863";
}

.fa-fantasy-flight-games:before {
  content: "\f6dc";
}

.fa-fast-backward:before {
  content: "\f049";
}

.fa-fast-forward:before {
  content: "\f050";
}

.fa-faucet:before {
  content: "\e005";
}

.fa-fax:before {
  content: "\f1ac";
}

.fa-feather:before {
  content: "\f52d";
}

.fa-feather-alt:before {
  content: "\f56b";
}

.fa-fedex:before {
  content: "\f797";
}

.fa-fedora:before {
  content: "\f798";
}

.fa-female:before {
  content: "\f182";
}

.fa-fighter-jet:before {
  content: "\f0fb";
}

.fa-figma:before {
  content: "\f799";
}

.fa-file:before {
  content: "\f15b";
}

.fa-file-alt:before {
  content: "\f15c";
}

.fa-file-archive:before {
  content: "\f1c6";
}

.fa-file-audio:before {
  content: "\f1c7";
}

.fa-file-code:before {
  content: "\f1c9";
}

.fa-file-contract:before {
  content: "\f56c";
}

.fa-file-csv:before {
  content: "\f6dd";
}

.fa-file-download:before {
  content: "\f56d";
}

.fa-file-excel:before {
  content: "\f1c3";
}

.fa-file-export:before {
  content: "\f56e";
}

.fa-file-image:before {
  content: "\f1c5";
}

.fa-file-import:before {
  content: "\f56f";
}

.fa-file-invoice:before {
  content: "\f570";
}

.fa-file-invoice-dollar:before {
  content: "\f571";
}

.fa-file-medical:before {
  content: "\f477";
}

.fa-file-medical-alt:before {
  content: "\f478";
}

.fa-file-pdf:before {
  content: "\f1c1";
}

.fa-file-powerpoint:before {
  content: "\f1c4";
}

.fa-file-prescription:before {
  content: "\f572";
}

.fa-file-signature:before {
  content: "\f573";
}

.fa-file-upload:before {
  content: "\f574";
}

.fa-file-video:before {
  content: "\f1c8";
}

.fa-file-word:before {
  content: "\f1c2";
}

.fa-fill:before {
  content: "\f575";
}

.fa-fill-drip:before {
  content: "\f576";
}

.fa-film:before {
  content: "\f008";
}

.fa-filter:before {
  content: "\f0b0";
}

.fa-fingerprint:before {
  content: "\f577";
}

.fa-fire:before {
  content: "\f06d";
}

.fa-fire-alt:before {
  content: "\f7e4";
}

.fa-fire-extinguisher:before {
  content: "\f134";
}

.fa-firefox:before {
  content: "\f269";
}

.fa-firefox-browser:before {
  content: "\e007";
}

.fa-first-aid:before {
  content: "\f479";
}

.fa-first-order:before {
  content: "\f2b0";
}

.fa-first-order-alt:before {
  content: "\f50a";
}

.fa-firstdraft:before {
  content: "\f3a1";
}

.fa-fish:before {
  content: "\f578";
}

.fa-fist-raised:before {
  content: "\f6de";
}

.fa-flag:before {
  content: "\f024";
}

.fa-flag-checkered:before {
  content: "\f11e";
}

.fa-flag-usa:before {
  content: "\f74d";
}

.fa-flask:before {
  content: "\f0c3";
}

.fa-flickr:before {
  content: "\f16e";
}

.fa-flipboard:before {
  content: "\f44d";
}

.fa-flushed:before {
  content: "\f579";
}

.fa-fly:before {
  content: "\f417";
}

.fa-folder:before {
  content: "\f07b";
}

.fa-folder-minus:before {
  content: "\f65d";
}

.fa-folder-open:before {
  content: "\f07c";
}

.fa-folder-plus:before {
  content: "\f65e";
}

.fa-font:before {
  content: "\f031";
}

.fa-font-awesome:before {
  content: "\f2b4";
}

.fa-font-awesome-alt:before {
  content: "\f35c";
}

.fa-font-awesome-flag:before {
  content: "\f425";
}

.fa-font-awesome-logo-full:before {
  content: "\f4e6";
}

.fa-fonticons:before {
  content: "\f280";
}

.fa-fonticons-fi:before {
  content: "\f3a2";
}

.fa-football-ball:before {
  content: "\f44e";
}

.fa-fort-awesome:before {
  content: "\f286";
}

.fa-fort-awesome-alt:before {
  content: "\f3a3";
}

.fa-forumbee:before {
  content: "\f211";
}

.fa-forward:before {
  content: "\f04e";
}

.fa-foursquare:before {
  content: "\f180";
}

.fa-free-code-camp:before {
  content: "\f2c5";
}

.fa-freebsd:before {
  content: "\f3a4";
}

.fa-frog:before {
  content: "\f52e";
}

.fa-frown:before {
  content: "\f119";
}

.fa-frown-open:before {
  content: "\f57a";
}

.fa-fulcrum:before {
  content: "\f50b";
}

.fa-funnel-dollar:before {
  content: "\f662";
}

.fa-futbol:before {
  content: "\f1e3";
}

.fa-galactic-republic:before {
  content: "\f50c";
}

.fa-galactic-senate:before {
  content: "\f50d";
}

.fa-gamepad:before {
  content: "\f11b";
}

.fa-gas-pump:before {
  content: "\f52f";
}

.fa-gavel:before {
  content: "\f0e3";
}

.fa-gem:before {
  content: "\f3a5";
}

.fa-genderless:before {
  content: "\f22d";
}

.fa-get-pocket:before {
  content: "\f265";
}

.fa-gg:before {
  content: "\f260";
}

.fa-gg-circle:before {
  content: "\f261";
}

.fa-ghost:before {
  content: "\f6e2";
}

.fa-gift:before {
  content: "\f06b";
}

.fa-gifts:before {
  content: "\f79c";
}

.fa-git:before {
  content: "\f1d3";
}

.fa-git-alt:before {
  content: "\f841";
}

.fa-git-square:before {
  content: "\f1d2";
}

.fa-github:before {
  content: "\f09b";
}

.fa-github-alt:before {
  content: "\f113";
}

.fa-github-square:before {
  content: "\f092";
}

.fa-gitkraken:before {
  content: "\f3a6";
}

.fa-gitlab:before {
  content: "\f296";
}

.fa-gitter:before {
  content: "\f426";
}

.fa-glass-cheers:before {
  content: "\f79f";
}

.fa-glass-martini:before {
  content: "\f000";
}

.fa-glass-martini-alt:before {
  content: "\f57b";
}

.fa-glass-whiskey:before {
  content: "\f7a0";
}

.fa-glasses:before {
  content: "\f530";
}

.fa-glide:before {
  content: "\f2a5";
}

.fa-glide-g:before {
  content: "\f2a6";
}

.fa-globe:before {
  content: "\f0ac";
}

.fa-globe-africa:before {
  content: "\f57c";
}

.fa-globe-americas:before {
  content: "\f57d";
}

.fa-globe-asia:before {
  content: "\f57e";
}

.fa-globe-europe:before {
  content: "\f7a2";
}

.fa-gofore:before {
  content: "\f3a7";
}

.fa-golf-ball:before {
  content: "\f450";
}

.fa-goodreads:before {
  content: "\f3a8";
}

.fa-goodreads-g:before {
  content: "\f3a9";
}

.fa-google:before {
  content: "\f1a0";
}

.fa-google-drive:before {
  content: "\f3aa";
}

.fa-google-pay:before {
  content: "\e079";
}

.fa-google-play:before {
  content: "\f3ab";
}

.fa-google-plus:before {
  content: "\f2b3";
}

.fa-google-plus-g:before {
  content: "\f0d5";
}

.fa-google-plus-square:before {
  content: "\f0d4";
}

.fa-google-wallet:before {
  content: "\f1ee";
}

.fa-gopuram:before {
  content: "\f664";
}

.fa-graduation-cap:before {
  content: "\f19d";
}

.fa-gratipay:before {
  content: "\f184";
}

.fa-grav:before {
  content: "\f2d6";
}

.fa-greater-than:before {
  content: "\f531";
}

.fa-greater-than-equal:before {
  content: "\f532";
}

.fa-grimace:before {
  content: "\f57f";
}

.fa-grin:before {
  content: "\f580";
}

.fa-grin-alt:before {
  content: "\f581";
}

.fa-grin-beam:before {
  content: "\f582";
}

.fa-grin-beam-sweat:before {
  content: "\f583";
}

.fa-grin-hearts:before {
  content: "\f584";
}

.fa-grin-squint:before {
  content: "\f585";
}

.fa-grin-squint-tears:before {
  content: "\f586";
}

.fa-grin-stars:before {
  content: "\f587";
}

.fa-grin-tears:before {
  content: "\f588";
}

.fa-grin-tongue:before {
  content: "\f589";
}

.fa-grin-tongue-squint:before {
  content: "\f58a";
}

.fa-grin-tongue-wink:before {
  content: "\f58b";
}

.fa-grin-wink:before {
  content: "\f58c";
}

.fa-grip-horizontal:before {
  content: "\f58d";
}

.fa-grip-lines:before {
  content: "\f7a4";
}

.fa-grip-lines-vertical:before {
  content: "\f7a5";
}

.fa-grip-vertical:before {
  content: "\f58e";
}

.fa-gripfire:before {
  content: "\f3ac";
}

.fa-grunt:before {
  content: "\f3ad";
}

.fa-guilded:before {
  content: "\e07e";
}

.fa-guitar:before {
  content: "\f7a6";
}

.fa-gulp:before {
  content: "\f3ae";
}

.fa-h-square:before {
  content: "\f0fd";
}

.fa-hacker-news:before {
  content: "\f1d4";
}

.fa-hacker-news-square:before {
  content: "\f3af";
}

.fa-hackerrank:before {
  content: "\f5f7";
}

.fa-hamburger:before {
  content: "\f805";
}

.fa-hammer:before {
  content: "\f6e3";
}

.fa-hamsa:before {
  content: "\f665";
}

.fa-hand-holding:before {
  content: "\f4bd";
}

.fa-hand-holding-heart:before {
  content: "\f4be";
}

.fa-hand-holding-medical:before {
  content: "\e05c";
}

.fa-hand-holding-usd:before {
  content: "\f4c0";
}

.fa-hand-holding-water:before {
  content: "\f4c1";
}

.fa-hand-lizard:before {
  content: "\f258";
}

.fa-hand-middle-finger:before {
  content: "\f806";
}

.fa-hand-paper:before {
  content: "\f256";
}

.fa-hand-peace:before {
  content: "\f25b";
}

.fa-hand-point-down:before {
  content: "\f0a7";
}

.fa-hand-point-left:before {
  content: "\f0a5";
}

.fa-hand-point-right:before {
  content: "\f0a4";
}

.fa-hand-point-up:before {
  content: "\f0a6";
}

.fa-hand-pointer:before {
  content: "\f25a";
}

.fa-hand-rock:before {
  content: "\f255";
}

.fa-hand-scissors:before {
  content: "\f257";
}

.fa-hand-sparkles:before {
  content: "\e05d";
}

.fa-hand-spock:before {
  content: "\f259";
}

.fa-hands:before {
  content: "\f4c2";
}

.fa-hands-helping:before {
  content: "\f4c4";
}

.fa-hands-wash:before {
  content: "\e05e";
}

.fa-handshake:before {
  content: "\f2b5";
}

.fa-handshake-alt-slash:before {
  content: "\e05f";
}

.fa-handshake-slash:before {
  content: "\e060";
}

.fa-hanukiah:before {
  content: "\f6e6";
}

.fa-hard-hat:before {
  content: "\f807";
}

.fa-hashtag:before {
  content: "\f292";
}

.fa-hat-cowboy:before {
  content: "\f8c0";
}

.fa-hat-cowboy-side:before {
  content: "\f8c1";
}

.fa-hat-wizard:before {
  content: "\f6e8";
}

.fa-hdd:before {
  content: "\f0a0";
}

.fa-head-side-cough:before {
  content: "\e061";
}

.fa-head-side-cough-slash:before {
  content: "\e062";
}

.fa-head-side-mask:before {
  content: "\e063";
}

.fa-head-side-virus:before {
  content: "\e064";
}

.fa-heading:before {
  content: "\f1dc";
}

.fa-headphones:before {
  content: "\f025";
}

.fa-headphones-alt:before {
  content: "\f58f";
}

.fa-headset:before {
  content: "\f590";
}

.fa-heart:before {
  content: "\f004";
}

.fa-heart-broken:before {
  content: "\f7a9";
}

.fa-heartbeat:before {
  content: "\f21e";
}

.fa-helicopter:before {
  content: "\f533";
}

.fa-highlighter:before {
  content: "\f591";
}

.fa-hiking:before {
  content: "\f6ec";
}

.fa-hippo:before {
  content: "\f6ed";
}

.fa-hips:before {
  content: "\f452";
}

.fa-hire-a-helper:before {
  content: "\f3b0";
}

.fa-history:before {
  content: "\f1da";
}

.fa-hive:before {
  content: "\e07f";
}

.fa-hockey-puck:before {
  content: "\f453";
}

.fa-holly-berry:before {
  content: "\f7aa";
}

.fa-home:before {
  content: "\f015";
}

.fa-hooli:before {
  content: "\f427";
}

.fa-hornbill:before {
  content: "\f592";
}

.fa-horse:before {
  content: "\f6f0";
}

.fa-horse-head:before {
  content: "\f7ab";
}

.fa-hospital:before {
  content: "\f0f8";
}

.fa-hospital-alt:before {
  content: "\f47d";
}

.fa-hospital-symbol:before {
  content: "\f47e";
}

.fa-hospital-user:before {
  content: "\f80d";
}

.fa-hot-tub:before {
  content: "\f593";
}

.fa-hotdog:before {
  content: "\f80f";
}

.fa-hotel:before {
  content: "\f594";
}

.fa-hotjar:before {
  content: "\f3b1";
}

.fa-hourglass:before {
  content: "\f254";
}

.fa-hourglass-end:before {
  content: "\f253";
}

.fa-hourglass-half:before {
  content: "\f252";
}

.fa-hourglass-start:before {
  content: "\f251";
}

.fa-house-damage:before {
  content: "\f6f1";
}

.fa-house-user:before {
  content: "\e065";
}

.fa-houzz:before {
  content: "\f27c";
}

.fa-hryvnia:before {
  content: "\f6f2";
}

.fa-html5:before {
  content: "\f13b";
}

.fa-hubspot:before {
  content: "\f3b2";
}

.fa-i-cursor:before {
  content: "\f246";
}

.fa-ice-cream:before {
  content: "\f810";
}

.fa-icicles:before {
  content: "\f7ad";
}

.fa-icons:before {
  content: "\f86d";
}

.fa-id-badge:before {
  content: "\f2c1";
}

.fa-id-card:before {
  content: "\f2c2";
}

.fa-id-card-alt:before {
  content: "\f47f";
}

.fa-ideal:before {
  content: "\e013";
}

.fa-igloo:before {
  content: "\f7ae";
}

.fa-image:before {
  content: "\f03e";
}

.fa-images:before {
  content: "\f302";
}

.fa-imdb:before {
  content: "\f2d8";
}

.fa-inbox:before {
  content: "\f01c";
}

.fa-indent:before {
  content: "\f03c";
}

.fa-industry:before {
  content: "\f275";
}

.fa-infinity:before {
  content: "\f534";
}

.fa-info:before {
  content: "\f129";
}

.fa-info-circle:before {
  content: "\f05a";
}

.fa-innosoft:before {
  content: "\e080";
}

.fa-instagram:before {
  content: "\f16d";
}

.fa-instagram-square:before {
  content: "\e055";
}

.fa-instalod:before {
  content: "\e081";
}

.fa-intercom:before {
  content: "\f7af";
}

.fa-internet-explorer:before {
  content: "\f26b";
}

.fa-invision:before {
  content: "\f7b0";
}

.fa-ioxhost:before {
  content: "\f208";
}

.fa-italic:before {
  content: "\f033";
}

.fa-itch-io:before {
  content: "\f83a";
}

.fa-itunes:before {
  content: "\f3b4";
}

.fa-itunes-note:before {
  content: "\f3b5";
}

.fa-java:before {
  content: "\f4e4";
}

.fa-jedi:before {
  content: "\f669";
}

.fa-jedi-order:before {
  content: "\f50e";
}

.fa-jenkins:before {
  content: "\f3b6";
}

.fa-jira:before {
  content: "\f7b1";
}

.fa-joget:before {
  content: "\f3b7";
}

.fa-joint:before {
  content: "\f595";
}

.fa-joomla:before {
  content: "\f1aa";
}

.fa-journal-whills:before {
  content: "\f66a";
}

.fa-js:before {
  content: "\f3b8";
}

.fa-js-square:before {
  content: "\f3b9";
}

.fa-jsfiddle:before {
  content: "\f1cc";
}

.fa-kaaba:before {
  content: "\f66b";
}

.fa-kaggle:before {
  content: "\f5fa";
}

.fa-key:before {
  content: "\f084";
}

.fa-keybase:before {
  content: "\f4f5";
}

.fa-keyboard:before {
  content: "\f11c";
}

.fa-keycdn:before {
  content: "\f3ba";
}

.fa-khanda:before {
  content: "\f66d";
}

.fa-kickstarter:before {
  content: "\f3bb";
}

.fa-kickstarter-k:before {
  content: "\f3bc";
}

.fa-kiss:before {
  content: "\f596";
}

.fa-kiss-beam:before {
  content: "\f597";
}

.fa-kiss-wink-heart:before {
  content: "\f598";
}

.fa-kiwi-bird:before {
  content: "\f535";
}

.fa-korvue:before {
  content: "\f42f";
}

.fa-landmark:before {
  content: "\f66f";
}

.fa-language:before {
  content: "\f1ab";
}

.fa-laptop:before {
  content: "\f109";
}

.fa-laptop-code:before {
  content: "\f5fc";
}

.fa-laptop-house:before {
  content: "\e066";
}

.fa-laptop-medical:before {
  content: "\f812";
}

.fa-laravel:before {
  content: "\f3bd";
}

.fa-lastfm:before {
  content: "\f202";
}

.fa-lastfm-square:before {
  content: "\f203";
}

.fa-laugh:before {
  content: "\f599";
}

.fa-laugh-beam:before {
  content: "\f59a";
}

.fa-laugh-squint:before {
  content: "\f59b";
}

.fa-laugh-wink:before {
  content: "\f59c";
}

.fa-layer-group:before {
  content: "\f5fd";
}

.fa-leaf:before {
  content: "\f06c";
}

.fa-leanpub:before {
  content: "\f212";
}

.fa-lemon:before {
  content: "\f094";
}

.fa-less:before {
  content: "\f41d";
}

.fa-less-than:before {
  content: "\f536";
}

.fa-less-than-equal:before {
  content: "\f537";
}

.fa-level-down-alt:before {
  content: "\f3be";
}

.fa-level-up-alt:before {
  content: "\f3bf";
}

.fa-life-ring:before {
  content: "\f1cd";
}

.fa-lightbulb:before {
  content: "\f0eb";
}

.fa-line:before {
  content: "\f3c0";
}

.fa-link:before {
  content: "\f0c1";
}

.fa-linkedin:before {
  content: "\f08c";
}

.fa-linkedin-in:before {
  content: "\f0e1";
}

.fa-linode:before {
  content: "\f2b8";
}

.fa-linux:before {
  content: "\f17c";
}

.fa-lira-sign:before {
  content: "\f195";
}

.fa-list:before {
  content: "\f03a";
}

.fa-list-alt:before {
  content: "\f022";
}

.fa-list-ol:before {
  content: "\f0cb";
}

.fa-list-ul:before {
  content: "\f0ca";
}

.fa-location-arrow:before {
  content: "\f124";
}

.fa-lock:before {
  content: "\f023";
}

.fa-lock-open:before {
  content: "\f3c1";
}

.fa-long-arrow-alt-down:before {
  content: "\f309";
}

.fa-long-arrow-alt-left:before {
  content: "\f30a";
}

.fa-long-arrow-alt-right:before {
  content: "\f30b";
}

.fa-long-arrow-alt-up:before {
  content: "\f30c";
}

.fa-low-vision:before {
  content: "\f2a8";
}

.fa-luggage-cart:before {
  content: "\f59d";
}

.fa-lungs:before {
  content: "\f604";
}

.fa-lungs-virus:before {
  content: "\e067";
}

.fa-lyft:before {
  content: "\f3c3";
}

.fa-magento:before {
  content: "\f3c4";
}

.fa-magic:before {
  content: "\f0d0";
}

.fa-magnet:before {
  content: "\f076";
}

.fa-mail-bulk:before {
  content: "\f674";
}

.fa-mailchimp:before {
  content: "\f59e";
}

.fa-male:before {
  content: "\f183";
}

.fa-mandalorian:before {
  content: "\f50f";
}

.fa-map:before {
  content: "\f279";
}

.fa-map-marked:before {
  content: "\f59f";
}

.fa-map-marked-alt:before {
  content: "\f5a0";
}

.fa-map-marker:before {
  content: "\f041";
}

.fa-map-marker-alt:before {
  content: "\f3c5";
}

.fa-map-pin:before {
  content: "\f276";
}

.fa-map-signs:before {
  content: "\f277";
}

.fa-markdown:before {
  content: "\f60f";
}

.fa-marker:before {
  content: "\f5a1";
}

.fa-mars:before {
  content: "\f222";
}

.fa-mars-double:before {
  content: "\f227";
}

.fa-mars-stroke:before {
  content: "\f229";
}

.fa-mars-stroke-h:before {
  content: "\f22b";
}

.fa-mars-stroke-v:before {
  content: "\f22a";
}

.fa-mask:before {
  content: "\f6fa";
}

.fa-mastodon:before {
  content: "\f4f6";
}

.fa-maxcdn:before {
  content: "\f136";
}

.fa-mdb:before {
  content: "\f8ca";
}

.fa-medal:before {
  content: "\f5a2";
}

.fa-medapps:before {
  content: "\f3c6";
}

.fa-medium:before {
  content: "\f23a";
}

.fa-medium-m:before {
  content: "\f3c7";
}

.fa-medkit:before {
  content: "\f0fa";
}

.fa-medrt:before {
  content: "\f3c8";
}

.fa-meetup:before {
  content: "\f2e0";
}

.fa-megaport:before {
  content: "\f5a3";
}

.fa-meh:before {
  content: "\f11a";
}

.fa-meh-blank:before {
  content: "\f5a4";
}

.fa-meh-rolling-eyes:before {
  content: "\f5a5";
}

.fa-memory:before {
  content: "\f538";
}

.fa-mendeley:before {
  content: "\f7b3";
}

.fa-menorah:before {
  content: "\f676";
}

.fa-mercury:before {
  content: "\f223";
}

.fa-meteor:before {
  content: "\f753";
}

.fa-microblog:before {
  content: "\e01a";
}

.fa-microchip:before {
  content: "\f2db";
}

.fa-microphone:before {
  content: "\f130";
}

.fa-microphone-alt:before {
  content: "\f3c9";
}

.fa-microphone-alt-slash:before {
  content: "\f539";
}

.fa-microphone-slash:before {
  content: "\f131";
}

.fa-microscope:before {
  content: "\f610";
}

.fa-microsoft:before {
  content: "\f3ca";
}

.fa-minus:before {
  content: "\f068";
}

.fa-minus-circle:before {
  content: "\f056";
}

.fa-minus-square:before {
  content: "\f146";
}

.fa-mitten:before {
  content: "\f7b5";
}

.fa-mix:before {
  content: "\f3cb";
}

.fa-mixcloud:before {
  content: "\f289";
}

.fa-mixer:before {
  content: "\e056";
}

.fa-mizuni:before {
  content: "\f3cc";
}

.fa-mobile:before {
  content: "\f10b";
}

.fa-mobile-alt:before {
  content: "\f3cd";
}

.fa-modx:before {
  content: "\f285";
}

.fa-monero:before {
  content: "\f3d0";
}

.fa-money-bill:before {
  content: "\f0d6";
}

.fa-money-bill-alt:before {
  content: "\f3d1";
}

.fa-money-bill-wave:before {
  content: "\f53a";
}

.fa-money-bill-wave-alt:before {
  content: "\f53b";
}

.fa-money-check:before {
  content: "\f53c";
}

.fa-money-check-alt:before {
  content: "\f53d";
}

.fa-monument:before {
  content: "\f5a6";
}

.fa-moon:before {
  content: "\f186";
}

.fa-mortar-pestle:before {
  content: "\f5a7";
}

.fa-mosque:before {
  content: "\f678";
}

.fa-motorcycle:before {
  content: "\f21c";
}

.fa-mountain:before {
  content: "\f6fc";
}

.fa-mouse:before {
  content: "\f8cc";
}

.fa-mouse-pointer:before {
  content: "\f245";
}

.fa-mug-hot:before {
  content: "\f7b6";
}

.fa-music:before {
  content: "\f001";
}

.fa-napster:before {
  content: "\f3d2";
}

.fa-neos:before {
  content: "\f612";
}

.fa-network-wired:before {
  content: "\f6ff";
}

.fa-neuter:before {
  content: "\f22c";
}

.fa-newspaper:before {
  content: "\f1ea";
}

.fa-nimblr:before {
  content: "\f5a8";
}

.fa-node:before {
  content: "\f419";
}

.fa-node-js:before {
  content: "\f3d3";
}

.fa-not-equal:before {
  content: "\f53e";
}

.fa-notes-medical:before {
  content: "\f481";
}

.fa-npm:before {
  content: "\f3d4";
}

.fa-ns8:before {
  content: "\f3d5";
}

.fa-nutritionix:before {
  content: "\f3d6";
}

.fa-object-group:before {
  content: "\f247";
}

.fa-object-ungroup:before {
  content: "\f248";
}

.fa-octopus-deploy:before {
  content: "\e082";
}

.fa-odnoklassniki:before {
  content: "\f263";
}

.fa-odnoklassniki-square:before {
  content: "\f264";
}

.fa-oil-can:before {
  content: "\f613";
}

.fa-old-republic:before {
  content: "\f510";
}

.fa-om:before {
  content: "\f679";
}

.fa-opencart:before {
  content: "\f23d";
}

.fa-openid:before {
  content: "\f19b";
}

.fa-opera:before {
  content: "\f26a";
}

.fa-optin-monster:before {
  content: "\f23c";
}

.fa-orcid:before {
  content: "\f8d2";
}

.fa-osi:before {
  content: "\f41a";
}

.fa-otter:before {
  content: "\f700";
}

.fa-outdent:before {
  content: "\f03b";
}

.fa-page4:before {
  content: "\f3d7";
}

.fa-pagelines:before {
  content: "\f18c";
}

.fa-pager:before {
  content: "\f815";
}

.fa-paint-brush:before {
  content: "\f1fc";
}

.fa-paint-roller:before {
  content: "\f5aa";
}

.fa-palette:before {
  content: "\f53f";
}

.fa-palfed:before {
  content: "\f3d8";
}

.fa-pallet:before {
  content: "\f482";
}

.fa-paper-plane:before {
  content: "\f1d8";
}

.fa-paperclip:before {
  content: "\f0c6";
}

.fa-parachute-box:before {
  content: "\f4cd";
}

.fa-paragraph:before {
  content: "\f1dd";
}

.fa-parking:before {
  content: "\f540";
}

.fa-passport:before {
  content: "\f5ab";
}

.fa-pastafarianism:before {
  content: "\f67b";
}

.fa-paste:before {
  content: "\f0ea";
}

.fa-patreon:before {
  content: "\f3d9";
}

.fa-pause:before {
  content: "\f04c";
}

.fa-pause-circle:before {
  content: "\f28b";
}

.fa-paw:before {
  content: "\f1b0";
}

.fa-paypal:before {
  content: "\f1ed";
}

.fa-peace:before {
  content: "\f67c";
}

.fa-pen:before {
  content: "\f304";
}

.fa-pen-alt:before {
  content: "\f305";
}

.fa-pen-fancy:before {
  content: "\f5ac";
}

.fa-pen-nib:before {
  content: "\f5ad";
}

.fa-pen-square:before {
  content: "\f14b";
}

.fa-pencil-alt:before {
  content: "\f303";
}

.fa-pencil-ruler:before {
  content: "\f5ae";
}

.fa-penny-arcade:before {
  content: "\f704";
}

.fa-people-arrows:before {
  content: "\e068";
}

.fa-people-carry:before {
  content: "\f4ce";
}

.fa-pepper-hot:before {
  content: "\f816";
}

.fa-perbyte:before {
  content: "\e083";
}

.fa-percent:before {
  content: "\f295";
}

.fa-percentage:before {
  content: "\f541";
}

.fa-periscope:before {
  content: "\f3da";
}

.fa-person-booth:before {
  content: "\f756";
}

.fa-phabricator:before {
  content: "\f3db";
}

.fa-phoenix-framework:before {
  content: "\f3dc";
}

.fa-phoenix-squadron:before {
  content: "\f511";
}

.fa-phone:before {
  content: "\f095";
}

.fa-phone-alt:before {
  content: "\f879";
}

.fa-phone-slash:before {
  content: "\f3dd";
}

.fa-phone-square:before {
  content: "\f098";
}

.fa-phone-square-alt:before {
  content: "\f87b";
}

.fa-phone-volume:before {
  content: "\f2a0";
}

.fa-photo-video:before {
  content: "\f87c";
}

.fa-php:before {
  content: "\f457";
}

.fa-pied-piper:before {
  content: "\f2ae";
}

.fa-pied-piper-alt:before {
  content: "\f1a8";
}

.fa-pied-piper-hat:before {
  content: "\f4e5";
}

.fa-pied-piper-pp:before {
  content: "\f1a7";
}

.fa-pied-piper-square:before {
  content: "\e01e";
}

.fa-piggy-bank:before {
  content: "\f4d3";
}

.fa-pills:before {
  content: "\f484";
}

.fa-pinterest:before {
  content: "\f0d2";
}

.fa-pinterest-p:before {
  content: "\f231";
}

.fa-pinterest-square:before {
  content: "\f0d3";
}

.fa-pizza-slice:before {
  content: "\f818";
}

.fa-place-of-worship:before {
  content: "\f67f";
}

.fa-plane:before {
  content: "\f072";
}

.fa-plane-arrival:before {
  content: "\f5af";
}

.fa-plane-departure:before {
  content: "\f5b0";
}

.fa-plane-slash:before {
  content: "\e069";
}

.fa-play:before {
  content: "\f04b";
}

.fa-play-circle:before {
  content: "\f144";
}

.fa-playstation:before {
  content: "\f3df";
}

.fa-plug:before {
  content: "\f1e6";
}

.fa-plus:before {
  content: "\f067";
}

.fa-plus-circle:before {
  content: "\f055";
}

.fa-plus-square:before {
  content: "\f0fe";
}

.fa-podcast:before {
  content: "\f2ce";
}

.fa-poll:before {
  content: "\f681";
}

.fa-poll-h:before {
  content: "\f682";
}

.fa-poo:before {
  content: "\f2fe";
}

.fa-poo-storm:before {
  content: "\f75a";
}

.fa-poop:before {
  content: "\f619";
}

.fa-portrait:before {
  content: "\f3e0";
}

.fa-pound-sign:before {
  content: "\f154";
}

.fa-power-off:before {
  content: "\f011";
}

.fa-pray:before {
  content: "\f683";
}

.fa-praying-hands:before {
  content: "\f684";
}

.fa-prescription:before {
  content: "\f5b1";
}

.fa-prescription-bottle:before {
  content: "\f485";
}

.fa-prescription-bottle-alt:before {
  content: "\f486";
}

.fa-print:before {
  content: "\f02f";
}

.fa-procedures:before {
  content: "\f487";
}

.fa-product-hunt:before {
  content: "\f288";
}

.fa-project-diagram:before {
  content: "\f542";
}

.fa-pump-medical:before {
  content: "\e06a";
}

.fa-pump-soap:before {
  content: "\e06b";
}

.fa-pushed:before {
  content: "\f3e1";
}

.fa-puzzle-piece:before {
  content: "\f12e";
}

.fa-python:before {
  content: "\f3e2";
}

.fa-qq:before {
  content: "\f1d6";
}

.fa-qrcode:before {
  content: "\f029";
}

.fa-question:before {
  content: "\f128";
}

.fa-question-circle:before {
  content: "\f059";
}

.fa-quidditch:before {
  content: "\f458";
}

.fa-quinscape:before {
  content: "\f459";
}

.fa-quora:before {
  content: "\f2c4";
}

.fa-quote-left:before {
  content: "\f10d";
}

.fa-quote-right:before {
  content: "\f10e";
}

.fa-quran:before {
  content: "\f687";
}

.fa-r-project:before {
  content: "\f4f7";
}

.fa-radiation:before {
  content: "\f7b9";
}

.fa-radiation-alt:before {
  content: "\f7ba";
}

.fa-rainbow:before {
  content: "\f75b";
}

.fa-random:before {
  content: "\f074";
}

.fa-raspberry-pi:before {
  content: "\f7bb";
}

.fa-ravelry:before {
  content: "\f2d9";
}

.fa-react:before {
  content: "\f41b";
}

.fa-reacteurope:before {
  content: "\f75d";
}

.fa-readme:before {
  content: "\f4d5";
}

.fa-rebel:before {
  content: "\f1d0";
}

.fa-receipt:before {
  content: "\f543";
}

.fa-record-vinyl:before {
  content: "\f8d9";
}

.fa-recycle:before {
  content: "\f1b8";
}

.fa-red-river:before {
  content: "\f3e3";
}

.fa-reddit:before {
  content: "\f1a1";
}

.fa-reddit-alien:before {
  content: "\f281";
}

.fa-reddit-square:before {
  content: "\f1a2";
}

.fa-redhat:before {
  content: "\f7bc";
}

.fa-redo:before {
  content: "\f01e";
}

.fa-redo-alt:before {
  content: "\f2f9";
}

.fa-registered:before {
  content: "\f25d";
}

.fa-remove-format:before {
  content: "\f87d";
}

.fa-renren:before {
  content: "\f18b";
}

.fa-reply:before {
  content: "\f3e5";
}

.fa-reply-all:before {
  content: "\f122";
}

.fa-replyd:before {
  content: "\f3e6";
}

.fa-republican:before {
  content: "\f75e";
}

.fa-researchgate:before {
  content: "\f4f8";
}

.fa-resolving:before {
  content: "\f3e7";
}

.fa-restroom:before {
  content: "\f7bd";
}

.fa-retweet:before {
  content: "\f079";
}

.fa-rev:before {
  content: "\f5b2";
}

.fa-ribbon:before {
  content: "\f4d6";
}

.fa-ring:before {
  content: "\f70b";
}

.fa-road:before {
  content: "\f018";
}

.fa-robot:before {
  content: "\f544";
}

.fa-rocket:before {
  content: "\f135";
}

.fa-rocketchat:before {
  content: "\f3e8";
}

.fa-rockrms:before {
  content: "\f3e9";
}

.fa-route:before {
  content: "\f4d7";
}

.fa-rss:before {
  content: "\f09e";
}

.fa-rss-square:before {
  content: "\f143";
}

.fa-ruble-sign:before {
  content: "\f158";
}

.fa-ruler:before {
  content: "\f545";
}

.fa-ruler-combined:before {
  content: "\f546";
}

.fa-ruler-horizontal:before {
  content: "\f547";
}

.fa-ruler-vertical:before {
  content: "\f548";
}

.fa-running:before {
  content: "\f70c";
}

.fa-rupee-sign:before {
  content: "\f156";
}

.fa-rust:before {
  content: "\e07a";
}

.fa-sad-cry:before {
  content: "\f5b3";
}

.fa-sad-tear:before {
  content: "\f5b4";
}

.fa-safari:before {
  content: "\f267";
}

.fa-salesforce:before {
  content: "\f83b";
}

.fa-sass:before {
  content: "\f41e";
}

.fa-satellite:before {
  content: "\f7bf";
}

.fa-satellite-dish:before {
  content: "\f7c0";
}

.fa-save:before {
  content: "\f0c7";
}

.fa-schlix:before {
  content: "\f3ea";
}

.fa-school:before {
  content: "\f549";
}

.fa-screwdriver:before {
  content: "\f54a";
}

.fa-scribd:before {
  content: "\f28a";
}

.fa-scroll:before {
  content: "\f70e";
}

.fa-sd-card:before {
  content: "\f7c2";
}

.fa-search:before {
  content: "\f002";
}

.fa-search-dollar:before {
  content: "\f688";
}

.fa-search-location:before {
  content: "\f689";
}

.fa-search-minus:before {
  content: "\f010";
}

.fa-search-plus:before {
  content: "\f00e";
}

.fa-searchengin:before {
  content: "\f3eb";
}

.fa-seedling:before {
  content: "\f4d8";
}

.fa-sellcast:before {
  content: "\f2da";
}

.fa-sellsy:before {
  content: "\f213";
}

.fa-server:before {
  content: "\f233";
}

.fa-servicestack:before {
  content: "\f3ec";
}

.fa-shapes:before {
  content: "\f61f";
}

.fa-share:before {
  content: "\f064";
}

.fa-share-alt:before {
  content: "\f1e0";
}

.fa-share-alt-square:before {
  content: "\f1e1";
}

.fa-share-square:before {
  content: "\f14d";
}

.fa-shekel-sign:before {
  content: "\f20b";
}

.fa-shield-alt:before {
  content: "\f3ed";
}

.fa-shield-virus:before {
  content: "\e06c";
}

.fa-ship:before {
  content: "\f21a";
}

.fa-shipping-fast:before {
  content: "\f48b";
}

.fa-shirtsinbulk:before {
  content: "\f214";
}

.fa-shoe-prints:before {
  content: "\f54b";
}

.fa-shopify:before {
  content: "\e057";
}

.fa-shopping-bag:before {
  content: "\f290";
}

.fa-shopping-basket:before {
  content: "\f291";
}

.fa-shopping-cart:before {
  content: "\f07a";
}

.fa-shopware:before {
  content: "\f5b5";
}

.fa-shower:before {
  content: "\f2cc";
}

.fa-shuttle-van:before {
  content: "\f5b6";
}

.fa-sign:before {
  content: "\f4d9";
}

.fa-sign-in-alt:before {
  content: "\f2f6";
}

.fa-sign-language:before {
  content: "\f2a7";
}

.fa-sign-out-alt:before {
  content: "\f2f5";
}

.fa-signal:before {
  content: "\f012";
}

.fa-signature:before {
  content: "\f5b7";
}

.fa-sim-card:before {
  content: "\f7c4";
}

.fa-simplybuilt:before {
  content: "\f215";
}

.fa-sink:before {
  content: "\e06d";
}

.fa-sistrix:before {
  content: "\f3ee";
}

.fa-sitemap:before {
  content: "\f0e8";
}

.fa-sith:before {
  content: "\f512";
}

.fa-skating:before {
  content: "\f7c5";
}

.fa-sketch:before {
  content: "\f7c6";
}

.fa-skiing:before {
  content: "\f7c9";
}

.fa-skiing-nordic:before {
  content: "\f7ca";
}

.fa-skull:before {
  content: "\f54c";
}

.fa-skull-crossbones:before {
  content: "\f714";
}

.fa-skyatlas:before {
  content: "\f216";
}

.fa-skype:before {
  content: "\f17e";
}

.fa-slack:before {
  content: "\f198";
}

.fa-slack-hash:before {
  content: "\f3ef";
}

.fa-slash:before {
  content: "\f715";
}

.fa-sleigh:before {
  content: "\f7cc";
}

.fa-sliders-h:before {
  content: "\f1de";
}

.fa-slideshare:before {
  content: "\f1e7";
}

.fa-smile:before {
  content: "\f118";
}

.fa-smile-beam:before {
  content: "\f5b8";
}

.fa-smile-wink:before {
  content: "\f4da";
}

.fa-smog:before {
  content: "\f75f";
}

.fa-smoking:before {
  content: "\f48d";
}

.fa-smoking-ban:before {
  content: "\f54d";
}

.fa-sms:before {
  content: "\f7cd";
}

.fa-snapchat:before {
  content: "\f2ab";
}

.fa-snapchat-ghost:before {
  content: "\f2ac";
}

.fa-snapchat-square:before {
  content: "\f2ad";
}

.fa-snowboarding:before {
  content: "\f7ce";
}

.fa-snowflake:before {
  content: "\f2dc";
}

.fa-snowman:before {
  content: "\f7d0";
}

.fa-snowplow:before {
  content: "\f7d2";
}

.fa-soap:before {
  content: "\e06e";
}

.fa-socks:before {
  content: "\f696";
}

.fa-solar-panel:before {
  content: "\f5ba";
}

.fa-sort:before {
  content: "\f0dc";
}

.fa-sort-alpha-down:before {
  content: "\f15d";
}

.fa-sort-alpha-down-alt:before {
  content: "\f881";
}

.fa-sort-alpha-up:before {
  content: "\f15e";
}

.fa-sort-alpha-up-alt:before {
  content: "\f882";
}

.fa-sort-amount-down:before {
  content: "\f160";
}

.fa-sort-amount-down-alt:before {
  content: "\f884";
}

.fa-sort-amount-up:before {
  content: "\f161";
}

.fa-sort-amount-up-alt:before {
  content: "\f885";
}

.fa-sort-down:before {
  content: "\f0dd";
}

.fa-sort-numeric-down:before {
  content: "\f162";
}

.fa-sort-numeric-down-alt:before {
  content: "\f886";
}

.fa-sort-numeric-up:before {
  content: "\f163";
}

.fa-sort-numeric-up-alt:before {
  content: "\f887";
}

.fa-sort-up:before {
  content: "\f0de";
}

.fa-soundcloud:before {
  content: "\f1be";
}

.fa-sourcetree:before {
  content: "\f7d3";
}

.fa-spa:before {
  content: "\f5bb";
}

.fa-space-shuttle:before {
  content: "\f197";
}

.fa-speakap:before {
  content: "\f3f3";
}

.fa-speaker-deck:before {
  content: "\f83c";
}

.fa-spell-check:before {
  content: "\f891";
}

.fa-spider:before {
  content: "\f717";
}

.fa-spinner:before {
  content: "\f110";
}

.fa-splotch:before {
  content: "\f5bc";
}

.fa-spotify:before {
  content: "\f1bc";
}

.fa-spray-can:before {
  content: "\f5bd";
}

.fa-square:before {
  content: "\f0c8";
}

.fa-square-full:before {
  content: "\f45c";
}

.fa-square-root-alt:before {
  content: "\f698";
}

.fa-squarespace:before {
  content: "\f5be";
}

.fa-stack-exchange:before {
  content: "\f18d";
}

.fa-stack-overflow:before {
  content: "\f16c";
}

.fa-stackpath:before {
  content: "\f842";
}

.fa-stamp:before {
  content: "\f5bf";
}

.fa-star:before {
  content: "\f005";
}

.fa-star-and-crescent:before {
  content: "\f699";
}

.fa-star-half:before {
  content: "\f089";
}

.fa-star-half-alt:before {
  content: "\f5c0";
}

.fa-star-of-david:before {
  content: "\f69a";
}

.fa-star-of-life:before {
  content: "\f621";
}

.fa-staylinked:before {
  content: "\f3f5";
}

.fa-steam:before {
  content: "\f1b6";
}

.fa-steam-square:before {
  content: "\f1b7";
}

.fa-steam-symbol:before {
  content: "\f3f6";
}

.fa-step-backward:before {
  content: "\f048";
}

.fa-step-forward:before {
  content: "\f051";
}

.fa-stethoscope:before {
  content: "\f0f1";
}

.fa-sticker-mule:before {
  content: "\f3f7";
}

.fa-sticky-note:before {
  content: "\f249";
}

.fa-stop:before {
  content: "\f04d";
}

.fa-stop-circle:before {
  content: "\f28d";
}

.fa-stopwatch:before {
  content: "\f2f2";
}

.fa-stopwatch-20:before {
  content: "\e06f";
}

.fa-store:before {
  content: "\f54e";
}

.fa-store-alt:before {
  content: "\f54f";
}

.fa-store-alt-slash:before {
  content: "\e070";
}

.fa-store-slash:before {
  content: "\e071";
}

.fa-strava:before {
  content: "\f428";
}

.fa-stream:before {
  content: "\f550";
}

.fa-street-view:before {
  content: "\f21d";
}

.fa-strikethrough:before {
  content: "\f0cc";
}

.fa-stripe:before {
  content: "\f429";
}

.fa-stripe-s:before {
  content: "\f42a";
}

.fa-stroopwafel:before {
  content: "\f551";
}

.fa-studiovinari:before {
  content: "\f3f8";
}

.fa-stumbleupon:before {
  content: "\f1a4";
}

.fa-stumbleupon-circle:before {
  content: "\f1a3";
}

.fa-subscript:before {
  content: "\f12c";
}

.fa-subway:before {
  content: "\f239";
}

.fa-suitcase:before {
  content: "\f0f2";
}

.fa-suitcase-rolling:before {
  content: "\f5c1";
}

.fa-sun:before {
  content: "\f185";
}

.fa-superpowers:before {
  content: "\f2dd";
}

.fa-superscript:before {
  content: "\f12b";
}

.fa-supple:before {
  content: "\f3f9";
}

.fa-surprise:before {
  content: "\f5c2";
}

.fa-suse:before {
  content: "\f7d6";
}

.fa-swatchbook:before {
  content: "\f5c3";
}

.fa-swift:before {
  content: "\f8e1";
}

.fa-swimmer:before {
  content: "\f5c4";
}

.fa-swimming-pool:before {
  content: "\f5c5";
}

.fa-symfony:before {
  content: "\f83d";
}

.fa-synagogue:before {
  content: "\f69b";
}

.fa-sync:before {
  content: "\f021";
}

.fa-sync-alt:before {
  content: "\f2f1";
}

.fa-syringe:before {
  content: "\f48e";
}

.fa-table:before {
  content: "\f0ce";
}

.fa-table-tennis:before {
  content: "\f45d";
}

.fa-tablet:before {
  content: "\f10a";
}

.fa-tablet-alt:before {
  content: "\f3fa";
}

.fa-tablets:before {
  content: "\f490";
}

.fa-tachometer-alt:before {
  content: "\f3fd";
}

.fa-tag:before {
  content: "\f02b";
}

.fa-tags:before {
  content: "\f02c";
}

.fa-tape:before {
  content: "\f4db";
}

.fa-tasks:before {
  content: "\f0ae";
}

.fa-taxi:before {
  content: "\f1ba";
}

.fa-teamspeak:before {
  content: "\f4f9";
}

.fa-teeth:before {
  content: "\f62e";
}

.fa-teeth-open:before {
  content: "\f62f";
}

.fa-telegram:before {
  content: "\f2c6";
}

.fa-telegram-plane:before {
  content: "\f3fe";
}

.fa-temperature-high:before {
  content: "\f769";
}

.fa-temperature-low:before {
  content: "\f76b";
}

.fa-tencent-weibo:before {
  content: "\f1d5";
}

.fa-tenge:before {
  content: "\f7d7";
}

.fa-terminal:before {
  content: "\f120";
}

.fa-text-height:before {
  content: "\f034";
}

.fa-text-width:before {
  content: "\f035";
}

.fa-th:before {
  content: "\f00a";
}

.fa-th-large:before {
  content: "\f009";
}

.fa-th-list:before {
  content: "\f00b";
}

.fa-the-red-yeti:before {
  content: "\f69d";
}

.fa-theater-masks:before {
  content: "\f630";
}

.fa-themeco:before {
  content: "\f5c6";
}

.fa-themeisle:before {
  content: "\f2b2";
}

.fa-thermometer:before {
  content: "\f491";
}

.fa-thermometer-empty:before {
  content: "\f2cb";
}

.fa-thermometer-full:before {
  content: "\f2c7";
}

.fa-thermometer-half:before {
  content: "\f2c9";
}

.fa-thermometer-quarter:before {
  content: "\f2ca";
}

.fa-thermometer-three-quarters:before {
  content: "\f2c8";
}

.fa-think-peaks:before {
  content: "\f731";
}

.fa-thumbs-down:before {
  content: "\f165";
}

.fa-thumbs-up:before {
  content: "\f164";
}

.fa-thumbtack:before {
  content: "\f08d";
}

.fa-ticket-alt:before {
  content: "\f3ff";
}

.fa-tiktok:before {
  content: "\e07b";
}

.fa-times:before {
  content: "\f00d";
}

.fa-times-circle:before {
  content: "\f057";
}

.fa-tint:before {
  content: "\f043";
}

.fa-tint-slash:before {
  content: "\f5c7";
}

.fa-tired:before {
  content: "\f5c8";
}

.fa-toggle-off:before {
  content: "\f204";
}

.fa-toggle-on:before {
  content: "\f205";
}

.fa-toilet:before {
  content: "\f7d8";
}

.fa-toilet-paper:before {
  content: "\f71e";
}

.fa-toilet-paper-slash:before {
  content: "\e072";
}

.fa-toolbox:before {
  content: "\f552";
}

.fa-tools:before {
  content: "\f7d9";
}

.fa-tooth:before {
  content: "\f5c9";
}

.fa-torah:before {
  content: "\f6a0";
}

.fa-torii-gate:before {
  content: "\f6a1";
}

.fa-tractor:before {
  content: "\f722";
}

.fa-trade-federation:before {
  content: "\f513";
}

.fa-trademark:before {
  content: "\f25c";
}

.fa-traffic-light:before {
  content: "\f637";
}

.fa-trailer:before {
  content: "\e041";
}

.fa-train:before {
  content: "\f238";
}

.fa-tram:before {
  content: "\f7da";
}

.fa-transgender:before {
  content: "\f224";
}

.fa-transgender-alt:before {
  content: "\f225";
}

.fa-trash:before {
  content: "\f1f8";
}

.fa-trash-alt:before {
  content: "\f2ed";
}

.fa-trash-restore:before {
  content: "\f829";
}

.fa-trash-restore-alt:before {
  content: "\f82a";
}

.fa-tree:before {
  content: "\f1bb";
}

.fa-trello:before {
  content: "\f181";
}

.fa-tripadvisor:before {
  content: "\f262";
}

.fa-trophy:before {
  content: "\f091";
}

.fa-truck:before {
  content: "\f0d1";
}

.fa-truck-loading:before {
  content: "\f4de";
}

.fa-truck-monster:before {
  content: "\f63b";
}

.fa-truck-moving:before {
  content: "\f4df";
}

.fa-truck-pickup:before {
  content: "\f63c";
}

.fa-tshirt:before {
  content: "\f553";
}

.fa-tty:before {
  content: "\f1e4";
}

.fa-tumblr:before {
  content: "\f173";
}

.fa-tumblr-square:before {
  content: "\f174";
}

.fa-tv:before {
  content: "\f26c";
}

.fa-twitch:before {
  content: "\f1e8";
}

.fa-twitter:before {
  content: "\f099";
}

.fa-twitter-square:before {
  content: "\f081";
}

.fa-typo3:before {
  content: "\f42b";
}

.fa-uber:before {
  content: "\f402";
}

.fa-ubuntu:before {
  content: "\f7df";
}

.fa-uikit:before {
  content: "\f403";
}

.fa-umbraco:before {
  content: "\f8e8";
}

.fa-umbrella:before {
  content: "\f0e9";
}

.fa-umbrella-beach:before {
  content: "\f5ca";
}

.fa-uncharted:before {
  content: "\e084";
}

.fa-underline:before {
  content: "\f0cd";
}

.fa-undo:before {
  content: "\f0e2";
}

.fa-undo-alt:before {
  content: "\f2ea";
}

.fa-uniregistry:before {
  content: "\f404";
}

.fa-unity:before {
  content: "\e049";
}

.fa-universal-access:before {
  content: "\f29a";
}

.fa-university:before {
  content: "\f19c";
}

.fa-unlink:before {
  content: "\f127";
}

.fa-unlock:before {
  content: "\f09c";
}

.fa-unlock-alt:before {
  content: "\f13e";
}

.fa-unsplash:before {
  content: "\e07c";
}

.fa-untappd:before {
  content: "\f405";
}

.fa-upload:before {
  content: "\f093";
}

.fa-ups:before {
  content: "\f7e0";
}

.fa-usb:before {
  content: "\f287";
}

.fa-user:before {
  content: "\f007";
}

.fa-user-alt:before {
  content: "\f406";
}

.fa-user-alt-slash:before {
  content: "\f4fa";
}

.fa-user-astronaut:before {
  content: "\f4fb";
}

.fa-user-check:before {
  content: "\f4fc";
}

.fa-user-circle:before {
  content: "\f2bd";
}

.fa-user-clock:before {
  content: "\f4fd";
}

.fa-user-cog:before {
  content: "\f4fe";
}

.fa-user-edit:before {
  content: "\f4ff";
}

.fa-user-friends:before {
  content: "\f500";
}

.fa-user-graduate:before {
  content: "\f501";
}

.fa-user-injured:before {
  content: "\f728";
}

.fa-user-lock:before {
  content: "\f502";
}

.fa-user-md:before {
  content: "\f0f0";
}

.fa-user-minus:before {
  content: "\f503";
}

.fa-user-ninja:before {
  content: "\f504";
}

.fa-user-nurse:before {
  content: "\f82f";
}

.fa-user-plus:before {
  content: "\f234";
}

.fa-user-secret:before {
  content: "\f21b";
}

.fa-user-shield:before {
  content: "\f505";
}

.fa-user-slash:before {
  content: "\f506";
}

.fa-user-tag:before {
  content: "\f507";
}

.fa-user-tie:before {
  content: "\f508";
}

.fa-user-times:before {
  content: "\f235";
}

.fa-users:before {
  content: "\f0c0";
}

.fa-users-cog:before {
  content: "\f509";
}

.fa-users-slash:before {
  content: "\e073";
}

.fa-usps:before {
  content: "\f7e1";
}

.fa-ussunnah:before {
  content: "\f407";
}

.fa-utensil-spoon:before {
  content: "\f2e5";
}

.fa-utensils:before {
  content: "\f2e7";
}

.fa-vaadin:before {
  content: "\f408";
}

.fa-vector-square:before {
  content: "\f5cb";
}

.fa-venus:before {
  content: "\f221";
}

.fa-venus-double:before {
  content: "\f226";
}

.fa-venus-mars:before {
  content: "\f228";
}

.fa-vest:before {
  content: "\e085";
}

.fa-vest-patches:before {
  content: "\e086";
}

.fa-viacoin:before {
  content: "\f237";
}

.fa-viadeo:before {
  content: "\f2a9";
}

.fa-viadeo-square:before {
  content: "\f2aa";
}

.fa-vial:before {
  content: "\f492";
}

.fa-vials:before {
  content: "\f493";
}

.fa-viber:before {
  content: "\f409";
}

.fa-video:before {
  content: "\f03d";
}

.fa-video-slash:before {
  content: "\f4e2";
}

.fa-vihara:before {
  content: "\f6a7";
}

.fa-vimeo:before {
  content: "\f40a";
}

.fa-vimeo-square:before {
  content: "\f194";
}

.fa-vimeo-v:before {
  content: "\f27d";
}

.fa-vine:before {
  content: "\f1ca";
}

.fa-virus:before {
  content: "\e074";
}

.fa-virus-slash:before {
  content: "\e075";
}

.fa-viruses:before {
  content: "\e076";
}

.fa-vk:before {
  content: "\f189";
}

.fa-vnv:before {
  content: "\f40b";
}

.fa-voicemail:before {
  content: "\f897";
}

.fa-volleyball-ball:before {
  content: "\f45f";
}

.fa-volume-down:before {
  content: "\f027";
}

.fa-volume-mute:before {
  content: "\f6a9";
}

.fa-volume-off:before {
  content: "\f026";
}

.fa-volume-up:before {
  content: "\f028";
}

.fa-vote-yea:before {
  content: "\f772";
}

.fa-vr-cardboard:before {
  content: "\f729";
}

.fa-vuejs:before {
  content: "\f41f";
}

.fa-walking:before {
  content: "\f554";
}

.fa-wallet:before {
  content: "\f555";
}

.fa-warehouse:before {
  content: "\f494";
}

.fa-watchman-monitoring:before {
  content: "\e087";
}

.fa-water:before {
  content: "\f773";
}

.fa-wave-square:before {
  content: "\f83e";
}

.fa-waze:before {
  content: "\f83f";
}

.fa-weebly:before {
  content: "\f5cc";
}

.fa-weibo:before {
  content: "\f18a";
}

.fa-weight:before {
  content: "\f496";
}

.fa-weight-hanging:before {
  content: "\f5cd";
}

.fa-weixin:before {
  content: "\f1d7";
}

.fa-whatsapp:before {
  content: "\f232";
}

.fa-whatsapp-square:before {
  content: "\f40c";
}

.fa-wheelchair:before {
  content: "\f193";
}

.fa-whmcs:before {
  content: "\f40d";
}

.fa-wifi:before {
  content: "\f1eb";
}

.fa-wikipedia-w:before {
  content: "\f266";
}

.fa-wind:before {
  content: "\f72e";
}

.fa-window-close:before {
  content: "\f410";
}

.fa-window-maximize:before {
  content: "\f2d0";
}

.fa-window-minimize:before {
  content: "\f2d1";
}

.fa-window-restore:before {
  content: "\f2d2";
}

.fa-windows:before {
  content: "\f17a";
}

.fa-wine-bottle:before {
  content: "\f72f";
}

.fa-wine-glass:before {
  content: "\f4e3";
}

.fa-wine-glass-alt:before {
  content: "\f5ce";
}

.fa-wix:before {
  content: "\f5cf";
}

.fa-wizards-of-the-coast:before {
  content: "\f730";
}

.fa-wodu:before {
  content: "\e088";
}

.fa-wolf-pack-battalion:before {
  content: "\f514";
}

.fa-won-sign:before {
  content: "\f159";
}

.fa-wordpress:before {
  content: "\f19a";
}

.fa-wordpress-simple:before {
  content: "\f411";
}

.fa-wpbeginner:before {
  content: "\f297";
}

.fa-wpexplorer:before {
  content: "\f2de";
}

.fa-wpforms:before {
  content: "\f298";
}

.fa-wpressr:before {
  content: "\f3e4";
}

.fa-wrench:before {
  content: "\f0ad";
}

.fa-x-ray:before {
  content: "\f497";
}

.fa-xbox:before {
  content: "\f412";
}

.fa-xing:before {
  content: "\f168";
}

.fa-xing-square:before {
  content: "\f169";
}

.fa-y-combinator:before {
  content: "\f23b";
}

.fa-yahoo:before {
  content: "\f19e";
}

.fa-yammer:before {
  content: "\f840";
}

.fa-yandex:before {
  content: "\f413";
}

.fa-yandex-international:before {
  content: "\f414";
}

.fa-yarn:before {
  content: "\f7e3";
}

.fa-yelp:before {
  content: "\f1e9";
}

.fa-yen-sign:before {
  content: "\f157";
}

.fa-yin-yang:before {
  content: "\f6ad";
}

.fa-yoast:before {
  content: "\f2b1";
}

.fa-youtube:before {
  content: "\f167";
}

.fa-youtube-square:before {
  content: "\f431";
}

.fa-zhihu:before {
  content: "\f63f";
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

.sr-only-focusable:active, .sr-only-focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

@font-face{

  font-family: "Font Awesome 5 Brands";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/templates/4c2021/css/webfonts/fa-brands-400.eot);
  src: url(/templates/4c2021/css/webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(/templates/4c2021/css/webfonts/fa-brands-400.woff2) format("woff2"), url(/templates/4c2021/css/webfonts/fa-brands-400.woff) format("woff"), url(/templates/4c2021/css/webfonts/fa-brands-400.ttf) format("truetype"), url(/templates/4c2021/css/webfonts/fa-brands-400.svg#fontawesome) format("svg")

}

.fab {
  font-family: "Font Awesome 5 Brands";
}

@font-face{

  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url(/templates/4c2021/css/webfonts/fa-regular-400.eot);
  src: url(/templates/4c2021/css/webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(/templates/4c2021/css/webfonts/fa-regular-400.woff2) format("woff2"), url(/templates/4c2021/css/webfonts/fa-regular-400.woff) format("woff"), url(/templates/4c2021/css/webfonts/fa-regular-400.ttf) format("truetype"), url(/templates/4c2021/css/webfonts/fa-regular-400.svg#fontawesome) format("svg")

}

.fab, .far {
  font-weight: 400;
}

@font-face{

  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  font-display: block;
  src: url(/templates/4c2021/css/webfonts/fa-solid-900.eot);
  src: url(/templates/4c2021/css/webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(/templates/4c2021/css/webfonts/fa-solid-900.woff2) format("woff2"), url(/templates/4c2021/css/webfonts/fa-solid-900.woff) format("woff"), url(/templates/4c2021/css/webfonts/fa-solid-900.ttf) format("truetype"), url(/templates/4c2021/css/webfonts/fa-solid-900.svg#fontawesome) format("svg")

}

.fa, .far, .fas {
  font-family: "Font Awesome 5 Free";
}

.fa, .fas {
  font-weight: 900;
}

.owl-carousel, .owl-carousel .owl-item {
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.owl-carousel {
  display: none;
  width: 100%;
  z-index: 1;
}

.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  touch-action: manipulation;
  -moz-backface-visibility: hidden;
}

.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}

.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}

.owl-carousel .owl-dots.disabled, .owl-carousel .owl-nav.disabled {
  display: none;
}

.no-js .owl-carousel, .owl-carousel.owl-loaded {
  display: block;
}

.owl-carousel .owl-dot, .owl-carousel .owl-nav .owl-next, .owl-carousel .owl-nav .owl-prev {
  cursor: pointer;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel .owl-nav button.owl-next, .owl-carousel .owl-nav button.owl-prev, .owl-carousel button.owl-dot {
  background: 0 0;
  color: inherit;
  border: none;
  padding: 0 !important;
  font: inherit;
}

.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}

.owl-carousel.owl-hidden {
  opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.owl-carousel.owl-grab {
  cursor: grab;
}

.owl-carousel.owl-rtl {
  direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
  float: right;
}

.owl-carousel .animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
  z-index: 0;
}

.owl-carousel .owl-animated-out {
  z-index: 1;
}

.owl-carousel .fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOut{

  0% {
    opacity: 1
  }
  100% {
    opacity: 0
  }

}

.owl-height {
  transition: height .5s ease-in-out;
}

.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity .4s ease;
}

.owl-carousel .owl-item .owl-lazy:not([src]), .owl-carousel .owl-item .owl-lazy[src^=""] {
  max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}

.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}

.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url(owl.video.play.png) no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform .1s ease;
}

.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-play-icon, .owl-carousel .owl-video-playing .owl-video-tn {
  display: none;
}

.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity .4s ease;
}

.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}

:root {
  --animate-duration: 1s;
  --animate-delay: 1s;
  --animate-repeat: 1;
}

.animate__animated {
  -webkit-animation-duration: var(--animate-duration);
  animation-duration: var(--animate-duration);
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

.animate__animated.animate__infinite {
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

.animate__animated.animate__repeat-1 {
  -webkit-animation-iteration-count: var(--animate-repeat);
  animation-iteration-count: var(--animate-repeat);
}

.animate__animated.animate__repeat-2 {
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 2);
  animation-iteration-count: calc(var(--animate-repeat) * 2);
}

.animate__animated.animate__repeat-3 {
  -webkit-animation-iteration-count: calc(var(--animate-repeat) * 3);
  animation-iteration-count: calc(var(--animate-repeat) * 3);
}

.animate__animated.animate__delay-1s {
  -webkit-animation-delay: var(--animate-delay);
  animation-delay: var(--animate-delay);
}

.animate__animated.animate__delay-2s {
  -webkit-animation-delay: calc(var(--animate-delay) * 2);
  animation-delay: calc(var(--animate-delay) * 2);
}

.animate__animated.animate__delay-3s {
  -webkit-animation-delay: calc(var(--animate-delay) * 3);
  animation-delay: calc(var(--animate-delay) * 3);
}

.animate__animated.animate__delay-4s {
  -webkit-animation-delay: calc(var(--animate-delay) * 4);
  animation-delay: calc(var(--animate-delay) * 4);
}

.animate__animated.animate__delay-5s {
  -webkit-animation-delay: calc(var(--animate-delay) * 5);
  animation-delay: calc(var(--animate-delay) * 5);
}

.animate__animated.animate__faster {
  -webkit-animation-duration: calc(var(--animate-duration) / 2);
  animation-duration: calc(var(--animate-duration) / 2);
}

.animate__animated.animate__fast {
  -webkit-animation-duration: calc(var(--animate-duration) * .8);
  animation-duration: calc(var(--animate-duration) * .8);
}

.animate__animated.animate__slow {
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
}

.animate__animated.animate__slower {
  -webkit-animation-duration: calc(var(--animate-duration) * 3);
  animation-duration: calc(var(--animate-duration) * 3);
}

@-webkit-keyframes bounce{

  0%, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1)
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05)
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateZ(0) scaleY(.95);
    transform: translateZ(0) scaleY(.95)
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02)
  }

}

@keyframes bounce{

  0%, 20%, 53%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -30px, 0) scaleY(1.1);
    transform: translate3d(0, -30px, 0) scaleY(1.1)
  }
  70% {
    -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    animation-timing-function: cubic-bezier(.755, .05, .855, .06);
    -webkit-transform: translate3d(0, -15px, 0) scaleY(1.05);
    transform: translate3d(0, -15px, 0) scaleY(1.05)
  }
  80% {
    -webkit-transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    transition-timing-function: cubic-bezier(.215, .61, .355, 1);
    -webkit-transform: translateZ(0) scaleY(.95);
    transform: translateZ(0) scaleY(.95)
  }
  90% {
    -webkit-transform: translate3d(0, -4px, 0) scaleY(1.02);
    transform: translate3d(0, -4px, 0) scaleY(1.02)
  }

}

.animate__bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes flash{

  0%, 50%, to {
    opacity: 1
  }
  25%, 75% {
    opacity: 0
  }

}

@keyframes flash{

  0%, 50%, to {
    opacity: 1
  }
  25%, 75% {
    opacity: 0
  }

}

.animate__flash {
  -webkit-animation-name: flash;
  animation-name: flash;
}

@-webkit-keyframes pulse{

  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05)
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

}

@keyframes pulse{

  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05)
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

}

.animate__pulse {
  -webkit-animation-name: pulse;
  animation-name: pulse;
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes rubberBand{

  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
  30% {
    -webkit-transform: scale3d(1.25, .75, 1);
    transform: scale3d(1.25, .75, 1)
  }
  40% {
    -webkit-transform: scale3d(.75, 1.25, 1);
    transform: scale3d(.75, 1.25, 1)
  }
  50% {
    -webkit-transform: scale3d(1.15, .85, 1);
    transform: scale3d(1.15, .85, 1)
  }
  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1)
  }
  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1)
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

}

@keyframes rubberBand{

  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
  30% {
    -webkit-transform: scale3d(1.25, .75, 1);
    transform: scale3d(1.25, .75, 1)
  }
  40% {
    -webkit-transform: scale3d(.75, 1.25, 1);
    transform: scale3d(.75, 1.25, 1)
  }
  50% {
    -webkit-transform: scale3d(1.15, .85, 1);
    transform: scale3d(1.15, .85, 1)
  }
  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1)
  }
  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1)
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

}

.animate__rubberBand {
  -webkit-animation-name: rubberBand;
  animation-name: rubberBand;
}

@-webkit-keyframes shakeX{

  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
  }

}

@keyframes shakeX{

  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0)
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0)
  }

}

.animate__shakeX {
  -webkit-animation-name: shakeX;
  animation-name: shakeX;
}

@-webkit-keyframes shakeY{

  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }

}

@keyframes shakeY{

  0%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0)
  }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0)
  }

}

.animate__shakeY {
  -webkit-animation-name: shakeY;
  animation-name: shakeY;
}

@-webkit-keyframes headShake{

  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg)
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg)
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg)
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg)
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

}

@keyframes headShake{

  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg)
  }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg)
  }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg)
  }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg)
  }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0)
  }

}

.animate__headShake {
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: headShake;
  animation-name: headShake;
}

@-webkit-keyframes swing{

  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg)
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg)
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg)
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg)
  }
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }

}

@keyframes swing{

  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg)
  }
  40% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg)
  }
  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg)
  }
  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg)
  }
  to {
    -webkit-transform: rotate(0);
    transform: rotate(0)
  }

}

.animate__swing {
  -webkit-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  animation-name: swing;
}

@-webkit-keyframes tada{

  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
    transform: scale3d(.9, .9, .9) rotate(-3deg)
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

}

@keyframes tada{

  0% {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }
  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
    transform: scale3d(.9, .9, .9) rotate(-3deg)
  }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
  }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
  }
  to {
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

}

.animate__tada {
  -webkit-animation-name: tada;
  animation-name: tada;
}

@-webkit-keyframes wobble{

  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg)
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg)
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg)
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg)
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg)
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes wobble{

  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate(-5deg);
    transform: translate3d(-25%, 0, 0) rotate(-5deg)
  }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate(3deg);
    transform: translate3d(20%, 0, 0) rotate(3deg)
  }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate(-3deg);
    transform: translate3d(-15%, 0, 0) rotate(-3deg)
  }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate(2deg);
    transform: translate3d(10%, 0, 0) rotate(2deg)
  }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate(-1deg);
    transform: translate3d(-5%, 0, 0) rotate(-1deg)
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello{

  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg)
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg)
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg)
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg)
  }
  66.6% {
    -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
    transform: skewX(-.78125deg) skewY(-.78125deg)
  }
  77.7% {
    -webkit-transform: skewX(.390625deg) skewY(.390625deg);
    transform: skewX(.390625deg) skewY(.390625deg)
  }
  88.8% {
    -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
    transform: skewX(-.1953125deg) skewY(-.1953125deg)
  }

}

@keyframes jello{

  0%, 11.1%, to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg)
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg)
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg)
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg)
  }
  66.6% {
    -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
    transform: skewX(-.78125deg) skewY(-.78125deg)
  }
  77.7% {
    -webkit-transform: skewX(.390625deg) skewY(.390625deg);
    transform: skewX(.390625deg) skewY(.390625deg)
  }
  88.8% {
    -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
    transform: skewX(-.1953125deg) skewY(-.1953125deg)
  }

}

.animate__jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes heartBeat{

  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

}

@keyframes heartBeat{

  0% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
  14% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
  }
  28% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }
  42% {
    -webkit-transform: scale(1.3);
    transform: scale(1.3)
  }
  70% {
    -webkit-transform: scale(1);
    transform: scale(1)
  }

}

.animate__heartBeat {
  -webkit-animation-name: heartBeat;
  animation-name: heartBeat;
  -webkit-animation-duration: calc(var(--animate-duration) * 1.3);
  animation-duration: calc(var(--animate-duration) * 1.3);
  -webkit-animation-timing-function: ease-in-out;
  animation-timing-function: ease-in-out;
}

@-webkit-keyframes backInDown{

  0% {
    -webkit-transform: translateY(-1200px) scale(.7);
    transform: translateY(-1200px) scale(.7);
    opacity: .7
  }
  80% {
    -webkit-transform: translateY(0) scale(.7);
    transform: translateY(0) scale(.7);
    opacity: .7
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }

}

@keyframes backInDown{

  0% {
    -webkit-transform: translateY(-1200px) scale(.7);
    transform: translateY(-1200px) scale(.7);
    opacity: .7
  }
  80% {
    -webkit-transform: translateY(0) scale(.7);
    transform: translateY(0) scale(.7);
    opacity: .7
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }

}

.animate__backInDown {
  -webkit-animation-name: backInDown;
  animation-name: backInDown;
}

@-webkit-keyframes backInLeft{

  0% {
    -webkit-transform: translateX(-2000px) scale(.7);
    transform: translateX(-2000px) scale(.7);
    opacity: .7
  }
  80% {
    -webkit-transform: translateX(0) scale(.7);
    transform: translateX(0) scale(.7);
    opacity: .7
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }

}

@keyframes backInLeft{

  0% {
    -webkit-transform: translateX(-2000px) scale(.7);
    transform: translateX(-2000px) scale(.7);
    opacity: .7
  }
  80% {
    -webkit-transform: translateX(0) scale(.7);
    transform: translateX(0) scale(.7);
    opacity: .7
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }

}

.animate__backInLeft {
  -webkit-animation-name: backInLeft;
  animation-name: backInLeft;
}

@-webkit-keyframes backInRight{

  0% {
    -webkit-transform: translateX(2000px) scale(.7);
    transform: translateX(2000px) scale(.7);
    opacity: .7
  }
  80% {
    -webkit-transform: translateX(0) scale(.7);
    transform: translateX(0) scale(.7);
    opacity: .7
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }

}

@keyframes backInRight{

  0% {
    -webkit-transform: translateX(2000px) scale(.7);
    transform: translateX(2000px) scale(.7);
    opacity: .7
  }
  80% {
    -webkit-transform: translateX(0) scale(.7);
    transform: translateX(0) scale(.7);
    opacity: .7
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }

}

.animate__backInRight {
  -webkit-animation-name: backInRight;
  animation-name: backInRight;
}

@-webkit-keyframes backInUp{

  0% {
    -webkit-transform: translateY(1200px) scale(.7);
    transform: translateY(1200px) scale(.7);
    opacity: .7
  }
  80% {
    -webkit-transform: translateY(0) scale(.7);
    transform: translateY(0) scale(.7);
    opacity: .7
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }

}

@keyframes backInUp{

  0% {
    -webkit-transform: translateY(1200px) scale(.7);
    transform: translateY(1200px) scale(.7);
    opacity: .7
  }
  80% {
    -webkit-transform: translateY(0) scale(.7);
    transform: translateY(0) scale(.7);
    opacity: .7
  }
  to {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }

}

.animate__backInUp {
  -webkit-animation-name: backInUp;
  animation-name: backInUp;
}

@-webkit-keyframes backOutDown{

  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
  20% {
    -webkit-transform: translateY(0) scale(.7);
    transform: translateY(0) scale(.7);
    opacity: .7
  }
  to {
    -webkit-transform: translateY(700px) scale(.7);
    transform: translateY(700px) scale(.7);
    opacity: .7
  }

}

@keyframes backOutDown{

  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
  20% {
    -webkit-transform: translateY(0) scale(.7);
    transform: translateY(0) scale(.7);
    opacity: .7
  }
  to {
    -webkit-transform: translateY(700px) scale(.7);
    transform: translateY(700px) scale(.7);
    opacity: .7
  }

}

.animate__backOutDown {
  -webkit-animation-name: backOutDown;
  animation-name: backOutDown;
}

@-webkit-keyframes backOutLeft{

  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
  20% {
    -webkit-transform: translateX(0) scale(.7);
    transform: translateX(0) scale(.7);
    opacity: .7
  }
  to {
    -webkit-transform: translateX(-2000px) scale(.7);
    transform: translateX(-2000px) scale(.7);
    opacity: .7
  }

}

@keyframes backOutLeft{

  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
  20% {
    -webkit-transform: translateX(0) scale(.7);
    transform: translateX(0) scale(.7);
    opacity: .7
  }
  to {
    -webkit-transform: translateX(-2000px) scale(.7);
    transform: translateX(-2000px) scale(.7);
    opacity: .7
  }

}

.animate__backOutLeft {
  -webkit-animation-name: backOutLeft;
  animation-name: backOutLeft;
}

@-webkit-keyframes backOutRight{

  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
  20% {
    -webkit-transform: translateX(0) scale(.7);
    transform: translateX(0) scale(.7);
    opacity: .7
  }
  to {
    -webkit-transform: translateX(2000px) scale(.7);
    transform: translateX(2000px) scale(.7);
    opacity: .7
  }

}

@keyframes backOutRight{

  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
  20% {
    -webkit-transform: translateX(0) scale(.7);
    transform: translateX(0) scale(.7);
    opacity: .7
  }
  to {
    -webkit-transform: translateX(2000px) scale(.7);
    transform: translateX(2000px) scale(.7);
    opacity: .7
  }

}

.animate__backOutRight {
  -webkit-animation-name: backOutRight;
  animation-name: backOutRight;
}

@-webkit-keyframes backOutUp{

  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
  20% {
    -webkit-transform: translateY(0) scale(.7);
    transform: translateY(0) scale(.7);
    opacity: .7
  }
  to {
    -webkit-transform: translateY(-700px) scale(.7);
    transform: translateY(-700px) scale(.7);
    opacity: .7
  }

}

@keyframes backOutUp{

  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1
  }
  20% {
    -webkit-transform: translateY(0) scale(.7);
    transform: translateY(0) scale(.7);
    opacity: .7
  }
  to {
    -webkit-transform: translateY(-700px) scale(.7);
    transform: translateY(-700px) scale(.7);
    opacity: .7
  }

}

.animate__backOutUp {
  -webkit-animation-name: backOutUp;
  animation-name: backOutUp;
}

@-webkit-keyframes bounceIn{

  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }
  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03)
  }
  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97)
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

}

@keyframes bounceIn{

  0%, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }
  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03)
  }
  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97)
  }
  to {
    opacity: 1;
    -webkit-transform: scaleX(1);
    transform: scaleX(1)
  }

}

.animate__bounceIn {
  -webkit-animation-duration: calc(var(--animate-duration) * .75);
  animation-duration: calc(var(--animate-duration) * .75);
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown{

  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(.9);
    transform: translate3d(0, 25px, 0) scaleY(.9)
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(.95);
    transform: translate3d(0, -10px, 0) scaleY(.95)
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(.985);
    transform: translate3d(0, 5px, 0) scaleY(.985)
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes bounceInDown{

  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0) scaleY(3);
    transform: translate3d(0, -3000px, 0) scaleY(3)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0) scaleY(.9);
    transform: translate3d(0, 25px, 0) scaleY(.9)
  }
  75% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(.95);
    transform: translate3d(0, -10px, 0) scaleY(.95)
  }
  90% {
    -webkit-transform: translate3d(0, 5px, 0) scaleY(.985);
    transform: translate3d(0, 5px, 0) scaleY(.985)
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft{

  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1)
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(.98);
    transform: translate3d(-10px, 0, 0) scaleX(.98)
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(.995);
    transform: translate3d(5px, 0, 0) scaleX(.995)
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes bounceInLeft{

  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0) scaleX(3);
    transform: translate3d(-3000px, 0, 0) scaleX(3)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0) scaleX(1);
    transform: translate3d(25px, 0, 0) scaleX(1)
  }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0) scaleX(.98);
    transform: translate3d(-10px, 0, 0) scaleX(.98)
  }
  90% {
    -webkit-transform: translate3d(5px, 0, 0) scaleX(.995);
    transform: translate3d(5px, 0, 0) scaleX(.995)
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight{

  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1)
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(.98);
    transform: translate3d(10px, 0, 0) scaleX(.98)
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(.995);
    transform: translate3d(-5px, 0, 0) scaleX(.995)
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes bounceInRight{

  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0) scaleX(3);
    transform: translate3d(3000px, 0, 0) scaleX(3)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0) scaleX(1);
    transform: translate3d(-25px, 0, 0) scaleX(1)
  }
  75% {
    -webkit-transform: translate3d(10px, 0, 0) scaleX(.98);
    transform: translate3d(10px, 0, 0) scaleX(.98)
  }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0) scaleX(.995);
    transform: translate3d(-5px, 0, 0) scaleX(.995)
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp{

  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
    transform: translate3d(0, -20px, 0) scaleY(.9)
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(.95);
    transform: translate3d(0, 10px, 0) scaleY(.95)
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(.985);
    transform: translate3d(0, -5px, 0) scaleY(.985)
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes bounceInUp{

  0%, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
    animation-timing-function: cubic-bezier(.215, .61, .355, 1)
  }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0) scaleY(5);
    transform: translate3d(0, 3000px, 0) scaleY(5)
  }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
    transform: translate3d(0, -20px, 0) scaleY(.9)
  }
  75% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(.95);
    transform: translate3d(0, 10px, 0) scaleY(.95)
  }
  90% {
    -webkit-transform: translate3d(0, -5px, 0) scaleY(.985);
    transform: translate3d(0, -5px, 0) scaleY(.985)
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__bounceInUp {
  -webkit-animation-name: bounceInUp;
  animation-name: bounceInUp;
}

@-webkit-keyframes bounceOut{

  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9)
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

}

@keyframes bounceOut{

  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9)
  }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1)
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }

}

.animate__bounceOut {
  -webkit-animation-duration: calc(var(--animate-duration) * .75);
  animation-duration: calc(var(--animate-duration) * .75);
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-webkit-keyframes bounceOutDown{

  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(.985);
    transform: translate3d(0, 10px, 0) scaleY(.985)
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
    transform: translate3d(0, -20px, 0) scaleY(.9)
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3)
  }

}

@keyframes bounceOutDown{

  20% {
    -webkit-transform: translate3d(0, 10px, 0) scaleY(.985);
    transform: translate3d(0, 10px, 0) scaleY(.985)
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0) scaleY(.9);
    transform: translate3d(0, -20px, 0) scaleY(.9)
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0) scaleY(3);
    transform: translate3d(0, 2000px, 0) scaleY(3)
  }

}

.animate__bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}

@-webkit-keyframes bounceOutLeft{

  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(.9);
    transform: translate3d(20px, 0, 0) scaleX(.9)
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2)
  }

}

@keyframes bounceOutLeft{

  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0) scaleX(.9);
    transform: translate3d(20px, 0, 0) scaleX(.9)
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0) scaleX(2);
    transform: translate3d(-2000px, 0, 0) scaleX(2)
  }

}

.animate__bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}

@-webkit-keyframes bounceOutRight{

  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(.9);
    transform: translate3d(-20px, 0, 0) scaleX(.9)
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2)
  }

}

@keyframes bounceOutRight{

  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0) scaleX(.9);
    transform: translate3d(-20px, 0, 0) scaleX(.9)
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0) scaleX(2);
    transform: translate3d(2000px, 0, 0) scaleX(2)
  }

}

.animate__bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}

@-webkit-keyframes bounceOutUp{

  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(.985);
    transform: translate3d(0, -10px, 0) scaleY(.985)
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(.9);
    transform: translate3d(0, 20px, 0) scaleY(.9)
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3)
  }

}

@keyframes bounceOutUp{

  20% {
    -webkit-transform: translate3d(0, -10px, 0) scaleY(.985);
    transform: translate3d(0, -10px, 0) scaleY(.985)
  }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0) scaleY(.9);
    transform: translate3d(0, 20px, 0) scaleY(.9)
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0) scaleY(3);
    transform: translate3d(0, -2000px, 0) scaleY(3)
  }

}

.animate__bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}

@-webkit-keyframes fadeIn{

  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }

}

@keyframes fadeIn{

  0% {
    opacity: 0
  }
  to {
    opacity: 1
  }

}

.animate__fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes fadeInDown{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes fadeInDownBig{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes fadeInLeft{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes fadeInLeftBig{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes fadeInRight{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes fadeInRightBig{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes fadeInUp{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes fadeInUpBig{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}

@-webkit-keyframes fadeInTopLeft{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes fadeInTopLeft{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__fadeInTopLeft {
  -webkit-animation-name: fadeInTopLeft;
  animation-name: fadeInTopLeft;
}

@-webkit-keyframes fadeInTopRight{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes fadeInTopRight{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__fadeInTopRight {
  -webkit-animation-name: fadeInTopRight;
  animation-name: fadeInTopRight;
}

@-webkit-keyframes fadeInBottomLeft{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes fadeInBottomLeft{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__fadeInBottomLeft {
  -webkit-animation-name: fadeInBottomLeft;
  animation-name: fadeInBottomLeft;
}

@-webkit-keyframes fadeInBottomRight{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes fadeInBottomRight{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__fadeInBottomRight {
  -webkit-animation-name: fadeInBottomRight;
  animation-name: fadeInBottomRight;
}

@-webkit-keyframes fadeOut{

  0% {
    opacity: 1
  }
  to {
    opacity: 0
  }

}

@keyframes fadeOut{

  0% {
    opacity: 1
  }
  to {
    opacity: 0
  }

}

.animate__fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes fadeOutDown{

  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }

}

@keyframes fadeOutDown{

  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }

}

.animate__fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}

@-webkit-keyframes fadeOutDownBig{

  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }

}

@keyframes fadeOutDownBig{

  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0)
  }

}

.animate__fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}

@-webkit-keyframes fadeOutLeft{

  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }

}

@keyframes fadeOutLeft{

  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }

}

.animate__fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}

@-webkit-keyframes fadeOutLeftBig{

  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }

}

@keyframes fadeOutLeftBig{

  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0)
  }

}

.animate__fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}

@-webkit-keyframes fadeOutRight{

  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }

}

@keyframes fadeOutRight{

  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }

}

.animate__fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}

@-webkit-keyframes fadeOutRightBig{

  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }

}

@keyframes fadeOutRightBig{

  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0)
  }

}

.animate__fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}

@-webkit-keyframes fadeOutUp{

  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }

}

@keyframes fadeOutUp{

  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }

}

.animate__fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}

@-webkit-keyframes fadeOutUpBig{

  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }

}

@keyframes fadeOutUpBig{

  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0)
  }

}

.animate__fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}

@-webkit-keyframes fadeOutTopLeft{

  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0)
  }

}

@keyframes fadeOutTopLeft{

  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, -100%, 0);
    transform: translate3d(-100%, -100%, 0)
  }

}

.animate__fadeOutTopLeft {
  -webkit-animation-name: fadeOutTopLeft;
  animation-name: fadeOutTopLeft;
}

@-webkit-keyframes fadeOutTopRight{

  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0)
  }

}

@keyframes fadeOutTopRight{

  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, -100%, 0);
    transform: translate3d(100%, -100%, 0)
  }

}

.animate__fadeOutTopRight {
  -webkit-animation-name: fadeOutTopRight;
  animation-name: fadeOutTopRight;
}

@-webkit-keyframes fadeOutBottomRight{

  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0)
  }

}

@keyframes fadeOutBottomRight{

  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 100%, 0);
    transform: translate3d(100%, 100%, 0)
  }

}

.animate__fadeOutBottomRight {
  -webkit-animation-name: fadeOutBottomRight;
  animation-name: fadeOutBottomRight;
}

@-webkit-keyframes fadeOutBottomLeft{

  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0)
  }

}

@keyframes fadeOutBottomLeft{

  0% {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 100%, 0);
    transform: translate3d(-100%, 100%, 0)
  }

}

.animate__fadeOutBottomLeft {
  -webkit-animation-name: fadeOutBottomLeft;
  animation-name: fadeOutBottomLeft;
}

@-webkit-keyframes flip{

  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0);
    transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

}

@keyframes flip{

  0% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(-1turn);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }
  40% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
  }
  50% {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    transform: perspective(400px) scaleX(1) translateZ(150px) rotateY(-170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0);
    transform: perspective(400px) scale3d(.95, .95, .95) translateZ(0) rotateY(0);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  to {
    -webkit-transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0);
    transform: perspective(400px) scaleX(1) translateZ(0) rotateY(0);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }

}

.animate__animated.animate__flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes flipInX{

  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg)
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

}

@keyframes flipInX{

  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  60% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
    opacity: 1
  }
  80% {
    -webkit-transform: perspective(400px) rotateX(-5deg);
    transform: perspective(400px) rotateX(-5deg)
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

}

.animate__flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  animation-name: flipInX;
}

@-webkit-keyframes flipInY{

  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg)
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

}

@keyframes flipInY{

  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-20deg);
    transform: perspective(400px) rotateY(-20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
  }
  60% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
    opacity: 1
  }
  80% {
    -webkit-transform: perspective(400px) rotateY(-5deg);
    transform: perspective(400px) rotateY(-5deg)
  }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }

}

.animate__flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  animation-name: flipInY;
}

@-webkit-keyframes flipOutX{

  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0
  }

}

@keyframes flipOutX{

  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
  30% {
    -webkit-transform: perspective(400px) rotateX(-20deg);
    transform: perspective(400px) rotateX(-20deg);
    opacity: 1
  }
  to {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0
  }

}

.animate__flipOutX {
  -webkit-animation-duration: calc(var(--animate-duration) * .75);
  animation-duration: calc(var(--animate-duration) * .75);
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@-webkit-keyframes flipOutY{

  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0
  }

}

@keyframes flipOutY{

  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px)
  }
  30% {
    -webkit-transform: perspective(400px) rotateY(-15deg);
    transform: perspective(400px) rotateY(-15deg);
    opacity: 1
  }
  to {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0
  }

}

.animate__flipOutY {
  -webkit-animation-duration: calc(var(--animate-duration) * .75);
  animation-duration: calc(var(--animate-duration) * .75);
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-webkit-keyframes lightSpeedInRight{

  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg)
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes lightSpeedInRight{

  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0
  }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1
  }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg)
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__lightSpeedInRight {
  -webkit-animation-name: lightSpeedInRight;
  animation-name: lightSpeedInRight;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedInLeft{

  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg)
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes lightSpeedInLeft{

  0% {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(30deg);
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0
  }
  60% {
    -webkit-transform: skewX(-20deg);
    transform: skewX(-20deg);
    opacity: 1
  }
  80% {
    -webkit-transform: skewX(5deg);
    transform: skewX(5deg)
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__lightSpeedInLeft {
  -webkit-animation-name: lightSpeedInLeft;
  animation-name: lightSpeedInLeft;
  -webkit-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}

@-webkit-keyframes lightSpeedOutRight{

  0% {
    opacity: 1
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0
  }

}

@keyframes lightSpeedOutRight{

  0% {
    opacity: 1
  }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0
  }

}

.animate__lightSpeedOutRight {
  -webkit-animation-name: lightSpeedOutRight;
  animation-name: lightSpeedOutRight;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes lightSpeedOutLeft{

  0% {
    opacity: 1
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0
  }

}

@keyframes lightSpeedOutLeft{

  0% {
    opacity: 1
  }
  to {
    -webkit-transform: translate3d(-100%, 0, 0) skewX(-30deg);
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0
  }

}

.animate__lightSpeedOutLeft {
  -webkit-animation-name: lightSpeedOutLeft;
  animation-name: lightSpeedOutLeft;
  -webkit-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}

@-webkit-keyframes rotateIn{

  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }

}

@keyframes rotateIn{

  0% {
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }

}

.animate__rotateIn {
  -webkit-animation-name: rotateIn;
  animation-name: rotateIn;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateInDownLeft{

  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }

}

@keyframes rotateInDownLeft{

  0% {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }

}

.animate__rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInDownRight{

  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }

}

@keyframes rotateInDownRight{

  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }

}

.animate__rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateInUpLeft{

  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }

}

@keyframes rotateInUpLeft{

  0% {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }

}

.animate__rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateInUpRight{

  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }

}

@keyframes rotateInUpRight{

  0% {
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1
  }

}

.animate__rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOut{

  0% {
    opacity: 1
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0
  }

}

@keyframes rotateOut{

  0% {
    opacity: 1
  }
  to {
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0
  }

}

.animate__rotateOut {
  -webkit-animation-name: rotateOut;
  animation-name: rotateOut;
  -webkit-transform-origin: center;
  transform-origin: center;
}

@-webkit-keyframes rotateOutDownLeft{

  0% {
    opacity: 1
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }

}

@keyframes rotateOutDownLeft{

  0% {
    opacity: 1
  }
  to {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    opacity: 0
  }

}

.animate__rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutDownRight{

  0% {
    opacity: 1
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }

}

@keyframes rotateOutDownRight{

  0% {
    opacity: 1
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }

}

.animate__rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes rotateOutUpLeft{

  0% {
    opacity: 1
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }

}

@keyframes rotateOutUpLeft{

  0% {
    opacity: 1
  }
  to {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    opacity: 0
  }

}

.animate__rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
  -webkit-transform-origin: left bottom;
  transform-origin: left bottom;
}

@-webkit-keyframes rotateOutUpRight{

  0% {
    opacity: 1
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0
  }

}

@keyframes rotateOutUpRight{

  0% {
    opacity: 1
  }
  to {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0
  }

}

.animate__rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
  -webkit-transform-origin: right bottom;
  transform-origin: right bottom;
}

@-webkit-keyframes hinge{

  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0
  }

}

@keyframes hinge{

  0% {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }
  20%, 60% {
    -webkit-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
  }
  40%, 80% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1
  }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0
  }

}

.animate__hinge {
  -webkit-animation-duration: calc(var(--animate-duration) * 2);
  animation-duration: calc(var(--animate-duration) * 2);
  -webkit-animation-name: hinge;
  animation-name: hinge;
  -webkit-transform-origin: top left;
  transform-origin: top left;
}

@-webkit-keyframes jackInTheBox{

  0% {
    opacity: 0;
    -webkit-transform: scale(.1) rotate(30deg);
    transform: scale(.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg)
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg)
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
  }

}

@keyframes jackInTheBox{

  0% {
    opacity: 0;
    -webkit-transform: scale(.1) rotate(30deg);
    transform: scale(.1) rotate(30deg);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
  }
  50% {
    -webkit-transform: rotate(-10deg);
    transform: rotate(-10deg)
  }
  70% {
    -webkit-transform: rotate(3deg);
    transform: rotate(3deg)
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1)
  }

}

.animate__jackInTheBox {
  -webkit-animation-name: jackInTheBox;
  animation-name: jackInTheBox;
}

@-webkit-keyframes rollIn{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes rollIn{

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate(-120deg);
    transform: translate3d(-100%, 0, 0) rotate(-120deg)
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__rollIn {
  -webkit-animation-name: rollIn;
  animation-name: rollIn;
}

@-webkit-keyframes rollOut{

  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg)
  }

}

@keyframes rollOut{

  0% {
    opacity: 1
  }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate(120deg);
    transform: translate3d(100%, 0, 0) rotate(120deg)
  }

}

.animate__rollOut {
  -webkit-animation-name: rollOut;
  animation-name: rollOut;
}

@-webkit-keyframes zoomIn{

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
  50% {
    opacity: 1
  }

}

@keyframes zoomIn{

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
  50% {
    opacity: 1
  }

}

.animate__zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}

@-webkit-keyframes zoomInDown{

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }

}

@keyframes zoomInDown{

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }

}

.animate__zoomInDown {
  -webkit-animation-name: zoomInDown;
  animation-name: zoomInDown;
}

@-webkit-keyframes zoomInLeft{

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }

}

@keyframes zoomInLeft{

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }

}

.animate__zoomInLeft {
  -webkit-animation-name: zoomInLeft;
  animation-name: zoomInLeft;
}

@-webkit-keyframes zoomInRight{

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }

}

@keyframes zoomInRight{

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }

}

.animate__zoomInRight {
  -webkit-animation-name: zoomInRight;
  animation-name: zoomInRight;
}

@-webkit-keyframes zoomInUp{

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }

}

@keyframes zoomInUp{

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }

}

.animate__zoomInUp {
  -webkit-animation-name: zoomInUp;
  animation-name: zoomInUp;
}

@-webkit-keyframes zoomOut{

  0% {
    opacity: 1
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
  to {
    opacity: 0
  }

}

@keyframes zoomOut{

  0% {
    opacity: 1
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3)
  }
  to {
    opacity: 0
  }

}

.animate__zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}

@-webkit-keyframes zoomOutDown{

  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }

}

@keyframes zoomOutDown{

  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }

}

.animate__zoomOutDown {
  -webkit-animation-name: zoomOutDown;
  animation-name: zoomOutDown;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes zoomOutLeft{

  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
  }
  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0)
  }

}

@keyframes zoomOutLeft{

  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
  }
  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(-2000px, 0, 0);
    transform: scale(.1) translate3d(-2000px, 0, 0)
  }

}

.animate__zoomOutLeft {
  -webkit-animation-name: zoomOutLeft;
  animation-name: zoomOutLeft;
  -webkit-transform-origin: left center;
  transform-origin: left center;
}

@-webkit-keyframes zoomOutRight{

  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
  }
  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0)
  }

}

@keyframes zoomOutRight{

  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
  }
  to {
    opacity: 0;
    -webkit-transform: scale(.1) translate3d(2000px, 0, 0);
    transform: scale(.1) translate3d(2000px, 0, 0)
  }

}

.animate__zoomOutRight {
  -webkit-animation-name: zoomOutRight;
  animation-name: zoomOutRight;
  -webkit-transform-origin: right center;
  transform-origin: right center;
}

@-webkit-keyframes zoomOutUp{

  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }

}

@keyframes zoomOutUp{

  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19);
    animation-timing-function: cubic-bezier(.55, .055, .675, .19)
  }
  to {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1);
    animation-timing-function: cubic-bezier(.175, .885, .32, 1)
  }

}

.animate__zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom;
}

@-webkit-keyframes slideInDown{

  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes slideInDown{

  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft{

  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes slideInLeft{

  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight{

  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes slideInRight{

  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp{

  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

@keyframes slideInUp{

  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible
  }
  to {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }

}

.animate__slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown{

  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }

}

@keyframes slideOutDown{

  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0)
  }

}

.animate__slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft{

  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }

}

@keyframes slideOutLeft{

  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0)
  }

}

.animate__slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight{

  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }

}

@keyframes slideOutRight{

  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
  }

}

.animate__slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp{

  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }

}

@keyframes slideOutUp{

  0% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
  }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0)
  }

}

.animate__slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

[data-aos][data-aos][data-aos-duration="50"], body[data-aos-duration="50"] [data-aos] {
  transition-duration: 50ms;
}

[data-aos][data-aos][data-aos-delay="50"], body[data-aos-delay="50"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="50"].aos-animate, body[data-aos-delay="50"] [data-aos].aos-animate {
  transition-delay: 50ms;
}

[data-aos][data-aos][data-aos-duration="100"], body[data-aos-duration="100"] [data-aos] {
  transition-duration: .1s;
}

[data-aos][data-aos][data-aos-delay="100"], body[data-aos-delay="100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="100"].aos-animate, body[data-aos-delay="100"] [data-aos].aos-animate {
  transition-delay: .1s;
}

[data-aos][data-aos][data-aos-duration="150"], body[data-aos-duration="150"] [data-aos] {
  transition-duration: .15s;
}

[data-aos][data-aos][data-aos-delay="150"], body[data-aos-delay="150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="150"].aos-animate, body[data-aos-delay="150"] [data-aos].aos-animate {
  transition-delay: .15s;
}

[data-aos][data-aos][data-aos-duration="200"], body[data-aos-duration="200"] [data-aos] {
  transition-duration: .2s;
}

[data-aos][data-aos][data-aos-delay="200"], body[data-aos-delay="200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="200"].aos-animate, body[data-aos-delay="200"] [data-aos].aos-animate {
  transition-delay: .2s;
}

[data-aos][data-aos][data-aos-duration="250"], body[data-aos-duration="250"] [data-aos] {
  transition-duration: .25s;
}

[data-aos][data-aos][data-aos-delay="250"], body[data-aos-delay="250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="250"].aos-animate, body[data-aos-delay="250"] [data-aos].aos-animate {
  transition-delay: .25s;
}

[data-aos][data-aos][data-aos-duration="300"], body[data-aos-duration="300"] [data-aos] {
  transition-duration: .3s;
}

[data-aos][data-aos][data-aos-delay="300"], body[data-aos-delay="300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="300"].aos-animate, body[data-aos-delay="300"] [data-aos].aos-animate {
  transition-delay: .3s;
}

[data-aos][data-aos][data-aos-duration="350"], body[data-aos-duration="350"] [data-aos] {
  transition-duration: .35s;
}

[data-aos][data-aos][data-aos-delay="350"], body[data-aos-delay="350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="350"].aos-animate, body[data-aos-delay="350"] [data-aos].aos-animate {
  transition-delay: .35s;
}

[data-aos][data-aos][data-aos-duration="400"], body[data-aos-duration="400"] [data-aos] {
  transition-duration: .4s;
}

[data-aos][data-aos][data-aos-delay="400"], body[data-aos-delay="400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="400"].aos-animate, body[data-aos-delay="400"] [data-aos].aos-animate {
  transition-delay: .4s;
}

[data-aos][data-aos][data-aos-duration="450"], body[data-aos-duration="450"] [data-aos] {
  transition-duration: .45s;
}

[data-aos][data-aos][data-aos-delay="450"], body[data-aos-delay="450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="450"].aos-animate, body[data-aos-delay="450"] [data-aos].aos-animate {
  transition-delay: .45s;
}

[data-aos][data-aos][data-aos-duration="500"], body[data-aos-duration="500"] [data-aos] {
  transition-duration: .5s;
}

[data-aos][data-aos][data-aos-delay="500"], body[data-aos-delay="500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="500"].aos-animate, body[data-aos-delay="500"] [data-aos].aos-animate {
  transition-delay: .5s;
}

[data-aos][data-aos][data-aos-duration="550"], body[data-aos-duration="550"] [data-aos] {
  transition-duration: .55s;
}

[data-aos][data-aos][data-aos-delay="550"], body[data-aos-delay="550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="550"].aos-animate, body[data-aos-delay="550"] [data-aos].aos-animate {
  transition-delay: .55s;
}

[data-aos][data-aos][data-aos-duration="600"], body[data-aos-duration="600"] [data-aos] {
  transition-duration: .6s;
}

[data-aos][data-aos][data-aos-delay="600"], body[data-aos-delay="600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="600"].aos-animate, body[data-aos-delay="600"] [data-aos].aos-animate {
  transition-delay: .6s;
}

[data-aos][data-aos][data-aos-duration="650"], body[data-aos-duration="650"] [data-aos] {
  transition-duration: .65s;
}

[data-aos][data-aos][data-aos-delay="650"], body[data-aos-delay="650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="650"].aos-animate, body[data-aos-delay="650"] [data-aos].aos-animate {
  transition-delay: .65s;
}

[data-aos][data-aos][data-aos-duration="700"], body[data-aos-duration="700"] [data-aos] {
  transition-duration: .7s;
}

[data-aos][data-aos][data-aos-delay="700"], body[data-aos-delay="700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="700"].aos-animate, body[data-aos-delay="700"] [data-aos].aos-animate {
  transition-delay: .7s;
}

[data-aos][data-aos][data-aos-duration="750"], body[data-aos-duration="750"] [data-aos] {
  transition-duration: .75s;
}

[data-aos][data-aos][data-aos-delay="750"], body[data-aos-delay="750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="750"].aos-animate, body[data-aos-delay="750"] [data-aos].aos-animate {
  transition-delay: .75s;
}

[data-aos][data-aos][data-aos-duration="800"], body[data-aos-duration="800"] [data-aos] {
  transition-duration: .8s;
}

[data-aos][data-aos][data-aos-delay="800"], body[data-aos-delay="800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="800"].aos-animate, body[data-aos-delay="800"] [data-aos].aos-animate {
  transition-delay: .8s;
}

[data-aos][data-aos][data-aos-duration="850"], body[data-aos-duration="850"] [data-aos] {
  transition-duration: .85s;
}

[data-aos][data-aos][data-aos-delay="850"], body[data-aos-delay="850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="850"].aos-animate, body[data-aos-delay="850"] [data-aos].aos-animate {
  transition-delay: .85s;
}

[data-aos][data-aos][data-aos-duration="900"], body[data-aos-duration="900"] [data-aos] {
  transition-duration: .9s;
}

[data-aos][data-aos][data-aos-delay="900"], body[data-aos-delay="900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="900"].aos-animate, body[data-aos-delay="900"] [data-aos].aos-animate {
  transition-delay: .9s;
}

[data-aos][data-aos][data-aos-duration="950"], body[data-aos-duration="950"] [data-aos] {
  transition-duration: .95s;
}

[data-aos][data-aos][data-aos-delay="950"], body[data-aos-delay="950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="950"].aos-animate, body[data-aos-delay="950"] [data-aos].aos-animate {
  transition-delay: .95s;
}

[data-aos][data-aos][data-aos-duration="1000"], body[data-aos-duration="1000"] [data-aos] {
  transition-duration: 1s;
}

[data-aos][data-aos][data-aos-delay="1000"], body[data-aos-delay="1000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1000"].aos-animate, body[data-aos-delay="1000"] [data-aos].aos-animate {
  transition-delay: 1s;
}

[data-aos][data-aos][data-aos-duration="1050"], body[data-aos-duration="1050"] [data-aos] {
  transition-duration: 1.05s;
}

[data-aos][data-aos][data-aos-delay="1050"], body[data-aos-delay="1050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1050"].aos-animate, body[data-aos-delay="1050"] [data-aos].aos-animate {
  transition-delay: 1.05s;
}

[data-aos][data-aos][data-aos-duration="1100"], body[data-aos-duration="1100"] [data-aos] {
  transition-duration: 1.1s;
}

[data-aos][data-aos][data-aos-delay="1100"], body[data-aos-delay="1100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1100"].aos-animate, body[data-aos-delay="1100"] [data-aos].aos-animate {
  transition-delay: 1.1s;
}

[data-aos][data-aos][data-aos-duration="1150"], body[data-aos-duration="1150"] [data-aos] {
  transition-duration: 1.15s;
}

[data-aos][data-aos][data-aos-delay="1150"], body[data-aos-delay="1150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1150"].aos-animate, body[data-aos-delay="1150"] [data-aos].aos-animate {
  transition-delay: 1.15s;
}

[data-aos][data-aos][data-aos-duration="1200"], body[data-aos-duration="1200"] [data-aos] {
  transition-duration: 1.2s;
}

[data-aos][data-aos][data-aos-delay="1200"], body[data-aos-delay="1200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1200"].aos-animate, body[data-aos-delay="1200"] [data-aos].aos-animate {
  transition-delay: 1.2s;
}

[data-aos][data-aos][data-aos-duration="1250"], body[data-aos-duration="1250"] [data-aos] {
  transition-duration: 1.25s;
}

[data-aos][data-aos][data-aos-delay="1250"], body[data-aos-delay="1250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1250"].aos-animate, body[data-aos-delay="1250"] [data-aos].aos-animate {
  transition-delay: 1.25s;
}

[data-aos][data-aos][data-aos-duration="1300"], body[data-aos-duration="1300"] [data-aos] {
  transition-duration: 1.3s;
}

[data-aos][data-aos][data-aos-delay="1300"], body[data-aos-delay="1300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1300"].aos-animate, body[data-aos-delay="1300"] [data-aos].aos-animate {
  transition-delay: 1.3s;
}

[data-aos][data-aos][data-aos-duration="1350"], body[data-aos-duration="1350"] [data-aos] {
  transition-duration: 1.35s;
}

[data-aos][data-aos][data-aos-delay="1350"], body[data-aos-delay="1350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1350"].aos-animate, body[data-aos-delay="1350"] [data-aos].aos-animate {
  transition-delay: 1.35s;
}

[data-aos][data-aos][data-aos-duration="1400"], body[data-aos-duration="1400"] [data-aos] {
  transition-duration: 1.4s;
}

[data-aos][data-aos][data-aos-delay="1400"], body[data-aos-delay="1400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1400"].aos-animate, body[data-aos-delay="1400"] [data-aos].aos-animate {
  transition-delay: 1.4s;
}

[data-aos][data-aos][data-aos-duration="1450"], body[data-aos-duration="1450"] [data-aos] {
  transition-duration: 1.45s;
}

[data-aos][data-aos][data-aos-delay="1450"], body[data-aos-delay="1450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1450"].aos-animate, body[data-aos-delay="1450"] [data-aos].aos-animate {
  transition-delay: 1.45s;
}

[data-aos][data-aos][data-aos-duration="1500"], body[data-aos-duration="1500"] [data-aos] {
  transition-duration: 1.5s;
}

[data-aos][data-aos][data-aos-delay="1500"], body[data-aos-delay="1500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1500"].aos-animate, body[data-aos-delay="1500"] [data-aos].aos-animate {
  transition-delay: 1.5s;
}

[data-aos][data-aos][data-aos-duration="1550"], body[data-aos-duration="1550"] [data-aos] {
  transition-duration: 1.55s;
}

[data-aos][data-aos][data-aos-delay="1550"], body[data-aos-delay="1550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1550"].aos-animate, body[data-aos-delay="1550"] [data-aos].aos-animate {
  transition-delay: 1.55s;
}

[data-aos][data-aos][data-aos-duration="1600"], body[data-aos-duration="1600"] [data-aos] {
  transition-duration: 1.6s;
}

[data-aos][data-aos][data-aos-delay="1600"], body[data-aos-delay="1600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1600"].aos-animate, body[data-aos-delay="1600"] [data-aos].aos-animate {
  transition-delay: 1.6s;
}

[data-aos][data-aos][data-aos-duration="1650"], body[data-aos-duration="1650"] [data-aos] {
  transition-duration: 1.65s;
}

[data-aos][data-aos][data-aos-delay="1650"], body[data-aos-delay="1650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1650"].aos-animate, body[data-aos-delay="1650"] [data-aos].aos-animate {
  transition-delay: 1.65s;
}

[data-aos][data-aos][data-aos-duration="1700"], body[data-aos-duration="1700"] [data-aos] {
  transition-duration: 1.7s;
}

[data-aos][data-aos][data-aos-delay="1700"], body[data-aos-delay="1700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1700"].aos-animate, body[data-aos-delay="1700"] [data-aos].aos-animate {
  transition-delay: 1.7s;
}

[data-aos][data-aos][data-aos-duration="1750"], body[data-aos-duration="1750"] [data-aos] {
  transition-duration: 1.75s;
}

[data-aos][data-aos][data-aos-delay="1750"], body[data-aos-delay="1750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1750"].aos-animate, body[data-aos-delay="1750"] [data-aos].aos-animate {
  transition-delay: 1.75s;
}

[data-aos][data-aos][data-aos-duration="1800"], body[data-aos-duration="1800"] [data-aos] {
  transition-duration: 1.8s;
}

[data-aos][data-aos][data-aos-delay="1800"], body[data-aos-delay="1800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1800"].aos-animate, body[data-aos-delay="1800"] [data-aos].aos-animate {
  transition-delay: 1.8s;
}

[data-aos][data-aos][data-aos-duration="1850"], body[data-aos-duration="1850"] [data-aos] {
  transition-duration: 1.85s;
}

[data-aos][data-aos][data-aos-delay="1850"], body[data-aos-delay="1850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1850"].aos-animate, body[data-aos-delay="1850"] [data-aos].aos-animate {
  transition-delay: 1.85s;
}

[data-aos][data-aos][data-aos-duration="1900"], body[data-aos-duration="1900"] [data-aos] {
  transition-duration: 1.9s;
}

[data-aos][data-aos][data-aos-delay="1900"], body[data-aos-delay="1900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1900"].aos-animate, body[data-aos-delay="1900"] [data-aos].aos-animate {
  transition-delay: 1.9s;
}

[data-aos][data-aos][data-aos-duration="1950"], body[data-aos-duration="1950"] [data-aos] {
  transition-duration: 1.95s;
}

[data-aos][data-aos][data-aos-delay="1950"], body[data-aos-delay="1950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="1950"].aos-animate, body[data-aos-delay="1950"] [data-aos].aos-animate {
  transition-delay: 1.95s;
}

[data-aos][data-aos][data-aos-duration="2000"], body[data-aos-duration="2000"] [data-aos] {
  transition-duration: 2s;
}

[data-aos][data-aos][data-aos-delay="2000"], body[data-aos-delay="2000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2000"].aos-animate, body[data-aos-delay="2000"] [data-aos].aos-animate {
  transition-delay: 2s;
}

[data-aos][data-aos][data-aos-duration="2050"], body[data-aos-duration="2050"] [data-aos] {
  transition-duration: 2.05s;
}

[data-aos][data-aos][data-aos-delay="2050"], body[data-aos-delay="2050"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2050"].aos-animate, body[data-aos-delay="2050"] [data-aos].aos-animate {
  transition-delay: 2.05s;
}

[data-aos][data-aos][data-aos-duration="2100"], body[data-aos-duration="2100"] [data-aos] {
  transition-duration: 2.1s;
}

[data-aos][data-aos][data-aos-delay="2100"], body[data-aos-delay="2100"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2100"].aos-animate, body[data-aos-delay="2100"] [data-aos].aos-animate {
  transition-delay: 2.1s;
}

[data-aos][data-aos][data-aos-duration="2150"], body[data-aos-duration="2150"] [data-aos] {
  transition-duration: 2.15s;
}

[data-aos][data-aos][data-aos-delay="2150"], body[data-aos-delay="2150"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2150"].aos-animate, body[data-aos-delay="2150"] [data-aos].aos-animate {
  transition-delay: 2.15s;
}

[data-aos][data-aos][data-aos-duration="2200"], body[data-aos-duration="2200"] [data-aos] {
  transition-duration: 2.2s;
}

[data-aos][data-aos][data-aos-delay="2200"], body[data-aos-delay="2200"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2200"].aos-animate, body[data-aos-delay="2200"] [data-aos].aos-animate {
  transition-delay: 2.2s;
}

[data-aos][data-aos][data-aos-duration="2250"], body[data-aos-duration="2250"] [data-aos] {
  transition-duration: 2.25s;
}

[data-aos][data-aos][data-aos-delay="2250"], body[data-aos-delay="2250"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2250"].aos-animate, body[data-aos-delay="2250"] [data-aos].aos-animate {
  transition-delay: 2.25s;
}

[data-aos][data-aos][data-aos-duration="2300"], body[data-aos-duration="2300"] [data-aos] {
  transition-duration: 2.3s;
}

[data-aos][data-aos][data-aos-delay="2300"], body[data-aos-delay="2300"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2300"].aos-animate, body[data-aos-delay="2300"] [data-aos].aos-animate {
  transition-delay: 2.3s;
}

[data-aos][data-aos][data-aos-duration="2350"], body[data-aos-duration="2350"] [data-aos] {
  transition-duration: 2.35s;
}

[data-aos][data-aos][data-aos-delay="2350"], body[data-aos-delay="2350"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2350"].aos-animate, body[data-aos-delay="2350"] [data-aos].aos-animate {
  transition-delay: 2.35s;
}

[data-aos][data-aos][data-aos-duration="2400"], body[data-aos-duration="2400"] [data-aos] {
  transition-duration: 2.4s;
}

[data-aos][data-aos][data-aos-delay="2400"], body[data-aos-delay="2400"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2400"].aos-animate, body[data-aos-delay="2400"] [data-aos].aos-animate {
  transition-delay: 2.4s;
}

[data-aos][data-aos][data-aos-duration="2450"], body[data-aos-duration="2450"] [data-aos] {
  transition-duration: 2.45s;
}

[data-aos][data-aos][data-aos-delay="2450"], body[data-aos-delay="2450"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2450"].aos-animate, body[data-aos-delay="2450"] [data-aos].aos-animate {
  transition-delay: 2.45s;
}

[data-aos][data-aos][data-aos-duration="2500"], body[data-aos-duration="2500"] [data-aos] {
  transition-duration: 2.5s;
}

[data-aos][data-aos][data-aos-delay="2500"], body[data-aos-delay="2500"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2500"].aos-animate, body[data-aos-delay="2500"] [data-aos].aos-animate {
  transition-delay: 2.5s;
}

[data-aos][data-aos][data-aos-duration="2550"], body[data-aos-duration="2550"] [data-aos] {
  transition-duration: 2.55s;
}

[data-aos][data-aos][data-aos-delay="2550"], body[data-aos-delay="2550"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2550"].aos-animate, body[data-aos-delay="2550"] [data-aos].aos-animate {
  transition-delay: 2.55s;
}

[data-aos][data-aos][data-aos-duration="2600"], body[data-aos-duration="2600"] [data-aos] {
  transition-duration: 2.6s;
}

[data-aos][data-aos][data-aos-delay="2600"], body[data-aos-delay="2600"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2600"].aos-animate, body[data-aos-delay="2600"] [data-aos].aos-animate {
  transition-delay: 2.6s;
}

[data-aos][data-aos][data-aos-duration="2650"], body[data-aos-duration="2650"] [data-aos] {
  transition-duration: 2.65s;
}

[data-aos][data-aos][data-aos-delay="2650"], body[data-aos-delay="2650"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2650"].aos-animate, body[data-aos-delay="2650"] [data-aos].aos-animate {
  transition-delay: 2.65s;
}

[data-aos][data-aos][data-aos-duration="2700"], body[data-aos-duration="2700"] [data-aos] {
  transition-duration: 2.7s;
}

[data-aos][data-aos][data-aos-delay="2700"], body[data-aos-delay="2700"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2700"].aos-animate, body[data-aos-delay="2700"] [data-aos].aos-animate {
  transition-delay: 2.7s;
}

[data-aos][data-aos][data-aos-duration="2750"], body[data-aos-duration="2750"] [data-aos] {
  transition-duration: 2.75s;
}

[data-aos][data-aos][data-aos-delay="2750"], body[data-aos-delay="2750"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2750"].aos-animate, body[data-aos-delay="2750"] [data-aos].aos-animate {
  transition-delay: 2.75s;
}

[data-aos][data-aos][data-aos-duration="2800"], body[data-aos-duration="2800"] [data-aos] {
  transition-duration: 2.8s;
}

[data-aos][data-aos][data-aos-delay="2800"], body[data-aos-delay="2800"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2800"].aos-animate, body[data-aos-delay="2800"] [data-aos].aos-animate {
  transition-delay: 2.8s;
}

[data-aos][data-aos][data-aos-duration="2850"], body[data-aos-duration="2850"] [data-aos] {
  transition-duration: 2.85s;
}

[data-aos][data-aos][data-aos-delay="2850"], body[data-aos-delay="2850"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2850"].aos-animate, body[data-aos-delay="2850"] [data-aos].aos-animate {
  transition-delay: 2.85s;
}

[data-aos][data-aos][data-aos-duration="2900"], body[data-aos-duration="2900"] [data-aos] {
  transition-duration: 2.9s;
}

[data-aos][data-aos][data-aos-delay="2900"], body[data-aos-delay="2900"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2900"].aos-animate, body[data-aos-delay="2900"] [data-aos].aos-animate {
  transition-delay: 2.9s;
}

[data-aos][data-aos][data-aos-duration="2950"], body[data-aos-duration="2950"] [data-aos] {
  transition-duration: 2.95s;
}

[data-aos][data-aos][data-aos-delay="2950"], body[data-aos-delay="2950"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="2950"].aos-animate, body[data-aos-delay="2950"] [data-aos].aos-animate {
  transition-delay: 2.95s;
}

[data-aos][data-aos][data-aos-duration="3000"], body[data-aos-duration="3000"] [data-aos] {
  transition-duration: 3s;
}

[data-aos][data-aos][data-aos-delay="3000"], body[data-aos-delay="3000"] [data-aos] {
  transition-delay: 0;
}

[data-aos][data-aos][data-aos-delay="3000"].aos-animate, body[data-aos-delay="3000"] [data-aos].aos-animate {
  transition-delay: 3s;
}

[data-aos][data-aos][data-aos-easing=linear], body[data-aos-easing=linear] [data-aos] {
  transition-timing-function: cubic-bezier(.25, .25, .75, .75);
}

[data-aos][data-aos][data-aos-easing=ease], body[data-aos-easing=ease] [data-aos] {
  transition-timing-function: ease;
}

[data-aos][data-aos][data-aos-easing=ease-in], body[data-aos-easing=ease-in] [data-aos] {
  transition-timing-function: ease-in;
}

[data-aos][data-aos][data-aos-easing=ease-out], body[data-aos-easing=ease-out] [data-aos] {
  transition-timing-function: ease-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-out], body[data-aos-easing=ease-in-out] [data-aos] {
  transition-timing-function: ease-in-out;
}

[data-aos][data-aos][data-aos-easing=ease-in-back], body[data-aos-easing=ease-in-back] [data-aos] {
  transition-timing-function: cubic-bezier(.6, -.28, .735, .045);
}

[data-aos][data-aos][data-aos-easing=ease-out-back], body[data-aos-easing=ease-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-back], body[data-aos-easing=ease-in-out-back] [data-aos] {
  transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55);
}

[data-aos][data-aos][data-aos-easing=ease-in-sine], body[data-aos-easing=ease-in-sine] [data-aos] {
  transition-timing-function: cubic-bezier(.47, 0, .745, .715);
}

[data-aos][data-aos][data-aos-easing=ease-out-sine], body[data-aos-easing=ease-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(.39, .575, .565, 1);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-sine], body[data-aos-easing=ease-in-out-sine] [data-aos] {
  transition-timing-function: cubic-bezier(.445, .05, .55, .95);
}

[data-aos][data-aos][data-aos-easing=ease-in-quad], body[data-aos-easing=ease-in-quad] [data-aos] {
  transition-timing-function: cubic-bezier(.55, .085, .68, .53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quad], body[data-aos-easing=ease-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(.25, .46, .45, .94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quad], body[data-aos-easing=ease-in-out-quad] [data-aos] {
  transition-timing-function: cubic-bezier(.455, .03, .515, .955);
}

[data-aos][data-aos][data-aos-easing=ease-in-cubic], body[data-aos-easing=ease-in-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(.55, .085, .68, .53);
}

[data-aos][data-aos][data-aos-easing=ease-out-cubic], body[data-aos-easing=ease-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(.25, .46, .45, .94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-cubic], body[data-aos-easing=ease-in-out-cubic] [data-aos] {
  transition-timing-function: cubic-bezier(.455, .03, .515, .955);
}

[data-aos][data-aos][data-aos-easing=ease-in-quart], body[data-aos-easing=ease-in-quart] [data-aos] {
  transition-timing-function: cubic-bezier(.55, .085, .68, .53);
}

[data-aos][data-aos][data-aos-easing=ease-out-quart], body[data-aos-easing=ease-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(.25, .46, .45, .94);
}

[data-aos][data-aos][data-aos-easing=ease-in-out-quart], body[data-aos-easing=ease-in-out-quart] [data-aos] {
  transition-timing-function: cubic-bezier(.455, .03, .515, .955);
}

[data-aos^=fade][data-aos^=fade] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=fade][data-aos^=fade].aos-animate {
  opacity: 1;
  transform: translateZ(0);
}

[data-aos=fade-up] {
  transform: translate3d(0, 100px, 0);
}

[data-aos=fade-down] {
  transform: translate3d(0, -100px, 0);
}

[data-aos=fade-right] {
  transform: translate3d(-100px, 0, 0);
}

[data-aos=fade-left] {
  transform: translate3d(100px, 0, 0);
}

[data-aos=fade-up-right] {
  transform: translate3d(-100px, 100px, 0);
}

[data-aos=fade-up-left] {
  transform: translate3d(100px, 100px, 0);
}

[data-aos=fade-down-right] {
  transform: translate3d(-100px, -100px, 0);
}

[data-aos=fade-down-left] {
  transform: translate3d(100px, -100px, 0);
}

[data-aos^=zoom][data-aos^=zoom] {
  opacity: 0;
  transition-property: opacity, transform;
}

[data-aos^=zoom][data-aos^=zoom].aos-animate {
  opacity: 1;
  transform: translateZ(0) scale(1);
}

[data-aos=zoom-in] {
  transform: scale(.6);
}

[data-aos=zoom-in-up] {
  transform: translate3d(0, 100px, 0) scale(.6);
}

[data-aos=zoom-in-down] {
  transform: translate3d(0, -100px, 0) scale(.6);
}

[data-aos=zoom-in-right] {
  transform: translate3d(-100px, 0, 0) scale(.6);
}

[data-aos=zoom-in-left] {
  transform: translate3d(100px, 0, 0) scale(.6);
}

[data-aos=zoom-out] {
  transform: scale(1.2);
}

[data-aos=zoom-out-up] {
  transform: translate3d(0, 100px, 0) scale(1.2);
}

[data-aos=zoom-out-down] {
  transform: translate3d(0, -100px, 0) scale(1.2);
}

[data-aos=zoom-out-right] {
  transform: translate3d(-100px, 0, 0) scale(1.2);
}

[data-aos=zoom-out-left] {
  transform: translate3d(100px, 0, 0) scale(1.2);
}

[data-aos^=slide][data-aos^=slide] {
  transition-property: transform;
}

[data-aos^=slide][data-aos^=slide].aos-animate {
  transform: translateZ(0);
}

[data-aos=slide-up] {
  transform: translate3d(0, 100%, 0);
}

[data-aos=slide-down] {
  transform: translate3d(0, -100%, 0);
}

[data-aos=slide-right] {
  transform: translate3d(-100%, 0, 0);
}

[data-aos=slide-left] {
  transform: translate3d(100%, 0, 0);
}

[data-aos^=flip][data-aos^=flip] {
  backface-visibility: hidden;
  transition-property: transform;
}

[data-aos=flip-left] {
  transform: perspective(2500px) rotateY(-100deg);
}

[data-aos=flip-left].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-right] {
  transform: perspective(2500px) rotateY(100deg);
}

[data-aos=flip-right].aos-animate {
  transform: perspective(2500px) rotateY(0);
}

[data-aos=flip-up] {
  transform: perspective(2500px) rotateX(-100deg);
}

[data-aos=flip-up].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

[data-aos=flip-down] {
  transform: perspective(2500px) rotateX(100deg);
}

[data-aos=flip-down].aos-animate {
  transform: perspective(2500px) rotateX(0);
}

.slider-pro {
  position: relative;
  margin: 0 auto;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

.sp-slides-container {
  position: relative;
}

.sp-mask {
  position: relative;
  overflow: hidden;
}

.sp-slides {
  position: relative;
  -webkit-backface-visibility: hidden;
  -webkit-perspective: 1000;
}

.sp-slide {
  position: absolute;
}

.sp-image-container {
  overflow: hidden;
}

.sp-image {
  position: relative;
  display: block;
  border: none;
}

.sp-no-js {
  overflow: hidden;
  max-width: 100%;
}

.sp-thumbnails-container {
  position: relative;
  overflow: hidden;
  direction: ltr;
}

.sp-bottom-thumbnails, .sp-top-thumbnails {
  left: 0;
  margin: 0 auto;
}

.sp-top-thumbnails {
  position: absolute;
  top: 0;
  margin-bottom: 4px;
}

.sp-bottom-thumbnails {
  margin-top: 4px;
}

.sp-left-thumbnails, .sp-right-thumbnails {
  position: absolute;
  top: 0;
}

.sp-right-thumbnails {
  right: 0;
  margin-left: 4px;
}

.sp-left-thumbnails {
  left: 0;
  margin-right: 4px;
}

.sp-thumbnails {
  position: relative;
}

.sp-thumbnail {
  border: none;
}

.sp-thumbnail-container {
  position: relative;
  display: block;
  overflow: hidden;
  float: left;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.sp-rtl .sp-thumbnail-container {
  float: right;
}

.sp-bottom-thumbnails .sp-thumbnail-container, .sp-top-thumbnails .sp-thumbnail-container {
  margin-left: 2px;
  margin-right: 2px;
}

.sp-bottom-thumbnails .sp-thumbnail-container:first-child, .sp-top-thumbnails .sp-thumbnail-container:first-child {
  margin-left: 0;
}

.sp-bottom-thumbnails .sp-thumbnail-container:last-child, .sp-top-thumbnails .sp-thumbnail-container:last-child {
  margin-right: 0;
}

.sp-left-thumbnails .sp-thumbnail-container, .sp-right-thumbnails .sp-thumbnail-container {
  margin-top: 2px;
  margin-bottom: 2px;
}

.sp-left-thumbnails .sp-thumbnail-container:first-child, .sp-right-thumbnails .sp-thumbnail-container:first-child {
  margin-top: 0;
}

.sp-left-thumbnails .sp-thumbnail-container:last-child, .sp-right-thumbnails .sp-thumbnail-container:last-child {
  margin-bottom: 0;
}

.sp-right-thumbnails.sp-has-pointer {
  margin-left: -13px;
}

.sp-right-thumbnails.sp-has-pointer .sp-thumbnail {
  position: absolute;
  left: 18px;
  margin-left: 0 !important;
}

.sp-right-thumbnails.sp-has-pointer .sp-selected-thumbnail:before {
  content: '';
  position: absolute;
  height: 100%;
  border-left: 5px solid red;
  left: 0;
  top: 0;
  margin-left: 13px;
}

.sp-right-thumbnails.sp-has-pointer .sp-selected-thumbnail:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  left: 0;
  top: 50%;
  margin-top: -8px;
  border-right: 13px solid red;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.sp-left-thumbnails.sp-has-pointer {
  margin-right: -13px;
}

.sp-left-thumbnails.sp-has-pointer .sp-thumbnail {
  position: absolute;
  right: 18px;
}

.sp-left-thumbnails.sp-has-pointer .sp-selected-thumbnail:before {
  content: '';
  position: absolute;
  height: 100%;
  border-left: 5px solid red;
  right: 0;
  top: 0;
  margin-right: 13px;
}

.sp-left-thumbnails.sp-has-pointer .sp-selected-thumbnail:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  right: 0;
  top: 50%;
  margin-top: -8px;
  border-left: 13px solid red;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
}

.sp-bottom-thumbnails.sp-has-pointer {
  margin-top: -13px;
}

.sp-bottom-thumbnails.sp-has-pointer .sp-thumbnail {
  position: absolute;
  top: 18px;
  margin-top: 0 !important;
}

.sp-bottom-thumbnails.sp-has-pointer .sp-selected-thumbnail:before {
  content: '';
  position: absolute;
  width: 100%;
  border-bottom: 5px solid red;
  top: 0;
  margin-top: 13px;
}

.sp-bottom-thumbnails.sp-has-pointer .sp-selected-thumbnail:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  top: 0;
  margin-left: -8px;
  border-bottom: 13px solid red;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.sp-top-thumbnails.sp-has-pointer {
  margin-bottom: -13px;
}

.sp-top-thumbnails.sp-has-pointer .sp-thumbnail {
  position: absolute;
  bottom: 18px;
}

.sp-top-thumbnails.sp-has-pointer .sp-selected-thumbnail:before {
  content: '';
  position: absolute;
  width: 100%;
  border-bottom: 5px solid red;
  bottom: 0;
  margin-bottom: 13px;
}

.sp-top-thumbnails.sp-has-pointer .sp-selected-thumbnail:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  bottom: 0;
  margin-left: -8px;
  border-top: 13px solid red;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.sp-layer {
  position: absolute;
  margin: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-font-smoothing: subpixel-antialiased;
  -webkit-backface-visibility: hidden;
}

.sp-black {
  color: #fff;
  background: rgba(0, 0, 0, .7);
}

.sp-white {
  color: #000;
  background: rgba(255, 255, 255, .7);
}

.sp-rounded {
  border-radius: 10px;
}

.sp-padding {
  padding: 10px;
}

.sp-grab {
  cursor: url(images/openhand.cur), move;
}

.sp-grabbing {
  cursor: url(images/closedhand.cur), move;
}

.sp-selectable {
  cursor: default;
}

.sp-caption-container {
  text-align: center;
  margin-top: 10px;
}

.sp-full-screen {
  margin: 0 !important;
  background-color: #000;
}

.sp-full-screen-button {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.sp-full-screen-button:before {
  content: '\2195';
}

.sp-fade-full-screen {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.slider-pro:hover .sp-fade-full-screen {
  opacity: 1;
}

.sp-buttons {
  position: relative;
  width: 100%;
  text-align: center;
  padding-top: 10px;
}

.sp-rtl .sp-buttons {
  direction: rtl;
}

.sp-full-screen .sp-buttons {
  display: none;
}

.sp-button {
  width: 10px;
  height: 10px;
  border: 2px solid #000;
  border-radius: 50%;
  margin: 4px;
  display: inline-block;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
}

.sp-selected-button {
  background-color: #000;
}

.sp-arrows {
  position: absolute;
}

.sp-fade-arrows {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.sp-slides-container:hover .sp-fade-arrows {
  opacity: 1;
}

.sp-horizontal .sp-arrows {
  width: 100%;
  left: 0;
  top: 50%;
  margin-top: -15px;
}

.sp-vertical .sp-arrows {
  height: 100%;
  left: 50%;
  top: 0;
  margin-left: -10px;
}

.sp-arrow {
  position: absolute;
  display: block;
  width: 20px;
  height: 30px;
  cursor: pointer;
}

.sp-vertical .sp-arrow {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sp-horizontal .sp-previous-arrow {
  left: 20px;
  right: auto;
}

.sp-horizontal.sp-rtl .sp-previous-arrow {
  right: 20px;
  left: auto;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.sp-horizontal .sp-next-arrow {
  right: 20px;
  left: auto;
}

.sp-horizontal.sp-rtl .sp-next-arrow {
  left: 20px;
  right: auto;
  -webkit-transform: rotate(0);
  -ms-transform: rotate(0);
  transform: rotate(0);
}

.sp-vertical .sp-previous-arrow {
  top: 20px;
}

.sp-vertical .sp-next-arrow {
  bottom: 20px;
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}

.sp-next-arrow:after, .sp-next-arrow:before, .sp-previous-arrow:after, .sp-previous-arrow:before {
  content: '';
  position: absolute;
  width: 50%;
  height: 50%;
  background-color: #fff;
}

.sp-arrow:before {
  left: 30%;
  top: 0;
  -webkit-transform: skew(145deg, 0deg);
  -ms-transform: skew(145deg, 0deg);
  transform: skew(145deg, 0deg);
}

.sp-arrow:after {
  left: 30%;
  top: 50%;
  -webkit-transform: skew(-145deg, 0deg);
  -ms-transform: skew(-145deg, 0deg);
  transform: skew(-145deg, 0deg);
}

.sp-next-arrow {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.ie7 .sp-arrow, .ie8 .sp-arrow {
  width: 0;
  height: 0;
}

.ie7 .sp-arrow:after, .ie7 .sp-arrow:before, .ie8 .sp-arrow:after, .ie8 .sp-arrow:before {
  content: none;
}

.ie7.sp-horizontal .sp-previous-arrow, .ie8.sp-horizontal .sp-previous-arrow {
  border-right: 20px solid #fff;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.ie7.sp-horizontal .sp-next-arrow, .ie8.sp-horizontal .sp-next-arrow {
  border-left: 20px solid #fff;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
}

.ie7.sp-vertical .sp-previous-arrow, .ie8.sp-vertical .sp-previous-arrow {
  border-bottom: 20px solid #fff;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}

.ie7.sp-vertical .sp-next-arrow, .ie8.sp-vertical .sp-next-arrow {
  border-top: 20px solid #fff;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
}

.sp-thumbnail-arrows {
  position: absolute;
}

.sp-fade-thumbnail-arrows {
  opacity: 0;
  -webkit-transition: opacity .5s;
  transition: opacity .5s;
}

.sp-thumbnails-container:hover .sp-fade-thumbnail-arrows {
  opacity: 1;
}

.sp-bottom-thumbnails .sp-thumbnail-arrows, .sp-top-thumbnails .sp-thumbnail-arrows {
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -12px;
}

.sp-left-thumbnails .sp-thumbnail-arrows, .sp-right-thumbnails .sp-thumbnail-arrows {
  height: 100%;
  top: 0;
  left: 50%;
  margin-left: -7px;
}

.sp-thumbnail-arrow {
  position: absolute;
  display: block;
  width: 15px;
  height: 25px;
  cursor: pointer;
}

.sp-left-thumbnails .sp-thumbnail-arrows .sp-thumbnail-arrow, .sp-right-thumbnails .sp-thumbnail-arrows .sp-thumbnail-arrow {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}

.sp-bottom-thumbnails .sp-previous-thumbnail-arrow, .sp-top-thumbnails .sp-previous-thumbnail-arrow {
  left: 0;
}

.sp-bottom-thumbnails .sp-next-thumbnail-arrow, .sp-top-thumbnails .sp-next-thumbnail-arrow {
  right: 0;
}

.sp-left-thumbnails .sp-previous-thumbnail-arrow, .sp-right-thumbnails .sp-previous-thumbnail-arrow {
  top: 0;
}

.sp-left-thumbnails .sp-next-thumbnail-arrow, .sp-right-thumbnails .sp-next-thumbnail-arrow {
  bottom: 0;
}

.sp-next-thumbnail-arrow:after, .sp-next-thumbnail-arrow:before, .sp-previous-thumbnail-arrow:after, .sp-previous-thumbnail-arrow:before {
  content: '';
  position: absolute;
  width: 50%;
  height: 50%;
  background-color: #fff;
}

.sp-previous-thumbnail-arrow:before {
  left: 30%;
  top: 0;
  -webkit-transform: skew(145deg, 0deg);
  -ms-transform: skew(145deg, 0deg);
  transform: skew(145deg, 0deg);
}

.sp-previous-thumbnail-arrow:after {
  left: 30%;
  top: 50%;
  -webkit-transform: skew(-145deg, 0deg);
  -ms-transform: skew(-145deg, 0deg);
  transform: skew(-145deg, 0deg);
}

.sp-next-thumbnail-arrow:before {
  right: 30%;
  top: 0;
  -webkit-transform: skew(35deg, 0deg);
  -ms-transform: skew(35deg, 0deg);
  transform: skew(35deg, 0deg);
}

.sp-next-thumbnail-arrow:after {
  right: 30%;
  top: 50%;
  -webkit-transform: skew(-35deg, 0deg);
  -ms-transform: skew(-35deg, 0deg);
  transform: skew(-35deg, 0deg);
}

.ie7 .sp-thumbnail-arrow, .ie8 .sp-thumbnail-arrow {
  width: 0;
  height: 0;
}

.ie7 .sp-thumbnail-arrow:after, .ie7 .sp-thumbnail-arrow:before, .ie8 .sp-thumbnail-arrow:after, .ie8 .sp-thumbnail-arrow:before {
  content: none;
}

.ie7 .sp-bottom-thumbnails .sp-previous-thumbnail-arrow, .ie7 .sp-top-thumbnails .sp-previous-thumbnail-arrow, .ie8 .sp-bottom-thumbnails .sp-previous-thumbnail-arrow, .ie8 .sp-top-thumbnails .sp-previous-thumbnail-arrow {
  border-right: 12px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.ie7 .sp-bottom-thumbnails .sp-next-thumbnail-arrow, .ie7 .sp-top-thumbnails .sp-next-thumbnail-arrow, .ie8 .sp-bottom-thumbnails .sp-next-thumbnail-arrow, .ie8 .sp-top-thumbnails .sp-next-thumbnail-arrow {
  border-left: 12px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.ie7 .sp-left-thumbnails .sp-previous-thumbnail-arrow, .ie7 .sp-right-thumbnails .sp-previous-thumbnail-arrow, .ie8 .sp-left-thumbnails .sp-previous-thumbnail-arrow, .ie8 .sp-right-thumbnails .sp-previous-thumbnail-arrow {
  border-bottom: 12px solid #fff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}

.ie7 .sp-left-thumbnails .sp-next-thumbnail-arrow, .ie7 .sp-right-thumbnails .sp-next-thumbnail-arrow, .ie8 .sp-left-thumbnails .sp-next-thumbnail-arrow, .ie8 .sp-right-thumbnails .sp-next-thumbnail-arrow {
  border-top: 12px solid #fff;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
}

a.sp-video {
  text-decoration: none;
}

a.sp-video img {
  -webkit-backface-visibility: hidden;
  border: none;
}

a.sp-video:after {
  content: '\25B6';
  position: absolute;
  width: 45px;
  padding-left: 5px;
  height: 50px;
  border: 2px solid #fff;
  text-align: center;
  font-size: 30px;
  border-radius: 30px;
  top: 0;
  color: #fff;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(0, 0, 0, .2);
  margin: auto;
  line-height: 52px;
}

.slider-pro img.sp-image, .slider-pro img.sp-thumbnail {
  max-width: none;
  max-height: none;
  border: none !important;
  border-radius: 0 !important;
  padding: 0 !important;
  -webkit-box-shadow: none !important;
  -mox-box-shadow: none !important;
  box-shadow: none !important;
  transition: none;
  -moz-transition: none;
  -webkit-transition: none;
  -o-transition: none;
}

.slider-pro a {
  position: static;
  transition: none !important;
  -moz-transition: none !important;
  -webkit-transition: none !important;
  -o-transition: none !important;
}

.slider-pro canvas, .slider-pro embed, .slider-pro iframe, .slider-pro object, .slider-pro video {
  max-width: none;
  max-height: none;
}

.slider-pro p.sp-layer {
  font-size: 14px;
  line-height: 1.4;
  margin: 0;
}

.slider-pro h1.sp-layer {
  font-size: 32px;
  line-height: 1.4;
  margin: 0;
}

.slider-pro h2.sp-layer {
  font-size: 24px;
  line-height: 1.4;
  margin: 0;
}

.slider-pro h3.sp-layer {
  font-size: 19px;
  line-height: 1.4;
  margin: 0;
}

.slider-pro h4.sp-layer {
  font-size: 16px;
  line-height: 1.4;
  margin: 0;
}

.slider-pro h5.sp-layer {
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
}

.slider-pro h6.sp-layer {
  font-size: 11px;
  line-height: 1.4;
  margin: 0;
}

.slider-pro img.sp-layer {
  border: none;
}

.blog-preview-component .blog-preview_info {
  min-height: 140px;
}

.blog-preview_header {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  line-height: 2.4;
  margin-top: 20px;
}

.blog-preview_category {
  position: relative;
  color: #ff7900;
}

.blog-preview_date span {
  color: #ff7900;
  font-weight: bold;
}

.blog-preview_author {
  flex-grow: 1;
  text-align: right;
}

.blog-preview_category::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 56px;
  background-color: #ff7900;
}

.blog-preview_item .blog-preview_arrow,
.blog-preview_lead .blog-preview_arrow {
  background-color: transparent;
}

.blog-archived .blog-preview_item .blog-preview_arrow {
  width: 30px;
}

.blog-preview_item:hover .blog-preview_arrow,
.blog-preview_lead:hover .blog-preview_arrow {
  background-color: transparent;
}

.blog-preview_item .blog-preview_icon,
.blog-preview_lead .blog-preview_icon {
  background-image: url("/templates/4cblog2024/img/icons/noun_Arrow_3134195_orange.png");
}

.blog-preview_item:hover .blog-preview_icon,
.blog-preview_lead:hover .blog-preview_icon {
  background-image: url("/templates/4cblog2024/img/icons/noun_Arrow_3134195_orange.png");
}

.blog-preview_meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}

.blog-archived_wrapper .blog-preview_item {
  height: 250px;
}

.blog-preview_meta .blog-preview_author {
  text-align: left;
  flex-grow: 0;
}

.blog-preview_meta .blog-preview_arrow {
  position: relative;
}

@media (min-width: 1920px) {
  .h1, h1 {
    font-size: 2.375rem;
  }
}

@media (min-width: 1920px) {
  .h2, h2 {
    font-size: 2.1rem;
  }
}

@media (min-width: 1920px) {
  h3, .h3 {
    font-size: 1.45rem;
  }
}

@media (min-width: 1920px) {
  h4, .h4 {
    font-size: 1.4rem;
  }
}

@media (min-width: 1920px) {
  h1.content {
    font-size: 2.375rem;
  }
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .fourc_headline--h4orange {
    text-align: center;
    margin-bottom: 1rem;
  }

  .fourc_headline--h4orange > * {
    hyphens: auto;
  }

  .fourc_headline--h4orange:after {
    left: calc(50% - 35px);
    bottom: -5px;
  }
}

@media (min-width: 1280px) {
  .contactform div.form {
    position: relative;
    min-height: 400px;
  }

  .contactform div.form_row {
    display: inline-block;
  }

  .contactform div.row_anrede {
    width: calc(25% - 14px);
    margin-right: 14px;
  }

  .contactform div.row_vorname {
    width: calc(25% - 14px);
    margin-right: 14px;
  }

  .contactform div.row_name {
    width: calc(25% - 14px);
    margin-right: 14px;
  }

  .contactform div.row_unternehmen {
    width: calc(25% - 14px);
  }

  .contactform div.row_email {
    width: calc(33.33% - 14px);
    margin-right: 15px;
  }

  .contactform div.row_telefon {
    width: calc(33.33% - 14px);
    margin-right: 15px;
  }

  .contactform div.row_thema {
    width: calc(33.33% - 14px);
  }

  .contactform div.row_kommentar {
    top: 106px;
    left: 0;
    width: calc(67% - 15px);
    margin-right: 15px;
  }

  .contactform div.row_kommentar textarea {
    height: 300px;
  }

  .contactform div.row_text {
    width: calc(33.33% - 15px);
    vertical-align: top;
  }

  .contactform div.form_submitbutton {
    position: absolute;
    bottom: -25px;
    right: -20px;
    height: 48px;
    width: 148px;
  }

  .contactform div.form_submitbutton img {
    position: absolute;
    left: 10px;
    top: 16px;
  }
}

@media (min-width: 1280px) {
  .ebookletform div.form {
    position: relative;
    min-height: 231px;
  }

  .ebookletform div.form_row {
    display: inline-block;
  }

  .ebookletform div.row_salutation {
    width: calc(33% - 14px);
    margin-right: 14px;
  }

  .ebookletform div.row_firm {
    width: calc(33% - 14px);
    margin-right: calc(33% - 14px);
  }

  .ebookletform div.row_firstname {
    width: calc(16.5% - 15px);
    margin-right: 14px;
  }

  .ebookletform div.row_name {
    width: calc(16.5% - 15px);
    margin-right: 14px;
  }

  .ebookletform div.row_unternehmen {
    width: calc(25% - 14px);
  }

  .ebookletform div.row_email {
    width: calc(33.33% - 19px);
    margin-right: calc(33% - 15px);
  }

  .ebookletform div.row_text {
    width: calc(33.33% - 15px);
    position: absolute;
    right: 0;
    top: 0;
    font-size: .75rem;
  }

  .ebookletform div.form_submitbutton {
    position: absolute;
    bottom: -25px;
    right: -20px;
    height: 48px;
    width: 200px;
    background-color: #303f55;
    padding-right: 22px;
  }

  .ebookletform div.form_submitbutton img {
    position: absolute;
    left: 10px;
    top: 16px;
  }
}

@media (min-width: 1920px) {
  .banner_article h1, .banner_article h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1920px) {
  .banner_text h3 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1920px) {
  .banner_fancybox .banner_fancybox-content h2 {
    font-size: 2.375rem;
  }
}

@media (min-width: 1920px) {
  .teasercontainer li.teaser h3 {
    font-size: 1.4rem;
  }
}

@media (min-width: 1920px) {
  div.accordeon_header h3 {
    font-size: 1.45rem;
  }
}

@media (min-width: 1920px) {
  .teaser-slider_title h5 {
    font-size: 1.4rem;
  }
}

@media (min-width: 1920px) {
  .real_character_story h3 {
    font-size: 2.375rem;
  }
}

@media (min-width: 1920px) {
  .searchresult_title {
    font-size: 2.1rem;
  }
}

@media (min-width: 1920px) {
  .partner-slider.v2023 .partner-slider_profile-item h3 {
    font-size: 2.375rem;
  }
}

@media (min-width: 1920px) {
  .partner-slider.v2023 .partner-slider_profile-item h5.partner-slider_role {
    font-size: 1.4rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .text_tile_tiles {
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 -15px;
  }

  .text_tile_title {
    width: 48%;
    min-height: 123px;
    margin: 0 0 15px;
  }

  .text_tile_content {
    padding-top: 15px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1290px) {
  .text_tile_title {
    min-height: 123px;
  }
}

@media only screen and (min-width: 0) and (max-width: 767px) {
  .text_tile_title {
    width: 100%;
    margin: 0 0 10px;
  }

  .text_tile-no-mobile {
    display: none;
  }

  .text_tile-mobile {
    display: block;
    width: 100%;
    margin: 0;
  }

  .text_tile_title_icon {
    background-size: auto 80px;
    padding-top: 92px;
  }

  .text_tile {
    margin: 0 0 -15px;
  }

  .text_tile_content {
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (min-width: 768px) {
  .text_tile-no-mobile {
    display: block;
  }

  .text_tile-mobile {
    display: none;
  }
}

@media only screen and (min-width: 1448px) {
  .nav_icon {
    display: none;
  }

  a#menu_icon {
    display: none;
  }

  .blog-preview-component .blog-preview_item h4 {
    padding-right: 30px;
  }

  .nav.nav-2023 .subnav_itemL2:nth-child(7), .nav.nav-2023 .subnav_itemL2:nth-child(8), .nav.nav-2023 .subnav_itemL2:nth-child(9) {
      /*
    padding-bottom: 0;
    */
  }

  .parallax-background .download--preview.owl-carousel .owl-nav button.owl-prev {
    left: -30px;
  }

  .parallax-background .download--preview.owl-carousel .owl-nav button.owl-next {
    right: -30px;
  }
}

@media only screen and (min-width: 1448px) and (max-width: 1920px) {
  .rc23_list {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media only screen and (min-width: 1300px) {
  .content-with-padding > .tinymce {
    padding-right: calc(25% + 60px) !important;
  }

  .content-with-padding > .form {
    max-width: 50%;
  }

  .parallax-background > .tinymce {
    padding-right: 25%;
  }

  parallax-background > .teaser--foldable + .tinymce {
    padding-right: 60px;
  }

  .blog-single_content {
    max-width: 75%;
  }

  .blog-preview-component .blog-preview_item h4 {
    max-height: 100px;
    overflow: hidden;
    font-size: 1.15rem;
  }

  .event-details_form .form form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .event-details .form_row {
    width: 24%;
  }

  .event-details .form_row.row_title {
    width: 100%;
  }

  .event-details .form_row.row_comment {
    height: 285px;
    width: 49.5%;
  }

  .event-details .form_row.row_comment textarea {
    height: 265px;
  }

  .event-details .form_row.row_privacy {
    width: 49%;
    display: flex;
    align-items: flex-end;
  }

  .event-details .form_row.row_privacy .form_label {
    display: none;
  }

  .event-details_registration-form .form_row.row_email {
    width: 32.5%;
  }

  .event-details_registration-form .form_row.row_phone {
    width: 32.5%;
  }

  .event-details_registration-form .form_row.row_contact_person {
    width: 32.5%;
  }

  .manager_description {
    padding-right: 60px;
  }

  .value-teaser_text p {
    width: 94%;
  }

  .download {
    width: 75%;
  }

  .video--top {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
}

@media (max-height: 768px) {
  .banner_article h1, .banner_article h2 {
    padding-top: 12vw;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 1447px) {
  .social-media {
    top: 50vw;
  }

  .real_character_cv {
    height: 515px;
  }

  .real_character_cv-sign {
    left: 5%;
  }

  .real_character_cv-text {
    padding: 0 10% 0 12%;
  }

  .stagecontainer {
    height: 29vw !important;
  }

  .home2023 .banner_article {
    width: 50%;
  }

  .home2023 .banner_article h1, .home2023 .banner_article h2 {
    font-size: 4rem;
  }

  .rc23_list {
    grid-template-columns: repeat(4, 1fr);
  }

  .teaser--foldable .teaser_title {
    height: 85px;
    font-size: 1.5rem;
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 1447px) and (min-height: 769px) {
  .social-media {
    top: 50vw;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1447px) {
  .network_logos {
    grid-template-columns: repeat(4, 1fr);
  }

  .jobs.v2024 .jobs_row--33-33-33 {
    grid-template-columns: 1fr 1fr;
  }

  .jobs.v2024 .jobs_contact-person.jobs_column-gap--right {
    border-right: none;
  }

  .jobs.v2024 .jobs_quicklinks.jobs_column-gap--left {
    border-left: none;
  }

  .jobs.v2024 .jobs_quicklinks {
    grid-column: -3/-1;
    margin-top: 24px;
    padding: 32px 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1299px) {
  .content-home {
    height: 2930px;
  }

  .home .main {
    height: 2786px;
  }

  .banner-primary {
    height: 810px;
  }

  .banner_article h1, .banner_article h2 {
    padding-top: 17vw;
  }

  .banner-carousel .carousel_item, .banner-sub {
    height: 380px;
  }

  .banner_intro {
    bottom: 40px;
  }

  .carousel_item {
    height: 810px;
  }

  .social-media {
    top: 54vw;
  }

  .real_character_cv-sign {
    left: 2%;
  }

  .real_character_cv-text {
    position: relative;
    margin-top: 0;
    height: auto;
    min-height: 500px;
    padding: 50px 12%;
  }

  .real_character_personal-photo {
    left: auto;
    right: 0;
  }

  .logoslideritem {
    width: 18%;
    margin-right: 2%;
  }

  .blog-preview_lead {
    width: 100%;
    max-width: 685px;
  }

  .blog-preview .blog-preview_item {
    width: 685px;
  }

  .blog-preview-component .blog-preview_item h4 {
    max-height: 100px;
    overflow: hidden;
  }

  .teasercategories {
    flex-wrap: wrap;
  }

  .teasercategory_4col {
    width: 50%;
    max-width: 300px;
    margin-bottom: 20px;
  }

  .teaser--foldable .teaser_title {
    font-size: 1.5rem;
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
  }

  .teaser--foldable .teaser_collapsable-content {
    padding: 25px 20px;
  }

  .teaser--foldable .teaser_collapsable-content h4 {
    font-size: 1.3rem;
    word-wrap: break-word;
  }

  .icon-tiles {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .home2023 .banner_article {
    width: 80%;
  }

  .home2023 .banner_article h1 {
    margin-bottom: 1.6rem;
  }

  .home2023 .banner_article h1, .home2023 .banner_article h2 {
    font-size: 3rem;
  }

  .rc23_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (min-width: 768px) {
  .desktop--hidden {
    display: none !important;
  }

  .mobile--hidden {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1299px) {
  .value-teaser {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-archived {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-archived_item {
    max-width: 445px;
  }

  .blog-preview-component {
    justify-content: center;
  }

  .blog-preview-component .blog-preview_item {
    max-width: 100%;
    width: 755px;
  }

  .blog-preview-component .blog-preview_item:nth-child(2n) {
    margin-left: 0;
  }

  .blog-preview-component .blog-preview_item:nth-child(odd) {
    margin-right: 0;
  }

  .press-teaser {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 40px;
    grid-column-gap: 40px;
  }

  .logoslideritem {
    padding: 5px;
  }

  .logoslideritem_logo {
    background-size: contain;
  }

  .stagecontainer {
    height: 56vw !important;
  }

  .job-teaser {
    grid-template-columns: repeat(2, 1fr);
  }

  .home2023 .footer_bottom {
    flex-direction: row;
    flex-wrap: wrap;
    height: 125px;
  }

  .home2023 .footer_bottom :first-child {
    order: 3;
  }

  .home2023 .footer_bottom :nth-child(2) {
    order: 2;
  }

  .home2023 .footer_bottom :nth-child(3) {
    order: 1;
  }

  .home2023 .footer_copyright {
    width: 100%;
  }

  .home2023 .footer_menu-bottom {
    width: 50%;
  }

  .home2023 .footer_menu-bottom .nav_block-item {
    padding: 0 20px;
  }

  .home2023 .counter_row {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 30px;
  }

  .teaser--preview .teaser_container {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    row-gap: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-carousel .carousel_item {
    height: 280px;
  }

  .banner-sub {
    height: 490px;
  }

  .banner_intro {
    bottom: 60px;
    max-width: 390px;
  }

  .breadcrumbs_h1 {
    right: 60px;
    bottom: 40px;
  }

  .logoslideritem {
    width: 22.6%;
    margin: 0 1.2%;
  }

  .real_character_personal-text {
    width: 50%;
  }

  .real_character_cv {
    width: 50%;
    justify-content: flex-end;
  }

  .real_character_personal-photo {
    margin-top: -50px;
  }

  .teasercontainer ul.teaser {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-preview-component .blog-preview_image-small {
    width: 100%;
  }

  .product-list_container {
    padding: 40px 40px 50px 40px;
  }

  .product-list--w33, .product-list_download-image {
    width: initial;
  }

  .product-list_image-right .product-list_download, .product-list_image-right .product-list_image-container {
    padding-left: 0;
    text-align: left;
  }

  .network_logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .network_intro {
    min-width: 320px;
  }

  .events_tab-content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .press-teaser_item {
    padding-bottom: 50px;
  }

  .press-teaser_data {
    position: relative;
    bottom: initial;
  }

  .press-info_downloads {
    padding-right: 0;
  }

  .press-info_background {
    background-image: none;
    background-color: #fff;
  }

  .searchresults_form {
    padding-bottom: 40px;
  }

  .searchresults_list {
    padding: 40px 40px 0;
  }

  .parallax-background-content {
    width: calc(100% - 120px);
  }

  .event-details .images img {
    max-width: 240px;
    height: auto;
  }

  .event-details_title {
    padding-left: 60px;
  }

  .partner-slider_name-big {
    top: 0;
  }

  .partner-slider_item {
    height: 936px;
  }

  .partner-slider_textbox {
    max-height: 500px;
  }

  .image-slider_stage {
    width: 100%;
  }

  .image-slider_stage .betterslider_pagination {
    left: 20px;
    width: calc(100% - 40px);
  }
}

@media only screen and (min-width: 0) and (max-width: 991px) {
  .content-home {
    height: 2930px;
  }

  .home .main {
    height: 2786px;
  }

  .banner-primary {
    height: 810px;
  }

  .banner_article h1, .banner_article h2 {
    padding-top: 24vw;
  }

  .banner_article p {
    padding-top: 0;
  }

  .footer_bottom {
    padding-left: 15px;
    padding-right: 15px;
  }

  .carousel_item {
    height: 810px;
  }

  .social-media {
    top: 66vw;
  }

  .teasercategories {
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
  }

  .teasercategory_2col {
    margin-bottom: 20px;
  }

  .teasercategory_3col, .teasercategory_4col {
    width: 100%;
    max-width: 300px;
  }

  .partner-slider_bgimage {
    background-size: contain;
    background-position: top center;
  }

  .real_character_title {
    width: 100%;
  }

  .real_character_quote {
    width: 100%;
  }

  .real_character_cv {
    display: flex;
    flex-wrap: wrap;
  }

  .real_character_cv-text {
    position: relative;
    height: auto;
    width: 100%;
    margin-top: 0;
    padding: 50px 70px 80px 50px;
  }

  .real_character_cv-sign {
    right: 0;
    left: auto;
  }

  .real_character_personal-photo {
    position: relative;
    left: auto;
    bottom: auto;
  }

  .blog-filter #text-search {
    flex: 0 0 100% !important;
    margin-bottom: 10px;
  }

  .blog-filter div:not(#text-search) {
    flex: 0 0 48% !important;
  }

  .blog-preview {
    padding: 0 0 20px;
  }

  .blog-preview_column {
    align-items: center;
    flex-direction: column;
    margin-bottom: 0;
  }

  .blog-preview_lead {
    width: 100%;
    max-width: 445px;
  }

  .blog-preview_item {
    width: 100%;
    max-width: 445px;
    flex-direction: column;
    height: initial;
  }

  .blog-preview_item:last-of-type {
    margin-bottom: 30px;
  }

  .blog-preview_image-small {
    width: 445px;
    max-width: 100%;
  }

  .blog-preview_info {
    padding: 22px 20px 45px;
    min-height: 190px;
  }

  .blog-preview_info h4 {
    position: relative;
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    margin-bottom: 20px;
  }

  .blog-preview_short-text {
    padding-bottom: 20px;
  }

  .blog-preview_text {
    padding: 20px 20px 35px 20px;
  }

  .blog-preview_data {
    max-width: initial;
  }

  .blog-archived {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .blog-archived_item {
    max-width: 445px;
  }

  .blog-archived_info {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-archived_data {
    left: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-list_container {
    flex-direction: column;
  }

  .product-list--w33, .product-list--w50, .product-list--w66, .product-list_information {
    width: 100%;
  }

  .product-list_download-image {
    padding-bottom: 20px;
  }

  .tabs .desktop {
    display: none;
  }

  .tabs .mobile {
    display: block;
  }

  .manager_background {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .manager_teaser {
    display: block;
    margin-bottom: 27px;
  }

  .manager_teaser_image {
    padding-right: 0;
  }

  .manager_teaser_desc {
    margin-top: 10px;
  }

  .manager_info {
    grid-template-rows: 1fr 1.2fr 0fr;
  }

  .manager_info, .manager_name {
    height: auto;
  }

  .accordeon_content .manager_background, .event-details_speaker .manager_background {
    padding-top: 20px;
  }

  .accordeon_content .manager_teaser, .event-details_speaker .manager_teaser {
    width: 205px;
    max-width: 100%;
    margin-right: 30px;
  }

  .jobs_description, .jobs_download {
    width: 100%;
  }

  .jobs_download {
    padding-top: 20px;
  }

  .jobs_benefits {
    flex-wrap: wrap;
  }

  .jobs_container {
    width: 100%;
    padding-top: 25px;
  }

  .jobs_container-fullwidth {
    flex-wrap: wrap;
  }

  .jobs_similar-positions {
    width: 100%;
    border-top: 30px solid #fff;
    border-left: none;
  }

  .jobs_similar-position {
    width: 350px;
    max-width: 100%;
    margin: 0 auto 50px;
  }

  .jobs_start-here {
    right: 60px;
  }

  .job-benefits {
    justify-content: flex-start;
  }

  .job-benefits_item:first-of-type {
    padding-left: 0;
  }

  .jobs.v2024 .jobs_row--33-33-33, .jobs.v2024 .jobs_row--33-66, .jobs.v2024 .jobs_row--66-33 {
    grid-template-columns: 1fr;
  }

  .jobs.v2024 .jobs_row--33-33-33 > .jobs_column-gap--right, .jobs.v2024 .jobs_row--33-66 > .jobs_column-gap--right, .jobs.v2024 .jobs_row--66-33 > .jobs_column-gap--right {
    border-right: none;
  }

  .jobs.v2024 .jobs_row--33-33-33 > .jobs_column-gap--left, .jobs.v2024 .jobs_row--33-66 > .jobs_column-gap--left, .jobs.v2024 .jobs_row--66-33 > .jobs_column-gap--left {
    border-left: none;
  }

  .jobs.v2024 .jobs_apply-now {
    padding: 32px;
    text-align: center;
  }

  .jobs.v2024 .jobs_apply-now img {
    max-width: 300px;
  }

  .jobs.v2024 .jobs_video {
    min-height: 330px;
  }

  .jobs.v2024 .jobs_overflow-box {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    height: auto;
    border-top: none;
    border-left: none;
    padding: 0;
  }

  .jobs.v2024 .jobs_apply-now-text, .jobs.v2024 .jobs_contact-person, .jobs.v2024 .jobs_description, .jobs.v2024 .jobs_facts, .jobs.v2024 .jobs_quicklinks, .jobs.v2024 .jobs_similar-positions, .jobs.v2024 .jobs_video {
    margin-top: 24px;
    padding: 32px 60px;
  }

  .icon-tiles {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
  }

  .icon-tiles_item img {
    height: 150px;
  }

  .home2023 .quality-tiles--centered {
    padding: 0 5px;
  }

  .rc23_intro, .rc23_personal {
    flex-wrap: wrap;
  }

  .rc23_personal-cv, .rc23_personal-photo, .rc23_slogan, .rc23_story {
    width: 100%;
  }

  .rc23_slogan {
    padding-bottom: 50px;
  }

  .rc23_personal-photo {
    padding-bottom: 50%;
  }

  .fourc_checkmark {
    line-height: 1.5 !important;
  }

  .teaser--foldable {
    width: 100%;
    padding-top: 0;
  }

  .teaser--foldable .teaser {
    padding: 60px 0 0;
    filter: none;
  }

  .teaser--foldable .teaser_collapsable-container.desktop, .teaser--foldable .teaser_container.desktop {
    display: none;
  }

  .teaser--foldable .teaser_container.mobile {
    display: block;
    margin-bottom: 0;
  }

  .teaser--foldable .teaser_content {
    padding: 15% 5px;
  }

  .teaser--foldable .teaser_collapsable-content {
    position: relative;
    padding: 25px 10px;
  }

  .teaser--foldable .teaser_active-line {
    position: relative;
    bottom: auto;
    height: 20px;
    opacity: 1;
  }

  .teaser--foldable .owl-nav {
    position: absolute;
    top: 25px;
    right: 30px;
  }

  .teaser--foldable .owl-carousel .owl-nav button.owl-next, .teaser--foldable .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    z-index: 0;
    cursor: pointer;
    color: transparent;
    display: block;
    width: 15px;
    height: 24px;
    background: initial;
    background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_blue.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .teaser--foldable .owl-carousel .owl-nav button.owl-prev {
    right: 65px;
    transform: rotate(180deg);
  }

  .teaser--foldable .owl-dots {
    counter-reset: slides-num;
    position: absolute;
    top: 24px;
    right: 45px;
    margin-left: -8px;
  }

  .teaser--foldable .owl-dots:after {
    content: counter(slides-num);
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
    vertical-align: middle;
    padding-top: 2px;
  }

  .teaser--foldable .owl-dot {
    display: inline-block;
    counter-increment: slides-num;
    margin-right: 10px;
  }

  .teaser--foldable .owl-dot span {
    display: none;
  }

  .teaser--foldable .owl-dot.active:before {
    content: counter(slides-num) " / ";
    display: inline-block;
    vertical-align: middle;
    font-size: 1rem;
    line-height: 1.05;
    position: absolute;
    left: 0;
    top: 4px;
  }

  .teaser-slider_container.v2024 .teaser-slider {
    flex-direction: column;
  }

  .teaser-slider_container.v2024 .teaser-slider_image {
    width: 100%;
    min-height: 135px;
  }

  .teaser-slider_container.v2024 .teaser-slider_content {
    width: 100%;
    padding-left: 0;
  }

  .teaser-slider_container.v2024 .teaser-slider_content h3 {
    font-size: 1.3rem;
  }

  .teaser-slider_container.v2024 .teaser-slider_button {
    margin-top: 0;
  }

  .events-teaser-slider {
    padding: 50px 0 0;
  }

  .events-teaser-slider_slide {
    height: 360px;
  }

  .events-teaser-slider_headline {
    padding-top: 50px;
    padding-left: 15px;
  }

  .events-teaser-slider_title {
    font-size: 1.6rem;
  }

  .events-teaser-slider_time-data {
    height: 87px;
    gap: 10px;
    word-break: break-all;
    font-size: 1rem;
    padding: 0 5px 0;
  }

  .events-teaser-slider_time-data i {
    height: 30px;
    line-height: 30px !important;
    padding-left: 40px;
  }

  .events-teaser-slider_button {
    left: 15px;
    bottom: 140px;
  }

  .events-teaser-slider_line--white {
    display: none !important;
  }

  .events-teaser-slider.owl-carousel .owl-nav button.owl-prev {
    top: 5px;
    left: auto;
    right: 80px;
  }

  .events-teaser-slider.owl-carousel .owl-nav button.owl-next {
    top: 5px;
    left: auto;
    right: 0;
  }

  .events-teaser-slider .owl-dots {
    bottom: auto;
    top: 3px;
    right: 25px;
    left: auto;
  }

  .text-image {
    flex-direction: column;
  }

  .text-image__content, .text-image__image {
    width: 100%;
  }

  .text-image--column-reverse {
    flex-direction: column-reverse;
  }

  .text-image--row-reverse.text-image--column-reverse {
    flex-direction: column-reverse;
  }
}

@media only screen and (min-width: 0) and (max-width: 1299px) {
  body {
    position: relative;
  }

  .banner_fancybox .banner_fancybox-content {
    width: 100%;
    max-width: initial;
    padding: 0 60px;
    margin: 0;
  }

  .form_submitbutton {
    margin-top: 20px;
  }

  .form .formbutton {
    background-position: calc(100% - 10px) center;
    padding-right: 35px;
  }

  .download-ebooklet_form {
    min-width: auto;
  }

  .download-ebooklet_form .form form {
    flex-wrap: wrap;
  }

  .download-ebooklet_form-column--first {
    width: 100%;
  }

  .download-ebooklet_form-column--second {
    width: 100%;
  }

  .image-slider {
    flex-wrap: wrap;
  }

  .image-slider_desc {
    width: 100%;
    padding-bottom: 20px;
    padding-right: 0;
  }

  .image-slider_stage {
    width: 100%;
  }

  .image-slider-left .image-slider_desc {
    padding-left: 0;
  }

  .stage {
    max-width: initial;
  }

  .blog-preview {
    flex-direction: column;
  }

  .blog-preview_column {
    width: 100%;
    max-width: 685px;
  }

  .blog-preview-component {
    flex-direction: column;
    align-items: center;
  }

  .blog-preview-component .blog-preview_item:nth-child(2n) {
    margin-left: 0;
  }

  .blog-preview-component .blog-preview_item:nth-child(odd) {
    margin-right: 0;
  }

  .blog-more-info {
    flex-direction: column;
    align-items: center;
  }

  .blog-author-box, .blog-contact-box {
    width: 100%;
  }

  .blog-author-box {
    padding: 40px 15px 77px;
    margin-bottom: 30px;
  }

  .blog-comments_form .form {
    width: 100%;
  }

  .blog-comments_form .form form {
    width: 100%;
  }

  .blog-comments_list {
    width: 100%;
  }

  .blog-comments_privacy {
    width: 100%;
  }

  .partner-slider_title {
    position: relative;
    top: 0;
    left: 0;
  }

  .real_character_cv {
    height: auto;
  }

  .product-list_anchors {
    flex-direction: column;
    padding: 0;
    width: initial;
  }

  .product-list_anchors a {
    width: initial;
    padding: 0 0 0 15px;
    text-align: left;
  }

  .product-list_anchors a:after {
    display: none;
  }

  .product-list_anchors li {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
  }

  .product-list_circle {
    position: relative;
    top: initial;
    left: initial;
  }

  .logos.simple .partner {
    width: 200px;
  }

  .teasercategory_3col, .teasercategory_4col {
    margin-bottom: 20px;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .social-media {
    top: 50vw;
  }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
  .home2023 .banner_article {
    width: 95%;
  }

  .home2023 .banner_article h1 {
    margin-bottom: 1.6rem;
  }

  .home2023 .banner_article h1, .home2023 .banner_article h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }

  .rc23_list {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .video_subtitle {
    bottom: -45px;
  }
}

@media only screen and (min-width: 0) and (max-width: 767px) {
  .content-with-border {
    padding-left: 15px;
    padding-right: 15px;
  }

  .sf_row.sf_col--2 .sf_column:first-of-type .content-with-border, .sf_row.sf_col--2 .sf_column:first-of-type .form, .sf_row.sf_col--2 .sf_column:first-of-type .tinymce {
    padding-right: 15px;
  }

  .sf_row.sf_col--2 .sf_column:last-of-type .content-with-border, .sf_row.sf_col--2 .sf_column:last-of-type .form, .sf_row.sf_col--2 .sf_column:last-of-type .tinymce {
    padding-left: 15px;
  }

  .sf_row.sf_col--2 .sf_column:first-of-type .sf_pc_image {
    margin-left: 15px;
    margin-right: 15px;
  }

  .sf_row.sf_col--2 .sf_column:last-of-type .sf_pc_image {
    margin-left: 15px;
    margin-right: 15px;
  }

  .row_twocols .col_left .content-with-border, .sf_row.sf_col--2 .sf_column:first-of-type .tinymce {
    padding-right: 15px;
  }

  .row_twocols .col_right .content-with-border, .sf_row.sf_col--2 .sf_column:first-of-type .tinymce {
    padding-left: 15px;
  }

  .form, .tinymce {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .desktop--hidden {
    display: block;
  }

  .mobile--hidden {
    display: none !important;
  }

  .nav_item {
    padding-left: 15px;
  }

  .nav.nav-2023 .nav_root > .nav_item {
    padding-left: 15px;
  }

  .nav.nav-2023 .nav_footer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .breadcrumbs_h1 {
    left: 15px;
    bottom: 15px;
  }

  .search_wrapper {
    top: 180px;
  }

  .footer_logo {
    height: 40px;
  }

  .footer_top {
    padding: 60px 15px;
  }

  .footer_nav {
    flex-direction: column;
  }

  .footer_bottom {
    flex-flow: column;
    height: auto;
    padding-top: 40px;
  }

  .footer_bottom .footer_logo {
    order: 1;
  }

  .footer_copyright {
    order: 2;
    text-align: center;
    padding: 33px 15px 15px;
  }

  .tinymce img {
    max-width: 100%;
    height: auto;
  }

  .download-ebooklet_text img, .text img {
    max-width: 100%;
    height: auto;
  }

  .banner-carousel .carousel_item {
    height: 225px;
  }

  .banner-sub {
    height: 490px;
  }

  .banner_intro {
    bottom: 90px;
    left: 15px;
    width: calc(100% - 15px);
    max-width: initial;
  }

  .banner_intro .h1, .banner_intro h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .banner_intro article {
    width: calc(100% - 15px);
    line-height: 1.4;
    padding-top: 10px;
  }

  .banner_title-underscore {
    width: 50%;
    margin-top: 15px;
  }

  .banner_fancybox .banner_fancybox-content {
    padding: 0 38px 0 20px;
    height: auto;
  }

  .banner-primary {
    height: 767px;
  }

  .content-home {
    height: 2887px;
  }

  .home .main {
    height: 2744px;
  }

  .banner-secondary {
    padding: 0 40px 0 100px;
  }

  .banner_text {
    width: 90%;
  }

  .banner_article {
    display: block;
    width: 100%;
    height: calc(50% - 235px);
    bottom: 193px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .banner_article h1, .banner_article h2 {
    padding-top: 200px;
  }

  .banner_quicklinks {
    left: 40px;
    bottom: 40px;
    z-index: 2;
  }

  .banner_quicklinks a {
    margin-bottom: 10px;
    border: 1px solid #fff;
  }

  .banner_quicklinks a:last-of-type {
    margin-bottom: 0;
  }

  .social-media {
    left: 15px;
  }

  .parallax-background_text {
    padding-left: 15px;
    padding-right: 15px;
  }

  .parallax-background_title {
    padding-top: 11px;
    text-align: center;
  }

  .parallax-background_title + .parallax-background_text {
    padding-top: 30px;
  }

  .value-teaser {
    padding-left: 15px;
    padding-right: 15px;
  }

  .value-teaser_header {
    padding-top: 35px;
  }

  .character_container {
    justify-content: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .manager {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }

  .manager_background {
    grid-template-columns: auto;
    justify-content: center;
  }

  .manager_teaser {
    margin-right: 0;
  }

  .manager_image {
    width: 50%;
    padding-top: 10px;
    padding-bottom: 15px;
  }

  .manager_text {
    width: 100%;
    padding-left: 0;
  }

  .manager_close {
    right: 20px;
  }

  .manager_info {
    height: auto;
  }

  div.accordeon_header {
    padding-right: 53px;
  }

  .partner-slider_title {
    padding-left: 15px;
  }

  .partner-slider_name-big {
    top: 0;
  }

  .partner-slider_textbox {
    width: 100%;
    min-height: 500px;
    max-height: 500px;
    height: 500px;
    padding: 40px 15px 98px;
  }

  .partner-slider_item {
    height: 880px;
  }

  .partner-slider_at a {
    left: 15px;
  }

  .partner-slider.v2023 .partner-slider_container {
    margin-left: -15px;
    margin-right: -15px;
  }

  .partner-slider.v2023 .partner-slider_profile-presentation {
    width: 100%;
    padding-right: 0;
  }

  .partner-slider.v2023 .partner-slider_profile-expertise {
    width: 100%;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #525252;
    padding-top: 20px;
    margin-top: 20px;
  }

  .teasercategories {
    padding-bottom: 0;
  }

  .teasercategory {
    height: 158px;
  }

  .teasercategory span:first-of-type {
    padding-right: 22px;
  }

  p.teaser_text {
    margin-bottom: 0;
  }

  .teasercontainer li.teaser {
    padding-top: 22px;
  }

  .teasercontainer li.teaser h3 {
    margin-bottom: .6rem;
  }

  .blog-preview-component {
    padding-left: 15px;
    padding-right: 15px;
  }

  .blog-preview-component .blog-preview_item {
    width: 100%;
    max-width: 445px;
    height: auto;
    margin-bottom: 20px;
    display: block;
  }

  .blog-preview-component .blog-preview_item h4 {
    padding-bottom: 5px;
  }

  .blog-preview-component .blog-preview_item:last-child {
    margin-bottom: 0;
  }

  .blog-preview {
    padding-top: 30px;
  }

  .blog-preview_image-small {
    max-width: 100%;
    width: auto;
    display: block;
  }

  .blog-preview_data {
    left: initial;
    bottom: initial;
    position: relative;
    padding-bottom: 20px;
  }

  .blog-preview_info {
    display: block;
  }

  .blog-archived {
    padding-top: 30px;
    grid-row-gap: 30px;
  }

  .blog-single_video {
    max-width: 426px;
    height: 240px;
  }

  .logoslidercontainer {
    padding-left: 0;
    padding-right: 0;
    height: 480px;
  }

  .logoslideritem {
    width: 46%;
    margin: 2%;
    height: 130px;
    padding: 5px;
  }

  .logoslideritem_logo {
    background-size: contain;
  }

  .real_character {
    padding: 20px 0;
    margin-top: -30px;
  }

  .real_character_intro {
    flex-wrap: wrap;
    padding-left: 15px;
    padding-right: 15px;
  }

  .real_character_slogan {
    width: 100%;
    padding-top: 25px;
    padding-left: 0;
  }

  .real_character_photo {
    width: 60%;
  }

  .real_character_quote {
    padding-left: 57px;
  }

  .real_character_quote span {
    left: 0;
  }

  .real_character_story {
    padding: 20px;
  }

  .real_character_story section {
    columns: 1;
  }

  .real_character_title {
    padding-bottom: 10px;
  }

  .real_character_personal {
    flex-wrap: wrap;
    padding: 25px 0;
  }

  .real_character_personal-text {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .real_character_cv {
    width: 100%;
  }

  .real_character_cv-sign {
    width: 58px;
    height: 76px;
  }

  .real_character_cv-text {
    padding-left: 30px;
    padding-right: 58px;
  }

  .real_character_personal-photo {
    width: calc(100% - 30px);
    max-width: 244px;
    min-height: 325px;
    height: 48vh;
    margin-top: -50px;
    margin-left: 30px;
  }

  .teasercontainer ul.teaser {
    grid-template-columns: repeat(1, 1fr);
  }

  .teasercategory_2col {
    width: 100%;
  }

  .teaser--preview .teaser_container {
    grid-template-columns: repeat(1, minmax(240px, 1fr));
    row-gap: 30px;
  }

  .parallax-background {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    background-position: center !important;
  }

  .product-list_container {
    padding: 25px 20px 60px 20px;
  }

  .product-list_download, .product-list_image-container {
    padding-right: 0;
  }

  .product-list_image-container.video {
    margin-right: 0;
  }

  .product-list_download-image {
    width: 100%;
    padding-right: 0;
  }

  .product-list_image-right .product-list_download, .product-list_image-right .product-list_image-container {
    text-align: left;
    padding-left: 0;
  }

  .product-list_image-right .product-list_image-container.video {
    margin-left: 0;
  }

  .textdownload {
    flex-direction: column-reverse;
    align-items: flex-end;
    padding-bottom: 40px;
  }

  .textwithdownload {
    width: 100%;
    padding-right: 0;
  }

  .textimagedownload {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }

  .contact-banner {
    flex-direction: column;
    padding: 0 20px;
    height: initial;
  }

  .contact-banner_button {
    margin-top: 25px;
    text-align: center;
    font-size: 1.6rem;
    width: 200px;
    max-width: 100%;
  }

  .contact-banner_text {
    text-align: center;
    line-height: 1.4;
  }

  .network_wrap {
    flex-direction: column;
  }

  .network_intro {
    width: 100%;
    min-width: initial;
    margin-right: 0;
    padding: 25px 20px 0;
  }

  .network_logos {
    padding: 0 20px 25px;
    grid-template-columns: repeat(3, 1fr);
  }

  .logos.download-ebooklet_text, .logos.text {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .logos.download-ebooklet_text .partner, .logos.text .partner {
    flex-direction: column-reverse;
  }

  .logos.download-ebooklet_text .partnerlogo, .logos.text .partnerlogo {
    padding-bottom: 10px;
  }

  .events_tab-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .events .event:nth-child(odd) {
    margin-right: 0;
  }

  .event-details_more {
    padding-top: 40px;
  }

  .event-details_anchor-links {
    flex-direction: column;
    padding-bottom: 40px;
  }

  .event-details_anchor-links a {
    margin-bottom: 15px;
  }

  .event-details_anchor-links a:last-of-type {
    margin-bottom: 0;
  }

  .event-details_anchor-links a.col-25, .event-details_anchor-links a.col-33, .event-details_anchor-links a.col-50 {
    width: 100%;
  }

  .event-details_prebooking-form-background {
    left: -15px;
    right: -15px;
  }

  .event-details_form {
    padding-bottom: 40px;
  }

  .event-details_text-image {
    flex-direction: column-reverse;
  }

  .event-details_text-image .images {
    padding-bottom: 10px;
  }

  .event-details_text-image .images img {
    height: auto;
    max-width: 50%;
  }

  .event-details_text-image .download-ebooklet_text, .event-details_text-image .text {
    padding-right: 0;
  }

  .event-details_title {
    left: -15px;
    padding-left: 15px;
    width: calc(100% + 22px);
  }

  .event-details_agenda .textdownload {
    padding-top: 40px;
  }

  .press-teaser {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 30px;
  }

  .press-info {
    flex-direction: column;
  }

  .press-info_contact {
    text-align: center;
    padding-right: 0;
  }

  .press-info_downloads {
    padding-right: 20px;
  }

  .press-info_background {
    right: -15px;
    left: -15px;
    background-position: right;
  }

  .searchresults_form {
    padding-bottom: 40px;
  }

  .searchresults .form {
    flex-direction: column;
  }

  .searchresults .form input {
    width: 100%;
  }

  .searchresults .form input.download-ebooklet_text, .searchresults .form input.text {
    margin-bottom: 0;
  }

  .searchresults_list {
    padding: 30px 30px 0;
  }

  .searchresults .download {
    border-top: none;
  }

  .zitat--module1 .zitat_symbol--left, .zitat--module1 .zitat_symbol--right {
    width: 8vw;
    min-width: 40px;
  }

  .zitat--module1 .zitat_text {
    padding: 0 8vw 20px;
  }

  .zitat--module1 .zitat_text blockquote {
    padding: 0 6px;
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
  }

  .zitat--module1 .zitat_text em, .zitat--module1 .zitat_text p {
    font-size: 1.25rem;
  }

  .zitat--module1 .zitat_text p {
    padding: 18px 5px;
  }

  .zitat--module2 .zitat_text {
    line-height: 1.2;
  }

  .zitat--module2 .zitat_text em, .zitat--module2 .zitat_text p {
    font-size: 1.1rem;
  }

  .zitat--module2 .zitat_text p {
    line-height: 1.35;
  }

  .zitat_symbol {
    font-size: 90px;
  }

  .zitat_text {
    padding-bottom: 0;
  }

  .zitat_text blockquote {
    padding-left: 40px;
    padding-right: 20px;
  }

  .zitat_showmore-button {
    left: 40px;
  }

  .zitat_container {
    margin-bottom: 20px;
  }

  .download {
    display: flex;
    flex-flow: column;
    padding-bottom: 25px;
    padding-top: 25px;
    border-bottom: solid 1px #a08b71;
  }

  .download + .logos {
    padding-top: 25px;
  }

  .download--insights .download {
    padding: 20px 0;
  }

  .download--insights .download_link, .download--insights .download_text {
    margin-top: 30px;
    padding-top: 0;
  }

  .download--insights .download_text {
    padding: 0 10px;
  }

  .download--insights .download_text h2, .download--insights .download_text h3, .download--insights .download_text h4, .download--insights .download_text h5 {
    font-size: 1.5rem;
  }

  .download--insights .download_text p {
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .download--insights .download_text ul {
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .download--preview {
    width: calc(100% - 30px) !important;
  }

  .download--preview .download_background {
    padding: 20px;
  }

  .download--preview .download_content {
    padding: 18px 10px;
  }

  .download--preview .download_text h5 {
    margin-bottom: .25rem;
    font-size: 1.25rem;
    line-height: 1.2;
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
  }

  .download--preview .download_text li, .download--preview .download_text p {
    line-height: 1.4;
    font-size: 1rem;
  }

  .download--preview .download_text li {
    padding-bottom: 0;
    line-height: 1.3;
  }

  .download--preview .download_container.download_container--desktop {
    display: none;
  }

  .download--preview .download_container.download_container--mobile {
    display: block;
    width: 100%;
  }

  div.sf_cookie_content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .row_twocols {
    display: block;
    width: 100%;
  }

  .parallax-background-content {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .stagecontainer {
    height: 62vw !important;
    margin-bottom: 20px;
  }

  .stage .stage_item {
    background-size: contain;
  }

  h1 {
    left: 15px;
    top: 205px;
    line-height: normal;
  }

  h2 {
    font-size: calc(1.1rem + 1.35vw);
  }

  .col_left, .col_right {
    width: auto;
    margin-right: 0;
  }

  .breadcrumbs {
    left: 15px;
    top: 176px;
    display: none;
  }

  .breadcrumbs li {
    font-size: 1.225rem;
  }

  .download_button {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .download_button:last-of-type {
    padding-bottom: 0;
  }

  .accordeon_container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .col_left div[class*=accordeon_container]:last-of-type, .col_right div[class*=accordeon_container]:last-of-type, .parallax-background div[class*=accordeon_container]:last-of-type {
    padding-bottom: 0;
  }

  .teaser-image_container {
    grid-template-columns: repeat(1, 1fr);
  }

  .event {
    width: auto;
  }

  .event:nth-child(2n) {
    margin-left: 0;
  }

  .download_link {
    width: auto;
    order: 2;
  }

  .download_text {
    width: auto;
    order: 1;
  }

  .download_link img {
    display: none;
  }

  .logos .partner_text {
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .download-ebooklet_intro {
    padding-bottom: 0;
  }

  .download-ebooklet_row {
    display: block;
  }

  .download-ebooklet_column {
    width: auto;
  }

  .betterslider_next, .betterslider_prev {
    display: none;
  }

  .betterslider_pagination {
    left: 10%;
    width: 80%;
    bottom: 3px;
  }

  .job-teaser {
    grid-template-columns: repeat(2, 1fr);
  }

  .jobs_conditions {
    width: calc(100% - (2 * 15px));
    margin-left: 15px;
  }

  .jobs_requirements {
    padding: 40px 15px 20px;
  }

  .quality-tiles {
    grid-template-columns: repeat(1, 1fr);
  }

  .home2023 .footer_bottom {
    flex-direction: column;
    height: auto;
    padding: 30px 0 15px;
  }

  .home2023 .footer_bottom :first-child {
    order: 3;
  }

  .home2023 .footer_bottom :nth-child(2) {
    order: 2;
  }

  .home2023 .footer_bottom :nth-child(3) {
    order: 1;
  }

  .home2023 .footer_copyright {
    width: auto;
  }

  .home2023 .footer_menu-bottom {
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    width: auto;
    height: auto;
    line-height: 2;
  }

  .home2023 .footer_menu-bottom .nav_block-item {
    padding: 0;
  }

  .home2023 .counter_row {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 20px;
  }

  .home2023 .banner-primary .banner_article {
    width: 100%;
    padding-left: 40px;
  }

  .home2023 .banner-primary .carousel_scroll-arrow {
    width: 28px;
    height: 42px;
    background-size: 28px auto;
    right: 5%;
  }

  .home2023 #homevideotitle {
    font-size: 1.8rem;
  }

  .home2023 #homevideotitle .smaller {
    font-size: 1.5rem;
  }

  .rc23_intro, .rc23_personal-cv {
    padding-left: 15px;
    padding-right: 15px;
  }

  .rc23_slogan p {
    font-size: calc(1.1rem + 1.35vw);
  }

  .events-teaser-slider_slide {
    height: 388px;
  }

  .events-teaser-slider_time-data {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
    padding: 5px 15px;
    height: 110px;
  }

  .events-teaser-slider_venue {
    width: 100%;
  }

  .events-teaser-slider_button {
    bottom: 160px;
  }

  .jobs.v2024 .jobs_video {
    min-height: 300px;
  }

  .jobs.v2024 .jobs_apply-now-text, .jobs.v2024 .jobs_contact-person, .jobs.v2024 .jobs_description, .jobs.v2024 .jobs_facts, .jobs.v2024 .jobs_quicklinks, .jobs.v2024 .jobs_similar-positions, .jobs.v2024 .jobs_video {
    margin-top: 15px;
    padding: 32px 15px;
  }
}

@media only screen and (min-width: 0) and (max-width: 991px) and (orientation: landscape) {
  .home2023 #homevideotitle {
    font-size: 1.8rem;
  }

  .home2023 #homevideotitle .smaller {
    font-size: 1.5rem;
  }

  .banner_quicklinks {
    bottom: 55px;
  }
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .home2023 .banner_article {
    width: 90%;
  }

  .home2023 .banner_article h1, .home2023 .banner_article h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .header {
    grid-template-columns: 25% 40% 35%;
    height: 65px;
    align-items: center;
  }

  .header_logo {
    height: 40px;
    display: flex;
    align-items: center;
  }

  .header_logo img {
    height: auto;
  }

  .search_wrapper {
    padding: 0 15px;
  }

  .social-media {
    top: 120vw;
  }

  .value-teaser {
    grid-template-columns: repeat(1, 1fr);
  }

  .value-teaser_item {
    width: 100%;
    max-width: 300px;
  }

  .manager {
    padding: 5px;
  }

  .manager_image {
    width: 100%;
    max-width: 240px;
    padding-top: 25px;
    padding-right: 0;
  }

  .manager_close {
    right: 5px;
    top: 0;
  }

  .partner-slider_bgimage {
    background-size: 104%;
  }

  .partner-slider_item {
    height: 776px;
  }

  .partner-slider_text {
    max-height: 268px;
    overflow: auto;
  }

  .partner-slider_role {
    padding-right: 85px;
  }

  .partner-slider.v2023 .owl-nav {
    width: 100%;
    height: 100%;
    top: 0;
  }

  .partner-slider.v2023 .owl-carousel .owl-nav button.owl-next, .partner-slider.v2023 .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: calc(50% - 24px);
  }

  .partner-slider.v2023 .owl-carousel .owl-nav button.owl-prev {
    left: -6px;
  }

  .partner-slider.v2023 .owl-carousel .owl-nav button.owl-next {
    right: -6px;
  }

  .blog-archived {
    padding-bottom: 40px;
  }

  .blog-archived_info h4 {
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
  }

  .blog-more-info {
    padding-top: 0;
  }

  .blog-author-box_data {
    flex-direction: column;
    padding: 20px;
  }

  .blog-author-box_info {
    padding-left: 0;
    padding-top: 20px;
  }

  .blog-comments {
    padding-bottom: 0;
  }

  .teaserlist {
    padding: 25px 20px 20px;
  }

  .teaserlist h3 {
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
  }

  .textwithdownload {
    padding-bottom: 20px;
  }

  .product-list_anchors {
    padding-bottom: 10px;
  }

  .product-list_title {
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
  }

  .tabnavigation select {
    width: 100%;
  }

  .network_wrap {
    padding-top: 0;
    padding-bottom: 0;
  }

  .network_logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .press-teaser_item {
    padding-bottom: 55px;
  }

  .press-teaser_data {
    position: relative;
    bottom: initial;
  }

  .press-info_downloads {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }

  .press-info_background {
    background-image: none;
    background-color: #fff;
  }

  .teaser-slider_container .owl-dots {
    left: 0;
    width: 100%;
  }

  .teaser-slider_container.owl-carousel .owl-nav button.owl-prev {
    left: 20px;
  }

  .teaser-slider_container.owl-carousel .owl-nav button.owl-next {
    right: 20px;
  }

  .teaser--preview .teaser_title {
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    font-size: 1.4rem;
  }

  .teaser--foldable .teaser_title {
    display: flex;
    align-items: center;
    font-family: Lato, sans-serif;
    font-size: 1.8rem;
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
  }

  .job-teaser {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 30px;
  }

  .job-teaser_item {
    width: 100%;
    max-width: 360px;
  }

  .jobs_benefits {
    justify-content: center;
  }

  .jobs_benefits h3 {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .jobs_conditions {
    flex-wrap: wrap;
  }

  .jobs_conditions .column {
    width: 100%;
  }

  .jobs_locations, .jobs_share {
    padding-top: .6rem;
  }

  .jobs_start-here {
    right: 15px;
  }

  .jobs_start-here img {
    width: 168px;
  }

  .job-benefits {
    flex-wrap: wrap;
    justify-content: center;
  }

  .job-benefits_item {
    width: 100%;
    padding: 0 0 30px;
  }

  .rc23_list {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .video_subtitle {
    bottom: -60px;
  }

  .tabs23_title {
    padding-right: 15px;
  }

  .headline {
    font-size: 1.55rem;
  }

  .headline_line-full .headline_text {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    min-width: 70%;
    flex-grow: 1;
    padding: 0 5px;
  }

  .parallax-background > .headline_container:first-child {
    padding-top: 0 !important;
  }

  .events-teaser-slider_apply-now {
    display: none;
  }

  .jobs.v2024 .jobs_quicklinks-external, .jobs.v2024 .jobs_quicklinks-internal {
    gap: 20px;
  }

  .contact-widget {
    width: 100%;
  }

  .contact-widget__opener {
    padding-right: 30px;
  }

  .contact-widget__button {
    margin-right: 15px;
    font-size: .9rem;
  }

  .contact-widget__intro {
    font-size: .8rem;
  }
}

@media only screen and (min-width: 0) and (max-width: 1060px) {
  .counter_row {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .home2023 .banner-primary {
    height: 94vh;
  }

  .home2023 .banner-primary .carousel_item {
    height: 94vh;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1380px) {
  .blog-preview_info h4 {
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1180px) {
  .network_logo {
    padding: 10px 10px;
  }

  .network_intro {
    min-width: 320px;
  }
}

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  #fancybox-loading, .fancybox-close, .fancybox-next span, .fancybox-prev span {
    background-image: url('fancybox_sprite@2x.png');
    background-size: 44px 152px;
  }

  #fancybox-loading div {
    background-image: url('fancybox_loading@2x.gif');
    background-size: 24px 24px;
  }
}

@media (min-width: 1920px) {
  .h1, h1 {
    font-size: 2.375rem;
  }
}

@media (min-width: 1920px) {
  .h2, h2 {
    font-size: 2.225rem;
  }
}

@media (min-width: 1920px) {
  h3 {
    font-size: 1.45rem;
  }
}

@media (min-width: 1920px) {
  h1.content {
    font-size: 2.375rem;
  }
}

@media only screen and (min-width: 0) and (max-width: 767px) {
  .fourc_large_white {
    font-size: 1.4rem;
    line-height: 1.5rem;
  }
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .fourc_headline--h4orange {
    text-align: center;
    margin-bottom: 1rem;
  }

  .fourc_headline--h4orange > * {
    hyphens: auto;
  }

  .fourc_headline--h4orange:after {
    left: calc(50% - 35px);
    bottom: -5px;
  }

  span.fourc_headline--h4orange {
    display: block;
  }
}

@media (min-width: 1280px) {
  .contactform div.form {
    position: relative;
    min-height: 400px;
  }

  .contactform div.form_row {
    display: inline-block;
  }

  .contactform div.row_anrede {
    width: calc(25% - 14px);
    margin-right: 14px;
  }

  .contactform div.row_vorname {
    width: calc(25% - 14px);
    margin-right: 14px;
  }

  .contactform div.row_name {
    width: calc(25% - 14px);
    margin-right: 14px;
  }

  .contactform div.row_unternehmen {
    width: calc(25% - 14px);
  }

  .contactform div.row_email {
    width: calc(33.33% - 14px);
    margin-right: 15px;
  }

  .contactform div.row_telefon {
    width: calc(33.33% - 14px);
    margin-right: 15px;
  }

  .contactform div.row_thema {
    width: calc(33.33% - 14px);
  }

  .contactform div.row_kommentar {
    top: 106px;
    left: 0;
    width: calc(67% - 15px);
    margin-right: 15px;
  }

  .contactform div.row_kommentar textarea {
    height: 300px;
  }

  .contactform div.row_text {
    width: calc(33.33% - 15px);
    vertical-align: top;
  }

  .contactform div.form_submitbutton {
    position: absolute;
    bottom: -25px;
    right: -20px;
    height: 48px;
    width: 148px;
  }

  .contactform div.form_submitbutton img {
    position: absolute;
    left: 10px;
    top: 16px;
  }
}

@media (min-width: 1280px) {
  .ebookletform div.form {
    position: relative;
    min-height: 231px;
  }

  .ebookletform div.form_row {
    display: inline-block;
  }

  .ebookletform div.row_salutation {
    width: calc(33% - 14px);
    margin-right: 14px;
  }

  .ebookletform div.row_firm {
    width: calc(33% - 14px);
    margin-right: calc(33% - 14px);
  }

  .ebookletform div.row_firstname {
    width: calc(16.5% - 15px);
    margin-right: 14px;
  }

  .ebookletform div.row_name {
    width: calc(16.5% - 15px);
    margin-right: 14px;
  }

  .ebookletform div.row_unternehmen {
    width: calc(25% - 14px);
  }

  .ebookletform div.row_email {
    width: calc(33.33% - 19px);
    margin-right: calc(33% - 15px);
  }

  .ebookletform div.row_text {
    width: calc(33.33% - 15px);
    position: absolute;
    right: 0;
    top: 0;
    font-size: .75rem;
  }

  .ebookletform div.form_submitbutton {
    position: absolute;
    bottom: -25px;
    right: -20px;
    height: 48px;
    width: 200px;
    background-color: #303f55;
    padding-right: 22px;
  }

  .ebookletform div.form_submitbutton img {
    position: absolute;
    left: 10px;
    top: 16px;
  }
}

@media (min-width: 1920px) {
  .banner_article h1, .banner_article h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1920px) {
  .banner_text h3 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1920px) {
  .banner_fancybox .banner_fancybox-content h2 {
    font-size: 2.375rem;
  }
}

@media (min-width: 1920px) {
  div.accordeon_header h3 {
    font-size: 1.45rem;
  }
}

@media (min-width: 1920px) {
  .real_character_story h3 {
    font-size: 2.375rem;
  }
}

@media (min-width: 1920px) {
  .searchresult_title {
    font-size: 2.225rem;
  }
}

@media (min-width: 1920px) {
  .partner-slider.v2023 .partner-slider_profile-item h3 {
    font-size: 2.375rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1023px) {
  .text_tile_tiles {
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0 -15px;
  }

  .text_tile_title {
    width: 48%;
    min-height: 123px;
    margin: 0 0 15px;
  }

  .text_tile_content {
    padding-top: 15px;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1290px) {
  .text_tile_title {
    min-height: 123px;
  }
}

@media only screen and (min-width: 0) and (max-width: 767px) {
  .text_tile_title {
    width: 100%;
    margin: 0 0 10px;
  }

  .text_tile-no-mobile {
    display: none;
  }

  .text_tile-mobile {
    display: block;
    width: 100%;
    margin: 0;
  }

  .text_tile_title_icon {
    background-size: auto 80px;
    padding-top: 92px;
  }

  .text_tile {
    margin: 0 0 -15px;
  }

  .text_tile_content {
    margin-left: auto;
    margin-right: auto;
  }
}

@media only screen and (min-width: 768px) {
  .text_tile-no-mobile {
    display: block;
  }

  .text_tile-mobile {
    display: none;
  }
}

@media only screen and (min-width: 1448px) {
  .nav_icon {
    display: none;
  }

  a#menu_icon {
    display: none;
  }

  .blog-preview-component .blog-preview_item h4 {
    padding-right: 30px;
  }

  .nav.nav-2023 .nav_submenu {
    max-height: 540px;
  }

  .nav.nav-2023 .subnav_itemL2:nth-child(7), .nav.nav-2023 .subnav_itemL2:nth-child(8), .nav.nav-2023 .subnav_itemL2:nth-child(9) {
      /*
    padding-bottom: 0;
       */
  }

  .parallax-background .download--preview.owl-carousel .owl-nav button.owl-prev {
    left: -30px;
  }

  .parallax-background .download--preview.owl-carousel .owl-nav button.owl-next {
    right: -30px;
  }
}

@media only screen and (min-width: 1448px) and (max-width: 1920px) {
  .rc23_list {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media only screen and (min-width: 1300px) {
  .content-with-padding > .tinymce {
    padding-right: calc(25% + 60px) !important;
  }

  .content-with-padding > .form {
    max-width: 50%;
  }

  .parallax-background > .tinymce {
    padding-right: 25%;
  }

  .blog-single_content {
    max-width: 75%;
  }

  .blog-preview-component .blog-preview_item h4 {
    max-height: 100px;
    overflow: hidden;
    font-size: 1.15rem;
  }

  .event-details_form .form form {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  .event-details .form_row {
    width: 24%;
  }

  .event-details .form_row.row_title {
    width: 100%;
  }

  .event-details .form_row.row_comment {
    height: 285px;
    width: 49.5%;
  }

  .event-details .form_row.row_comment textarea {
    height: 265px;
  }

  .event-details .form_row.row_privacy {
    width: 49%;
    display: flex;
    align-items: flex-end;
  }

  .event-details .form_row.row_privacy .form_label {
    display: none;
  }

  .event-details_registration-form .form_row.row_email {
    width: 32.5%;
  }

  .event-details_registration-form .form_row.row_phone {
    width: 32.5%;
  }

  .event-details_registration-form .form_row.row_contact_person {
    width: 32.5%;
  }

  .manager_description {
    padding-right: 60px;
  }

  .value-teaser_text p {
    width: 94%;
  }

  .download {
    width: 75%;
  }

  .video--top {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
  }
}

@media (max-height: 768px) {
  .banner_article h1, .banner_article h2 {
    padding-top: 12vw;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 1447px) {
  .social-media {
    top: 50vw;
  }

  .real_character_cv {
    height: 515px;
  }

  .real_character_cv-sign {
    left: 5%;
  }

  .real_character_cv-text {
    padding: 0 10% 0 12%;
  }

  .stagecontainer {
    height: 29vw !important;
  }

  .home2023 .banner_article {
    width: 50%;
  }

  .home2023 .banner_article h1, .home2023 .banner_article h2 {
    font-size: 4rem;
  }

  .rc23_list {
    grid-template-columns: repeat(4, 1fr);
  }

  .teaser--foldable .teaser_title {
    height: 85px;
    font-size: 1.5rem;
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
  }
}

@media only screen and (min-width: 1300px) and (max-width: 1447px) and (min-height: 769px) {
  .social-media {
    top: 50vw;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1447px) {
  .network_logos {
    grid-template-columns: repeat(4, 1fr);
  }

  .jobs.v2024 .jobs_row--33-33-33 {
    grid-template-columns: 1fr 1fr;
  }

  .jobs.v2024 .jobs_contact-person.jobs_column-gap--right {
    border-right: none;
  }

  .jobs.v2024 .jobs_quicklinks.jobs_column-gap--left {
    border-left: none;
  }

  .jobs.v2024 .jobs_quicklinks {
    grid-column: -3/-1;
    margin-top: 24px;
    padding: 32px 60px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1299px) {
  .content-home {
    height: 2930px;
  }

  .home .main {
    height: 2786px;
  }

  .banner-primary {
    height: 810px;
  }

  .banner_article h1, .banner_article h2 {
    padding-top: 17vw;
  }

  .banner-carousel .carousel_item, .banner-sub {
    height: 380px;
  }

  .banner_intro {
    bottom: 40px;
  }

  .carousel_item {
    height: 810px;
  }

  .social-media {
    top: 54vw;
  }

  .real_character_cv-sign {
    left: 2%;
  }

  .real_character_cv-text {
    position: relative;
    margin-top: 0;
    height: auto;
    min-height: 500px;
    padding: 50px 12%;
  }

  .real_character_personal-photo {
    left: auto;
    right: 0;
  }

  .logoslideritem {
    width: 18%;
    margin-right: 2%;
  }

  .blog-preview_lead {
    width: 100%;
    max-width: 685px;
  }

  .blog-preview .blog-preview_item {
    width: 685px;
  }

  .blog-preview-component .blog-preview_item h4 {
    max-height: 100px;
    overflow: hidden;
  }

  .teasercategories {
    flex-wrap: wrap;
  }

  .teasercategory_4col {
    width: 50%;
    max-width: 300px;
    margin-bottom: 20px;
  }

  .teaser--foldable .teaser_title {
    font-size: 1.5rem;
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
  }

  .teaser--foldable .teaser_collapsable-content {
    padding: 25px 20px;
  }

  .teaser--foldable .teaser_collapsable-content h4 {
    font-size: 1.3rem;
    word-wrap: break-word;
  }

  .icon-tiles {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 40px;
  }

  .home2023 .banner_article {
    width: 80%;
  }

  .home2023 .banner_article h1 {
    margin-bottom: 1.6rem;
  }

  .home2023 .banner_article h1, .home2023 .banner_article h2 {
    font-size: 3rem;
  }

  .rc23_list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media only screen and (min-width: 768px) {
  .desktop--hidden {
    display: none !important;
  }

  .mobile--hidden {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1299px) {
  .value-teaser {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-archived {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-archived_item {
    max-width: 445px;
  }

  .blog-preview-component {
    justify-content: center;
  }

  .blog-preview-component .blog-preview_item {
    max-width: 100%;
    width: 755px;
  }

  .blog-preview-component .blog-preview_item:nth-child(even) {
    margin-left: 0;
  }

  .blog-preview-component .blog-preview_item:nth-child(odd) {
    margin-right: 0;
  }

  .press-teaser {
    grid-template-columns: repeat(2, 1fr);
    grid-row-gap: 40px;
    grid-column-gap: 40px;
  }

  .logoslideritem {
    padding: 5px;
  }

  .logoslideritem_logo {
    background-size: contain;
  }

  .stagecontainer {
    height: 56vw !important;
  }

  .job-teaser {
    grid-template-columns: repeat(2, 1fr);
  }

  .home2023 .footer_bottom {
    flex-direction: row;
    flex-wrap: wrap;
    height: 125px;
  }

  .home2023 .footer_bottom :nth-child(1) {
    order: 3;
  }

  .home2023 .footer_bottom :nth-child(2) {
    order: 2;
  }

  .home2023 .footer_bottom :nth-child(3) {
    order: 1;
  }

  .home2023 .footer_copyright {
    width: 100%;
  }

  .home2023 .footer_menu-bottom {
    width: 50%;
  }

  .home2023 .footer_menu-bottom .nav_block-item {
    padding: 0 20px;
  }

  .home2023 .counter_row {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 30px;
  }

  .teaser--preview .teaser_container {
    grid-template-columns: repeat(2, minmax(300px, 1fr));
    row-gap: 30px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .banner-carousel .carousel_item {
    height: 280px;
  }

  .banner-sub {
    height: 490px;
  }

  .banner_intro {
    bottom: 60px;
    max-width: 390px;
  }

  .breadcrumbs_h1 {
    right: 60px;
    bottom: 40px;
  }

  .logoslideritem {
    width: 22.6%;
    margin: 0 1.2%;
  }

  .real_character_personal-text {
    width: 50%;
  }

  .real_character_cv {
    width: 50%;
    justify-content: flex-end;
  }

  .real_character_personal-photo {
    margin-top: -50px;
  }

  .teasercontainer ul.teaser {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-preview-component .blog-preview_image-small {
    width: 100%;
  }

  .product-list_container {
    padding: 40px 40px 50px 40px;
  }

  .product-list--w33, .product-list_download-image {
    width: initial;
  }

  .product-list_image-right .product-list_download, .product-list_image-right .product-list_image-container {
    padding-left: 0;
    text-align: left;
  }

  .network_logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .network_intro {
    min-width: 320px;
  }

  .events_tab-content {
    padding-left: 30px;
    padding-right: 30px;
  }

  .press-teaser_item {
    padding-bottom: 50px;
  }

  .press-teaser_data {
    position: relative;
    bottom: initial;
  }

  .press-info_downloads {
    padding-right: 0;
  }

  .press-info_background {
    background-image: none;
    background-color: #fff;
  }

  .searchresults_form {
    padding-bottom: 40px;
  }

  .searchresults_list {
    padding: 40px 40px 0;
  }

  .parallax-background-content {
    width: calc(100% - 120px);
  }

  .event-details .images img {
    max-width: 240px;
    height: auto;
  }

  .event-details_title {
    padding-left: 60px;
  }

  .partner-slider_name-big {
    top: 0;
  }

  .partner-slider_item {
    height: 936px;
  }

  .partner-slider_textbox {
    max-height: 500px;
  }

  .image-slider_stage {
    width: 100%;
  }

  .image-slider_stage .betterslider_pagination {
    left: 20px;
    width: calc(100% - 40px);
  }
}

@media only screen and (min-width: 0) and (max-width: 991px) {
  .content-home {
    height: 2930px;
  }

  .home .main {
    height: 2786px;
  }

  .banner-primary {
    height: 810px;
  }

  .banner_article h1, .banner_article h2 {
    padding-top: 24vw;
  }

  .banner_article p {
    padding-top: 0;
  }

  .footer_bottom {
    padding-left: 15px;
    padding-right: 15px;
  }

  .carousel_item {
    height: 810px;
  }

  .social-media {
    top: 66vw;
  }

  .teasercategories {
    flex-wrap: wrap;
    padding-left: 0;
    padding-right: 0;
  }

  .teasercategory_2col {
    margin-bottom: 20px;
  }

  .teasercategory_3col, .teasercategory_4col {
    width: 100%;
    max-width: 300px;
  }

  .partner-slider_bgimage {
    background-size: contain;
    background-position: top center;
  }

  .real_character_title {
    width: 100%;
  }

  .real_character_quote {
    width: 100%;
  }

  .real_character_cv {
    display: flex;
    flex-wrap: wrap;
  }

  .real_character_cv-text {
    position: relative;
    height: auto;
    width: 100%;
    margin-top: 0;
    padding: 50px 70px 80px 50px;
  }

  .real_character_cv-sign {
    right: 0;
    left: auto;
  }

  .real_character_personal-photo {
    position: relative;
    left: auto;
    bottom: auto;
  }

  .blog-preview {
    padding: 0 0 20px;
  }

  .blog-preview_column {
    align-items: center;
    flex-direction: column;
    margin-bottom: 0;
  }

  .blog-preview_lead {
    width: 100%;
    max-width: 445px;
  }

  .blog-preview_item {
    width: 100%;
    max-width: 445px;
    flex-direction: column;
    height: initial;
  }

  .blog-preview_item:last-of-type {
    margin-bottom: 30px;
  }

  .blog-preview_image-small {
    width: 445px;
    max-width: 100%;
  }

  .blog-preview_info {
    padding: 22px 20px 45px;
    min-height: 190px;
  }

  .blog-preview_info h4 {
    position: relative;
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    margin-bottom: 20px;
  }

  .blog-preview_short-text {
    padding-bottom: 20px;
  }

  .blog-preview_text {
    padding: 20px 20px 35px 20px;
  }

  .blog-preview_data {
    max-width: initial;
  }

  .blog-archived {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .blog-archived_item {
    max-width: 445px;
  }

  .blog-archived_info {
    padding-left: 20px;
    padding-right: 20px;
  }

  .blog-archived_data {
    left: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-list_container {
    flex-direction: column;
  }

  .product-list--w33, .product-list--w50, .product-list--w66, .product-list_information {
    width: 100%;
  }

  .product-list_download-image {
    padding-bottom: 20px;
  }

  .tabs .desktop {
    display: none;
  }

  .tabs .mobile {
    display: block;
  }

  .manager_background {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .manager_teaser {
    display: block;
    margin-bottom: 27px;
  }

  .manager_teaser_image {
    padding-right: 0;
  }

  .manager_teaser_desc {
    margin-top: 10px;
  }

  .manager_info {
    grid-template-rows: 1fr 1.2fr 0fr;
  }

  .manager_info, .manager_name {
    height: auto;
  }

  .accordeon_content .manager_background, .event-details_speaker .manager_background {
    padding-top: 20px;
  }

  .accordeon_content .manager_teaser, .event-details_speaker .manager_teaser {
    width: 205px;
    max-width: 100%;
    margin-right: 30px;
  }

  .jobs_description, .jobs_download {
    width: 100%;
  }

  .jobs_download {
    padding-top: 20px;
  }

  .jobs_benefits {
    flex-wrap: wrap;
  }

  .jobs_container {
    width: 100%;
    padding-top: 25px;
  }

  .jobs_container-fullwidth {
    flex-wrap: wrap;
  }

  .jobs_similar-positions {
    width: 100%;
    border-top: 30px solid #fff;
    border-left: none;
  }

  .jobs_similar-position {
    width: 350px;
    max-width: 100%;
    margin: 0 auto 50px;
  }

  .jobs_start-here {
    right: 60px;
  }

  .job-benefits {
    justify-content: flex-start;
  }

  .job-benefits_item:first-of-type {
    padding-left: 0;
  }

  .jobs.v2024 .jobs_row--33-33-33, .jobs.v2024 .jobs_row--33-66, .jobs.v2024 .jobs_row--66-33 {
    grid-template-columns: 1fr;
  }

  .jobs.v2024 .jobs_row--33-33-33 > .jobs_column-gap--right, .jobs.v2024 .jobs_row--33-66 > .jobs_column-gap--right, .jobs.v2024 .jobs_row--66-33 > .jobs_column-gap--right {
    border-right: none;
  }

  .jobs.v2024 .jobs_row--33-33-33 > .jobs_column-gap--left, .jobs.v2024 .jobs_row--33-66 > .jobs_column-gap--left, .jobs.v2024 .jobs_row--66-33 > .jobs_column-gap--left {
    border-left: none;
  }

  .jobs.v2024 .jobs_apply-now {
    padding: 32px;
    text-align: center;
  }

  .jobs.v2024 .jobs_apply-now img {
    max-width: 300px;
  }

  .jobs.v2024 .jobs_video {
    min-height: 330px;
  }

  .jobs.v2024 .jobs_overflow-box {
    position: relative;
    bottom: auto;
    left: auto;
    right: auto;
    height: auto;
    border-top: none;
    border-left: none;
    padding: 0;
  }

  .jobs.v2024 .jobs_apply-now-text, .jobs.v2024 .jobs_contact-person, .jobs.v2024 .jobs_description, .jobs.v2024 .jobs_facts, .jobs.v2024 .jobs_quicklinks, .jobs.v2024 .jobs_similar-positions, .jobs.v2024 .jobs_video {
    margin-top: 24px;
    padding: 32px 60px;
  }

  .icon-tiles {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 40px;
  }

  .icon-tiles_item img {
    height: 150px;
  }

  .home2023 .quality-tiles--centered {
    padding: 0 5px;
  }

  .rc23_intro, .rc23_personal {
    flex-wrap: wrap;
  }

  .rc23_personal-cv, .rc23_personal-photo, .rc23_slogan, .rc23_story {
    width: 100%;
  }

  .rc23_slogan {
    padding-bottom: 50px;
  }

  .rc23_personal-photo {
    padding-bottom: 50%;
  }

  .fourc_checkmark {
    line-height: 1.5 !important;
  }

  .teaser--foldable {
    width: 100%;
    padding-top: 0;
  }

  .teaser--foldable .teaser {
    padding: 60px 0 0;
    filter: none;
  }

  .teaser--foldable .teaser_collapsable-container.desktop, .teaser--foldable .teaser_container.desktop {
    display: none;
  }

  .teaser--foldable .teaser_container.mobile {
    display: block;
    margin-bottom: 0;
  }

  .teaser--foldable .teaser_content {
    padding: 15% 5px;
  }

  .teaser--foldable .teaser_collapsable-content {
    position: relative;
    padding: 25px 10px;
  }

  .teaser--foldable .teaser_active-line {
    position: relative;
    bottom: auto;
    height: 30px;
    opacity: 1;
  }

  .teaser--foldable .owl-nav {
    position: absolute;
    top: 25px;
    right: 30px;
  }

  .teaser--foldable .owl-carousel .owl-nav button.owl-next, .teaser--foldable .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    z-index: 0;
    cursor: pointer;
    color: transparent;
    display: block;
    width: 15px;
    height: 24px;
    background: initial;
    background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_blue.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .teaser--foldable .owl-carousel .owl-nav button.owl-prev {
    right: 65px;
    transform: rotate(180deg);
  }

  .teaser--foldable .owl-dots {
    counter-reset: slides-num;
    position: absolute;
    top: 24px;
    right: 45px;
    margin-left: -8px;
  }

  .teaser--foldable .owl-dots:after {
    content: counter(slides-num);
    display: inline-block;
    font-size: 1rem;
    line-height: 1;
    font-weight: 700;
    vertical-align: middle;
    padding-top: 2px;
  }

  .teaser--foldable .owl-dot {
    display: inline-block;
    counter-increment: slides-num;
    margin-right: 10px;
  }

  .teaser--foldable .owl-dot span {
    display: none;
  }

  .teaser--foldable .owl-dot.active:before {
    content: counter(slides-num) " / ";
    display: inline-block;
    vertical-align: middle;
    font-size: 1rem;
    line-height: 1.05;
    position: absolute;
    left: 0;
    top: 4px;
  }

  .teaser-slider_container.v2024 .teaser-slider {
    flex-direction: column;
  }

  .teaser-slider_container.v2024 .teaser-slider_image {
    width: 100%;
    min-height: 135px;
  }

  .teaser-slider_container.v2024 .teaser-slider_content {
    width: 100%;
    padding-left: 0;
  }

  .teaser-slider_container.v2024 .teaser-slider_content h3 {
    font-size: 1.3rem;
  }

  .teaser-slider_container.v2024 .teaser-slider_button {
    margin-top: 0;
  }

  .events-teaser-slider {
    padding: 50px 0 0;
  }

  .events-teaser-slider_slide {
    height: 360px;
  }

  .events-teaser-slider_headline {
    padding-top: 50px;
    padding-left: 15px;
  }

  .events-teaser-slider_title {
    font-size: 1.6rem;
  }

  .events-teaser-slider_time-data {
    height: 87px;
    gap: 10px;
    word-break: break-all;
    font-size: 1rem;
    padding: 0 5px 0;
  }

  .events-teaser-slider_time-data i {
    height: 30px;
    line-height: 30px !important;
    padding-left: 40px;
  }

  .events-teaser-slider_button {
    left: 15px;
    bottom: 140px;
  }

  .events-teaser-slider_line--white {
    display: none !important;
  }

  .events-teaser-slider.owl-carousel .owl-nav button.owl-prev {
    top: 5px;
    left: auto;
    right: 80px;
  }

  .events-teaser-slider.owl-carousel .owl-nav button.owl-next {
    top: 5px;
    left: auto;
    right: 0;
  }

  .events-teaser-slider .owl-dots {
    bottom: auto;
    top: 3px;
    right: 25px;
    left: auto;
  }

  .text-image {
    flex-direction: column;
  }

  .text-image__content, .text-image__image {
    width: 100%;
  }

  .text-image--column-reverse {
    flex-direction: column-reverse;
  }

  .text-image--row-reverse.text-image--column-reverse {
    flex-direction: column-reverse;
  }
}

@media only screen and (min-width: 0) and (max-width: 1447px) {
  .header {
    grid-template-columns: 25% 50% 25%;
    justify-content: space-between;
  }

  .header_logo {
    text-align: center;
  }

  .header_nav {
    display: none;
    position: absolute;
    left: 0;
    top: 90px;
    width: 100%;
    height: auto;
    justify-content: flex-start;
  }

  .header_nav-visible {
    display: block;
  }

  .subnav_background {
    background-color: rgba(48, 63, 85, .9);
    height: 100%;
    overscroll-behavior: contain;
  }

  .subnav_background.sticky {
    height: 100%;
  }

  .nav {
    width: 100%;
  }

  .nav_root {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav_item {
    line-height: 2;
    padding-left: 60px;
  }

  .nav_submenu {
    position: relative;
    padding-top: 0;
    padding-left: 20px;
  }

  .nav_submenu-item {
    line-height: 2.5;
  }

  .nav_products {
    position: relative;
    left: 0;
    padding-left: 20px;
  }

  .nav_products-item {
    line-height: 2.5;
  }

  .action_contact {
    display: none;
  }

  .nav.nav-2023 {
    display: initial;
    padding-right: 60px;
    overscroll-behavior: contain;
    overflow-y: auto;
    -ms-overflow-y: auto;
  }

  .nav.nav-2023 .nav_hot-topics {
    display: none;
    position: relative;
    width: 100%;
    left: 0;
    margin-top: 0px;
    padding-bottom: 0;
    text-align: left;
    border-right: none;
  }

  .nav.nav-2023 .nav_hot-topics .subnav_item:not(.subnav_item--bold) {
    font-size: 1rem;
    padding: 0;
  }

  .nav.nav-2023 .nav_hot-topics .subnav_item {
    border-right: none;
  }

  .nav.nav-2023 .subnav_insights {
    display: inline-block;
    width: 120px;
  }

  .nav.nav-2023 .subnav_insights-wrapper {
    width: 100%;
    margin-bottom: 50px;
  }

  .nav.nav-2023 .subnav_insights--pt {
    margin-top: 0;
  }

  .nav.nav-2023 .nav_root > .nav_item {
    width: 100%;
    padding-left: 60px;
    padding-right: 0;
    border-right: none;
  }

  .nav.nav-2023 .nav_submenu {
    left: 0;
    right: 0;
    padding-top: 0;
    padding-left: 0;
  }

  .nav.nav-2023 .submenu_wrap {
    display: block; /*flex*/
    /*    flex-direction: column-reverse;*/
    width: calc(100% - 15px);
    max-width: 425px;
  }

  .nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer):hover:after, .nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer).selected:after {
    display: none;
  }

  .nav.nav-2023 .nav_submenuL3 {
    display: none;
    padding-bottom: 15px;
  }

  .nav.nav-2023 .nav_submenuL3 .subnav_item a {
    color: #fff;
    font-size: 1rem;
  }

  .nav.nav-2023 .nav_item a {
    position: relative;
    line-height: 2;
  }

  .nav.nav-2023 .nav_arrow {
    position: absolute;
    z-index: 20;
    width: 40px;
    height: 100%;
  }

  .nav.nav-2023 .subnav_arrow {
    position: absolute;
    z-index: 20;
    width: 30px;
    height: 30px;
    right: 0;
  }

  .nav.nav-2023 .nav_item_first-level {
    display: inline;
  }

  .nav.nav-2023 .nav_item_first-level:after {
    display: inline-block;
    vertical-align: text-bottom;
    content: "";
    width: 30px;
    height: 29px;
    background-image: url("/templates/4c2026/img/icons/noun_Arrow_3134195_right_white.png");
    background-repeat: no-repeat;
    background-size: auto 26px;
    background-position: right;
  }

  .nav.nav-2023 .nav_item.clicked > .nav_item_first-level:after {
    margin-left: 10px;
    transform: rotate(90deg);
    vertical-align: initial;
  }

  .nav.nav-2023 .subnav_item {
    width: 100%;
  }

  .nav.nav-2023 .subnav_item--pr {
    padding-right: 0;
  }

  .nav.nav-2023 .subnav_item--pb {
    padding-bottom: 0;
  }

  .nav.nav-2023 .subnav_item--bold {
    font-family: Lato, sans-serif;
    color: #cdc4b5;
  }

  .nav.nav-2023 .subnav_item--bold a {
    color: #cdc4b5;
    position: relative;
    padding-right: 35px;
  }

  .nav.nav-2023 .subnav_item--bold > a:after {
    position: absolute;
    top: 4px;
    right: 0;
    display: inline-block;
    vertical-align: text-bottom;
    content: "";
    width: 30px;
    height: 26px;
    background-image: url("/templates/4c2026/img/icons/noun_Arrow_3134195_right_sand.png");
    background-repeat: no-repeat;
    background-size: auto 24px;
    background-position: right;
  }

  .nav.nav-2023 .subnav_item--bold.clicked > a:after {
    top: -3px;
    right: -3px;
    transform: rotate(90deg);
    vertical-align: initial;
  }

  .nav.nav-2023 .nav_footer {
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 40px 60px 0;
  }

  .nav.nav-2023 .nav_footer .social-media {
    position: relative;
    left: auto;
    top: auto;
  }

  .nav.nav-2023 .nav_footer .social-media_item {
    padding-right: 15px;
  }

  .nav.nav-2023 .nav_footer .action_select-lang {
    font-size: 1.5rem;
    color: #fff;
  }

  .nav.nav-2023 .subnav_insights--hidden {
    display: none !important;
  }

  .action_contact-mobile {
    display: block;
    padding-right: 23px;
    padding-top: 3px;
  }

  .header.sticky {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding-top: 0;
  }

  .header.sticky .header_logo {
    display: none;
  }

  .search_background.sticky, .subnav_background.sticky {
    top: 50px;
    height: calc(500px - $subnav-sticky-top);
  }

  .video_desc {
    padding-bottom: 25px;
  }

  .video--top .video_embed {
    height: auto;
  }

  .video--top {
    padding: 18px 14px 38px;
  }

  .video--top .video_square--right {
    bottom: 48px;
  }

  .video--left .video_embed {
    padding: 18px 0 0 14px;
  }

  .video--right .video_embed {
    padding: 0 14px 18px 0;
  }

  .video--left, .video--right {
    padding: 0 0 40px;
  }

  .video--top .video_subtitle {
    padding: 0 5px 5px;
    font-size: .85rem;
    bottom: -65px;
  }

  .video--left, .video--right, .video--top {
    flex-direction: column-reverse;
    width: 100%;
  }

  .video--left .video_embed, .video--right .video_embed, .video--top .video_embed {
    width: 100%;
    max-width: 1280px;
    margin-right: 0;
    margin-left: 0;
  }

  .event {
    flex-direction: column;
    max-height: initial;
  }

  .event_image {
    padding-bottom: 25px;
  }

  .event_image-big {
    width: 300px;
    max-width: 100%;
  }

  .event_desc {
    padding-left: 0;
  }

  .event_desc-short {
    width: 100%;
    padding-bottom: 45px;
  }

  .download--preview .download {
    max-width: initial;
  }

  .jobs_quicklinks-external {
    padding-top: 30px;
  }
}

@media only screen and (min-width: 0) and (max-width: 1299px) {
  body {
    position: relative;
  }

  .banner_fancybox .banner_fancybox-content {
    width: 100%;
    max-width: initial;
    padding: 0 60px;
    margin: 0;
  }

  .form_submitbutton {
    margin-top: 20px;
  }

  .form .formbutton {
    background-position: calc(100% - 10px) center;
    padding-right: 35px;
  }

  .download-ebooklet_form {
    min-width: auto;
  }

  .download-ebooklet_form .form form {
    flex-wrap: wrap;
  }

  .download-ebooklet_form-column--first {
    width: 100%;
  }

  .download-ebooklet_form-column--second {
    width: 100%;
  }

  .image-slider {
    flex-wrap: wrap;
  }

  .image-slider_desc {
    width: 100%;
    padding-bottom: 20px;
    padding-right: 0;
  }

  .image-slider_stage {
    width: 100%;
  }

  .image-slider-left .image-slider_desc {
    padding-left: 0;
  }

  .stage {
    max-width: initial;
  }

  .blog-preview {
    flex-direction: column;
  }

  .blog-preview_column {
    width: 100%;
    max-width: 685px;
  }

  .blog-preview-component {
    flex-direction: column;
    align-items: center;
  }

  .blog-preview-component .blog-preview_item:nth-child(even) {
    margin-left: 0;
  }

  .blog-preview-component .blog-preview_item:nth-child(odd) {
    margin-right: 0;
  }

  .blog-more-info {
    flex-direction: column;
    align-items: center;
  }

  .blog-author-box, .blog-contact-box {
    width: 100%;
  }

  .blog-author-box {
    padding: 40px 15px 77px;
    margin-bottom: 30px;
  }

  .blog-comments_form .form {
    width: 100%;
  }

  .blog-comments_form .form form {
    width: 100%;
  }

  .blog-comments_list {
    width: 100%;
  }

  .blog-comments_privacy {
    width: 100%;
  }

  .partner-slider_title {
    position: relative;
    top: 0;
    left: 0;
  }

  .real_character_cv {
    height: auto;
  }

  .product-list_anchors {
    flex-direction: column;
    padding: 0;
    width: initial;
  }

  .product-list_anchors a {
    width: initial;
    padding: 0 0 0 15px;
    text-align: left;
  }

  .product-list_anchors a:after {
    display: none;
  }

  .product-list_anchors li {
    display: flex;
    align-items: center;
    padding-bottom: 10px;
  }

  .product-list_circle {
    position: relative;
    top: initial;
    left: initial;
  }

  .logos.simple .partner {
    width: 200px;
  }

  .teasercategory_3col, .teasercategory_4col {
    margin-bottom: 20px;
  }

  .ebookletform div.form_submitbutton .formbutton {
    background-image: url("/templates/4c2026/img/icons/noun_Arrow_3134195_right_blue.png");
    color: #303f55;
  }
}

@media only screen and (min-width: 576px) and (max-width: 767px) {
  .social-media {
    top: 50vw;
  }
}

@media only screen and (min-width: 576px) and (max-width: 991px) {
  .home2023 .banner_article {
    width: 95%;
  }

  .home2023 .banner_article h1 {
    margin-bottom: 1.6rem;
  }

  .home2023 .banner_article h1, .home2023 .banner_article h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }

  .rc23_list {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .video_subtitle {
    bottom: -45px;
  }
}

@media only screen and (min-width: 0) and (max-width: 767px) {
  .content-with-border {
    padding-left: 15px;
    padding-right: 15px;
  }

  .sf_row.sf_col--2 .sf_column:first-of-type .content-with-border, .sf_row.sf_col--2 .sf_column:first-of-type .form, .sf_row.sf_col--2 .sf_column:first-of-type .tinymce {
    padding-right: 15px;
  }

  .sf_row.sf_col--2 .sf_column:last-of-type .content-with-border, .sf_row.sf_col--2 .sf_column:last-of-type .form, .sf_row.sf_col--2 .sf_column:last-of-type .tinymce {
    padding-left: 15px;
  }

  .sf_row.sf_col--2 .sf_column:first-of-type .sf_pc_image {
    margin-left: 15px;
    margin-right: 15px;
  }

  .sf_row.sf_col--2 .sf_column:last-of-type .sf_pc_image {
    margin-left: 15px;
    margin-right: 15px;
  }

  .row_twocols .col_left .content-with-border, .sf_row.sf_col--2 .sf_column:first-of-type .tinymce {
    padding-right: 15px;
  }

  .row_twocols .col_right .content-with-border, .sf_row.sf_col--2 .sf_column:first-of-type .tinymce {
    padding-left: 15px;
  }

  .form, .tinymce {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .desktop--hidden {
    display: block;
  }

  .mobile--hidden {
    display: none !important;
  }

  .nav_item {
    padding-left: 15px;
  }

  .nav.nav-2023 .nav_root > .nav_item {
    padding-left: 15px;
  }

  .nav.nav-2023 .nav_footer {
    padding-left: 15px;
    padding-right: 15px;
  }

  .breadcrumbs_h1 {
    left: 15px;
    bottom: 15px;
  }

  .search_wrapper {
    top: 180px;
  }

  .footer_logo {
    height: 40px;
  }

  .footer_top {
    padding: 60px 15px;
  }

  .footer_nav {
    flex-direction: column;
  }

  .footer_bottom {
    flex-flow: column;
    height: auto;
    padding-top: 40px;
  }

  .footer_bottom .footer_logo {
    order: 1;
  }

  .footer_copyright {
    order: 2;
    text-align: center;
    padding: 33px 15px 15px;
  }

  .tinymce img {
    max-width: 100%;
    height: auto;
  }

  .download-ebooklet_text img, .text img {
    max-width: 100%;
    height: auto;
  }

  .banner-carousel .carousel_item {
    height: 225px;
  }

  .banner-sub {
    height: 490px;
  }

  .banner_intro {
    bottom: 90px;
    left: 15px;
    width: calc(100% - 15px);
    max-width: initial;
  }

  .banner_intro .h1, .banner_intro h1 {
    font-size: 1.75rem;
    line-height: 1.2;
  }

  .banner_intro article {
    width: calc(100% - 15px);
    line-height: 1.4;
    padding-top: 10px;
  }

  .banner_title-underscore {
    width: 50%;
    margin-top: 15px;
  }

  .banner_fancybox .banner_fancybox-content {
    padding: 0 38px 0 20px;
    height: auto;
  }

  .banner-primary {
    height: 767px;
  }

  .content-home {
    height: 2887px;
  }

  .home .main {
    height: 2744px;
  }

  .banner-secondary {
    padding: 0 40px 0 100px;
  }

  .banner_text {
    width: 90%;
  }

  .banner_article {
    display: block;
    width: 100%;
    height: calc(50% - 235px);
    bottom: 193px;
    padding-left: 40px;
    padding-right: 40px;
  }

  .banner_article h1, .banner_article h2 {
    padding-top: 200px;
  }

  .banner_quicklinks {
    left: 40px;
    bottom: 40px;
    z-index: 2;
  }

  .banner_quicklinks a {
    margin-bottom: 10px;
    border: 1px solid #fff;
  }

  .banner_quicklinks a:last-of-type {
    margin-bottom: 0;
  }

  .social-media {
    left: 15px;
  }

  .parallax-background_text {
    padding-left: 15px;
    padding-right: 15px;
  }

  .parallax-background_title {
    padding-top: 11px;
    text-align: center;
  }

  .parallax-background_title + .parallax-background_text {
    padding-top: 30px;
  }

  .value-teaser {
    padding-left: 15px;
    padding-right: 15px;
  }

  .value-teaser_header {
    padding-top: 35px;
  }

  .character_container {
    justify-content: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .manager {
    flex-direction: column;
    padding-left: 15px;
    padding-right: 15px;
  }

  .manager_background {
    grid-template-columns: auto;
    justify-content: center;
  }

  .manager_teaser {
    max-width: 225px;
    margin-right: 0;
  }

  .manager_image {
    width: 50%;
    padding-top: 10px;
    padding-bottom: 15px;
  }

  .manager_text {
    width: 100%;
    padding-left: 0;
  }

  .manager_close {
    right: 20px;
  }

  .manager_info {
    height: auto;
  }

  div.accordeon_header {
    padding-right: 53px;
  }

  .partner-slider_title {
    padding-left: 15px;
  }

  .partner-slider_name-big {
    top: 0;
  }

  .partner-slider_textbox {
    width: 100%;
    min-height: 500px;
    max-height: 500px;
    height: 500px;
    padding: 40px 15px 98px;
  }

  .partner-slider_item {
    height: 880px;
  }

  .partner-slider_at a {
    left: 15px;
  }

  .partner-slider.v2023 .partner-slider_container {
    margin-left: -15px;
    margin-right: -15px;
  }

  .partner-slider.v2023 .partner-slider_profile-presentation {
    width: 100%;
    padding-right: 0;
  }

  .partner-slider.v2023 .partner-slider_profile-expertise {
    width: 100%;
    padding-left: 0;
    border-left: none;
    border-top: 1px solid #525252;
    padding-top: 20px;
    margin-top: 20px;
  }

  .teasercategories {
    padding-bottom: 0;
  }

  .teasercategory {
    height: 158px;
  }

  .teasercategory span:first-of-type {
    padding-right: 22px;
  }

  p.teaser_text {
    margin-bottom: 0;
  }

  .teasercontainer li.teaser {
    padding-top: 22px;
  }

  .teasercontainer li.teaser h3 {
    margin-bottom: .6rem;
  }

  .blog-preview-component {
    padding-left: 15px;
    padding-right: 15px;
  }

  .blog-preview-component .blog-preview_item {
    width: 100%;
    max-width: 445px;
    height: auto;
    margin-bottom: 20px;
    display: block;
  }

  .blog-preview-component .blog-preview_item h4 {
    padding-bottom: 5px;
  }

  .blog-preview-component .blog-preview_item:last-child {
    margin-bottom: 0;
  }

  .blog-preview {
    padding-top: 30px;
  }

  .blog-preview_image-small {
    max-width: 100%;
    width: auto;
    display: block;
  }

  .blog-preview_data {
    left: initial;
    bottom: initial;
    position: relative;
    padding-bottom: 20px;
  }

  .blog-preview_info {
    display: block;
  }

  .blog-archived {
    padding-top: 30px;
    grid-row-gap: 30px;
  }

  .blog-single_video {
    max-width: 426px;
    height: 240px;
  }

  .logoslidercontainer {
    padding-left: 0;
    padding-right: 0;
    height: 480px;
  }

  .logoslideritem {
    width: 46%;
    margin: 2%;
    height: 130px;
    padding: 5px;
  }

  .logoslideritem_logo {
    background-size: contain;
  }

  .real_character {
    padding: 20px 0;
    margin-top: -30px;
  }

  .real_character_intro {
    flex-wrap: wrap;
    padding-left: 15px;
    padding-right: 15px;
  }

  .real_character_slogan {
    width: 100%;
    padding-top: 25px;
    padding-left: 0;
  }

  .real_character_photo {
    width: 60%;
  }

  .real_character_quote {
    padding-left: 57px;
  }

  .real_character_quote span {
    left: 0;
  }

  .real_character_story {
    padding: 20px;
  }

  .real_character_story section {
    columns: 1;
  }

  .real_character_title {
    padding-bottom: 10px;
  }

  .real_character_personal {
    flex-wrap: wrap;
    padding: 25px 0;
  }

  .real_character_personal-text {
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
  }

  .real_character_cv {
    width: 100%;
  }

  .real_character_cv-sign {
    width: 58px;
    height: 76px;
  }

  .real_character_cv-text {
    padding-left: 30px;
    padding-right: 58px;
  }

  .real_character_personal-photo {
    width: calc(100% - 30px);
    max-width: 244px;
    min-height: 325px;
    height: 48vh;
    margin-top: -50px;
    margin-left: 30px;
  }

  .teasercontainer ul.teaser {
    grid-template-columns: repeat(1, 1fr);
  }

  .teasercategory_2col {
    width: 100%;
  }

  .teaser--preview .teaser_container {
    grid-template-columns: repeat(1, minmax(240px, 1fr));
    row-gap: 30px;
  }

  .parallax-background {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    background-position: center !important;
  }

  .product-list_container {
    padding: 25px 20px 60px 20px;
  }

  .product-list_download, .product-list_image-container {
    padding-right: 0;
  }

  .product-list_image-container.video {
    margin-right: 0;
  }

  .product-list_download-image {
    width: 100%;
    padding-right: 0;
  }

  .product-list_image-right .product-list_download, .product-list_image-right .product-list_image-container {
    text-align: left;
    padding-left: 0;
  }

  .product-list_image-right .product-list_image-container.video {
    margin-left: 0;
  }

  .textdownload {
    flex-direction: column-reverse;
    align-items: flex-end;
    padding-bottom: 40px;
  }

  .textwithdownload {
    width: 100%;
    padding-right: 0;
  }

  .textimagedownload {
    width: 100%;
    max-width: 100%;
    padding-left: 0;
  }

  .contact-banner {
    flex-direction: column;
    padding: 0 20px;
    height: initial;
  }

  .contact-banner_button {
    margin-top: 25px;
    text-align: center;
    font-size: 1.6rem;
    width: 200px;
    max-width: 100%;
  }

  .contact-banner_text {
    text-align: center;
    line-height: 1.4;
  }

  .network_wrap {
    flex-direction: column;
  }

  .network_intro {
    width: 100%;
    min-width: initial;
    margin-right: 0;
    padding: 25px 20px 0;
  }

  .network_logos {
    padding: 0 20px 25px;
    grid-template-columns: repeat(3, 1fr);
  }

  .logos.download-ebooklet_text, .logos.text {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .logos.download-ebooklet_text .partner, .logos.text .partner {
    flex-direction: column-reverse;
  }

  .logos.download-ebooklet_text .partnerlogo, .logos.text .partnerlogo {
    padding-bottom: 10px;
  }

  .events_tab-content {
    padding-left: 20px;
    padding-right: 20px;
  }

  .events .event:nth-child(odd) {
    margin-right: 0;
  }

  .event-details_more {
    padding-top: 40px;
  }

  .event-details_anchor-links {
    flex-direction: column;
    padding-bottom: 40px;
  }

  .event-details_anchor-links a {
    margin-bottom: 15px;
  }

  .event-details_anchor-links a:last-of-type {
    margin-bottom: 0;
  }

  .event-details_anchor-links a.col-25, .event-details_anchor-links a.col-33, .event-details_anchor-links a.col-50 {
    width: 100%;
  }

  .event-details_prebooking-form-background {
    left: -15px;
    right: -15px;
  }

  .event-details_form {
    padding-bottom: 40px;
  }

  .event-details_text-image {
    flex-direction: column-reverse;
  }

  .event-details_text-image .images {
    padding-bottom: 10px;
  }

  .event-details_text-image .images img {
    height: auto;
    max-width: 50%;
  }

  .event-details_text-image .download-ebooklet_text, .event-details_text-image .text {
    padding-right: 0;
  }

  .event-details_title {
    left: -15px;
    padding-left: 15px;
    width: calc(100% + 22px);
  }

  .event-details_agenda .textdownload {
    padding-top: 40px;
  }

  .press-teaser {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 30px;
  }

  .press-info {
    flex-direction: column;
  }

  .press-info_contact {
    text-align: center;
    padding-right: 0;
  }

  .press-info_downloads {
    padding-right: 20px;
  }

  .press-info_background {
    right: -15px;
    left: -15px;
    background-position: right;
  }

  .searchresults_form {
    padding-bottom: 40px;
  }

  .searchresults .form {
    flex-direction: column;
  }

  .searchresults .form input {
    width: 100%;
  }

  .searchresults .form input.download-ebooklet_text, .searchresults .form input.text {
    margin-bottom: 0;
  }

  .searchresults_list {
    padding: 30px 30px 0;
  }

  .searchresults .download {
    border-top: none;
  }

  .download {
    display: flex;
    flex-flow: column;
    padding-bottom: 25px;
    padding-top: 25px;
    border-bottom: solid 1px #a08b71;
  }

  .download + .logos {
    padding-top: 25px;
  }

  .download--insights .download {
    padding: 20px 0;
  }

  .download--insights .download_link, .download--insights .download_text {
    margin-top: 30px;
    padding-top: 0;
  }

  .download--insights .download_text {
    padding: 0 10px;
  }

  .download--insights .download_text h2, .download--insights .download_text h3, .download--insights .download_text h4, .download--insights .download_text h5 {
    font-size: 1.5rem;
  }

  .download--insights .download_text p {
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .download--insights .download_text ul {
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .download--preview {
    width: calc(100% - 30px) !important;
  }

  .download--preview .download_background {
    padding: 20px;
  }

  .download--preview .download_content {
    padding: 18px 10px;
  }

  .download--preview .download_text h5 {
    margin-bottom: .25rem;
    font-size: 1.25rem;
    line-height: 1.2;
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
  }

  .download--preview .download_text li, .download--preview .download_text p {
    line-height: 1.4;
    font-size: 1rem;
  }

  .download--preview .download_text li {
    padding-bottom: 0;
    line-height: 1.3;
  }

  .download--preview .download_container.download_container--desktop {
    display: none;
  }

  .download--preview .download_container.download_container--mobile {
    display: block;
    width: 100%;
  }

  div.sf_cookie_content {
    padding-left: 15px;
    padding-right: 15px;
  }

  .row_twocols {
    display: block;
    width: 100%;
  }

  .parallax-background-content {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .stagecontainer {
    height: 62vw !important;
    margin-bottom: 20px;
  }

  .stage .stage_item {
    background-size: contain;
  }

  h1 {
    left: 15px;
    top: 205px;
    line-height: normal;
  }

  h2 {
    font-size: calc(1.15rem + 1.35vw);
  }

  .col_left, .col_right {
    width: auto;
    margin-right: 0;
  }

  .breadcrumbs {
    left: 15px;
    top: 176px;
    display: none;
  }

  .breadcrumbs li {
    font-size: 1.225rem;
  }

  .download_button {
    padding-top: 20px;
    padding-bottom: 10px;
  }

  .download_button:last-of-type {
    padding-bottom: 0;
  }

  .accordeon_container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .col_left div[class*=accordeon_container]:last-of-type, .col_right div[class*=accordeon_container]:last-of-type, .parallax-background div[class*=accordeon_container]:last-of-type {
    padding-bottom: 0;
  }

  .teaser-image_container {
    grid-template-columns: repeat(1, 1fr);
  }

  .event {
    width: auto;
  }

  .event:nth-child(even) {
    margin-left: 0;
  }

  .download_link {
    width: auto;
    order: 2;
  }

  .download_text {
    width: auto;
    order: 1;
  }

  .download_link img {
    display: none;
  }

  .logos .partner_text {
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .download-ebooklet_intro {
    padding-bottom: 0;
  }

  .download-ebooklet_row {
    display: block;
  }

  .download-ebooklet_column {
    width: auto;
  }

  .betterslider_next, .betterslider_prev {
    display: none;
  }

  .betterslider_pagination {
    left: 10%;
    width: 80%;
    bottom: 3px;
  }

  .job-teaser {
    grid-template-columns: repeat(2, 1fr);
  }

  .jobs_conditions {
    width: calc(100% - (2 * 15px));
    margin-left: 15px;
  }

  .jobs_requirements {
    padding: 40px 15px 20px;
  }

  .quality-tiles {
    grid-template-columns: repeat(1, 1fr);
  }

  .home2023 .footer_bottom {
    flex-direction: column;
    height: auto;
    padding: 30px 0 15px;
  }

  .home2023 .footer_bottom :nth-child(1) {
    order: 3;
  }

  .home2023 .footer_bottom :nth-child(2) {
    order: 2;
  }

  .home2023 .footer_bottom :nth-child(3) {
    order: 1;
  }

  .home2023 .footer_copyright {
    width: auto;
  }

  .home2023 .footer_menu-bottom {
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    width: auto;
    height: auto;
    line-height: 2;
  }

  .home2023 .footer_menu-bottom .nav_block-item {
    padding: 0;
  }

  .home2023 .counter_row {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 20px;
  }

  .home2023 .banner-primary .banner_article {
    width: 100%;
    padding-left: 40px;
  }

  .home2023 .banner-primary .carousel_scroll-arrow {
    width: 28px;
    height: 42px;
    background-size: 28px auto;
    right: 5%;
  }

  .home2023 #homevideotitle {
    font-size: 1.8rem;
  }

  .home2023 #homevideotitle .smaller {
    font-size: 1.5rem;
  }

  .rc23_intro, .rc23_personal-cv {
    padding-left: 15px;
    padding-right: 15px;
  }

  .rc23_slogan p {
    font-size: calc(1.1rem + 1.35vw);
  }

  .events-teaser-slider_slide {
    height: 388px;
  }

  .events-teaser-slider_time-data {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 5px;
    padding: 5px 15px;
    height: 110px;
  }

  .events-teaser-slider_venue {
    width: 100%;
  }

  .events-teaser-slider_button {
    bottom: 160px;
  }

  .jobs.v2024 .jobs_video {
    min-height: 300px;
  }

  .jobs.v2024 .jobs_apply-now-text, .jobs.v2024 .jobs_contact-person, .jobs.v2024 .jobs_description, .jobs.v2024 .jobs_facts, .jobs.v2024 .jobs_quicklinks, .jobs.v2024 .jobs_similar-positions, .jobs.v2024 .jobs_video {
    margin-top: 15px;
    padding: 32px 15px;
  }
}

@media only screen and (min-width: 0) and (max-width: 991px) and (orientation: landscape) {
  .home2023 #homevideotitle {
    font-size: 1.8rem;
  }

  .home2023 #homevideotitle .smaller {
    font-size: 1.5rem;
  }

  .banner_quicklinks {
    bottom: 55px;
  }
}

@media only screen and (min-width: 0) and (max-width: 575px) {
  .home2023 .banner_article {
    width: 90%;
  }

  .home2023 .banner_article h1, .home2023 .banner_article h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
  }

  .header {
    grid-template-columns: 25% 40% 35%;
    height: 65px;
    align-items: center;
  }

  .header_logo {
    height: 40px;
    display: flex;
    align-items: center;
  }

  .header_logo img {
    height: auto;
  }

  .search_wrapper {
    padding: 0 15px;
  }

  .social-media {
    top: 120vw;
  }

  .value-teaser {
    grid-template-columns: repeat(1, 1fr);
  }

  .value-teaser_item {
    width: 100%;
    max-width: 300px;
  }

  .manager {
    padding: 5px;
  }

  .manager_image {
    width: 100%;
    max-width: 240px;
    padding-top: 25px;
    padding-right: 0;
  }

  .manager_close {
    right: 5px;
    top: 0;
  }

  .partner-slider_bgimage {
    background-size: 104%;
  }

  .partner-slider_item {
    height: 776px;
  }

  .partner-slider_text {
    max-height: 268px;
    overflow: auto;
  }

  .partner-slider_role {
    padding-right: 85px;
  }

  .partner-slider.v2023 .owl-nav {
    width: 100%;
    height: 100%;
    top: 0;
  }

  .partner-slider.v2023 .owl-carousel .owl-nav button.owl-next, .partner-slider.v2023 .owl-carousel .owl-nav button.owl-prev {
    position: absolute;
    top: calc(50% - 24px);
  }

  .partner-slider.v2023 .owl-carousel .owl-nav button.owl-prev {
    left: -6px;
  }

  .partner-slider.v2023 .owl-carousel .owl-nav button.owl-next {
    right: -6px;
  }

  .blog-archived {
    padding-bottom: 40px;
  }

  .blog-archived_info h4 {
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
  }

  .blog-more-info {
    padding-top: 0;
  }

  .blog-author-box_data {
    flex-direction: column;
    padding: 20px;
  }

  .blog-author-box_info {
    padding-left: 0;
    padding-top: 20px;
  }

  .blog-comments {
    padding-bottom: 0;
  }

  .teaserlist {
    padding: 25px 20px 20px;
  }

  .teaserlist h3 {
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
  }

  .textwithdownload {
    padding-bottom: 20px;
  }

  .product-list_anchors {
    padding-bottom: 10px;
  }

  .product-list_title {
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
  }

  .tabnavigation select {
    width: 100%;
  }

  .network_wrap {
    padding-top: 0;
    padding-bottom: 0;
  }

  .network_logos {
    grid-template-columns: repeat(2, 1fr);
  }

  .press-teaser_item {
    padding-bottom: 55px;
  }

  .press-teaser_data {
    position: relative;
    bottom: initial;
  }

  .press-info_downloads {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }

  .press-info_background {
    background-image: none;
    background-color: #fff;
  }

  .teaser-slider_container .owl-dots {
    left: 0;
    width: 100%;
  }

  .teaser-slider_container.owl-carousel .owl-nav button.owl-prev {
    left: 20px;
  }

  .teaser-slider_container.owl-carousel .owl-nav button.owl-next {
    right: 20px;
  }

  .teaser--preview .teaser_title {
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    font-size: 1.4rem;
  }

  .teaser--foldable .teaser_title {
    display: flex;
    align-items: center;
    font-family: Lato, sans-serif;
    font-size: 1.8rem;
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
  }

  .job-teaser {
    grid-template-columns: repeat(1, 1fr);
    padding-bottom: 30px;
  }

  .job-teaser_item {
    width: 100%;
    max-width: 360px;
  }

  .jobs_benefits {
    justify-content: center;
  }

  .jobs_benefits h3 {
    padding-right: 0;
    margin-bottom: 2rem;
  }

  .jobs_conditions {
    flex-wrap: wrap;
  }

  .jobs_conditions .column {
    width: 100%;
  }

  .jobs_locations, .jobs_share {
    padding-top: .6rem;
  }

  .jobs_start-here {
    right: 15px;
  }

  .jobs_start-here img {
    width: 168px;
  }

  .job-benefits {
    flex-wrap: wrap;
    justify-content: center;
  }

  .job-benefits_item {
    width: 100%;
    padding: 0 0 30px;
  }

  .rc23_list {
    grid-template-columns: repeat(1, 1fr);
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }

  .video_subtitle {
    bottom: -60px;
  }

  .tabs23_title {
    padding-right: 15px;
  }

  .headline {
    font-size: 1.55rem;
  }

  .headline_line-full .headline_text {
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    min-width: 70%;
    flex-grow: 1;
    padding: 0 5px;
  }

  .parallax-background > .headline_container:first-child {
    padding-top: 0 !important;
  }

  .events-teaser-slider_apply-now {
    display: none;
  }

  .jobs.v2024 .jobs_quicklinks-external, .jobs.v2024 .jobs_quicklinks-internal {
    gap: 20px;
  }

  .contact-widget {
    width: 100%;
  }

  .contact-widget__opener {
    padding-right: 30px;
  }

  .contact-widget__button {
    margin-right: 15px;
    font-size: .9rem;
  }

  .contact-widget__intro {
    font-size: .8rem;
  }

  .text-image__image--smaller {
    width: 100%;
  }
}

@media only screen and (min-width: 0) and (max-width: 1060px) {
  .counter_row {
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 15px;
    padding-right: 15px;
  }

  .home2023 .banner-primary {
    height: 94vh;
  }

  .home2023 .banner-primary .carousel_item {
    height: 94vh;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1380px) {
  .blog-preview_info h4 {
    hyphens: auto;
    -ms-hyphens: auto;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1180px) {
  .network_logo {
    padding: 10px 10px;
  }

  .network_intro {
    min-width: 320px;
  }
}

@media (prefers-reduced-motion: reduce), print {
  .animate__animated {
    -webkit-animation-duration: 1ms !important;
    animation-duration: 1ms !important;
    -webkit-transition-duration: 1ms !important;
    transition-duration: 1ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
  }

  .animate__animated[class*=Out] {
    opacity: 0;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .sp-button {
    width: 14px;
    height: 14px;
  }
}

@media only screen and (min-width: 568px) and (max-width: 768px) {
  .sp-button {
    width: 16px;
    height: 16px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 568px) {
  .sp-button {
    width: 18px;
    height: 18px;
  }
}

@media only screen and (min-width: 0) and (max-width: 767px) {
  .blog-preview_info {
    min-height: 140px;
  }

  .blog-preview_item {
    max-width: none;
  }

  .tabs23_content > div {
    overflow-y: unset;
    max-height: none;
  }
}
.jobs-listing {
  background-color: #ebebeb;
  padding-bottom: 50px;
  padding-top: 50px;
}
.jobs-listing h2 {
  font-weight: bold;
}
.jobs-listing__filters {
  margin-bottom: 20px;
  position: relative;
}
.jobs-listing__filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}
.jobs-listing__filter-buttons {
  display: flex;
  gap: 30px;
}
.jobs-listing__filter-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 12px 8px 22px;
  background: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  width: 200px;
  font-size: 1.45rem;
  font-weight: bold;
  color: #303f55;
}
.jobs-listing__filter-toggle::after {
  content: '';
  flex-shrink: 0;
  margin-left: auto;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cline x1='2' y1='4' x2='18' y2='4' stroke='%23000' stroke-width='1'/%3E%3Ccircle cx='6' cy='4' r='2' fill='%23fff' stroke='%23000' stroke-width='1'/%3E%3Cline x1='2' y1='10' x2='18' y2='10' stroke='%23000' stroke-width='1'/%3E%3Ccircle cx='14' cy='10' r='2' fill='%23fff' stroke='%23000' stroke-width='1'/%3E%3Cline x1='2' y1='16' x2='18' y2='16' stroke='%23000' stroke-width='1'/%3E%3Ccircle cx='9' cy='16' r='2' fill='%23fff' stroke='%23000' stroke-width='1'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.jobs-listing__badge {
  background: #333;
  color: #fff;
  border-radius: 50%;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  font-size: 11px;
  display: none;
  align-items: center;
  justify-content: center;
}
.jobs-listing__search input {
  padding: 8px 36px 8px 12px;
  background: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.45rem;
}
.jobs-listing__search {
  position: relative;
  display: inline-block;
}
.jobs-listing__search::after {
  content: '';
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='6' stroke='%23000' stroke-width='1' fill='none'/%3E%3Cline x1='12.5' y1='12.5' x2='18' y2='18' stroke='%23000' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.jobs-listing__panel {
  display: none;
  position: absolute;
  background: #d5dde0;
  border-radius: 10px;
  padding: 20px;
  margin-top: 10px;
  z-index: 1;
}
.jobs-listing__panel.is-open {
  display: block;
}
.jobs-listing__panel-columns {
  display: flex;
  gap: 30px;
}
.jobs-listing__filter-column {
  flex: 1;
  min-width: 0;
  width: 200px;
}
.jobs-listing__switch {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 2px 0;
  cursor: pointer;
}
.jobs-listing__switch input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.jobs-listing__switch-slider {
  position: relative;
  width: 36px;
  height: 20px;
  background-color: #abb2b6;
  border-radius: 20px;
  flex-shrink: 0;
  transition: background-color 0.2s;
}
.jobs-listing__switch-slider::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.jobs-listing__switch input:checked + .jobs-listing__switch-slider {
  background-color: #333;
}
.jobs-listing__switch input:checked + .jobs-listing__switch-slider::before {
  transform: translateX(16px);
}
.jobs-listing__switch input:focus + .jobs-listing__switch-slider {
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}
.jobs-listing__switch-label {
  /*
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  */
}
.jobs-listing__panel-footer {
  display: block;
  text-align: right;
  padding-right: 40px;
  gap: 10px;
  padding-top: 20px;
  margin-top: 20px;
  border-top: 1px solid #abb2b6;
}
.jobs-listing__reset-btn,
.jobs-listing__apply-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}
.jobs-listing__reset-btn {
  background: transparent;
  text-decoration: underline;
}
.jobs-listing__apply-btn {
  display: none;
  background: #333;
  color: #fff;
}
.jobs-listing__panel-close {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.jobs-listing__panel-close img {
  width: 20px;
  height: 20px;
}
.jobs-listing__grid {
  display: flex;
  flex-wrap: wrap;
  column-gap: 30px;
  row-gap: 20px;
}
.jobs-listing__tile {
  width: calc(50% - 15px);
  padding: 15px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  border-radius: 10px;
  text-decoration: none;
  color: inherit;
}
.jobs-listing__title {
  margin: 0 0 10px 0;
}
.jobs-listing__text {
  margin: 0 0 15px 0;
  flex-grow: 1;
}
.jobs-listing__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.jobs-listing__locations i {
  margin-right: 5px;
}
.jobs-listing__arrow img {
  width: 20px;
  height: 20px;
}
.jobs-listing__tile--initiativ,
.jobs-listing__tile--initiativ:hover {
  background-color: #abb2b6;
  color: #fff;
}
.jobs-listing__tile--initiativ .jobs-listing__title {
  color: #fff;
}
.jobs-listing__no-results {
  padding: 40px;
  text-align: center;
  background: #fff;
  border-radius: 10px;
  margin-top: 50px;
  display: none;
}

@media (max-width: 768px) {
  .jobs-listing__filter-row {
    flex-direction: column;
    align-items: stretch;
  }
  .jobs-listing__filter-buttons {
    flex-wrap: wrap;
  }
  .jobs-listing__filter-toggle {
    flex: 1;
    min-width: calc(50% - 5px);
    justify-content: center;
  }
  .jobs-listing__search {
    width: 100%;
  }
  .jobs-listing__search input {
    width: 100%;
    box-sizing: border-box;
  }
  .jobs-listing__panel {
    width: 100%;
    position: fixed;
    top: -10px;
    left: 0;
    z-index: 11;
    max-height: 100vh;
    overflow: auto;
  }
  .jobs-listing__panel-columns {
    flex-direction: column;
    gap: 20px;
  }
  .jobs-listing__filter-column {
    padding-bottom: 15px;
    border-bottom: 1px solid #abb2b6;
    width: 100%;
  }
  .jobs-listing__filter-column:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .jobs-listing__panel-footer {
    display: flex;
    justify-content: space-between;
  }
  .jobs-listing__apply-btn {
    display: inline-block;
  }
  .jobs-listing__tile {
    width: 100%;
  }
  .jobs-listing__panel-close {
    display: none;
  }
}

body.blog2026 {
  div.content-with-padding {
    width: 100%;
    padding-bottom: 50px;
  }

  .zitat--dark_background {
    height: 460px;
  }

  .zitat--dark_background >  .zitat_container {
    height: 100%;
  }
}

body.blog2026.blog2026-detail {
  background-color: transparent;

  main.main {
    background-color: #6e7788;
    background-image: linear-gradient(180deg, #6e7788 0%, #f6f6f6 50%, #303f55 100%);
    padding-top: 72px;
    margin-top: -72px;
  }

  main.main:has(section.banner ~ div.content-with-padding) {
    background-size: 100% calc(100% - 380px);
    background-repeat: no-repeat;
  }

  div.content-with-padding > .parallax-background {
    width: 1080px;
    padding: 30px 120px 40px;
    max-width: 100vw;
    margin: 0 auto;
  }

  .sf_pc_image_title {
    padding: 20px 0 10px;
  }

  .sf_pc_image_title, .sf_pc_image_source {
    color: #737373;
  }

  .sf_pc_image_source {
    text-align: right;
    font-size: 0.8rem;
    padding-bottom: 30px;
  }

  .zitat--module1 {
    .zitat_symbol--left {
      background-image: url("data:image/svg+xml,%3Csvg width='512' height='512' viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m108.38 258.88c13.547-17.707 34.988-25.602 59.52-25.602 45.332 0 78.078 30.613 78.078 82.238 0 48.535-30.613 89.707-94.934 89.707-59.094 0-96-42.238-96-110.83 0-91.734 55.148-163.73 154.88-187.52 5.8672-1.3867 12.375 2.2383 14.398 8l2.0273 5.7617c2.0273 5.7617-1.0664 11.414-6.9336 13.121-65.812 18.453-105.71 58.559-115.62 123.52-0.85156 5.9766 0.85547 6.5078 4.5898 1.6016zm210.98 0c13.547-17.707 34.988-25.602 59.52-25.602 45.332 0 78.078 30.613 78.078 82.238 0 48.535-30.613 89.707-94.934 89.707-59.094 0-96-42.238-96-110.83 0-91.734 55.148-163.73 154.99-187.52 5.8672-1.3867 12.375 2.2383 14.398 8l2.0273 5.7617c2.0273 5.7617-1.0664 11.414-6.9336 13.121-65.812 18.453-105.71 58.559-115.62 123.52-0.95703 5.9766 0.85547 6.5078 4.4805 1.6016z' fill='%23d4dde0'/%3E%3C/svg%3E");
      line-height: 2;
      max-height: 170px;
      width: 15vw;
      left: -2vw;
    }
    .zitat_symbol--right {
      display: none;
    }

    .zitat_text {
      padding: 60px 0;
      position: relative;
      em {
        color: #6c757e;
      }
    }
  }

  article.tinymce {
    h1 {
      font-size: 2.6rem;
      padding: 60px 0 30px;
      line-height: 1.2;
    }

    h2 {
      font-size: 1.5rem;
      font-family: "Lato Bold";
      color: #ff7900;
      position: relative;

      &:after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        height: 3px;
        width: 70px;
        background-color: #445266;
      }
    }
  }

  .sf_pc_conclusion_headline {
    font-size: 1.5rem;
    font-family: "Lato Bold";
    color: #ff7900;
    position: relative;
    padding: 40px 0 10px;
    z-index: 1;

    &:before {
      content: '';
      position: absolute;
      left: -3vw;
      top: 75%;
      transform: translateY(-50%);
      height: 10vw;
      width: 100%;
      max-height: 150px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 650.97 936.82'%3E%3Cpolygon fill='%23d4dde0' fill-rule='evenodd' points='0 117.42 117.3 117.42 322.03 464.67 117.3 819.4 0 819.4 204.72 464.67 0 117.42'/%3E%3Cpolygon fill='%23d4dde0' fill-rule='evenodd' points='222.47 0 390.54 0 650.97 464.97 391.03 936.82 222.47 936.82 486.79 464.67 222.47 0'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      z-index: -1;
    }

    &:after {
      content: '';
      position: absolute;
      bottom: 0px;
      left: 0;
      height: 3px;
      width: 70px;
      background-color: #445266;
    }
  }

  .sf_pc_conclusion_text {
    position: relative;
    z-index: 1;
  }
}

body.blog2026.blog2026-main {
  main.main {
    background-image: linear-gradient(180deg, #6e7788 0%, #f6f6f6 50%, #303f55 100%);
    padding-top: 72px;
    margin-top: -72px;
  }

  .h2 {
    font-size: 2.75rem;
    font-family: "Lato Light";
  }

  .parallax-background-white, .blog-preview, #additional-articles, .headline_container {
    max-width: 1600px;
    margin: 0 90px;
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 180px);
  }

  #additional-articles {
    row-gap: 30px;
    column-gap: 60px;

    article {
      flex: 0 0 calc(50% - 30px);
    }
  }

  #blog-lead-section .blog-preview_column:first-child {
    justify-content: space-between;
  }

  .blog-preview_column {
    width: calc(50% - 60px / 2);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0px;
  }

  .blog-preview_wrapper {
    width: 100%;
    padding-bottom: 60px;
  }

  .parallax-background > .tinymce {
    padding-left: 90px;
    padding-right: 90px;
  }

  .blog-preview_lead {
    height: 950px;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .blog-preview_lead .blog-preview_image-big {
    height: 330px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    cursor: pointer;
  }

  .blog-preview_lead .blog-preview_text {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .blog-preview_text .blog-cta, .blog-preview_info .blog-cta {
    position: absolute;
    right: 20px;
    bottom: 20px;
  }

  .blog-preview_info {
    height: 300px;
  }

  .blog-preview_item {
    height: 460px;
    display: flex;
    flex-direction: column;
  }

  .blog-preview_arrow {
    z-index: 1;
  }

  .blog-preview_item .blog-preview_image-small {
    height: 200px;
    flex-shrink: 0;
  }

  .blog-preview_item .blog-preview_info {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .blog-preview_info::after {
    content: '';
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    height: 1rem;
    background: linear-gradient(to bottom, transparent, #f6f6f6);
    pointer-events: none;
  }

  .blog-preview_item h4 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-height: 1.45;
  }

  .blog-filter {
    margin: 30px 0;
    display: flex;
    justify-content: flex-end;
    width: calc(100% - 180px);
    gap: 60px;
    margin-left: 90px;
    margin-right: 90px;
  }

  .blog-filter .custom-select {
    position: relative;
  }

  .blog-filter .custom-select-trigger {
    border: none;
    font-size: 1.45rem;
    text-decoration: none;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
    background: transparent;
    cursor: pointer;
    color: #4d5966;
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 10px;
  }

  .blog-filter .custom-select-trigger::after {
    content: '';
    width: 24px;
    height: 15px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 15' fill='none' stroke='%234d5966' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M2 2 L12 13 L22 2'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    text-decoration: none;
    flex-shrink: 0;
    margin-left: auto;
  }

  .blog-filter .custom-select-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 5px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.2);
    z-index: 100;
    min-width: 100%;
    margin-top: 5px;
    font-size: 1.25rem;
    line-height: 1rem;
    padding: 10px;
  }

  .blog-filter .custom-select.open .custom-select-options {
    display: block;
  }

  .blog-filter .custom-select-option {
    padding: 8px 12px;
    cursor: pointer;
    color: #7c888f;
    white-space: nowrap;
  }

  .blog-filter .custom-select-option:hover {
    background: #f6f6f6;
  }

  .blog-filter .custom-select-option:first-child {
    border-radius: 5px 5px 0 0;
  }

  .blog-filter .custom-select-option:last-child {
    border-radius: 0 0 5px 5px;
  }

  .blog-filter #text-search {
    flex: 1;
    background-color: #f6f6f6;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%232b3752' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    border: none;
    border-radius: 10px;
    padding: 8px 40px 8px 12px;
    font-size: 1.0rem;
  }

  .blog-filter #text-search:focus {
    outline: none;
  }

  .blog-preview_short-text {
    flex: 1;
    overflow: hidden;
    line-height: 1.5;
    -webkit-mask-image: linear-gradient(
            to bottom,
            black calc(100% - 20px),
            transparent 100%
    );
    mask-image: linear-gradient(
            to bottom,
            black calc(100% - 20px),
            transparent 100%
    );
  }

  .blog-preview_lead .blog-preview_short-text {
    margin-bottom: 78px;
  }

  .blog-preview_info .blog-preview_short-text {
    max-height: 70px;
  }

  .headline_line-right {
    padding-left: 90px;
    width: 100%;
  }
}

@media only screen and (min-width: 320px) and (max-width: 568px) {
  body.blog2026.blog2026-main {
    flex-wrap: wrap;
  }
}

@media (max-width: 768px) {
  .fourcinsightslogo {
    margin-top: 0px !important;
  }

  body.blog2026 {
    div.content-with-padding {
      top: 0;
    }
  }

  body.blog2026.blog2026-detail {
    main.main {
      padding-top: 0px;
      margin-top: 0px;
    }
    .blog-header {
      margin-top: 20px;
    }
    .blog-header__4cmagazine-image {
      margin-top: 45px;
    }
    main.main div.content-with-padding > .parallax-background:nth-child(2) {
      padding-top: 0 !important;
    }

    div.content-with-padding > .parallax-background > .parallax-background {
      padding: 15px 20px 10px;
    }

    .zitat--module1 {
      .zitat {
        padding: 5px 0;
      }
      .zitat_text {
        padding: 20px 0;
      }

      em {
        font-size: 1.25rem;
      }
    }

    article.tinymce {
      h1 {
        font-size: 2.0rem;
        hyphens: auto;
      }
    }
  }

  body.blog2026.blog2026-main {
    main.main {
      padding-top: 0px;
      margin-top: 0px;
    }
    .fourcinsightslogo {
      max-width: 250px;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      top: -35px;
    }
    .h2 {
      font-size: 1.75rem;
    }

    .parallax-background-white, .blog-preview, #additional-articles, .headline_container {
      width: 100%;
      margin: 0;
    }

    #content-sub > .content-with-padding > .parallax-background {
      padding: 0;
      padding-top: 0 !important;
    }

    .parallax-background > .tinymce {
      padding-left: 30px;
      padding-right: 30px;
    }

    .headline_line-right {
      padding-left: 30px;
    }

    .blog-filter {
      justify-content: space-between;
      gap: 0;
      margin: 0 20px 20px;
      width: auto;
      flex-wrap: wrap;

      .custom-select-trigger {
        white-space: nowrap;
        font-size: 1rem;
      }
    }

    .blog-preview_wrapper {
      padding-bottom: 30px;
    }

    #blog-lead-section.blog-preview {
      flex-direction: column;
    }

    .blog-preview_text h4, .blog-preview_item h4 {
      font-size: 1rem;
    }

    .blog-preview_column {
      width: 100%;
      gap: 15px;
      margin-bottom: 15px;
    }

    #additional-articles {
      flex-direction: column;
      gap: 15px;

      article.blog-preview_item {
        flex: 0 0 100%;
        width: 100%;
        min-width: 100%;
      }
    }

    .blog-preview_lead,
    .blog-preview_item {
      height: 425px;
      margin-bottom: 0;
      width: 100%;
      max-width: 100%;
    }

    .blog-preview_text, .blog-preview_info {
      height: 333px;
    }

    .blog-preview_info .blog-preview_short-text {
      max-height: 137px;
    }

    .blog-preview_lead .blog-preview_image-big,
    .blog-preview_item .blog-preview_image-small {
      height: 90px;
    }

    .blog-preview_lead .blog-preview_text,
    .blog-preview_item .blog-preview_info {
      flex: none;
    }

    /*
        .blog-preview_short-text,
        .blog-preview_info::after,
        .blog-preview_arrow {
          display: none;
        }
    */
    .blog-preview_header {
      padding-bottom: 10px;
      line-height: 1.8;
    }
  }
}

@media (min-width: 769px) and (max-width: 1700px) {
  body.blog2026.blog2026-main {
    .blog-preview_column {
      width: 100%;
    }

    #blog-lead-section {
      .blog-preview_column:nth-child(1) {margin-right:30px;}
      .blog-preview_column:nth-child(2) {margin-left:30px;}
    }

    .parallax-background-white, .blog-preview, #additional-articles, .headline_container {
      margin: 0;
    }
  }
}

.zitat--dark_background {
  .zitat_container {
    border-radius: 10px;
  }
  .zitat {
    padding: 60px 0 0;
    text-align: center;
  }

  .zitat_text {
    padding: 0;
  }

  .zitat_text blockquote {
    padding-right: 60px;
  }

  .zitat_text, .zitat_author {
    color: #ffffff;
    text-align: center;
  }

  em {
    display: block;
    padding-top: 20px;
    font-family: Lato, sans-serif;
    font-style: normal;
    /*    font-family: "Lato Light Italic";*/
    text-align: center;
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .zitat_author {
    font-size: 1.25rem;
    position: relative;
    margin: 30px;
    padding-bottom: 30px;
  }

  .zitat_author::before {
    content: "";
    position: absolute;
    top: 0;
    left: 42%;
    right: 42%;
    width: 16%;
    height: 2px;
    background-color: #ffffff;
  }

  .zitat_text p {
    text-align: center;
    padding-top: 25px;
    padding-left: 0;
    padding-right: 0;
  }

  .zitat_container {
    border: none;
    background-color: #445266;
    margin-bottom: 0;
  }

  .zitat_symbol--left {
    background-color: rgba(245, 119, 5, 0.9);
    mask-image: url("/templates/4c2021/img/icons/noun-quotation-D3D6DB-closing.png");
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url("/templates/4c2021/img/icons/noun-quotation-D3D6DB-closing.png");
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    left: -21px;
    width: 80px;
  }
}

@media (max-width: 768px) {
  .zitat--dark_background {
    .zitat {
      padding: 40px 0 0;
    }

    .zitat_text blockquote {
      padding-right: 20px;
      padding-left: 30px;
    }

    em {
      font-size: 1.2rem;
    }

    .zitat_author {
      font-size: 0.8rem;
      margin: 15px;
      padding-bottom: 15px;
    }

    .zitat_author::before {
      width: 60px;
    }

    .zitat_symbol--left {
      width: 50px;
      left: -24px;
    }
  }
}

.blogteaser-slider-wrapper {
  position: relative;
  padding: 0 60px 30px;
  padding-top: 65px !important;
}

.blogteaser-slider-wrapper {
  max-width: 100vw;
}

.blogteaser-slider-wrapper .owl-nav {
  position: absolute;
  top: -50px;
  right: 60px;
  margin: 0;
  display: flex;
  gap: 5px;
}

.blogteaser-slider.owl-carousel .owl-nav button {
  background: transparent !important;
  padding: 5px !important;
}

.blogteaser-slider.owl-carousel .owl-nav button span {
  display: block;
  width: 15px;
  height: 24px;
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_blue.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  font-size: 0;
}

.blogteaser-slider.owl-carousel .owl-nav button.owl-prev span {
  transform: scaleX(-1);
}

.blogteaser-slider .owl-stage {
  display: flex;
}

.blogteaser-slider .owl-item {
  display: flex;
}

.blogteaser-slider .blog-preview_item,
.blogteaser-grid .blog-preview_item {
  width: 100%;
  background-color: #f6f6f6;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
}

.blogteaser-slider .blog-preview_image-small,
.blogteaser-grid .blog-preview_image-small {
  height: 180px;
  width: 100%;
  max-width: initial;
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}

.blogteaser-slider .blog-preview_info,
.blogteaser-grid .blog-preview_info {
  flex: 1;
  height: auto;
}

.blogteaser-slider .blog-preview_header,
.blogteaser-grid .blog-preview_header {
  line-height: 1.6;
  margin-top: 10px;
  padding-bottom: 10px;
}

.blogteaser-slider .blog-preview_meta,
.blogteaser-grid .blog-preview_meta {
  justify-content: flex-end;
  padding-bottom: 5px;
}

.blogteaser-cta {
  display: inline-block;
  background-color: transparent;
  border: 1px solid #ff7900;
  color: #ff7900;
  border-radius: 10px;
  padding: 6px 16px;
  font-size: 0.9rem;
  cursor: pointer;
}

.blogteaser-grid {
  display: flex;
  gap: 20px;
  padding: 0 60px 30px;
  justify-content: center;
  width: 100%;
}

.blogteaser-grid .blog-preview_item {
  flex: 0 1 435px;
}

@media only screen and (max-width: 991px) {
  .blogteaser-grid .blog-preview_item {
    flex: 0 0 calc(50% - 10px);
  }
}

@media only screen and (max-width: 575px) {
  .blogteaser-slider-wrapper {
    padding: 0 0 30px;
    padding-left: 15px;
    overflow: hidden;
  }

  .blogteaser-slider-wrapper .owl-nav {
    right: 15px;
  }

  .blogteaser-slider.owl-carousel .owl-stage {
    padding-left: 0 !important;
  }

  .blogteaser-slider-wrapper .owl-stage-outer {
    overflow: visible;
  }

  .blogteaser-slider .blog-preview_info,
  .blogteaser-grid .blog-preview_info {
    padding: 5px 10px 10px;
  }

  .blogteaser-grid {
    padding: 0 15px 30px;
    flex-direction: column;
  }

  .blogteaser-grid .blog-preview_item {
    flex: 0 0 auto;
    max-width: 445px;
  }
}

/*
  4C navigation reference import.
  Source: /Users/kiahesel/Downloads/navigation-4c2026.css
  Keep this block immediately before the final 2026 content/hero overrides.
*/
/*
  4C navigation extraction for 4c2026.
  Sources: styles.css, footer_new.css from the current 4c2021/css folder.
  Generated on 2026-06-30.
  Matched header, main navigation, search/subnav, menu icon, and footer navigation selectors.
  Generated hash and minified files were not repeated because they are compiled duplicates of these rules.
*/

/* Source: styles.css */
a {
  color: #525252;
  text-decoration: none;
}

a:hover {
  color: #525252;
  text-decoration: none;
}

.header {
  display: grid;
  grid-template-columns: 175px auto 110px;
  padding: 27px 60px 0 60px;
  height: calc(45px + 27px);
}

.header_logo {
  z-index: 3;
  height: 45px;
}

.header_logo img {
  height: 45px;
  max-width: 100%;
}

.header_actions, .header_nav {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header_nav {
  z-index: 3;
  line-height: 45px;
}

.header_actions {
  padding-left: 15px;
  z-index: 3;
}

.header_action {
  color: #fff;
  padding-left: 20px;
  font-size: 1.5rem;
  font-weight: 400;
}

.header_action:hover {
  color: #cdc4b5;
}

.header.sticky {
  position: fixed;
  z-index: 10;
  top: 0;
  width: 100%;
  max-width: 1920px;
  height: 99px;
  background-color: rgba(48, 63, 85, .9);
}

.action_search {
  cursor: pointer;
}

.action_contact {
  position: relative;
  flex-shrink: 0;
  width: 140px;
  height: 34px;
  margin-right: 30px;
  background-repeat: no-repeat;
  background-size: contain;
}

.action_contact-mobile {
  display: none;
}

.action_4cinsights {
  background-color: #ff7900;
  border-radius: 100px;
  white-space: nowrap;
  font-size: 1.2rem;
  line-height: 34px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center;
  color: white;
}

.action_4cinsights:hover {
  color: white;
}

.icon_search {
  background-image: url(/templates/4c2021/img/icons/noun_magnifier_1056214.png);
  width: 25px;
  height: 25px;
  background-size: 25px;
  flex-shrink: 0;
}

.search_wrapper {
  position: absolute;
  width: 100%;
  max-width: 1520px;
  padding: 0 60px;
  top: 248px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.search_wrapper form {
  position: relative;
}

.search_field {
  width: 100%;
  border: 1px solid #fff;
  height: 53px;
  padding: 0 65px;
  background-color: transparent;
  outline: 0;
  font-size: 1rem;
  color: #fff;
  background-image: url(/templates/4c2021/img/icons/noun_magnifier_1056214.png);
  background-repeat: no-repeat;
  background-size: 28px auto;
  background-position: 18px center;
}

.search_button {
  width: 50px;
  position: absolute;
  height: 53px;
  z-index: 100;
  background-color: #fff;
  left: calc(100% - 50px);
  background-image: url(/templates/4c2021/img/icons/noun_Arrow_3134195_right_blue.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 30px;
  transition: background-image .4s ease-in-out;
}

.search_button:hover {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_sand.png");
}

.search_background, .subnav_background {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 500px;
  z-index: 3;
  background-color: rgba(48, 63, 85, .9);
}

.search_background.sticky, .subnav_background.sticky {
  position: fixed;
  top: 99px;
  height: calc(500px - 99px);
}

.nav {
  position: relative;
  letter-spacing: .025rem;
  padding-right: 150px;
}

.nav_icon {
  z-index: 3;
  align-self: center;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.nav ul {
  margin: 0;
  padding-left: 0;
}

.nav li {
  list-style: none;
  white-space: nowrap;
}

.nav_root {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 0;
}

.nav-not-linked span:hover {
  color: #cdc4b5;
  border-bottom: 1px solid #cdc4b5;
}

.nav_item {
  padding-left: 50px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
}

.nav_item:not(a) {
  cursor: default;
}

.nav_item a {
  color: #fff;
}

.nav_item a:hover {
  color: #cdc4b5;
  border-bottom: 1px solid #cdc4b5;
}

.nav_submenu {
  display: none;
  position: absolute;
  padding-top: 15px;
  padding-left: 0;
}

.nav_submenu-item {
  position: relative;
  font-size: 1rem;
  line-height: 2;
}

.nav_products {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  padding-left: 30px;
}

.nav_products-item {
  position: relative;
  font-size: 1rem;
  line-height: 2;
}

.nav_teaser {
  position: absolute;
  display: none;
  top: 0;
  left: 100%;
  padding-left: 30px;
}

.nav_teaser li.teaser a {
  cursor: pointer;
}

.nav_block {
  width: 250px;
  line-height: 2.2;
  text-align: center;
}

.nav_block-item {
  color: #525252;
}

.nav_block-item a:hover {
  color: #303f55;
  font-family: "Lato Bold", sans-serif;
}

.nav_block-item-uppercase {
  font-family: "Lato Bold", sans-serif;
  text-transform: uppercase;
}

a#menu_icon {
  position: absolute;
  left: 0;
  top: 3px;
  z-index: 200;
  cursor: pointer;
  background-position: center;
  width: 30px;
  height: 30px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

a#menu_icon span {
  display: block;
  position: absolute;
  left: 0;
  height: 3px;
  width: 30px;
  background: #fff;
  opacity: 1;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

a#menu_icon:hover span {
  background: #fff !important;
}

a#menu_icon span:first-child {
  top: 0;
}

a#menu_icon span:nth-child(2) {
  top: 10px;
}

a#menu_icon span:nth-child(3) {
  top: 20px;
}

a#menu_icon.open span:first-child {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

a#menu_icon.open span:nth-child(2) {
  opacity: 0;
}

a#menu_icon.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nav.nav-2023 {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.nav.nav-2023 .nav_root {
  justify-content: center;
}

.nav.nav-2023 .nav_root > .nav_item {
  padding: 0 25px;
  border-right: 2px solid #fff;
}

.nav.nav-2023 .nav_root > .nav_item:last-of-type {
  border-right: none;
}

.nav.nav-2023 .nav_item a {
  cursor: pointer;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.nav.nav-2023 .nav_item a:hover {
  border: none;
}

.nav.nav-2023 .nav_submenu {
  display: flex;
  flex-wrap: wrap;
  /*  left: calc(48% - 175px);*/
  left: 39%;
  right: -110px;
  padding-top: 59px;
  padding-left: 80px;
}

.nav.nav-2023 .nav_submenu_mobile {
  display: none;
}

.nav.nav-2023 .nav_hot-topics {
  position: absolute;
  /*left: calc(25% - 175px);*/
  left: 22%;/*25%;*/
  width: 18%;/*24%;*/
  margin-top: 50px;
  text-align: left;
}

.nav.nav-2023 .nav_teaser-text {
  position: absolute;
  left: -175px;
  /*width: 24%;*/
  width: calc(25% - 60px + 175px);
  margin-top: 50px;
  border-right: 2px solid #fff;
  text-align: right;
  padding-right: 60px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.nav.nav-2023 .nav_teaser-text > li > div.teaser-text {
  white-space: normal;
  font-family: "Lato Bold", sans-serif;
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 2.18rem;
  border-left: solid 10px #ff7900;
  padding-bottom: 20px;
  padding-left: 30px;
  text-align: left;
}

.nav.nav-2023 .nav_hot-topics .subnav_item {
  width: 100%;
  padding: 0 30px;
  border-right: solid 2px #fff;
  position: relative;
  line-height: 45px;
}

/*.nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer).selected, .nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer):hover {*/
.nav.nav-2023 .nav_hot-topics .subnav_item_withchildren:not(.spacer):hover {
  border-right: none;
}

/*.nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer):hover:after, .nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer).selected:after {*/
.nav.nav-2023 .nav_hot-topics .subnav_item_withchildren:not(.spacer):hover:after {
  content: ' ';
  background-image: url(/templates/4c2021/img/navigation/nav_arrow_right.svg);
  background-repeat: no-repeat;
  width: 30px;
  height: 24px;
  display: block;
  position: absolute;
  right: -22px;
  top: 12px;
}

.nav.nav-2023 .nav_hot-topics .subnav_item_withchildren.active:not(.spacer):after {
  content: ' ';
  background-image: url(/templates/4c2021/img/navigation/nav_arrow_right.svg);
  background-repeat: no-repeat;
  width: 30px;
  height: 24px;
  display: block;
  position: absolute;
  right: -22px;
  top: 12px;
}

.nav.nav-2023 .nav_hot-topics .subnav_item_withchildren.active:not(.spacer) {
  border-right: none;
}

.nav.nav-2023 .subnav_item {
  width: 50%;
  justify-content: space-between;
  font-size: 1.1rem;
  line-height: 1.5;
  font-family: "Lato Bold", sans-serif
}

.nav.nav-2023 .subnav_item ul.nav_submenuL3 li {
  font-family: "Lato", sans-serif !important;
}

.nav.nav-2023 .subnav_item_singlerow {
  width: 100%;
}

.nav.nav-2023 .subnav_item--bold {
  font-family: "Lato Bold", sans-serif;
}

.nav.nav-2023 .subnav_item--pb {
  padding-bottom: 22px;
}

.nav.nav-2023 .subnav_item--pr {
  padding-right: 22px;
}

.nav.nav-2023 .nav_submenuL3 {
  font-family: Lato, sans-serif;
}

.nav.nav-2023 .nav_submenuL3 .subnav_item {
  width: 100%;
}

.nav.nav-2023 .subnav_insights {
  height: 30px;
  line-height: 30px;
  background-color: #fff;
  color: #303f55;
  margin-top: 15px;
  padding: 0 8px;
  font-size: 1rem;
  border-radius: 4px;
  text-align: center;
}

s .nav.nav-2023 .subnav_insights:hover {
  background-color: #cdc4b5;
}

.nav.nav-2023 .subnav_insights--pt {
  margin-top: 150px;
}

.nav.nav-2023 .nav_footer {
  display: none;
}

.nav.nav-2023 .subnav--align-right {
  display: flex;
  justify-content: flex-end;
}

.nav--open .banner {
  pointer-events: none;
}

.footer {
  position: relative;
  width: 100%;
  background-color: #f6f6f6;
}

.footer_top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 100px 60px 150px;
}

.footer_logo {
  height: 50px;
}

.footer_nav {
  display: flex;
  padding-top: 75px;
}

.footer_social-media i {
  padding: 0 10px;
}

.footer_bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 120px;
  background-color: #303f55;
  padding: 0 200px;
}

.footer_copyright {
  color: #fff;
}

.footer_menu-bottom {
  display: none;
}

.home2023 .footer_top {
  display: none;
}

.home2023 .footer_bottom {
  flex-direction: row-reverse;
  height: 100px;
  padding: 0 60px;
}

.home2023 .footer_menu-bottom {
  display: block;
}

.home2023 .footer_menu-bottom .nav_block-item {
  display: inline-block;
  padding: 0 25px;
}

.home2023 .footer_menu-bottom .nav_block-item a {
  color: #fff;
}

.home2023 .footer_menu-bottom .nav_block-item a:hover {
  font-family: Lato, sans-serif;
  color: #cdc4b5;
}

a#menu_icon span:nth-child(1) {
  top: 0;
}

a#menu_icon.open span:nth-child(1) {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

@media only screen and (min-width: 1448px) {
.nav_icon {
    display: none;
  }

a#menu_icon {
    display: none;
  }

.nav.nav-2023 .subnav_itemL2:nth-child(7), .nav.nav-2023 .subnav_itemL2:nth-child(8), .nav.nav-2023 .subnav_itemL2:nth-child(9) {
      /*
    padding-bottom: 0;
    */
  }
}

@media only screen and (min-width: 768px) {
.desktop--hidden {
    display: none !important;
  }

.mobile--hidden {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1299px) {
.home2023 .footer_bottom {
    flex-direction: row;
    flex-wrap: wrap;
    height: 125px;
  }

.home2023 .footer_bottom :first-child {
    order: 3;
  }

.home2023 .footer_bottom :nth-child(2) {
    order: 2;
  }

.home2023 .footer_bottom :nth-child(3) {
    order: 1;
  }

.home2023 .footer_copyright {
    width: 100%;
  }

.home2023 .footer_menu-bottom {
    width: 50%;
  }

.home2023 .footer_menu-bottom .nav_block-item {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 0) and (max-width: 991px) {
.footer_bottom {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 0) and (max-width: 767px) {
.header {
    padding-left: 15px;
    padding-right: 15px;
  }

.desktop--hidden {
    display: block;
  }

.mobile--hidden {
    display: none !important;
  }

.nav_item {
    padding-left: 15px;
  }

.nav.nav-2023 .nav_root > .nav_item {
    padding-left: 15px;
  }

.nav.nav-2023 .nav_footer {
    padding-left: 15px;
    padding-right: 15px;
  }

.search_wrapper {
    top: 180px;
  }

.footer_logo {
    height: 40px;
  }

.footer_top {
    padding: 60px 15px;
  }

.footer_nav {
    flex-direction: column;
  }

.footer_bottom {
    flex-flow: column;
    height: auto;
    padding-top: 40px;
  }

.footer_bottom .footer_logo {
    order: 1;
  }

.footer_copyright {
    order: 2;
    text-align: center;
    padding: 33px 15px 15px;
  }

.home2023 .footer_bottom {
    flex-direction: column;
    height: auto;
    padding: 30px 0 15px;
  }

.home2023 .footer_bottom :first-child {
    order: 3;
  }

.home2023 .footer_bottom :nth-child(2) {
    order: 2;
  }

.home2023 .footer_bottom :nth-child(3) {
    order: 1;
  }

.home2023 .footer_copyright {
    width: auto;
  }

.home2023 .footer_menu-bottom {
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    width: auto;
    height: auto;
    line-height: 2;
  }

.home2023 .footer_menu-bottom .nav_block-item {
    padding: 0;
  }
}

@media only screen and (min-width: 0) and (max-width: 575px) {
.header {
    grid-template-columns: 25% 40% 35%;
    height: 65px;
    align-items: center;
  }

.header_logo {
    height: 40px;
    display: flex;
    align-items: center;
  }

.header_logo img {
    height: auto;
  }

.search_wrapper {
    padding: 0 15px;
  }
}

@media only screen and (min-width: 1448px) {
.nav_icon {
    display: none;
  }

a#menu_icon {
    display: none;
  }

.nav.nav-2023 .nav_submenu {
    max-height: 540px;
  }

.nav.nav-2023 .subnav_itemL2:nth-child(7), .nav.nav-2023 .subnav_itemL2:nth-child(8), .nav.nav-2023 .subnav_itemL2:nth-child(9) {
      /*
    padding-bottom: 0;
       */
  }
}

@media only screen and (min-width: 768px) {
.desktop--hidden {
    display: none !important;
  }

.mobile--hidden {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1299px) {
.home2023 .footer_bottom {
    flex-direction: row;
    flex-wrap: wrap;
    height: 125px;
  }

.home2023 .footer_bottom :nth-child(1) {
    order: 3;
  }

.home2023 .footer_bottom :nth-child(2) {
    order: 2;
  }

.home2023 .footer_bottom :nth-child(3) {
    order: 1;
  }

.home2023 .footer_copyright {
    width: 100%;
  }

.home2023 .footer_menu-bottom {
    width: 50%;
  }

.home2023 .footer_menu-bottom .nav_block-item {
    padding: 0 20px;
  }
}

@media only screen and (min-width: 0) and (max-width: 991px) {
.footer_bottom {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (min-width: 0) and (max-width: 1447px) {
.header {
    grid-template-columns: 25% 50% 25%;
    justify-content: space-between;
  }

.header_logo {
    text-align: center;
  }

.header_nav {
    display: none;
    position: absolute;
    left: 0;
    top: 90px;
    width: 100%;
    height: auto;
    justify-content: flex-start;
  }

.header_nav-visible {
    display: block;
  }

.subnav_background {
    background-color: rgba(48, 63, 85, .9);
    height: 100%;
    overscroll-behavior: contain;
  }

.subnav_background.sticky {
    height: 100%;
  }

.nav {
    width: 100%;
  }

.nav_root {
    flex-direction: column;
    align-items: flex-start;
  }

.nav_item {
    line-height: 2;
    padding-left: 60px;
  }

.nav_submenu {
    position: relative;
    padding-top: 0;
    padding-left: 20px;
  }

.nav_submenu-item {
    line-height: 2.5;
  }

.nav_products {
    position: relative;
    left: 0;
    padding-left: 20px;
  }

.nav_products-item {
    line-height: 2.5;
  }

.action_contact {
    display: none;
  }

.nav.nav-2023 {
    display: block;
    box-sizing: border-box;
    width: 100%;
    padding-right: 60px;
    overscroll-behavior: contain;
    overflow-y: auto;
    -ms-overflow-y: auto;
  }

.nav.nav-2023 .nav_hot-topics {
    display: none;
    position: relative;
    width: 100%;
    left: 0;
    margin-top: 0px;
    padding-bottom: 0;
    text-align: left;
    border-right: none;
  }

.nav.nav-2023 .nav_hot-topics .subnav_item:not(.subnav_item--bold) {
    font-size: 1rem;
    padding: 0;
  }

.nav.nav-2023 .nav_hot-topics .subnav_item {
    border-right: none;
  }

.nav.nav-2023 .subnav_insights {
    display: inline-block;
    width: 120px;
  }

.nav.nav-2023 .subnav_insights-wrapper {
    width: 100%;
    margin-bottom: 50px;
  }

.nav.nav-2023 .subnav_insights--pt {
    margin-top: 0;
  }

.nav.nav-2023 .nav_root > .nav_item {
    width: 100%;
    padding-left: 60px;
    padding-right: 0;
    border-right: none;
  }

.nav.nav-2023 .nav_submenu {
    left: 0;
    right: 0;
    padding-top: 0;
    padding-left: 0;
  }

.nav.nav-2023 .nav_submenu_mobile {
    width: 100%;
    margin: 0;
    padding: 0;
  }

.nav.nav-2023 .submenu_wrap {
    display: block; /*flex*/
    /*    flex-direction: column-reverse;*/
    width: calc(100% - 15px);
    max-width: 425px;
  }

.nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer):hover:after, .nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer).selected:after {
    display: none;
  }

.nav.nav-2023 .nav_hot-topics .subnav_item_withchildren.active:not(.spacer):after {
    display: none;
  }

.nav.nav-2023 .nav_hot-topics .subnav_item_withchildren.active > .nav_submenu_mobile {
    margin-top: 4px;
  }

.nav.nav-2023 .nav_submenuL3 {
    display: none;
    padding-bottom: 15px;
  }

.nav.nav-2023 .subnav_item--bold.clicked > .nav_submenuL3 {
    display: block;
  }

.nav.nav-2023 .nav_submenuL3 .subnav_item a {
    color: #fff;
    font-size: 1rem;
  }

.nav.nav-2023 .nav_item a {
    position: relative;
    line-height: 2;
  }

.nav.nav-2023 .nav_arrow {
    position: absolute;
    z-index: 20;
    width: 40px;
    height: 100%;
  }

.nav.nav-2023 .subnav_arrow {
    position: absolute;
    z-index: 20;
    width: 30px;
    height: 30px;
    right: 0;
  }

.nav.nav-2023 .nav_item_first-level {
    display: inline;
  }

.nav.nav-2023 .nav_item_first-level:after {
    display: inline-block;
    vertical-align: text-bottom;
    content: "";
    width: 30px;
    height: 29px;
    background-image: url("../img/icons/noun_Arrow_3134195_right_white.png");
    background-repeat: no-repeat;
    background-size: auto 26px;
    background-position: right;
  }

.nav.nav-2023 .nav_item.clicked > .nav_item_first-level:after {
    margin-left: 10px;
    transform: rotate(90deg);
    vertical-align: initial;
  }

.nav.nav-2023 .subnav_item {
    width: 100%;
  }

.nav.nav-2023 .subnav_item--pr {
    padding-right: 0;
  }

.nav.nav-2023 .subnav_item--pb {
    padding-bottom: 0;
  }

.nav.nav-2023 .subnav_item--bold {
    font-family: Lato, sans-serif;
    color: #cdc4b5;
  }

.nav.nav-2023 .subnav_item--bold a {
    color: #cdc4b5;
    position: relative;
    padding-right: 35px;
  }

.nav.nav-2023 .subnav_item--bold > a:after {
    position: absolute;
    top: 4px;
    right: 0;
    display: inline-block;
    vertical-align: text-bottom;
    content: "";
    width: 30px;
    height: 26px;
    background-image: url("../img/icons/noun_Arrow_3134195_right_sand.png");
    background-repeat: no-repeat;
    background-size: auto 24px;
    background-position: right;
  }

.nav.nav-2023 .subnav_item--bold.clicked > a:after {
    top: -3px;
    right: -3px;
    transform: rotate(90deg);
    vertical-align: initial;
  }

.nav.nav-2023 .nav_footer {
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 40px 60px 0;
  }

.nav.nav-2023 .nav_footer .social-media {
    position: relative;
    left: auto;
    top: auto;
  }

.nav.nav-2023 .nav_footer .social-media_item {
    padding-right: 15px;
  }

.nav.nav-2023 .nav_footer .action_select-lang {
    font-size: 1.5rem;
    color: #fff;
  }

.nav.nav-2023 .subnav_insights--hidden {
    display: none !important;
  }

.action_contact-mobile {
    display: block;
    padding-right: 23px;
    padding-top: 3px;
  }

.header.sticky {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding-top: 0;
  }

.header.sticky .header_logo {
    display: none;
  }

.search_background.sticky, .subnav_background.sticky {
    top: 50px;
    height: calc(500px - $subnav-sticky-top);
  }
}

@media only screen and (min-width: 0) and (max-width: 767px) {
.header {
    padding-left: 15px;
    padding-right: 15px;
  }

.desktop--hidden {
    display: block;
  }

.mobile--hidden {
    display: none !important;
  }

.nav_item {
    padding-left: 15px;
  }

.nav.nav-2023 .nav_root > .nav_item {
    padding-left: 15px;
  }

.nav.nav-2023 {
    padding-right: 15px;
  }

.nav.nav-2023 .nav_footer {
    padding-left: 15px;
    padding-right: 15px;
  }

.search_wrapper {
    top: 180px;
  }

.footer_logo {
    height: 40px;
  }

.footer_top {
    padding: 60px 15px;
  }

.footer_nav {
    flex-direction: column;
  }

.footer_bottom {
    flex-flow: column;
    height: auto;
    padding-top: 40px;
  }

.footer_bottom .footer_logo {
    order: 1;
  }

.footer_copyright {
    order: 2;
    text-align: center;
    padding: 33px 15px 15px;
  }

.home2023 .footer_bottom {
    flex-direction: column;
    height: auto;
    padding: 30px 0 15px;
  }

.home2023 .footer_bottom :nth-child(1) {
    order: 3;
  }

.home2023 .footer_bottom :nth-child(2) {
    order: 2;
  }

.home2023 .footer_bottom :nth-child(3) {
    order: 1;
  }

.home2023 .footer_copyright {
    width: auto;
  }

.home2023 .footer_menu-bottom {
    display: flex;
    flex-direction: column;
    padding-top: 30px;
    width: auto;
    height: auto;
    line-height: 2;
  }

.home2023 .footer_menu-bottom .nav_block-item {
    padding: 0;
  }
}

@media only screen and (min-width: 0) and (max-width: 575px) {
.header {
    grid-template-columns: 25% 40% 35%;
    height: 65px;
    align-items: center;
  }

.header_logo {
    height: 40px;
    display: flex;
    align-items: center;
  }

.header_logo img {
    height: auto;
  }

.search_wrapper {
    padding: 0 15px;
  }
}

/* Source: footer_new.css */
/* Main footer */
.footer.redesign {
    position: relative;
    color: #525252;
    font-size: 1rem;
    line-height: 1.2;
}

/* Back to top button */
.footer.redesign #backtotop {
    position: fixed;
    width: 53px;
    height: 49px;
    right: 0;
    z-index: 1000;
}

.footer.redesign .back-to-top {
    display: flex;
    width: 53px;
    height: 49px;
    background-color: #a0b2b9;
}

.footer.redesign .back-to-top_arrow {
    width: 1.5rem;
    height: 15px;
}

/* Footer bottom section */
.footer.redesign .footer_redesign_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    padding: 2rem 2rem .5rem;
    background-color: #303f55;
    color: #fff;
}

.footer.redesign .footer_redesign_bottom > * {
    width: 100%;
}

/* Navigation menu */
.footer.redesign .footer_menu-bottom {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer.redesign .footer_nav-column {
    flex: 1;
    padding: 0 2rem;
}

.footer.redesign .footer_nav-column--right {
    text-align: right;
    border-right: 1px solid #ffffff;
    padding-right: 2rem;
    padding-left: 0;
}

.footer.redesign .footer_nav-column--left {
    padding-left: 2rem;
    padding-right: 0;
}

.footer.redesign .footer_nav-item {
    margin-bottom: 1rem;
}

.footer.redesign .footer_nav-item-title {
    display: block;
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 22.4px;
    line-height: 1.2;
    text-decoration: none;
}

.footer.redesign .footer_nav-submenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer.redesign .footer_nav-submenu li {
    margin-bottom: 0.25rem;
}

.footer.redesign .footer_nav-submenu a {
    color: #cccccc;
    text-decoration: none;
    line-height: 1.6;
    font-size: 0.9em;
}

/* Social media section */
.footer.redesign .footer_middle-wrapper {
    margin: 20px 0;
}

.footer.redesign .footer_links {
    display: flex;
    justify-content: center;
}

.footer.redesign .footer_links.socials a {
    padding: 10px;
    color: #fff;
}

.footer.redesign .svg-inline--fa {
    width: auto;
    height: 1.5rem;
    color: #fff;
}

/* Footer bottom area */
.footer.redesign .footer_bottom-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer.redesign .footer_logo-wrapper {
    flex: 1;
}

.footer.redesign .footer_logo {
    width: 185px;
    height: 50px;
}

.footer.redesign .footer_links {
    
    display: flex;
    flex: 1;
    gap: 1rem;
}

.footer.redesign .footer_links a {
    color: #fff;
    text-decoration: none;
}

.footer.redesign .footer_copyright {
    flex: 1;
    color: #fff;
    text-align: right;
}

/* Source: compiled footer navigation rules present in generated 4c2021 CSS files */
.footer_nav-insights {
  position: absolute;
  bottom: 20px;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  background-color: #FFFFFF;
  color: #303f55;
  padding: 0 8px;
  font-size: 1rem;
  border-radius: 4px;
  text-align: center;
}

.footer_nav-insights:hover {
  background-color: #cdc4b5;
}

@media only screen and (min-width: 0) and (max-width: 499px) {
  .footer.redesign .footer_menu-bottom {
    flex-direction: column;
    align-items: center;
  }

  .footer.redesign .footer_nav-column--right {
    text-align: center;
    border-right: none;
    padding: 0;
  }

  .footer.redesign .footer_nav-column--left {
    text-align: center;
    padding: 0;
    margin-top: 2rem;
  }

  .footer.redesign .footer_links,
  .footer.redesign .footer_copyright {
    text-align: center;
  }
}

@media only screen and (min-width: 0) and (max-width: 767px) {
  .footer.redesign .footer_links:not(.socials),
  .footer_bottom-wrapper {
    flex-direction: column;
  }

  .footer.redesign .footer_bottom-wrapper .footer_logo-wrapper {
    margin: 2rem 0;
  }

  .footer.redesign .footer_menu-bottom {
    flex-direction: column;
  }

  .footer.redesign .footer_nav-column--left {
    padding-left: 0;
    padding-top: 20px;
    text-align: center;
  }

  .footer.redesign .footer_nav-column--right {
    padding-right: 0;
    text-align: center;
    border-right: none;
  }

  .footer_nav-insights {
    position: relative;
    bottom: initial !important;
    margin-bottom: 10px;
  }
}

/*
  2026 content frame.
  Keep this unlayered and at the end so the imported 2021 template CSS cannot
  reset the new page frame back to the old full-width/padding model.
*/
body.sub #content-sub > .content-with-padding,
body:not(.home) #content-sub > .content-with-padding {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(var(--content-wide), calc(100vw - (var(--page-gutter) * 2)));
  max-width: var(--content-wide);
  margin-inline: auto;
  padding: var(--space-xl) 0 var(--space-section);
}

body.sub #content-sub > .content-with-padding > .breadcrumbs,
body:not(.home) #content-sub > .content-with-padding > .breadcrumbs {
  width: 100%;
  max-width: var(--content-default);
  margin: 0 auto var(--space-lg);
  padding: 0;
}

body.sub #content-sub > .content-with-padding > .content-with-border,
body.sub #content-sub > .content-with-padding > .tinymce,
body.sub #content-sub > .content-with-padding > .form,
body.sub #content-sub > .content-with-padding > .sf_row,
body:not(.home) #content-sub > .content-with-padding > .content-with-border,
body:not(.home) #content-sub > .content-with-padding > .tinymce,
body:not(.home) #content-sub > .content-with-padding > .form,
body:not(.home) #content-sub > .content-with-padding > .sf_row {
  width: 100%;
  max-width: var(--content-default);
  margin-right: auto;
  margin-left: auto;
  padding-right: 0;
  padding-left: 0;
}

body.sub #content-sub .content-with-border,
body:not(.home) #content-sub .content-with-border {
  box-sizing: border-box;
  max-width: var(--content-default);
  padding-right: 0;
  padding-left: 0;
}

@media (max-width: 48rem) {
  body.sub #content-sub > .content-with-padding,
  body:not(.home) #content-sub > .content-with-padding {
    width: min(100% - (var(--page-gutter) * 2), var(--content-wide));
    padding-top: var(--space-lg);
    padding-bottom: var(--space-2xl);
  }
}

/*
  2026 content typography.
  Scope this to the CMS content area only: header, main navigation, search,
  footer chrome and legacy menu behaviour intentionally keep their 2021 rules.
*/
body.sub #content-sub > .content-with-padding,
body:not(.home) #content-sub > .content-with-padding {
  color: var(--color-text);
  font-family: var(--font-regular);
  font-size: var(--type-body);
  line-height: var(--line-body);
}

body.sub #content-sub > .content-with-padding :is(.content-with-padding, .content-with-border, .tinymce, .text, .textwithdownload, .download-ebooklet_text, .list, .form, .sf_row, .sf_column),
body:not(.home) #content-sub > .content-with-padding :is(.content-with-padding, .content-with-border, .tinymce, .text, .textwithdownload, .download-ebooklet_text, .list, .form, .sf_row, .sf_column) {
  color: var(--color-text);
  font-family: var(--font-regular);
}

body.sub #content-sub > .content-with-padding :is(p, li, dt, dd, blockquote, figcaption, label, input, textarea, select, table, th, td),
body:not(.home) #content-sub > .content-with-padding :is(p, li, dt, dd, blockquote, figcaption, label, input, textarea, select, table, th, td) {
  color: var(--color-text);
  font-family: var(--font-regular);
  font-size: var(--type-body);
  line-height: var(--line-longform);
}

body.sub #content-sub > .content-with-padding :is(strong, b, th),
body:not(.home) #content-sub > .content-with-padding :is(strong, b, th) {
  font-family: var(--font-bold);
  font-weight: 700;
}

body.sub #content-sub > .content-with-padding :is(em, i):not([class*="fa"]):not([class^="icon"]):not([class*=" icon"]),
body:not(.home) #content-sub > .content-with-padding :is(em, i):not([class*="fa"]):not([class^="icon"]):not([class*=" icon"]) {
  font-family: var(--font-italic);
  font-style: italic;
}

body.sub #content-sub > .content-with-padding :is(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6),
body:not(.home) #content-sub > .content-with-padding :is(h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6) {
  color: var(--color-heading);
  letter-spacing: 0;
  text-transform: none;
}

body.sub #content-sub > .content-with-padding :is(h1, .h1),
body:not(.home) #content-sub > .content-with-padding :is(h1, .h1) {
  font-family: var(--font-bold);
  font-size: var(--type-hero);
  font-weight: 700;
  line-height: var(--line-heading);
}

body.sub #content-sub > .content-with-padding :is(h2, .h2),
body:not(.home) #content-sub > .content-with-padding :is(h2, .h2) {
  font-family: var(--font-light);
  font-size: var(--type-section-title);
  font-weight: 300;
  line-height: var(--line-heading);
}

body.sub #content-sub > .content-with-padding :is(h3, .h3),
body:not(.home) #content-sub > .content-with-padding :is(h3, .h3) {
  font-family: var(--font-bold);
  font-size: var(--type-card-title);
  font-weight: 700;
  line-height: var(--line-title);
}

body.sub #content-sub > .content-with-padding :is(h4, .h4, h5, .h5, h6, .h6),
body:not(.home) #content-sub > .content-with-padding :is(h4, .h4, h5, .h5, h6, .h6) {
  font-family: var(--font-bold);
  font-size: var(--type-lead);
  font-weight: 700;
  line-height: var(--line-title);
}

body.sub #content-sub > .content-with-padding :is(.tinymce, .text, .textwithdownload, .download-ebooklet_text, .content-with-border) > * + *,
body:not(.home) #content-sub > .content-with-padding :is(.tinymce, .text, .textwithdownload, .download-ebooklet_text, .content-with-border) > * + * {
  margin-top: var(--space-md);
}

body.sub #content-sub > .content-with-padding :is(.tinymce, .text, .textwithdownload, .download-ebooklet_text, .content-with-border) > :is(h2, .h2, h3, .h3) + *,
body:not(.home) #content-sub > .content-with-padding :is(.tinymce, .text, .textwithdownload, .download-ebooklet_text, .content-with-border) > :is(h2, .h2, h3, .h3) + * {
  margin-top: var(--space-sm);
}

body.sub #content-sub > .content-with-padding :is(.tinymce, .text, .textwithdownload, .download-ebooklet_text, .content-with-border) > :is(h2, .h2, h3, .h3):not(:first-child),
body:not(.home) #content-sub > .content-with-padding :is(.tinymce, .text, .textwithdownload, .download-ebooklet_text, .content-with-border) > :is(h2, .h2, h3, .h3):not(:first-child) {
  margin-top: var(--space-2xl);
}

body.sub #content-sub > .content-with-padding :is(a, .text-link),
body:not(.home) #content-sub > .content-with-padding :is(a, .text-link) {
  color: var(--color-link);
  text-decoration-color: rgba(239, 125, 50, 0.65);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

body.sub #content-sub > .content-with-padding :is(a, .text-link):hover,
body:not(.home) #content-sub > .content-with-padding :is(a, .text-link):hover {
  color: var(--color-link-hover);
}

body.sub #content-sub > .content-with-padding :is(ul, ol),
body:not(.home) #content-sub > .content-with-padding :is(ul, ol) {
  padding-left: 1.25rem;
}

body.sub #content-sub > .content-with-padding :is(li + li),
body:not(.home) #content-sub > .content-with-padding :is(li + li) {
  margin-top: var(--space-xs);
}

body.sub #content-sub > .content-with-padding :is(.breadcrumbs, .breadcrumbs a, .breadcrumbs li),
body:not(.home) #content-sub > .content-with-padding :is(.breadcrumbs, .breadcrumbs a, .breadcrumbs li) {
  font-family: var(--font-regular);
  font-size: var(--type-small);
  line-height: var(--line-body);
}

/*
  2026 content lists.
  Legacy 2021 CSS uses image bullets for .tinymce/.text lists; reset those only
  inside the page content frame so navigation and component-specific lists keep
  their existing behaviour.
*/
body.sub #content-sub > .content-with-padding :is(.tinymce, .text, .textwithdownload, .download-ebooklet_text, .content-with-border) ul,
body.sub #content-sub > .content-with-padding ul.list,
body:not(.home) #content-sub > .content-with-padding :is(.tinymce, .text, .textwithdownload, .download-ebooklet_text, .content-with-border) ul,
body:not(.home) #content-sub > .content-with-padding ul.list {
  padding-left: 1.4rem;
  list-style-image: none;
  list-style-position: outside;
  list-style-type: disc;
}

body.sub #content-sub > .content-with-padding :is(.tinymce, .text, .textwithdownload, .download-ebooklet_text, .content-with-border) ol,
body.sub #content-sub > .content-with-padding ol.list,
body:not(.home) #content-sub > .content-with-padding :is(.tinymce, .text, .textwithdownload, .download-ebooklet_text, .content-with-border) ol,
body:not(.home) #content-sub > .content-with-padding ol.list {
  padding-left: 1.4rem;
  list-style-image: none;
  list-style-position: outside;
  list-style-type: decimal;
}

body.sub #content-sub > .content-with-padding :is(.tinymce, .text, .textwithdownload, .download-ebooklet_text, .content-with-border, .list) li,
body:not(.home) #content-sub > .content-with-padding :is(.tinymce, .text, .textwithdownload, .download-ebooklet_text, .content-with-border, .list) li {
  padding-left: 0.2rem;
  list-style-image: none;
}

body.sub #content-sub > .content-with-padding :is(.tinymce, .text, .textwithdownload, .download-ebooklet_text, .content-with-border, .list) li::marker,
body:not(.home) #content-sub > .content-with-padding :is(.tinymce, .text, .textwithdownload, .download-ebooklet_text, .content-with-border, .list) li::marker {
  color: var(--color-action-primary);
}

/*
  2026 hero banner.
  The banner is a sibling before .content-with-padding, so it needs its own
  explicit contract. This keeps inverse hero text separate from content text.
*/
body.sub #content-sub > .banner-sub,
body:not(.home) #content-sub > .banner-sub {
  position: relative;
  display: flex;
  align-items: flex-end;
  width: 100%;
  min-height: clamp(22rem, 39vw, 31.25rem);
  height: auto;
  margin-top: -4.5rem;
  overflow: hidden;
  color: var(--color-inverse-text);
  background-color: var(--color-inverse-surface);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

body.sub #content-sub > .banner-sub::before,
body:not(.home) #content-sub > .banner-sub::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(41, 55, 81, 0.82) 0%, rgba(41, 55, 81, 0.42) 48%, rgba(41, 55, 81, 0.18) 100%),
    linear-gradient(180deg, rgba(41, 55, 81, 0.08) 0%, rgba(41, 55, 81, 0.38) 100%);
  pointer-events: none;
}

body.sub #content-sub > .banner-sub > .banner_intro,
body:not(.home) #content-sub > .banner-sub > .banner_intro {
  position: relative;
  z-index: 1;
  inset: auto;
  width: min(var(--content-default), calc(100vw - (var(--page-gutter) * 2)));
  max-width: var(--content-default);
  margin: 0 auto;
  padding: clamp(4.75rem, 8vw, 7rem) 0 clamp(11rem, 17vw, 14rem);
}

body.sub #content-sub > .banner-sub > .banner_intro :is(h1, .h1),
body:not(.home) #content-sub > .banner-sub > .banner_intro :is(h1, .h1) {
  max-width: 48rem;
  margin: 0 0 var(--space-sm);
  color: var(--color-inverse-text);
  font-family: "Lato Bold", "Lato", sans-serif;
  font-size: clamp(2.25rem, 3.55vw, 3.125rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
}

body.sub #content-sub > .banner-sub > .banner_intro article,
body:not(.home) #content-sub > .banner-sub > .banner_intro article {
  max-width: 37.5rem;
  color: var(--color-inverse-muted);
  font-family: var(--font-regular);
  font-size: var(--type-lead);
  line-height: 1.48;
  padding-top: 0;
}

body.sub #content-sub > .banner-sub > .banner_intro .banner_title-underscore,
body:not(.home) #content-sub > .banner-sub > .banner_intro .banner_title-underscore {
  display: none;
}

@media (max-width: 48rem) {
  body.sub #content-sub > .banner-sub,
  body:not(.home) #content-sub > .banner-sub {
    min-height: 22rem;
  }

  body.sub #content-sub > .banner-sub > .banner_intro,
  body:not(.home) #content-sub > .banner-sub > .banner_intro {
    width: min(100% - (var(--page-gutter) * 2), var(--content-default));
    padding-top: 6rem;
    padding-bottom: 4rem;
  }
}

/*
  2026 breadcrumbs and CTAs.
  These are kept after the generic content/list rules because breadcrumbs are
  rendered as a ul, and CTAs still appear under several legacy class names.
*/
body.sub #content-sub > .content-with-padding > .breadcrumbs,
body:not(.home) #content-sub > .content-with-padding > .breadcrumbs {
  width: 100%;
  max-width: var(--content-default);
  margin: 0 auto var(--space-lg);
  padding: 0;
  color: var(--color-text-muted);
  font-family: var(--font-regular);
  font-size: var(--type-small);
  line-height: var(--line-body);
}

body.sub #content-sub > .content-with-padding > .breadcrumbs ul,
body:not(.home) #content-sub > .content-with-padding > .breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

body.sub #content-sub > .content-with-padding > .breadcrumbs li,
body:not(.home) #content-sub > .content-with-padding > .breadcrumbs li {
  display: inline-flex;
  align-items: center;
  padding: 0;
  margin: 0;
  color: var(--color-text-muted);
  font-family: var(--font-regular);
  font-size: var(--type-small);
  line-height: var(--line-body);
  list-style: none;
}

body.sub #content-sub > .content-with-padding > .breadcrumbs a,
body:not(.home) #content-sub > .content-with-padding > .breadcrumbs a {
  display: inline-flex;
  align-items: center;
  color: var(--color-text-muted);
  font-family: var(--font-regular);
  font-size: var(--type-small);
  line-height: var(--line-body);
  text-decoration: none;
}

body.sub #content-sub > .content-with-padding > .breadcrumbs a:hover,
body:not(.home) #content-sub > .content-with-padding > .breadcrumbs a:hover {
  color: var(--color-link-hover);
}

body.sub #content-sub > .content-with-padding > .breadcrumbs .separator,
body:not(.home) #content-sub > .content-with-padding > .breadcrumbs .separator {
  display: inline-flex;
  align-items: center;
}

body.sub #content-sub > .content-with-padding > .breadcrumbs .separator::after,
body:not(.home) #content-sub > .content-with-padding > .breadcrumbs .separator::after {
  display: inline-block;
  margin: 0 var(--space-xs);
  color: var(--color-text-soft);
  content: "/";
}

body.sub #content-sub > .content-with-padding :is(
  a.button,
  a.btn,
  a.kd-btn,
  a.cta,
  a.blog-cta,
  a.download_button,
  a.event_button,
  a.contact-banner_button,
  a.contact-widget__button,
  a.teaser-slider_button,
  a.events-teaser-slider_button,
  a[class*="_button"],
  .formbutton,
  button.formbutton,
  input.formbutton,
  input[type="submit"],
  button[type="submit"]
),
body:not(.home) #content-sub > .content-with-padding :is(
  a.button,
  a.btn,
  a.kd-btn,
  a.cta,
  a.blog-cta,
  a.download_button,
  a.event_button,
  a.contact-banner_button,
  a.contact-widget__button,
  a.teaser-slider_button,
  a.events-teaser-slider_button,
  a[class*="_button"],
  .formbutton,
  button.formbutton,
  input.formbutton,
  input[type="submit"],
  button[type="submit"]
) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.625rem;
  padding: 0.6875rem 1.25rem;
  color: var(--color-action-primary);
  font-family: var(--font-regular);
  font-size: var(--type-button);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  background-color: transparent;
  border: var(--border-width) solid var(--color-action-primary);
  border-radius: var(--radius-none);
  cursor: pointer;
  transition:
    color var(--duration-base) var(--ease-standard),
    background-color var(--duration-base) var(--ease-standard),
    border-color var(--duration-base) var(--ease-standard);
}

body.sub #content-sub > .content-with-padding :is(
  a.button,
  a.btn,
  a.kd-btn,
  a.cta,
  a.blog-cta,
  a.download_button,
  a.event_button,
  a.contact-banner_button,
  a.contact-widget__button,
  a.teaser-slider_button,
  a.events-teaser-slider_button,
  a[class*="_button"],
  .formbutton,
  button.formbutton,
  input.formbutton,
  input[type="submit"],
  button[type="submit"]
):hover,
body:not(.home) #content-sub > .content-with-padding :is(
  a.button,
  a.btn,
  a.kd-btn,
  a.cta,
  a.blog-cta,
  a.download_button,
  a.event_button,
  a.contact-banner_button,
  a.contact-widget__button,
  a.teaser-slider_button,
  a.events-teaser-slider_button,
  a[class*="_button"],
  .formbutton,
  button.formbutton,
  input.formbutton,
  input[type="submit"],
  button[type="submit"]
):hover {
  color: var(--color-inverse-text);
  background-color: var(--color-action-primary);
  border-color: var(--color-action-primary);
}


/*
  4C 2021 navigation copied 1:1 from /de/home.
  Source: /templates/4c2021/css/styles.css?v=64.
  Includes only the old header/search/navigation/subnavigation rules and their old navigation media queries.
  Keep this unlayered and last so 2026 content styles cannot alter the legacy menu.
*/
.header {
  display: grid;
  grid-template-columns: 175px auto 110px;
  padding: 27px 60px 0 60px;
  height: calc(45px + 27px);
}

.header_logo {
  z-index: 3;
  height: 45px;
}

.header_logo img {
  height: 45px;
  max-width: 100%;
}

.header_actions, .header_nav {
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header_nav {
  z-index: 3;
  line-height: 45px;
}

.header_actions {
  padding-left: 15px;
  z-index: 3;
}

.header_action {
  color: #fff;
  padding-left: 20px;
  font-size: 1.5rem;
  font-weight: 400;
}

.header_action:hover {
  color: #cdc4b5;
}

.header.sticky {
  position: fixed;
  z-index: 10;
  top: 0;
  width: 100%;
  max-width: 1920px;
  height: 99px;
  background-color: rgba(48, 63, 85, .9);
}

.action_search {
  cursor: pointer;
}

.action_contact {
  position: relative;
  flex-shrink: 0;
  width: 140px;
  height: 34px;
  margin-right: 30px;
  background-repeat: no-repeat;
  background-size: contain;
}

.action_contact-mobile {
  display: none;
}

.action_4cinsights {
  background-color: #ff7900;
  border-radius: 100px;
  white-space: nowrap;
  font-size: 1.2rem;
  line-height: 34px;
  padding-left: 0 !important;
  padding-right: 0 !important;
  text-align: center;
  color: white;
}

.action_4cinsights:hover {
  color: white;
}

.fourc_arrow_icon {
  width: 13px;
  height: 18px;
  background-size: 13px 18px;
  background-position: center 2px;
  background-image: url(/templates/4c2021/img/driving_transformation_pfeil.svg);
  display: inline-block;
  background-repeat: no-repeat;
  margin-left: 2px;
  margin-right: 2px;
  line-height: 34px;

}

.icon {
  background-repeat: no-repeat;
  background-position: center;
}

.icon_search {
  background-image: url(/templates/4c2021/img/icons/noun_magnifier_1056214.png);
  width: 25px;
  height: 25px;
  background-size: 25px;
  flex-shrink: 0;
}

.search_wrapper {
  position: absolute;
  width: 100%;
  max-width: 1520px;
  padding: 0 60px;
  top: 248px;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.search_wrapper form {
  position: relative;
}

.search_field {
  width: 100%;
  border: 1px solid #fff;
  height: 53px;
  padding: 0 65px;
  background-color: transparent;
  outline: 0;
  font-size: 1rem;
  color: #fff;
  background-image: url(/templates/4c2021/img/icons/noun_magnifier_1056214.png);
  background-repeat: no-repeat;
  background-size: 28px auto;
  background-position: 18px center;
}

.search_button {
  width: 50px;
  position: absolute;
  height: 53px;
  z-index: 100;
  background-color: #fff;
  left: calc(100% - 50px);
  background-image: url(/templates/4c2021/img/icons/noun_Arrow_3134195_right_blue.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 30px;
  transition: background-image .4s ease-in-out;
}

.search_button:hover {
  background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_sand.png");
}

.search_background, .subnav_background {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 500px;
  z-index: 3;
  background-color: rgba(48, 63, 85, .9);
}

.search_background.sticky, .subnav_background.sticky {
  position: fixed;
  top: 99px;
  height: calc(500px - 99px);
}

.nav {
  position: relative;
  letter-spacing: .025rem;
  padding-right: 150px;
}

.nav_icon {
  z-index: 3;
  align-self: center;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.nav ul {
  margin: 0;
}

.nav li {
  list-style: none;
  white-space: nowrap;
}

.nav_root {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-left: 0;
}

.nav-not-linked span:hover {
  color: #cdc4b5;
  border-bottom: 1px solid #cdc4b5;
}

.nav_item {
  padding-left: 50px;
  color: #fff;
  font-size: 1.5rem;
  font-weight: 400;
}

.nav_item:not(a) {
  cursor: default;
}

.nav_item a {
  color: #fff;
}

.nav_item a:hover {
  color: #cdc4b5;
  border-bottom: 1px solid #cdc4b5;
}

.nav_submenu {
  display: none;
  position: absolute;
  padding-top: 15px;
  padding-left: 0;
}

.nav_submenu-item {
  position: relative;
  font-size: 1rem;
  line-height: 2;
}

.nav_products {
  display: none;
  position: absolute;
  top: 0;
  left: 100%;
  padding-left: 30px;
}

.nav_products-item {
  position: relative;
  font-size: 1rem;
  line-height: 2;
}

.nav_teaser {
  position: absolute;
  display: none;
  top: 0;
  left: 100%;
  padding-left: 30px;
}

.nav_teaser li.teaser a {
  cursor: pointer;
}

.nav_block {
  width: 250px;
  line-height: 2.2;
  text-align: center;
}

.nav_block-item {
  color: #525252;
}

.nav_block-item a:hover {
  color: #303f55;
  font-family: "Lato Bold", sans-serif;
}

.nav_block-item-uppercase {
  font-family: "Lato Bold", sans-serif;
  text-transform: uppercase;
}

a#menu_icon {
  position: absolute;
  left: 0;
  top: 3px;
  z-index: 200;
  cursor: pointer;
  background-position: center;
  width: 30px;
  height: 30px;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
}

a#menu_icon span {
  display: block;
  position: absolute;
  left: 0;
  height: 3px;
  width: 30px;
  background: #fff;
  opacity: 1;
  -webkit-transform: rotate(0);
  -moz-transform: rotate(0);
  -o-transform: rotate(0);
  transform: rotate(0);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

a#menu_icon:hover span {
  background: #fff !important;
}

a#menu_icon span:first-child {
  top: 0;
}

a#menu_icon span:nth-child(2) {
  top: 10px;
}

a#menu_icon span:nth-child(3) {
  top: 20px;
}

a#menu_icon.open span:first-child {
  top: 10px;
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}

a#menu_icon.open span:nth-child(2) {
  opacity: 0;
}

a#menu_icon.open span:nth-child(3) {
  top: 10px;
  -webkit-transform: rotate(-135deg);
  -moz-transform: rotate(-135deg);
  -o-transform: rotate(-135deg);
  transform: rotate(-135deg);
}

.nav.nav-2023 {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.nav.nav-2023 .nav_root {
  justify-content: center;
}

.nav.nav-2023 .nav_root > .nav_item {
  padding: 0 25px;
  border-right: 2px solid #fff;
}

.nav.nav-2023 .nav_root > .nav_item:last-of-type {
  border-right: none;
}

.nav.nav-2023 .nav_item a {
  cursor: pointer;
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.nav.nav-2023 .nav_item a:hover {
  border: none;
}

.nav.nav-2023 .nav_submenu {
  display: flex;
  flex-wrap: wrap;
  /*  left: calc(48% - 175px);*/
  left: 39%;
  right: -110px;
  padding-top: 59px;
  padding-left: 80px;
}

.nav.nav-2023 .nav_submenu_mobile {
  display: none;
}


.nav.nav-2023 .nav_hot-topics {
  position: absolute;
  /*left: calc(25% - 175px);*/
  left: 22%;/*25%;*/
  width: 18%;/*24%;*/
  margin-top: 50px;
  text-align: left;
}

.nav.nav-2023 .nav_teaser-text {
  position: absolute;
  left: -175px;
  /*width: 24%;*/
  width: calc(25% - 60px + 175px);
  margin-top: 50px;
  border-right: 2px solid #fff;
  text-align: right;
  padding-right: 60px;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.nav.nav-2023 .nav_teaser-text > li > div.teaser-text {
  white-space: normal;
  font-family: "Lato Bold", sans-serif;
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 2.18rem;
  border-left: solid 10px #ff7900;
  padding-bottom: 20px;
  padding-left: 30px;
  text-align: left;
}

.nav.nav-2023 .nav_hot-topics .subnav_item {
  width: 100%;
  padding: 0 30px;
  border-right: solid 2px #fff;
  position: relative;
  line-height: 45px;
}

/*.nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer).selected, .nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer):hover {*/
.nav.nav-2023 .nav_hot-topics .subnav_item_withchildren:not(.spacer):hover {
  border-right: none;
}

/*.nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer):hover:after, .nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer).selected:after {*/
.nav.nav-2023 .nav_hot-topics .subnav_item_withchildren:not(.spacer):hover:after {
  content: ' ';
  background-image: url(/templates/4c2021/img/navigation/nav_arrow_right.svg);
  background-repeat: no-repeat;
  width: 30px;
  height: 24px;
  display: block;
  position: absolute;
  right: -22px;
  top: 12px;
}

.nav.nav-2023 .nav_hot-topics .subnav_item_withchildren.active:not(.spacer):after {
  content: ' ';
  background-image: url(/templates/4c2021/img/navigation/nav_arrow_right.svg);
  background-repeat: no-repeat;
  width: 30px;
  height: 24px;
  display: block;
  position: absolute;
  right: -22px;
  top: 12px;
}

.nav.nav-2023 .nav_hot-topics .subnav_item_withchildren.active:not(.spacer) {
  border-right: none;
}

.nav.nav-2023 .subnav_item {
  width: 50%;
  justify-content: space-between;
  font-size: 1.1rem;
  line-height: 1.5;
  font-family: "Lato Bold", sans-serif
}

.nav.nav-2023 .subnav_item ul.nav_submenuL3 li {
  font-family: "Lato", sans-serif !important;
}

.nav.nav-2023 .subnav_item_singlerow {
  width: 100%;
}

.nav.nav-2023 .subnav_item--bold {
  font-family: "Lato Bold", sans-serif;
}

.nav.nav-2023 .subnav_item--pb {
  padding-bottom: 22px;
}

.nav.nav-2023 .subnav_item--pr {
  padding-right: 22px;
}

.nav.nav-2023 .nav_submenuL3 {
  font-family: Lato, sans-serif;
}

.nav.nav-2023 .nav_submenuL3 .subnav_item {
  width: 100%;
}

.nav.nav-2023 .subnav_insights {
  height: 30px;
  line-height: 30px;
  background-color: #fff;
  color: #303f55;
  margin-top: 15px;
  padding: 0 8px;
  font-size: 1rem;
  border-radius: 4px;
  text-align: center;
}

s .nav.nav-2023 .subnav_insights:hover {
  background-color: #cdc4b5;
}

.nav.nav-2023 .subnav_insights--pt {
  margin-top: 150px;
}

.nav.nav-2023 .nav_footer {
  display: none;
}

.nav.nav-2023 .subnav--align-right {
  display: flex;
  justify-content: flex-end;
}

.nav--open .banner {
  pointer-events: none;
}
@media only screen and (min-width: 1448px) {
  .nav_icon {
    display: none;
  }

  a#menu_icon {
    display: none;
  }

  .blog-preview-component .blog-preview_item h4 {
    padding-right: 30px;
  }

  .nav.nav-2023 .subnav_itemL2:nth-child(7), .nav.nav-2023 .subnav_itemL2:nth-child(8), .nav.nav-2023 .subnav_itemL2:nth-child(9) {
      /*
    padding-bottom: 0;
    */
  }
}
@media only screen and (min-width: 0) and (max-width: 1447px) {
  .header {
    grid-template-columns: 25% 50% 25%;
    justify-content: space-between;
  }

  .header_logo {
    text-align: center;
  }

  .header_nav {
    display: none;
    position: absolute;
    left: 0;
    top: 90px;
    width: 100%;
    height: auto;
    justify-content: flex-start;
  }

  .header_nav-visible {
    display: block;
  }

  .subnav_background {
    background-color: rgba(48, 63, 85, .9);
    height: 100%;
    overscroll-behavior: contain;
  }

  .subnav_background.sticky {
    height: 100%;
  }

  .nav {
    width: 100%;
  }

  .nav_root {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav_item {
    line-height: 2;
    padding-left: 60px;
  }

  .nav_submenu {
    position: relative;
    padding-top: 0;
    padding-left: 20px;
  }

  .nav_submenu-item {
    line-height: 2.5;
  }

  .nav_products {
    position: relative;
    left: 0;
    padding-left: 20px;
  }

  .nav_products-item {
    line-height: 2.5;
  }

  .action_contact {
    display: none;
  }

  .nav.nav-2023 {
    display: initial;
    padding-right: 60px;
    overscroll-behavior: contain;
    overflow-y: auto;
    -ms-overflow-y: auto;
  }

  .nav.nav-2023 .nav_hot-topics {
    display: none;
    position: relative;
    width: 100%;
    left: 0;
    margin-top: 0px;
    padding-bottom: 0;
    text-align: left;
    border-right: none;
  }

  .nav.nav-2023 .nav_hot-topics .subnav_item:not(.subnav_item--bold) {
    font-size: 1rem;
    padding: 0;
  }

  .nav.nav-2023 .nav_hot-topics .subnav_item {
    border-right: none;
  }

  .nav.nav-2023 .subnav_insights {
    display: inline-block;
    width: 120px;
  }

  .nav.nav-2023 .subnav_insights-wrapper {
    width: 100%;
    margin-bottom: 50px;
  }

  .nav.nav-2023 .subnav_insights--pt {
    margin-top: 0;
  }

  .nav.nav-2023 .nav_root > .nav_item {
    width: 100%;
    padding-left: 60px;
    padding-right: 0;
    border-right: none;
  }

  .nav.nav-2023 .nav_submenu {
    left: 0;
    right: 0;
    padding-top: 0;
    padding-left: 0;
  }

  .nav.nav-2023 .submenu_wrap {
    display: block; /*flex*/
    /*    flex-direction: column-reverse;*/
    width: calc(100% - 15px);
    max-width: 425px;
  }

  .nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer):hover:after, .nav.nav-2023 .nav_hot-topics .subnav_item:not(.spacer).selected:after {
    display: none;
  }

  .nav.nav-2023 .nav_submenuL3 {
    display: none;
    padding-bottom: 15px;
  }

  .nav.nav-2023 .nav_submenuL3 .subnav_item a {
    color: #fff;
    font-size: 1rem;
  }

  .nav.nav-2023 .nav_item a {
    position: relative;
    line-height: 2;
  }

  .nav.nav-2023 .nav_arrow {
    position: absolute;
    z-index: 20;
    width: 40px;
    height: 100%;
  }

  .nav.nav-2023 .subnav_arrow {
    position: absolute;
    z-index: 20;
    width: 30px;
    height: 30px;
    right: 0;
  }

  .nav.nav-2023 .nav_item_first-level {
    display: inline;
  }

  .nav.nav-2023 .nav_item_first-level:after {
    display: inline-block;
    vertical-align: text-bottom;
    content: "";
    width: 30px;
    height: 29px;
    background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_white.png");
    background-repeat: no-repeat;
    background-size: auto 26px;
    background-position: right;
  }

  .nav.nav-2023 .nav_item.clicked > .nav_item_first-level:after {
    margin-left: 10px;
    transform: rotate(90deg);
    vertical-align: initial;
  }

  .nav.nav-2023 .subnav_item {
    width: 100%;
  }

  .nav.nav-2023 .subnav_item--pr {
    padding-right: 0;
  }

  .nav.nav-2023 .subnav_item--pb {
    padding-bottom: 0;
  }

  .nav.nav-2023 .subnav_item--bold {
    font-family: Lato, sans-serif;
    color: #cdc4b5;
  }

  .nav.nav-2023 .subnav_item--bold a {
    color: #cdc4b5;
    position: relative;
    padding-right: 35px;
  }

  .nav.nav-2023 .subnav_item--bold > a:after {
    position: absolute;
    top: 4px;
    right: 0;
    display: inline-block;
    vertical-align: text-bottom;
    content: "";
    width: 30px;
    height: 26px;
    background-image: url("/templates/4c2021/img/icons/noun_Arrow_3134195_right_sand.png");
    background-repeat: no-repeat;
    background-size: auto 24px;
    background-position: right;
  }

  .nav.nav-2023 .subnav_item--bold.clicked > a:after {
    top: -3px;
    right: -3px;
    transform: rotate(90deg);
    vertical-align: initial;
  }

  .nav.nav-2023 .nav_footer {
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
    padding: 40px 60px 0;
  }

  .nav.nav-2023 .nav_footer .social-media {
    position: relative;
    left: auto;
    top: auto;
  }

  .nav.nav-2023 .nav_footer .social-media_item {
    padding-right: 15px;
  }

  .nav.nav-2023 .nav_footer .action_select-lang {
    font-size: 1.5rem;
    color: #fff;
  }

  .nav.nav-2023 .subnav_insights--hidden {
    display: none !important;
  }

  .action_contact-mobile {
    display: block;
    padding-right: 23px;
    padding-top: 3px;
  }

  .header.sticky {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 50px;
    padding-top: 0;
  }

  .header.sticky .header_logo {
    display: none;
  }

  .search_background.sticky, .subnav_background.sticky {
    top: 50px;
    height: calc(500px - $subnav-sticky-top);
  }
}

/*
  4C 2021 navigation wrapper dependency.
  The old navigation needs the outer page container to remain 1920px wide on
  desktop; otherwise the header grid collapses into the 2026 content width.
*/
@media only screen and (min-width: 1448px) {
  body > .container {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0;
  }

  .nav_icon,
  a#menu_icon {
    display: none !important;
  }

  .nav.nav-2023 .nav_submenu > .subnav_item,
  .nav.nav-2023 .nav_submenuL3 > .subnav_item {
    display: block;
  }

  .nav.nav-2023 .subnav_item--bold > a {
    display: block;
  }

  .nav.nav-2023 .nav_submenuL3 {
    display: block;
    margin: 0.25rem 0 0;
    padding-left: 0;
  }

  .nav.nav-2023 .nav_submenuL3 .subnav_item {
    width: 100%;
    padding-right: 0;
  }

  .nav.nav-2023 .nav_submenuL3 .subnav_item a {
    display: block;
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
  }
}

/*
  2026 profile/nav stacking guard.
  Custom profile banners render inside the content area instead of the usual
  .banner-sub slot, so keep the legacy navigation layer above those banners.
*/
.subnav_background {
  z-index: 40;
}

.header {
  position: relative;
  z-index: 50;
}

.header.sticky {
  z-index: 80;
}

.header.sticky .header_nav,
.header.sticky .nav.nav-2023 {
  position: relative;
  z-index: 90;
}

.action_contact-mobile {
  overflow: hidden;
}

.action_contact-mobile svg {
  display: block;
  width: 2rem;
  height: 2rem;
  max-width: 100%;
  max-height: 100%;
}

.action_contact-mobile svg * {
  max-width: 100%;
  max-height: 100%;
}

/*
  2026 branch/industry legacy module bridge.
  Industry pages still use 2021 CMS modules (.parallax-background, .tinymce,
  .headline_container, .manager_*). Map those old selectors onto the new 2026
  content language without touching the preserved main navigation.
*/
body.sub #content-sub > .content-with-padding > .parallax-background,
body:not(.home) #content-sub > .content-with-padding > .parallax-background {
  box-sizing: border-box;
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding: var(--space-3xl) 0 !important;
  color: var(--color-text);
  background-color: var(--color-surface);
}

body.sub #content-sub > .content-with-padding > .parallax-background-light,
body:not(.home) #content-sub > .content-with-padding > .parallax-background-light {
  background-color: var(--color-surface-muted);
}

body.sub #content-sub > .content-with-padding > .parallax-background > :is(.tinymce, .headline_container, .manager_background, .teaser--foldable, .sf_row),
body:not(.home) #content-sub > .content-with-padding > .parallax-background > :is(.tinymce, .headline_container, .manager_background, .teaser--foldable, .sf_row) {
  box-sizing: border-box;
  width: min(100%, var(--content-default));
  max-width: var(--content-default);
  margin-inline: auto;
  padding-right: var(--space-3xl);
  padding-left: var(--space-3xl);
}

body.sub #content-sub > .content-with-padding > .parallax-background > .headline_container,
body:not(.home) #content-sub > .content-with-padding > .parallax-background > .headline_container {
  padding-bottom: var(--space-xl) !important;
}

body.sub #content-sub > .content-with-padding > .parallax-background .headline,
body:not(.home) #content-sub > .content-with-padding > .parallax-background .headline {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin: 0;
  padding: 0;
  color: var(--color-action-primary);
  font-family: var(--font-bold);
  font-size: var(--type-eyebrow);
  font-weight: 700;
  line-height: var(--line-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body.sub #content-sub > .content-with-padding > .parallax-background .headline_line,
body:not(.home) #content-sub > .content-with-padding > .parallax-background .headline_line {
  display: block;
  flex: 0 0 4.5rem;
  width: 4.5rem;
  height: var(--border-width-accent);
  background: var(--color-action-primary);
}

body.sub #content-sub > .content-with-padding > .parallax-background .headline_text,
body:not(.home) #content-sub > .content-with-padding > .parallax-background .headline_text {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

body.sub #content-sub > .content-with-padding > .parallax-background > .tinymce > :is(h2, .h2):first-child,
body:not(.home) #content-sub > .content-with-padding > .parallax-background > .tinymce > :is(h2, .h2):first-child {
  max-width: 58rem;
  margin-bottom: var(--space-lg);
  color: var(--color-heading);
  font-family: var(--font-light);
  font-size: var(--type-section-title);
  font-weight: 300;
  line-height: var(--line-heading);
}

body.sub #content-sub > .content-with-padding > .breadcrumbs + .parallax-background > .tinymce > p,
body:not(.home) #content-sub > .content-with-padding > .breadcrumbs + .parallax-background > .tinymce > p {
  max-width: var(--content-text);
  color: var(--color-text);
  font-size: var(--type-lead);
  line-height: 1.62;
}

body.sub #content-sub > .content-with-padding .tele-core-section,
body:not(.home) #content-sub > .content-with-padding .tele-core-section {
  width: 100%;
  max-width: var(--content-default);
  margin-inline: auto;
  padding: var(--space-3xl) var(--space-3xl) !important;
  background: var(--color-surface);
}

body.sub #content-sub > .content-with-padding .tele-core-grid,
body:not(.home) #content-sub > .content-with-padding .tele-core-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-xl);
}

body.sub #content-sub > .content-with-padding .tele-core-card,
body:not(.home) #content-sub > .content-with-padding .tele-core-card {
  padding: var(--space-xl);
  background: var(--color-surface);
  border: var(--border-width) solid var(--color-border);
}

body.sub #content-sub > .content-with-padding .tele-core-title,
body:not(.home) #content-sub > .content-with-padding .tele-core-title {
  color: var(--color-heading);
  font-family: var(--font-bold);
  font-size: var(--type-card-title);
  line-height: var(--line-title);
}

body.sub #content-sub > .content-with-padding .teaser--foldable,
body:not(.home) #content-sub > .content-with-padding .teaser--foldable {
  padding-top: 0;
  padding-bottom: 0;
  background: transparent;
}

body.sub #content-sub > .content-with-padding .teaser--foldable .teaser_container.desktop,
body:not(.home) #content-sub > .content-with-padding .teaser--foldable .teaser_container.desktop {
  gap: var(--space-xl);
}

body.sub #content-sub > .content-with-padding .teaser--foldable .teaser_collapsable-content,
body:not(.home) #content-sub > .content-with-padding .teaser--foldable .teaser_collapsable-content {
  padding: var(--space-xl);
  color: var(--color-text);
  background: var(--color-surface);
  border: var(--border-width) solid var(--color-border);
}

body.sub #content-sub > .content-with-padding .manager_background,
body:not(.home) #content-sub > .content-with-padding .manager_background {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 22.6875rem));
  gap: 2.125rem;
  justify-content: flex-start;
  border: 0;
}

body.sub #content-sub > .content-with-padding .manager_teaser,
body:not(.home) #content-sub > .content-with-padding .manager_teaser {
  position: relative;
  display: block;
  min-height: 31.25rem;
  padding: 0;
  overflow: hidden;
  background: var(--color-surface);
  border: var(--border-width) solid var(--color-border);
}

body.sub #content-sub > .content-with-padding .manager_teaser_image,
body:not(.home) #content-sub > .content-with-padding .manager_teaser_image {
  position: relative;
  float: none;
  width: 100%;
  height: 23.25rem;
  min-height: 23.25rem;
  overflow: hidden;
  background: linear-gradient(180deg, #f3f5f7 0%, #e9edf1 100%);
  border-bottom: var(--border-width) solid rgba(226, 230, 235, 0.92);
}

body.sub #content-sub > .content-with-padding .manager_teaser_image .image_background,
body:not(.home) #content-sub > .content-with-padding .manager_teaser_image .image_background {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 23.25rem;
  background-position: center;
  background-size: cover;
}

body.sub #content-sub > .content-with-padding .manager_teaser_desc,
body:not(.home) #content-sub > .content-with-padding .manager_teaser_desc {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 7.9rem;
  margin-top: -6.75rem;
  padding: 0 1.125rem 1rem;
  color: var(--color-text);
  font-family: var(--font-regular);
}

body.sub #content-sub > .content-with-padding .manager_teaser_desc::before,
body:not(.home) #content-sub > .content-with-padding .manager_teaser_desc::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: -1;
  height: 6.75rem;
  content: "";
  background: linear-gradient(180deg, rgba(41, 55, 81, 0) 0%, rgba(41, 55, 81, 0.86) 100%);
}

body.sub #content-sub > .content-with-padding .manager_name,
body.sub #content-sub > .content-with-padding .manager_name strong,
body:not(.home) #content-sub > .content-with-padding .manager_name,
body:not(.home) #content-sub > .content-with-padding .manager_name strong {
  color: var(--color-inverse-text);
  font-family: var(--font-bold);
  font-size: 1.4375rem;
  font-weight: 700;
  line-height: 1.28;
}

body.sub #content-sub > .content-with-padding .manager_name,
body:not(.home) #content-sub > .content-with-padding .manager_name {
  min-height: 3.25rem;
  padding: 1.95rem 0 0.3125rem;
}

body.sub #content-sub > .content-with-padding .manager_info,
body.sub #content-sub > .content-with-padding .manager_info p,
body:not(.home) #content-sub > .content-with-padding .manager_info,
body:not(.home) #content-sub > .content-with-padding .manager_info p {
  color: var(--color-text-muted);
  font-family: var(--font-regular);
  font-size: 0.875rem;
  line-height: 1.52;
}

body.sub #content-sub > .content-with-padding .manager_info,
body:not(.home) #content-sub > .content-with-padding .manager_info {
  padding-top: 1rem;
}

body.sub #content-sub > .content-with-padding .manager_info > p:first-child,
body:not(.home) #content-sub > .content-with-padding .manager_info > p:first-child {
  min-height: 1rem;
  margin: -7.7rem 0 5.9rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.75rem;
  line-height: 1.36;
}

body.sub #content-sub > .content-with-padding .manager_info .email,
body:not(.home) #content-sub > .content-with-padding .manager_info .email {
  display: inline-flex;
  color: var(--color-action-primary);
  font-size: var(--type-button);
  line-height: 1.3;
  text-decoration: none;
}

body.sub #content-sub > .content-with-padding .manager_socialmedia,
body:not(.home) #content-sub > .content-with-padding .manager_socialmedia {
  margin-top: var(--space-xs);
  color: var(--color-text-muted);
  font-size: var(--type-button);
}

body.sub #content-sub > .content-with-padding .manager_socialmedia span,
body:not(.home) #content-sub > .content-with-padding .manager_socialmedia span {
  display: none;
}

body.sub #content-sub > .content-with-padding .manager_profile-link,
body:not(.home) #content-sub > .content-with-padding .manager_profile-link {
  display: inline-flex;
  margin-top: var(--space-xs);
  color: var(--color-action-primary);
  font-family: var(--font-regular);
  font-size: var(--type-button);
  line-height: 1.3;
  text-decoration: none;
}

body.sub #content-sub > .content-with-padding .manager_profile-link::after,
body:not(.home) #content-sub > .content-with-padding .manager_profile-link::after {
  color: currentColor;
}

body.sub #content-sub > .content-with-padding .fourc_large_white,
body.sub #content-sub > .content-with-padding .fourc_large_white strong,
body:not(.home) #content-sub > .content-with-padding .fourc_large_white,
body:not(.home) #content-sub > .content-with-padding .fourc_large_white strong {
  color: var(--color-inverse-text);
  font-family: var(--font-light);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: var(--line-heading);
}

@media (max-width: 64rem) {
  body.sub #content-sub > .content-with-padding .tele-core-grid,
  body.sub #content-sub > .content-with-padding .manager_background,
  body:not(.home) #content-sub > .content-with-padding .tele-core-grid,
  body:not(.home) #content-sub > .content-with-padding .manager_background {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 48rem) {
  body.sub #content-sub > .content-with-padding > .parallax-background,
  body:not(.home) #content-sub > .content-with-padding > .parallax-background {
    padding: var(--space-2xl) 0 !important;
  }

  body.sub #content-sub > .content-with-padding > .parallax-background > :is(.tinymce, .headline_container, .manager_background, .teaser--foldable, .sf_row),
  body:not(.home) #content-sub > .content-with-padding > .parallax-background > :is(.tinymce, .headline_container, .manager_background, .teaser--foldable, .sf_row),
  body.sub #content-sub > .content-with-padding .tele-core-section,
  body:not(.home) #content-sub > .content-with-padding .tele-core-section {
    padding-right: var(--page-gutter-mobile) !important;
    padding-left: var(--page-gutter-mobile) !important;
  }

  body.sub #content-sub > .content-with-padding .manager_teaser,
  body:not(.home) #content-sub > .content-with-padding .manager_teaser {
    width: 100%;
    max-width: 22.6875rem;
  }

  body.sub #content-sub > .content-with-padding .manager_teaser_image,
  body.sub #content-sub > .content-with-padding .manager_teaser_image .image_background,
  body:not(.home) #content-sub > .content-with-padding .manager_teaser_image,
  body:not(.home) #content-sub > .content-with-padding .manager_teaser_image .image_background {
    width: 100%;
    min-height: 20rem;
  }

  body.sub #content-sub > .content-with-padding .manager_teaser_image,
  body:not(.home) #content-sub > .content-with-padding .manager_teaser_image {
    height: 20rem;
  }
}

body.sub #content-sub > .content-with-padding:has(> .consultant-profile),
body:not(.home) #content-sub > .content-with-padding:has(> .consultant-profile) {
  width: 100%;
  max-width: none;
  padding-top: 0;
}

body.sub #content-sub .consultant-profile,
body.sub #content-sub .consultant-profile__hero {
  position: relative;
  z-index: 0;
}

body.sub #content-sub > .content-with-padding > .consultant-profile,
body:not(.home) #content-sub > .content-with-padding > .consultant-profile {
  margin-top: -4.5rem;
}

body.sub #content-sub .consultant-profile__hero-image,
body.sub #content-sub .consultant-profile__hero-band {
  z-index: 0 !important;
}

body.sub #content-sub > .content-with-padding .consultant-profile__hero :is(
  .consultant-profile__title,
  .consultant-profile__role,
  .consultant-profile__hero-intro
),
body:not(.home) #content-sub > .content-with-padding .consultant-profile__hero :is(
  .consultant-profile__title,
  .consultant-profile__role,
  .consultant-profile__hero-intro
) {
  color: var(--color-inverse-text);
}

body.sub #content-sub > .content-with-padding .consultant-profile__hero .consultant-profile__role,
body:not(.home) #content-sub > .content-with-padding .consultant-profile__hero .consultant-profile__role {
  color: rgba(255, 255, 255, 0.88);
}

body.sub #content-sub > .content-with-padding .consultant-profile__hero .consultant-profile__hero-intro,
body:not(.home) #content-sub > .content-with-padding .consultant-profile__hero .consultant-profile__hero-intro {
  color: rgba(255, 255, 255, 0.9);
}

body.sub #content-sub > .content-with-padding .consultant-profile .kd-btn,
body:not(.home) #content-sub > .content-with-padding .consultant-profile .kd-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.625rem;
  padding: 0.6875rem 1.25rem;
  color: var(--color-action-primary);
  font-family: var(--font-regular);
  font-size: var(--type-button);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: none;
  background: transparent;
  border: var(--border-width) solid var(--color-action-primary);
  border-radius: var(--radius-none);
  cursor: pointer;
  transition:
    color var(--duration-base) var(--ease-standard),
    background-color var(--duration-base) var(--ease-standard),
    border-color var(--duration-base) var(--ease-standard);
}

body.sub #content-sub > .content-with-padding .consultant-profile .kd-btn--primary,
body:not(.home) #content-sub > .content-with-padding .consultant-profile .kd-btn--primary {
  color: var(--color-inverse-text);
  background: var(--color-action-primary);
  border-color: var(--color-action-primary);
}

body.sub #content-sub > .content-with-padding .consultant-profile .kd-btn--primary:hover,
body.sub #content-sub > .content-with-padding .consultant-profile .kd-btn--primary:focus-visible,
body:not(.home) #content-sub > .content-with-padding .consultant-profile .kd-btn--primary:hover,
body:not(.home) #content-sub > .content-with-padding .consultant-profile .kd-btn--primary:focus-visible {
  color: var(--color-inverse-text);
  background: var(--color-action-primary-hover);
  border-color: var(--color-action-primary-hover);
}

body.sub #content-sub > .content-with-padding .consultant-profile .kd-btn--secondary:hover,
body.sub #content-sub > .content-with-padding .consultant-profile .kd-btn--secondary:focus-visible,
body:not(.home) #content-sub > .content-with-padding .consultant-profile .kd-btn--secondary:hover,
body:not(.home) #content-sub > .content-with-padding .consultant-profile .kd-btn--secondary:focus-visible {
  color: var(--color-inverse-text);
  background: var(--color-action-primary);
  border-color: var(--color-action-primary);
}

body.sub #content-sub > .content-with-padding .consultant-profile__standalone-quote,
body:not(.home) #content-sub > .content-with-padding .consultant-profile__standalone-quote {
  color: var(--color-heading);
  font-family: var(--font-light);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 300;
  line-height: var(--line-heading);
}

body.sub #content-sub > .content-with-padding .consultant-profile__standalone-quote span,
body:not(.home) #content-sub > .content-with-padding .consultant-profile__standalone-quote span {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

body.sub #content-sub > .content-with-padding .consultant-profile__standalone-quote em,
body:not(.home) #content-sub > .content-with-padding .consultant-profile__standalone-quote em {
  color: var(--color-action-primary);
  font-family: inherit;
  font-size: inherit;
  font-style: normal;
  font-weight: inherit;
  line-height: inherit;
}

/*
  Keep profile-sidebar internals on their component CSS. The correct reference
  page uses extra nested .consultant-profile__aside-panel markup, so attempting
  to recreate that structure globally causes visual drift.
*/
body.sub #content-sub > .content-with-padding .consultant-profile__aside :is(
  .consultant-profile__list,
  .consultant-profile__mini-list
),
body:not(.home) #content-sub > .content-with-padding .consultant-profile__aside :is(
  .consultant-profile__list,
  .consultant-profile__mini-list
) {
  padding-left: 0;
  list-style: none;
}

@media only screen and (min-width: 1448px) {
  .header_nav,
  .nav.nav-2023 {
    position: relative;
    z-index: 60;
  }
}

/*
  2026 legacy module compatibility.
  Keep this conservative: old modules have dense internal layouts, so only map
  shared colors, fonts and controls here. Component redesigns need separate QA.
*/
body.sub #content-sub > .content-with-padding :is(
  .blogteaser-slider-wrapper,
  .blog-preview,
  .blog-preview-component,
  .partner-slider,
  .jobs-listing,
  .zitat--regular,
  .headline_container
),
body:not(.home) #content-sub > .content-with-padding :is(
  .blogteaser-slider-wrapper,
  .blog-preview,
  .blog-preview-component,
  .partner-slider,
  .jobs-listing,
  .zitat--regular,
  .headline_container
) {
  color: var(--color-text);
  font-family: var(--font-regular);
}

body.sub #content-sub > .content-with-padding :is(
  .partner-slider_title,
  .jobs-listing h2,
  .zitat--regular h2,
  .headline_container :is(h2, h3, .h2, .h3)
),
body:not(.home) #content-sub > .content-with-padding :is(
  .partner-slider_title,
  .jobs-listing h2,
  .zitat--regular h2,
  .headline_container :is(h2, h3, .h2, .h3)
) {
  color: var(--color-heading);
  letter-spacing: 0;
  text-transform: none;
}

body.sub #content-sub > .content-with-padding :is(
  .blog-preview_info h4,
  .blog-preview_text h4,
  .partner-slider_profile-item h3,
  .jobs-listing__title
),
body:not(.home) #content-sub > .content-with-padding :is(
  .blog-preview_info h4,
  .blog-preview_text h4,
  .partner-slider_profile-item h3,
  .jobs-listing__title
) {
  color: var(--color-heading);
  font-family: var(--font-bold);
  letter-spacing: 0;
  text-transform: none;
}

body.sub #content-sub > .content-with-padding :is(
  .blog-preview_header,
  .blog-preview_meta,
  .blog-preview_data,
  .blog-preview_category,
  .partner-slider_role,
  .jobs-listing__badge
),
body:not(.home) #content-sub > .content-with-padding :is(
  .blog-preview_header,
  .blog-preview_meta,
  .blog-preview_data,
  .blog-preview_category,
  .partner-slider_role,
  .jobs-listing__badge
) {
  color: var(--color-action-primary);
  font-family: var(--font-bold);
}

body.sub #content-sub > .content-with-padding :is(
  .blog-preview_short-text,
  .blog-preview_text,
  .partner-slider_profile-text,
  .partner-slider_profile-expertise,
  .jobs-listing__text,
  .zitat--regular p
),
body:not(.home) #content-sub > .content-with-padding :is(
  .blog-preview_short-text,
  .blog-preview_text,
  .partner-slider_profile-text,
  .partner-slider_profile-expertise,
  .jobs-listing__text,
  .zitat--regular p
) {
  color: var(--color-text-muted);
  font-family: var(--font-regular);
}

body.sub #content-sub > .content-with-padding :is(
  .jobs-listing__reset-btn,
  .jobs-listing__apply-btn,
  .blog-cta,
  .blog-preview_info .blog-cta,
  .blog-preview_text .blog-cta
),
body:not(.home) #content-sub > .content-with-padding :is(
  .jobs-listing__reset-btn,
  .jobs-listing__apply-btn,
  .blog-cta,
  .blog-preview_info .blog-cta,
  .blog-preview_text .blog-cta
) {
  color: var(--color-action-primary);
  font-family: var(--font-regular);
  text-transform: none;
  background: transparent;
  border-color: var(--color-action-primary);
  border-radius: var(--radius-none);
}

body.sub #content-sub > .content-with-padding :is(
  .jobs-listing__apply-btn,
  .blog-cta
):hover,
body:not(.home) #content-sub > .content-with-padding :is(
  .jobs-listing__apply-btn,
  .blog-cta
):hover {
  color: var(--color-inverse-text);
  background: var(--color-action-primary);
  border-color: var(--color-action-primary);
}
