/*****************************************************************************
 * The size-related variables (small/medium etc.) are directly related to the
 * responsive breakpoints.
 ***************************************************************************** */
/* Container
  --------------------------------------------------------------------------- */
/*
 * Maximum container width. The container padding will added to this with so
 * the actual content will have this (maximum) size.
 */
 @import url("https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600;1,700;1,800&family=Raleway:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap");
 :root {
   --theme-container-width: 1160px;
   --theme-container-width-small: 760px;
   --theme-container-width-large: 1440px;
   --theme-container-padding-default: 24px;
   --theme-container-padding-extra-small: 24px;
   --theme-container-padding-small: 16px;
   --theme-container-padding-medium: 16px;
   --theme-container-padding-large: 16px;
   --theme-container-padding-extra-large: 40px;
   /* Gutters
     --------------------------------------------------------------------------- */
   --theme-gutter-width-default: 24px;
   --theme-gutter-width-extra-small: 24px;
   --theme-gutter-width-small: 32px;
   --theme-gutter-width-medium: 32px;
   --theme-gutter-width-large: 40px;
   --theme-gutter-width-extra-large: 40px;
 }
 
 :root {
   --color-base-white: #FFFFFF;
   --color-base-white-24: rgba(255, 255, 255, 0.24);
   --color-base-black: #222222;
   --color-gray-25: #F3F3F3;
   --color-gray-50: #D9D9D9;
   --color-gray-75: #999999;
   --color-gray-100: #646464;
   --color-error-25: #FFFBFA;
   --color-error-50: #FEF3F2;
   --color-error-100: #FEE4E2;
   --color-error-200: #FECDCA;
   --color-error-300: #FDA29B;
   --color-error-400: #F97066;
   --color-error-500: #F04438;
   --color-error-600: #D92D20;
   --color-error-700: #B42318;
   --color-error-800: #912018;
   --color-error-900: #7A271A;
   --color-warning-25: #FFFCF5;
   --color-warning-50: #FFFAEB;
   --color-warning-100: #FEF0C7;
   --color-warning-200: #FEDF89;
   --color-warning-300: #FEC84B;
   --color-warning-400: #FDB022;
   --color-warning-500: #F79009;
   --color-warning-600: #DC6803;
   --color-warning-700: #B54708;
   --color-warning-800: #93370D;
   --color-warning-900: #7A2E0E;
   --color-success-25: #F6FEF9;
   --color-success-50: #ECFDF3;
   --color-success-100: #D1FADF;
   --color-success-200: #A6F4C5;
   --color-success-300: #6CE9A6;
   --color-success-400: #32D583;
   --color-success-500: #12B76A;
   --color-success-600: #039855;
   --color-success-700: #027A48;
   --color-success-800: #05603A;
   --color-success-900: #054F31;
   --color-primary-blue: #2FA0A3;
   --color-primary-blue-8: #2FA0A314;
   --color-primary-blue-16: #2FA0A329;
   --color-primary-red: #F05428;
   --color-primary-red-8: #f0542814;
   --color-primary-red-16: #f0542829;
   --color-secondary-light-blue: #7AC6B6;
   --color-secondary-dark-blue:#008697;
   --color-secondary-orange:#F9B104;
   --color-secondary-red:#E73339;
   --color-secondary-blue-gradient: linear-gradient(270deg, var(--color-secondary-light-blue) 0%, var(--color-secondary-dark-blue) 100%);
   --color-secondary-orange-gradient: linear-gradient(270deg, var(--color-secondary-orange) 0%, var(--color-secondary-red) 100%);
   --theme-color-gradient-red-orange: linear-gradient(270deg, #F9B104 0%, #E73339 100%);
   /* -- Generic colors  -- */
   --theme-color-base: var(--color-base-black);
   --theme-color-error: #C10016;
   --theme-color-accept: #00AA13;
 }
 
 :root {
   --theme-font-family-base: "Mulish", sans-serif;
   --theme-font-family-heading: "Raleway", sans-serif;
   --theme-font-family-alternative: "Mulish", sans-serif;
   --theme-font-family-monospace: "Courier New", "Lucida Console", sans-serif;
   --theme-font-weight-light: 300;
   --theme-font-weight-base: 400;
   --theme-font-weight-medium: 500;
   --theme-font-weight-semibold: 600;
   --theme-font-weight-strong: 700;
   --theme-font-weight-extrabold: 800;
 }
 
 :root {
   --theme-module-spacing-default: 1.6rem;
   --theme-module-spacing-extra-small: 1.6rem;
   --theme-module-spacing-small: 2.35rem;
   --theme-module-spacing-medium: 2.4rem;
   --theme-module-spacing-large: 3.2rem;
   --theme-module-spacing-extra-large: 3.2rem;
   --theme-module-spacing-scale-xxs: 0.16666;
   --theme-module-spacing-scale-xs: 0.25;
   --theme-module-spacing-scale-s: 0.5;
   --theme-module-spacing-scale-m: 1;
   --theme-module-spacing-scale-l: 1.5;
   --theme-module-spacing-scale-xl: 2;
   --theme-module-spacing-scale-xxl: 2.5;
 }
 
 :root {
   --theme-button-background: var(--color-primary-blue);
   --theme-button-background-hover: var(--color-secondary-blue-gradient);
   --theme-button-color: var(--color-base-white);
   --theme-button-color-hover: var(--color-base-white);
   --theme-button-padding-sm: .4rem .7rem;
   --theme-button-padding-md: .5rem .8rem;
   --theme-button-padding-lg: .5rem .9rem;
   --theme-button-padding-xl: .6rem 1rem;
   --theme-button-padding-xxl: .8rem 1.4rem;
   --theme-button-text-position: center;
   --theme-button-border-radius: 100px;
   --theme-button-font-size: .8rem;
   --theme-button-font-family: var(--theme-font-family-base);
   --theme-button-outline-focus: 4px solid rgba(var(--color-primary-blue), 1);
   --theme-button-icon-gap: .4rem;
   --theme-button-background-primary: linear-gradient(270deg, var(--color-primary-blue) 0%, var(--color-primary-blue) 100%);
   --theme-button-primary-background: linear-gradient(270deg, var(--color-primary-blue) 0%, var(--color-primary-blue) 100%);
   --theme-button-background-primary-hover: var(--color-secondary-blue-gradient);
   --theme-button-primary-background-hover: var(--color-secondary-blue-gradient);
   --theme-button-background-primary-focus: var(--color-secondary-blue-gradient);
   --theme-button-primary-background-focus: var(--color-secondary-blue-gradient);
   --theme-button-primary-background-alt: linear-gradient(270deg, var(--color-primary-red) 0%, var(--color-primary-red) 100%);
   --theme-button-primary-background-alt-hover: var(--color-secondary-orange-gradient);
   --theme-button-primary-background-alt-focus: var(--color-secondary-orange-gradient);
   --theme-button-primary-box-shadow-color-focus: var(--color-primary-blue-16);
   --theme-button-primary-box-shadow-color-alt-focus: var(--color-primary-red-16);
   --theme-button-primary-border-width: 0;
   --theme-button-color-primary: var(--color-base-white);
   --theme-button-primary-color: var(--color-base-white);
   --theme-button-color-primary-hover: var(--color-base-white);
   --theme-button-primary-color-hover: var(--color-base-white);
   --theme-button-background-secondary: transparent;
   --theme-button-secondary-background: transparent;
   --theme-button-background-secondary-hover: transparent;
   --theme-button-secondary-background-hover: transparent;
   --theme-button-background-secondary-focus: transparent;
   --theme-button-secondary-background-focus: transparent;
   --theme-button-secondary-border-color: linear-gradient(270deg, var(--color-secondary-dark-blue) 0%, var(--color-secondary-dark-blue) 100%);
   --theme-button-secondary-border-color-hover: var(--color-secondary-blue-gradient);
   --theme-button-secondary-box-shadow-color-focus: transparent;
   --theme-button-color-secondary: var(--color-secondary-dark-blue);
   --theme-button-secondary-color: var(--color-secondary-dark-blue);
   --theme-button-color-secondary-hover: var(--color-secondary-dark-blue);
   --theme-button-secondary-color-hover: var(--color-secondary-dark-blue);
   --theme-button-color-secondary-focus: var(--color-secondary-dark-blue);
   --theme-button-secondary-color-focus: var(--color-secondary-dark-blue);
   --theme-button-background-tertiary: transparent;
   --theme-button-tertiary-background: transparent;
   --theme-button-background-tertiary-hover: transparent;
   --theme-button-tertiary-background-hover: transparent;
   --theme-button-tertiary-background-focus: transparent;
   --theme-button-tertiary-border-width: 0;
   --theme-button-tertiary-border-color: transparent;
   --theme-button-tertiary-border-color-hover: transparent;
   --theme-button-tertiary-border-color-focus: transparent;
   --theme-button-tertiary-box-shadow-color-focus: transparent;
   --theme-button-color-tertiary: var(--color-secondary-dark-blue);
   --theme-button-tertiary-color: var(--color-secondary-dark-blue);
   --theme-button-color-tertiary-hover: var(--color-secondary-dark-blue);
   --theme-button-tertiary-color-hover: var(--color-secondary-dark-blue);
   --theme-link-arrow-icon-gap: .4rem;
   --theme-link-arrow-color: var(--color-secondary-dark-blue);
   --theme-link-arrow-color-hover: var(--color-secondary-dark-blue);
   --theme-link-arrow-font-family: var(--theme-font-family-base);
   --theme-link-arrow-font-size: var(--theme-typography-text-md-font-size);
   --theme-link-arrow-font-weight: var(--theme-font-weight-semibold);
   --theme-link-arrow-line-height: 1.43;
   --theme-link-arrow-position-x-adjustment: 0;
   --theme-link-arrow-position-y-adjustment: 0;
 }
 
 .diapositive {
   --theme-button-background-primary: var(--color-base-white);
   --theme-button-primary-background: var(--color-base-white);
   --theme-button-background-primary-hover: var(--color-base-white);
   --theme-button-primary-background-hover: var(--color-base-white);
   --theme-button-background-primary-focus: var(--color-base-white);
   --theme-button-primary-background-focus: var(--color-base-white);
   --theme-button-primary-box-shadow-color-focus: var(--color-base-white-24);
   --theme-button-primary-border-width: 0;
   --theme-button-color-primary: var(--color-base-black);
   --theme-button-primary-color: var(--color-base-black);
   --theme-button-color-primary-hover: var(--color-base-black);
   --theme-button-primary-color-hover: var(--color-base-black);
   --theme-button-color-primary-focus: var(--color-base-black);
   --theme-button-primary-color-focus: var(--color-base-black);
   --theme-button-background-secondary: transparent;
   --theme-button-secondary-background: transparent;
   --theme-button-background-secondary-hover: transparent;
   --theme-button-secondary-background-hover: transparent;
   --theme-button-background-secondary-focus: transparent;
   --theme-button-secondary-background-focus: transparent;
   --theme-button-secondary-border-color: var(--color-base-white);
   --theme-button-secondary-border-color-hover: var(--color-base-white);
   --theme-button-secondary-border-color-focus: var(--color-base-white);
   --theme-button-secondary-box-shadow-color-focus: transparent;
   --theme-button-color-secondary: var(--color-base-white);
   --theme-button-secondary-color: var(--color-base-white);
   --theme-button-color-secondary-hover: var(--color-base-white);
   --theme-button-secondary-color-hover: var(--color-base-white);
   --theme-button-color-secondary-focus: var(--color-base-white);
   --theme-button-secondary-color-focus: var(--color-base-white);
   --theme-button-background-tertiary: transparent;
   --theme-button-tertiary-background: transparent;
   --theme-button-background-tertiary-hover: transparent;
   --theme-button-tertiary-background-hover: transparent;
   --theme-button-tertiary-border-width: 0;
   --theme-button-tertiary-border-color: transparent;
   --theme-button-tertiary-border-color-hover: transparent;
   --theme-button-tertiary-border-color-focus: transparent;
   --theme-button-tertiary-box-shadow-color-focus: transparent;
   --theme-button-color-tertiary: var(--color-base-white);
   --theme-button-tertiary-color: var(--color-base-white);
   --theme-button-color-tertiary-hover: var(--color-base-white);
   --theme-button-tertiary-color-hover: var(--color-base-white );
 }
 
 :root {
   --theme-typography-letter-spacing: -2%;
   --theme-typography-text-xxl-font-size: 1rem;
   --theme-typography-text-xl-font-size: .9rem;
   --theme-typography-text-lg-font-size: .9rem;
   --theme-typography-text-md-font-size: .8rem;
   --theme-typography-text-sm-font-size: .7rem;
   --theme-typography-text-xs-font-size: .6rem;
   --theme-typography-text-xxl-line-height: 1.33;
   --theme-typography-text-xl-line-height: 1.5;
   --theme-typography-text-lg-line-height: 1.56;
   --theme-typography-text-md-line-height: 1.5;
   --theme-typography-text-sm-line-height: 1.25;
   --theme-typography-text-xs-line-height: 1.5;
   --theme-typography-base-line-height: var(--theme-typography-text-md-line-height);
   --theme-typography-base-font-size: var(--theme-typography-text-md-font-size);
   --theme-typography-base-margin-top: 0;
   --theme-typography-base-margin-bottom: 1.6rem;
   --theme-typography-base-color: var(--theme-color-base);
   --theme-typography-link-transition: color 0.1s linear;
   --theme-typography-link-text-decoration: none;
   --theme-typography-link-text-decoration-hover: underline;
   --theme-typography-link-color: var(--color-secondary-dark-blue);
   --theme-typography-link-color-hover: var(--color-secondary-dark-blue);
   --typography-link-color: var(--color-secondary-dark-blue);
   --typography-link-color-hover: var(--color-secondary-dark-blue);
   --theme-typography-link-font-family: var(--theme-font-family-base);
   --theme-typography-link-font-weight: var(--theme-font-weight-base);
   --theme-typography-link-line-height: var(--theme-typography-text-md-line-height);
   --theme-typography-blockquote-font-size: .9rem;
   --theme-typography-blockquote-font-weight: var(--theme-font-weight-strong);
   --theme-typography-blockquote-line-height: 1.3;
   --theme-typography-pre-font-size: 0.7rem;
   --theme-typography-heading-color: var(--theme-color-base);
   --theme-typography-heading-font-family: var(--theme-font-family-heading);
   --theme-typography-heading-font-weight: var(--theme-font-weight-600);
   --theme-typography-heading-margin-bottom: 1rem;
   --theme-typography-heading-margin-top: 0;
   --theme-typography-heading-line-height: 1.2;
   --theme-typography-display-margin-bottom: var(--theme-typography-heading-margin-bottom);
   --theme-typography-display-margin-top: var(--theme-typography-heading-margin-top);
   --theme-typography-display-letter-spacing: var(--theme-typography-letter-spacing);
   --theme-typography-display-line-height: 1.25;
   --theme-typography-display-font-size: 1.5rem;
   --theme-typography-display-font-weight: var(--theme-typography-heading-font-weight);
   --theme-typography-heading-1-margin-bottom: var(--theme-typography-heading-margin-bottom);
   --theme-typography-heading-1-margin-top: var(--theme-typography-heading-margin-top);
   --theme-typography-heading-1-letter-spacing: var(--theme-typography-letter-spacing);
   --theme-typography-heading-1-line-height: 1.2;
   --theme-typography-heading-1-font-size: 1.5rem;
   --theme-typography-heading-1-font-size-new: 50px;
   --theme-typography-heading-1-font-weight: var(--theme-typography-heading-font-weight);
   --theme-typography-heading-2-margin-bottom: var(--theme-typography-heading-margin-bottom);
   --theme-typography-heading-2-margin-top: var(--theme-typography-heading-margin-top);
   --theme-typography-heading-2-letter-spacing: var(--theme-typography-letter-spacing);
   --theme-typography-heading-2-line-height: 1.2;
   --theme-typography-heading-2-font-size: 1.5rem;
   --theme-typography-heading-2-font-size-new: 40px;
   --theme-typography-heading-2-font-weight: var(--theme-typography-heading-font-weight);
   --theme-typography-heading-3-margin-bottom: var(--theme-typography-heading-margin-bottom);
   --theme-typography-heading-3-margin-top: var(--theme-typography-heading-margin-top);
   --theme-typography-heading-3-letter-spacing: var(--theme-typography-letter-spacing);
   --theme-typography-heading-3-line-height: 1.2;
   --theme-typography-heading-3-font-size: 1.5rem;
   --theme-typography-heading-3-font-size-new: 30px;
   --theme-typography-heading-3-font-weight: var(--theme-typography-heading-font-weight);
   --theme-typography-heading-4-margin-bottom: var(--theme-typography-heading-margin-bottom);
   --theme-typography-heading-4-margin-top: var(--theme-typography-heading-margin-top);
   --theme-typography-heading-4-line-height: 1.2;
   --theme-typography-heading-4-font-size: 1rem;
   --theme-typography-heading-4-font-size-new: 24px;
   --theme-typography-heading-4-font-weight: var(--theme-typography-heading-font-weight);
   --theme-typography-heading-5-margin-bottom: var(--theme-typography-heading-margin-bottom);
   --theme-typography-heading-5-margin-top: var(--theme-typography-heading-margin-top);
   --theme-typography-heading-5-line-height: 1.2;
   --theme-typography-heading-5-font-size: 1rem;
   --theme-typography-heading-5-font-size-new: 20px;
   --theme-typography-heading-5-font-weight: var(--theme-typography-heading-font-weight);
   --theme-typography-heading-6-margin-bottom: var(--theme-typography-heading-margin-bottom);
   --theme-typography-heading-6-margin-top: var(--theme-typography-heading-margin-top);
   --theme-typography-heading-6-line-height: 1.2;
   --theme-typography-heading-6-font-size: 0.9rem;
   --theme-typography-heading-6-font-size-new: 18px;
   --theme-typography-heading-6-font-weight: var(--theme-typography-heading-font-weight);
   --theme-typography-text-xxl-font-size-tablet: 1.2rem;
   --theme-typography-text-xl-font-size-tablet: 1rem;
   --theme-typography-text-lg-font-size-tablet: .9rem;
   --theme-typography-text-md-font-size-tablet: .8rem;
   --theme-typography-text-sm-font-size-tablet: .7rem;
   --theme-typography-text-xs-font-size-tablet: .6rem;
   --theme-typography-text-xxl-line-height-tablet: 1.33;
   --theme-typography-text-xl-line-height-tablet: 1.5;
   --theme-typography-text-lg-line-height-tablet: 1.56;
   --theme-typography-text-md-line-height-tablet: 1.5;
   --theme-typography-text-sm-line-height-tablet: 1.25;
   --theme-typography-text-xs-line-height-tablet: 1.5;
   --theme-typography-base-font-size-tablet: var(--theme-typography-text-lg-font-size);
   --theme-typography-base-margin-bottom-tablet: var(--theme-typography-base-margin-bottom);
   --theme-typography-base-margin-top-tablet: var(--theme-typography-base-margin-top);
   --theme-typography-base-line-height-tablet: var(--theme-typography-text-lg-line-height);
   --theme-typography-link-text-decoration-hover-tablet: var(--theme-typography-link-text-decoration-hover);
   --theme-typography-link-line-height-tablet: var(--theme-typography-link-line-height);
   --theme-typography-blockquote-font-size-tablet: 1.1rem;
   --theme-typography-blockquote-font-weight-tablet: var(--theme-font-weight-strong);
   --theme-typography-blockquote-line-height-tablet: 1.3;
   --theme-typography-pre-font-size-tablet: 0.9rem;
   --theme-typography-heading-font-weight-tablet: var(--theme-font-weight-strong);
   --theme-typography-heading-margin-bottom-tablet: var(--theme-typography-heading-margin-bottom);
   --theme-typography-heading-margin-top-tablet: var(--theme-typography-heading-margin-top);
   --theme-typography-heading-line-height-tablet: var(--theme-typography-heading-line-height);
   --theme-typography-display-margin-bottom-tablet: var(--theme-typography-heading-margin-bottom-tablet);
   --theme-typography-display-margin-top-tablet: var(--theme-typography-heading-margin-top-tablet);
   --theme-typography-display-line-height-tablet: var(--theme-typography-display-line-height);
   --theme-typography-display-font-size-tablet: 2.4rem;
   --theme-typography-display-font-weight-tablet: var(--theme-typography-heading-font-weight-tablet);
   --theme-typography-heading-1-margin-bottom-tablet: var(--theme-typography-heading-margin-bottom-tablet);
   --theme-typography-heading-1-margin-top-tablet: var(--theme-typography-heading-margin-top-tablet);
   --theme-typography-heading-1-line-height-tablet: var(--theme-typography-heading-1-line-height);
   --theme-typography-heading-1-font-size-tablet: 2.4rem;
   --theme-typography-heading-1-font-weight-tablet: var(--theme-typography-heading-font-weight-tablet);
   --theme-typography-heading-2-margin-bottom-tablet: var(--theme-typography-heading-2-margin-bottom);
   --theme-typography-heading-2-margin-top-tablet: var(--theme-typography-heading-2-margin-top);
   --theme-typography-heading-2-line-height-tablet: var(--theme-typography-heading-2-line-height);
   --theme-typography-heading-2-font-size-tablet: 2.4rem;
   --theme-typography-heading-2-font-weight-tablet: var(--theme-typography-heading-2-font-weight);
   --theme-typography-heading-3-margin-bottom-tablet: var(--theme-typography-heading-3-margin-bottom);
   --theme-typography-heading-3-margin-top-tablet: var(--theme-typography-heading-3-margin-top);
   --theme-typography-heading-3-line-height-tablet: var(--theme-typography-heading-3-line-height);
   --theme-typography-heading-3-font-size-tablet: 1.8rem;
   --theme-typography-heading-3-font-weight-tablet: var(--theme-typography-heading-3-font-weight);
   --theme-typography-heading-4-margin-bottom-tablet: var(--theme-typography-heading-4-margin-bottom);
   --theme-typography-heading-4-margin-top-tablet: var(--theme-typography-heading-4-margin-top);
   --theme-typography-heading-4-line-height-tablet: var(--theme-typography-heading-4-line-height);
   --theme-typography-heading-4-font-size-tablet: 1rem;
   --theme-typography-heading-4-font-weight-tablet: var(--theme-typography-heading-4-font-weight);
   --theme-typography-heading-5-margin-bottom-tablet: var(--theme-typography-heading-5-margin-bottom);
   --theme-typography-heading-5-margin-top-tablet: var(--theme-typography-heading-5-margin-top);
   --theme-typography-heading-5-line-height-tablet: var(--theme-typography-heading-5-line-height);
   --theme-typography-heading-5-font-size-tablet: 1.2rem;
   --theme-typography-heading-5-font-weight-tablet: var(--theme-typography-heading-5-font-weight);
   --theme-typography-heading-6-margin-bottom-tablet: var(--theme-typography-heading-6-margin-bottom);
   --theme-typography-heading-6-margin-top-tablet: var(--theme-typography-heading-6-margin-top);
   --theme-typography-heading-6-line-height-tablet: var(--theme-typography-heading-6-line-height);
   --theme-typography-heading-6-font-size-tablet: .9rem;
   --theme-typography-heading-6-font-weight-tablet: var(--theme-typography-heading-6-font-weight);
   --theme-typography-text-xxl-font-size-desktop: 1.2rem;
   --theme-typography-text-xl-font-size-desktop: 1rem;
   --theme-typography-text-lg-font-size-desktop: .9rem;
   --theme-typography-text-md-font-size-desktop: .8rem;
   --theme-typography-text-sm-font-size-desktop: .7rem;
   --theme-typography-text-xs-font-size-desktop: .6rem;
   --theme-typography-text-xxl-line-height-desktop: 1.33;
   --theme-typography-text-xl-line-height-desktop: 1.5;
   --theme-typography-text-lg-line-height-desktop: 1.56;
   --theme-typography-text-md-line-height-desktop: 1.5;
   --theme-typography-text-sm-line-height-desktop: 1.25;
   --theme-typography-text-xs-line-height-desktop: 1.5;
   --theme-typography-base-font-size-desktop: var(--theme-typography-text-lg-font-size);
   --theme-typography-base-margin-bottom-desktop: var(--theme-typography-base-margin-bottom);
   --theme-typography-base-margin-top-desktop: var(--theme-typography-base-margin-top);
   --theme-typography-base-line-height-desktop: var(--theme-typography-text-lg-line-height);
   --theme-typography-link-text-decoration-hover-desktop: var(--theme-typography-link-text-decoration-hover);
   --theme-typography-link-line-height-desktop: var(--theme-typography-link-line-height);
   --theme-typography-blockquote-font-size-desktop: 1.1rem;
   --theme-typography-blockquote-font-weight-desktop: var(--theme-font-weight-strong);
   --theme-typography-blockquote-line-height-desktop: 1.3;
   --theme-typography-pre-font-size-desktop: 0.9rem;
   --theme-typography-heading-font-weight-desktop: var(--theme-font-weight-semibold);
   --theme-typography-heading-margin-bottom-desktop: var(--theme-typography-heading-margin-bottom);
   --theme-typography-heading-margin-top-desktop: var(--theme-typography-heading-margin-top);
   --theme-typography-heading-line-height-desktop: var(--theme-typography-heading-line-height);
   --theme-typography-display-margin-bottom-desktop: var(--theme-typography-heading-margin-bottom-desktop);
   --theme-typography-display-margin-top-desktop: var(--theme-typography-heading-margin-top-desktop);
   --theme-typography-display-line-height-desktop: var(--theme-typography-display-line-height);
   --theme-typography-display-font-size-desktop: 3.6rem;
   --theme-typography-display-font-weight-desktop: var(--theme-typography-heading-font-weight-desktop);
   --theme-typography-heading-1-margin-bottom-desktop: var(--theme-typography-heading-margin-bottom-desktop);
   --theme-typography-heading-1-margin-top-desktop: var(--theme-typography-heading-margin-top-desktop);
   --theme-typography-heading-1-line-height-desktop: var(--theme-typography-heading-1-line-height);
   --theme-typography-heading-1-font-size-desktop-old: 2.5rem;
   --theme-typography-heading-1-font-size-desktop: 50px;
   --theme-typography-heading-1-font-weight-desktop: var(--theme-typography-heading-font-weight-desktop);
   --theme-typography-heading-2-margin-bottom-desktop: var(--theme-typography-heading-2-margin-bottom);
   --theme-typography-heading-2-margin-top-desktop: var(--theme-typography-heading-2-margin-top);
   --theme-typography-heading-2-line-height-desktop: var(--theme-typography-heading-2-line-height);
   --theme-typography-heading-2-font-size-desktop-old: 2rem;
   --theme-typography-heading-2-font-size-desktop: 40px;
   --theme-typography-heading-2-font-weight-desktop: var(--theme-typography-heading-2-font-weight);
   --theme-typography-heading-3-margin-bottom-desktop: var(--theme-typography-heading-3-margin-bottom);
   --theme-typography-heading-3-margin-top-desktop: var(--theme-typography-heading-3-margin-top);
   --theme-typography-heading-3-line-height-desktop: var(--theme-typography-heading-3-line-height);
   --theme-typography-heading-3-font-size-desktop-old: 1.5rem;
   --theme-typography-heading-3-font-size-desktop: 30px;
   --theme-typography-heading-3-font-weight-desktop: var(--theme-typography-heading-3-font-weight);
   --theme-typography-heading-4-margin-bottom-desktop: var(--theme-typography-heading-4-margin-bottom);
   --theme-typography-heading-4-margin-top-desktop: var(--theme-typography-heading-4-margin-top);
   --theme-typography-heading-4-line-height-desktop: var(--theme-typography-heading-4-line-height);
   --theme-typography-heading-4-font-size-desktop-old: 1.2rem;
   --theme-typography-heading-4-font-size-desktop: 24px;
   --theme-typography-heading-4-font-weight-desktop: var(--theme-typography-heading-4-font-weight);
   --theme-typography-heading-5-margin-bottom-desktop: var(--theme-typography-heading-5-margin-bottom);
   --theme-typography-heading-5-margin-top-desktop: var(--theme-typography-heading-5-margin-top);
   --theme-typography-heading-5-line-height-desktop: var(--theme-typography-heading-5-line-height);
   --theme-typography-heading-5-font-size-desktop-old: 1rem;
   --theme-typography-heading-5-font-size-desktop: 20px;
   --theme-typography-heading-5-font-weight-desktop: var(--theme-typography-heading-5-font-weight);
   --theme-typography-heading-6-margin-bottom-desktop: var(--theme-typography-heading-6-margin-bottom);
   --theme-typography-heading-6-margin-top-desktop: var(--theme-typography-heading-6-margin-top);
   --theme-typography-heading-6-line-height-desktop: var(--theme-typography-heading-6-line-height);
   --theme-typography-heading-6-font-size-desktop-old: 0.9rem;
   --theme-typography-heading-6-font-size-desktop: 20px;
   --theme-typography-heading-6-font-weight-desktop: var(--theme-typography-heading-6-font-weight);
 }
 
 :root {
   --theme-body-padding-top: 144px;
 }
 
 @media only screen and (min-width: 1175px) {
   :root {
     --theme-body-padding-top: 170px;
   }
 }
 wcl-listing-logos {
   --listing-logos-max-width: 768px;
   --listing-logos-title-margin-top: 0;
   --listing-logos-title-margin-bottom: 1.5rem;
   --listing-logos-title-alignment: center;
   --listing-logos-description-margin-bottom: 1.5rem;
   --listing-logos-alignment: center;
   --listing-logos-vertical-space-between-logos: 0.8rem;
 }
 
 wcl-media-and-paragraph {
   --theme-key-feature-description-color: var(--color-gray-100);
   --theme-key-feature-font-size: 16px;
   --theme-media-and-paragraph-actions-margin: 32px 0px;
 }
 
 wcl-media {
   --theme-media-caption-color: var(--color-gray-75);
   --theme-media-caption-font-size: 14px;
   --theme-media-caption-font-family: var(--theme-font-family-base);
   --theme-media-caption-margin-top: 24px ;
   --theme-media-play-button-background-position: center;
   --theme-media-play-button-background-image: url(https://26222027.fs1.hubspotusercontent-eu1.net/hubfs/26222027/woodwing-theme-assets/icons/play-icon.svg);
   --theme-media-play-button-background-image-size: 24px;
   --theme-media-play-button-background-position: center;
   --theme-media-play-button-background-repeat: no-repeat;
   --theme-media-play-button-size-desktop: 80px;
   --theme-media-play-button-background-color-hover: var(--color-primary-blue);
   --theme-media-play-button-background: var(--color-primary-blue);
   --theme-media-play-button-width: 0px;
   --theme-media-play-button-icon-size: 0px;
   --theme-media-play-button-icon-width: 0px;
   --theme-media-play-button-background-image-size: 14px;
   --theme-media-caption-font-size: 14px;
   --theme-media-caption-color: var(--color-gray-75);
 }
 
 wcl-chip {
   --chip-title-font-size: .6rem;
   --chip-title-font-weight: var(--theme-font-weight-semibold);
   --chip-title-color: var(--color-gray-100);
   --chip-padding: .2rem .6rem;
 }
 wcl-chip .chip ::slotted([slot=text]) {
   margin-top: 0 !important;
 }
 
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * The size-related variables (small/medium etc.) are directly related to the
  * responsive breakpoints.
  ***************************************************************************** */
 /* Container
   --------------------------------------------------------------------------- */
 /*
  * Maximum container width. The container padding will added to this with so
  * the actual content will have this (maximum) size.
  */
 /* Gutters
   --------------------------------------------------------------------------- */
 /*****************************************************************************
  * Generic module settings
  ***************************************************************************** */
 /*****************************************************************************
  * Opiniated defaults
  *
  * Based on Normalize.css:
  * normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css
  ***************************************************************************** */
 /* Document
   ---------------------------------------------------------------------------- */
 *,
 *::before,
 *::after {
   box-sizing: border-box;
 }
 
 html,
 body {
   line-height: var(--theme-typography-base-line-height);
   margin: 0;
   overflow-x: hidden;
   padding: 0;
   text-rendering: optimizeLegibility;
   width: 100%;
   -moz-osx-font-smoothing: grayscale;
   -webkit-font-smoothing: antialiased;
   -webkit-text-size-adjust: 100%;
 }
 
 html {
   font-size: 20px;
 }
 
 body.no-overflow {
   overflow: unset;
 }
 body.navigation {
   padding-top: 96px;
 }
 body.navigation--product {
   padding-top: 184px;
 }
 body.open-menu {
   height: 100vh;
   overflow: hidden;
 }
 
 /* Typography
   ---------------------------------------------------------------------------- */
 body {
   color: var(--theme-color-base);
   font-size: var(--theme-typography-base-font-size);
   font-family: var(--theme-font-family-base);
   font-weight: var(--theme-font-weight-base);
   padding-top: var(--theme-body-top-space);
 }
 
 h1, h2, h3, h4, h5, h6 {
   margin-bottom: 1rem;
   margin-top: 0;
 }
 
 h2 {
   margin-bottom: 1.6rem;
 }
 
 h3, h4, h5, h6 {
   margin-bottom: 1.2rem;
 }
 
 p {
   margin-bottom: 1.2rem;
   margin-top: 0;
 }
 
 p:last-child {
   margin-bottom: 0;
 }
 
 ul, ol {
   margin-bottom: 1rem;
   margin-top: 0;
 }
 
 figure {
   margin: 0;
   padding: 0;
 }
 
 picture {
   display: block;
 }
 
 blockquote {
   font-size: 1.7rem;
   margin: 0;
 }
 
 a.cta_button {
   box-sizing: border-box !important;
 }
 
 /* Grouping content
   ---------------------------------------------------------------------------- */
 hr {
   background: var(--theme-color-base);
   border: none;
   height: 1px;
 }
 
 @media only screen and (min-width: 1200px) {
   body.navigation {
     padding-top: 176px;
   }
   body.navigation--product {
     padding-top: 274px;
   }
 }
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * The size-related variables (small/medium etc.) are directly related to the
  * responsive breakpoints.
  ***************************************************************************** */
 /* Container
   --------------------------------------------------------------------------- */
 /*
  * Maximum container width. The container padding will added to this with so
  * the actual content will have this (maximum) size.
  */
 /* Gutters
   --------------------------------------------------------------------------- */
 /*****************************************************************************
  * Generic module settings
  ***************************************************************************** */
 /*****************************************************************************
  * Setup of container and grid. A row is a flex container by default; use
  * flexbox modifiers to change direction, order, alignment etc.
  ***************************************************************************** */
 /* Setup
   ---------------------------------------------------------------------------- */
 .container {
   margin: 0 auto;
   position: relative;
   width: 100%;
   z-index: 2;
 }
 
 .row {
   display: flex;
   flex: 0 1 auto;
   flex-direction: row;
   flex-wrap: wrap;
 }
 
 .row--justify-center {
   justify-content: center;
 }
 
 .row--justify-flex-start {
   justify-content: flex-start;
 }
 
 .row--justify-flex-end {
   justify-content: flex-end;
 }
 
 .row--align-stretch {
   align-items: stretch;
 }
 
 .row--align-center {
   align-items: center;
 }
 
 .row--reverse .col-12:first-child {
   order: 1;
 }
 
 /* Default
   ---------------------------------------------------------------------------- */
 .container {
   max-width: calc(var(--theme-container-width) + var(--theme-container-padding-default) + var(--theme-container-padding-default));
   padding: 0 var(--theme-container-padding-default);
 }
 
 .container--small {
   max-width: calc(var(--theme-container-width-small) + var(--theme-container-padding-default) + var(--theme-container-padding-default));
   padding: 0 var(--theme-container-padding-default);
 }
 
 .container--large {
   max-width: calc(var(--theme-container-width-large) + var(--theme-container-padding-default) + var(--theme-container-padding-default));
   padding: 0 var(--theme-container-padding-default);
 }
 
 .row {
   margin-left: calc((-var(--theme-gutter-width-default)) / 2);
   margin-right: calc((-var(--theme-gutter-width-default)) / 2);
 }
 
 [class*=col-] {
   padding-right: calc(var(--theme-gutter-width-default) / 2 );
   padding-left: calc(var(--theme-gutter-width-default) / 2 );
 }
 
 .col,
 .col-1,
 .col-2,
 .col-3,
 .col-4,
 .col-5,
 .col-6,
 .col-7,
 .col-8,
 .col-9,
 .col-10,
 .col-11,
 .col-12 {
   flex: 0 0 auto;
 }
 
 .col {
   flex-grow: 1;
   flex-basis: 0;
   max-width: 100%;
 }
 
 .col-1 {
   flex-basis: 8.333%;
   max-width: 8.333%;
 }
 
 .col-2 {
   flex-basis: 16.667%;
   max-width: 16.667%;
 }
 
 .col-3 {
   flex-basis: 25%;
   max-width: 25%;
 }
 
 .col-4 {
   flex-basis: 33.333%;
   max-width: 33.333%;
 }
 
 .col-5 {
   flex-basis: 41.667%;
   max-width: 41.667%;
 }
 
 .col-6 {
   flex-basis: 50%;
   max-width: 50%;
 }
 
 .col-7 {
   flex-basis: 58.333%;
   max-width: 58.333%;
 }
 
 .col-8 {
   flex-basis: 66.667%;
   max-width: 66.667%;
 }
 
 .col-9 {
   flex-basis: 75%;
   max-width: 75%;
 }
 
 .col-10 {
   flex-basis: 83.333%;
   max-width: 83.333%;
 }
 
 .col-11 {
   flex-basis: 91.667%;
   max-width: 91.667%;
 }
 
 .col-12 {
   flex-basis: 100%;
   max-width: 100%;
 }
 
 .col-offset-1 {
   margin-left: 8.333%;
 }
 
 .col-offset-2 {
   margin-left: 16.667%;
 }
 
 .col-offset-3 {
   margin-left: 25%;
 }
 
 .col-offset-4 {
   margin-left: 33.333%;
 }
 
 .col-offset-5 {
   margin-left: 41.667%;
 }
 
 .col-offset-6 {
   margin-left: 50%;
 }
 
 .col-offset-7 {
   margin-left: 58.333%;
 }
 
 .col-offset-8 {
   margin-left: 66.667%;
 }
 
 .col-offset-9 {
   margin-left: 75%;
 }
 
 .col-offset-10 {
   margin-left: 83.333%;
 }
 
 .col-offset-11 {
   margin-left: 91.667%;
 }
 
 /* Extra small screens
   ---------------------------------------------------------------------------- */
 @media only screen and (min-width: 576px) {
   .container {
     max-width: calc(var(--theme-container-width) + var(--theme-container-padding-extra-small) + var(--theme-container-padding-extra-small));
     padding: 0 var(--theme-container-padding-extra-small);
   }
 
   .container--small {
     max-width: calc(var(--theme-container-width-small) + var(--theme-container-padding-extra-small) + var(--theme-container-padding-extra-small));
     padding: 0 var(--theme-container-padding-extra-small);
   }
 
   .container--large {
     max-width: calc(var(--theme-container-width-large) + var(--theme-container-padding-extra-small) + var(--theme-container-padding-extra-small));
     padding: 0 var(--theme-container-padding-extra-small);
   }
 
   .row {
     margin-left: calc((-var(--theme-gutter-width-extra-small)) / 2);
     margin-right: calc((-var(--theme-gutter-width-extra-small)) / 2);
   }
 
   .row--justify-center-xs {
     justify-content: center;
   }
 
   .row--justify-flex-start-xs {
     justify-content: flex-start;
   }
 
   .row--justify-flex-end-xs {
     justify-content: flex-end;
   }
 
   .row--align-stretch-xs {
     align-items: stretch;
   }
 
   .row--reverse-xs .col-12:first-child {
     order: 1;
   }
 
   [class*=col-] {
     padding-right: calc(var(--theme-gutter-width-extra-small) / 2 );
     padding-left: calc(var(--theme-gutter-width-extra-small) / 2 );
   }
 
   .col-xs,
 .col-xs-1,
 .col-xs-2,
 .col-xs-3,
 .col-xs-4,
 .col-xs-5,
 .col-xs-6,
 .col-xs-7,
 .col-xs-8,
 .col-xs-9,
 .col-xs-10,
 .col-xs-11,
 .col-xs-12 {
     flex: 0 0 auto;
   }
 
   .col-xs {
     flex-grow: 1;
     flex-basis: 0;
     max-width: 100%;
   }
 
   .col-xs-1 {
     flex-basis: 8.333%;
     max-width: 8.333%;
   }
 
   .col-xs-2 {
     flex-basis: 16.667%;
     max-width: 16.667%;
   }
 
   .col-xs-3 {
     flex-basis: 25%;
     max-width: 25%;
   }
 
   .col-xs-4 {
     flex-basis: 33.333%;
     max-width: 33.333%;
   }
 
   .col-xs-5 {
     flex-basis: 41.667%;
     max-width: 41.667%;
   }
 
   .col-xs-6 {
     flex-basis: 50%;
     max-width: 50%;
   }
 
   .col-xs-7 {
     flex-basis: 58.333%;
     max-width: 58.333%;
   }
 
   .col-xs-8 {
     flex-basis: 66.667%;
     max-width: 66.667%;
   }
 
   .col-xs-9 {
     flex-basis: 75%;
     max-width: 75%;
   }
 
   .col-xs-10 {
     flex-basis: 83.333%;
     max-width: 83.333%;
   }
 
   .col-xs-11 {
     flex-basis: 91.667%;
     max-width: 91.667%;
   }
 
   .col-xs-12 {
     flex-basis: 100%;
     max-width: 100%;
   }
 
   .col-xs-offset-0 {
     margin-left: 0;
   }
 
   .col-xs-offset-1 {
     margin-left: 8.333%;
   }
 
   .col-xs-offset-2 {
     margin-left: 16.667%;
   }
 
   .col-xs-offset-3 {
     margin-left: 25%;
   }
 
   .col-xs-offset-4 {
     margin-left: 33.333%;
   }
 
   .col-xs-offset-5 {
     margin-left: 41.667%;
   }
 
   .col-xs-offset-6 {
     margin-left: 50%;
   }
 
   .col-xs-offset-7 {
     margin-left: 58.333%;
   }
 
   .col-xs-offset-8 {
     margin-left: 66.667%;
   }
 
   .col-xs-offset-9 {
     margin-left: 75%;
   }
 
   .col-xs-offset-10 {
     margin-left: 83.333%;
   }
 
   .col-xs-offset-11 {
     margin-left: 91.667%;
   }
 }
 /* Small screens
   ---------------------------------------------------------------------------- */
 @media only screen and (min-width: 768px) {
   .container {
     max-width: calc(var(--theme-container-width) + var(--theme-container-padding-small) + var(--theme-container-padding-small));
     padding: 0 var(--theme-container-padding-small);
   }
 
   .container--small {
     max-width: calc(var(--theme-container-width-small) + var(--theme-container-padding-small) + var(--theme-container-padding-small));
     padding: 0 var(--theme-container-padding-small);
   }
 
   .container--large {
     max-width: calc(var(--theme-container-width-large) + var(--theme-container-padding-small) + var(--theme-container-padding-small));
     padding: 0 var(--theme-container-padding-small);
   }
 
   .row {
     margin-left: calc((-var(--theme-gutter-width-small)) / 2);
     margin-right: calc((-var(--theme-gutter-width-small)) / 2);
   }
 
   .row--justify-center-sm {
     justify-content: center;
   }
 
   .row--justify-flex-start-sm {
     justify-content: flex-start;
   }
 
   .row--justify-flex-end-sm {
     justify-content: flex-end;
   }
 
   .row--align-stretch-sm {
     align-items: stretch;
   }
 
   .row--reverse-sm .col-12:first-child {
     order: 1;
   }
 
   [class*=col-] {
     padding-right: calc(var(--theme-gutter-width-small) / 2 );
     padding-left: calc(var(--theme-gutter-width-small) / 2 );
   }
 
   .col-sm,
 .col-sm-1,
 .col-sm-2,
 .col-sm-3,
 .col-sm-4,
 .col-sm-5,
 .col-sm-6,
 .col-sm-7,
 .col-sm-8,
 .col-sm-9,
 .col-sm-10,
 .col-sm-11,
 .col-sm-12 {
     flex: 0 0 auto;
   }
 
   .col-sm {
     flex-grow: 1;
     flex-basis: 0;
     max-width: 100%;
   }
 
   .col-sm-1 {
     flex-basis: 8.333%;
     max-width: 8.333%;
   }
 
   .col-sm-2 {
     flex-basis: 16.667%;
     max-width: 16.667%;
   }
 
   .col-sm-3 {
     flex-basis: 25%;
     max-width: 25%;
   }
 
   .col-sm-4 {
     flex-basis: 33.333%;
     max-width: 33.333%;
   }
 
   .col-sm-5 {
     flex-basis: 41.667%;
     max-width: 41.667%;
   }
 
   .col-sm-6 {
     flex-basis: 50%;
     max-width: 50%;
   }
 
   .col-sm-7 {
     flex-basis: 58.333%;
     max-width: 58.333%;
   }
 
   .col-sm-8 {
     flex-basis: 66.667%;
     max-width: 66.667%;
   }
 
   .col-sm-9 {
     flex-basis: 75%;
     max-width: 75%;
   }
 
   .col-sm-10 {
     flex-basis: 83.333%;
     max-width: 83.333%;
   }
 
   .col-sm-11 {
     flex-basis: 91.667%;
     max-width: 91.667%;
   }
 
   .col-sm-12 {
     flex-basis: 100%;
     max-width: 100%;
   }
 
   .col-sm-offset-0 {
     margin-left: 0;
   }
 
   .col-sm-offset-1 {
     margin-left: 8.333%;
   }
 
   .col-sm-offset-2 {
     margin-left: 16.667%;
   }
 
   .col-sm-offset-3 {
     margin-left: 25%;
   }
 
   .col-sm-offset-4 {
     margin-left: 33.333%;
   }
 
   .col-sm-offset-5 {
     margin-left: 41.667%;
   }
 
   .col-sm-offset-6 {
     margin-left: 50%;
   }
 
   .col-sm-offset-7 {
     margin-left: 58.333%;
   }
 
   .col-sm-offset-8 {
     margin-left: 66.667%;
   }
 
   .col-sm-offset-9 {
     margin-left: 75%;
   }
 
   .col-sm-offset-10 {
     margin-left: 83.333%;
   }
 
   .col-sm-offset-11 {
     margin-left: 91.667%;
   }
 }
 /* Medium screens
   ---------------------------------------------------------------------------- */
 @media only screen and (min-width: 992px) {
   .container {
     max-width: calc(var(--theme-container-width) + var(--theme-container-padding-medium) + var(--theme-container-padding-medium));
     padding: 0 var(--theme-container-padding-medium);
   }
 
   .container--small {
     max-width: calc(var(--theme-container-width-small) + var(--theme-container-padding-medium) + var(--theme-container-padding-medium));
     padding: 0 var(--theme-container-padding-medium);
   }
 
   .container--large {
     max-width: calc(var(--theme-container-width-large) + var(--theme-container-padding-medium) + var(--theme-container-padding-medium));
     padding: 0 var(--theme-container-padding-medium);
   }
 
   .row {
     margin-left: calc((-var(--theme-gutter-width-medium)) / 2);
     margin-right: calc((-var(--theme-gutter-width-medium)) / 2);
   }
 
   .row--justify-center-md {
     justify-content: center;
   }
 
   .row--justify-flex-start-md {
     justify-content: flex-start;
   }
 
   .row--justify-flex-end-md {
     justify-content: flex-end;
   }
 
   .row--align-stretch-md {
     align-items: stretch;
   }
 
   .row--reverse-md .col-12:first-child {
     order: 1;
   }
 
   [class*=col-] {
     padding-right: calc(var(--theme-gutter-width-medium) / 2 );
     padding-left: calc(var(--theme-gutter-width-medium) / 2 );
   }
 
   .col-md,
 .col-md-1,
 .col-md-2,
 .col-md-3,
 .col-md-4,
 .col-md-5,
 .col-md-6,
 .col-md-7,
 .col-md-8,
 .col-md-9,
 .col-md-10,
 .col-md-11,
 .col-md-12 {
     flex: 0 0 auto;
   }
 
   .col-md {
     flex-grow: 1;
     flex-basis: 0;
     max-width: 100%;
   }
 
   .col-md-1 {
     flex-basis: 8.333%;
     max-width: 8.333%;
   }
 
   .col-md-2 {
     flex-basis: 16.667%;
     max-width: 16.667%;
   }
 
   .col-md-3 {
     flex-basis: 25%;
     max-width: 25%;
   }
 
   .col-md-4 {
     flex-basis: 33.333%;
     max-width: 33.333%;
   }
 
   .col-md-5 {
     flex-basis: 41.667%;
     max-width: 41.667%;
   }
 
   .col-md-6 {
     flex-basis: 50%;
     max-width: 50%;
   }
 
   .col-md-7 {
     flex-basis: 58.333%;
     max-width: 58.333%;
   }
 
   .col-md-8 {
     flex-basis: 66.667%;
     max-width: 66.667%;
   }
 
   .col-md-9 {
     flex-basis: 75%;
     max-width: 75%;
   }
 
   .col-md-10 {
     flex-basis: 83.333%;
     max-width: 83.333%;
   }
 
   .col-md-11 {
     flex-basis: 91.667%;
     max-width: 91.667%;
   }
 
   .col-md-12 {
     flex-basis: 100%;
     max-width: 100%;
   }
 
   .col-md-offset-0 {
     margin-left: 0;
   }
 
   .col-md-offset-1 {
     margin-left: 8.333%;
   }
 
   .col-md-offset-2 {
     margin-left: 16.667%;
   }
 
   .col-md-offset-3 {
     margin-left: 25%;
   }
 
   .col-md-offset-4 {
     margin-left: 33.333%;
   }
 
   .col-md-offset-5 {
     margin-left: 41.667%;
   }
 
   .col-md-offset-6 {
     margin-left: 50%;
   }
 
   .col-md-offset-7 {
     margin-left: 58.333%;
   }
 
   .col-md-offset-8 {
     margin-left: 66.667%;
   }
 
   .col-md-offset-9 {
     margin-left: 75%;
   }
 
   .col-md-offset-10 {
     margin-left: 83.333%;
   }
 
   .col-md-offset-11 {
     margin-left: 91.667%;
   }
 }
 /* Large screens
   ---------------------------------------------------------------------------- */
 @media only screen and (min-width: 1175px) {
   .container {
     max-width: calc(var(--theme-container-width) + var(--theme-container-padding-large) + var(--theme-container-padding-large));
     padding: 0 var(--theme-container-padding-large);
   }
 
   .container--small {
     max-width: calc(var(--theme-container-width-small) + var(--theme-container-padding-large) + var(--theme-container-padding-large));
     padding: 0 var(--theme-container-padding-large);
   }
 
   .container--large {
     max-width: calc(var(--theme-container-width-large) + var(--theme-container-padding-large) + var(--theme-container-padding-large));
     padding: 0 var(--theme-container-padding-large);
   }
 
   .row {
     margin-left: calc((-var(--theme-gutter-width-large)) / 2);
     margin-right: calc((-var(--theme-gutter-width-large)) / 2);
   }
 
   .row--justify-center-lg {
     justify-content: center;
   }
 
   .row--justify-flex-start-lg {
     justify-content: flex-start;
   }
 
   .row--justify-flex-end-lg {
     justify-content: flex-end;
   }
 
   .row--align-stretch-lg {
     align-items: stretch;
   }
 
   .row--reverse-lg .col-12:first-child {
     order: 1;
   }
 
   [class*=col-] {
     padding-right: calc(var(--theme-gutter-width-large) / 2 );
     padding-left: calc(var(--theme-gutter-width-large) / 2 );
   }
 
   .col-lg,
 .col-lg-1,
 .col-lg-2,
 .col-lg-3,
 .col-lg-4,
 .col-lg-5,
 .col-lg-6,
 .col-lg-7,
 .col-lg-8,
 .col-lg-9,
 .col-lg-10,
 .col-lg-11,
 .col-lg-12 {
     flex: 0 0 auto;
   }
 
   .col-lg {
     flex-grow: 1;
     flex-basis: 0;
     max-width: 100%;
   }
 
   .col-lg-1 {
     flex-basis: 8.333%;
     max-width: 8.333%;
   }
 
   .col-lg-2 {
     flex-basis: 16.667%;
     max-width: 16.667%;
   }
 
   .col-lg-3 {
     flex-basis: 25%;
     max-width: 25%;
   }
 
   .col-lg-4 {
     flex-basis: 33.333%;
     max-width: 33.333%;
   }
 
   .col-lg-5 {
     flex-basis: 41.667%;
     max-width: 41.667%;
   }
 
   .col-lg-6 {
     flex-basis: 50%;
     max-width: 50%;
   }
 
   .col-lg-7 {
     flex-basis: 58.333%;
     max-width: 58.333%;
   }
 
   .col-lg-8 {
     flex-basis: 66.667%;
     max-width: 66.667%;
   }
 
   .col-lg-9 {
     flex-basis: 75%;
     max-width: 75%;
   }
 
   .col-lg-10 {
     flex-basis: 83.333%;
     max-width: 83.333%;
   }
 
   .col-lg-11 {
     flex-basis: 91.667%;
     max-width: 91.667%;
   }
 
   .col-lg-12 {
     flex-basis: 100%;
     max-width: 100%;
   }
 
   .col-lg-offset-0 {
     margin-left: 0;
   }
 
   .col-lg-offset-1 {
     margin-left: 8.333%;
   }
 
   .col-lg-offset-2 {
     margin-left: 16.667%;
   }
 
   .col-lg-offset-3 {
     margin-left: 25%;
   }
 
   .col-lg-offset-4 {
     margin-left: 33.333%;
   }
 
   .col-lg-offset-5 {
     margin-left: 41.667%;
   }
 
   .col-lg-offset-6 {
     margin-left: 50%;
   }
 
   .col-lg-offset-7 {
     margin-left: 58.333%;
   }
 
   .col-lg-offset-8 {
     margin-left: 66.667%;
   }
 
   .col-lg-offset-9 {
     margin-left: 75%;
   }
 
   .col-lg-offset-10 {
     margin-left: 83.333%;
   }
 
   .col-lg-offset-11 {
     margin-left: 91.667%;
   }
 }
 /* Extra large screens
   ---------------------------------------------------------------------------- */
 @media only screen and (min-width: 1440px) {
   .container {
     max-width: calc(var(--theme-container-width) + var(--theme-container-padding-extra-large) + var(--theme-container-padding-extra-large));
     padding: 0 var(--theme-container-padding-extra-large);
   }
 
   .container--small {
     max-width: calc(var(--theme-container-width-small) + var(--theme-container-padding-extra-large) + var(--theme-container-padding-extra-large));
     padding: 0 var(--theme-container-padding-extra-large);
   }
 
   .container--large {
     max-width: calc(var(--theme-container-width-large) + var(--theme-container-padding-extra-large) + var(--theme-container-padding-extra-large));
     padding: 0 var(--theme-container-padding-extra-large);
   }
 
   .row {
     margin-left: calc((-var(--theme-gutter-width-extra-large)) / 2);
     margin-right: calc((-var(--theme-gutter-width-extra-large)) / 2);
   }
 
   .row--justify-center-xl {
     justify-content: center;
   }
 
   .row--justify-flex-start-xl {
     justify-content: flex-start;
   }
 
   .row--justify-flex-end-xl {
     justify-content: flex-end;
   }
 
   .row--align-stretch-xl {
     align-items: stretch;
   }
 
   .row--reverse-xl .col-12:first-child {
     order: 1;
   }
 
   [class*=col-] {
     padding-right: calc(var(--theme-gutter-width-extra-large) / 2 );
     padding-left: calc(var(--theme-gutter-width-extra-large) / 2 );
   }
 
   .col-xl,
 .col-xl-1,
 .col-xl-2,
 .col-xl-3,
 .col-xl-4,
 .col-xl-5,
 .col-xl-6,
 .col-xl-7,
 .col-xl-8,
 .col-xl-9,
 .col-xl-10,
 .col-xl-11,
 .col-xl-12 {
     flex: 0 0 auto;
   }
 
   .col-xl {
     flex-grow: 1;
     flex-basis: 0;
     max-width: 100%;
   }
 
   .col-xl-1 {
     flex-basis: 8.333%;
     max-width: 8.333%;
   }
 
   .col-xl-2 {
     flex-basis: 16.667%;
     max-width: 16.667%;
   }
 
   .col-xl-3 {
     flex-basis: 25%;
     max-width: 25%;
   }
 
   .col-xl-4 {
     flex-basis: 33.333%;
     max-width: 33.333%;
   }
 
   .col-xl-5 {
     flex-basis: 41.667%;
     max-width: 41.667%;
   }
 
   .col-xl-6 {
     flex-basis: 50%;
     max-width: 50%;
   }
 
   .col-xl-7 {
     flex-basis: 58.333%;
     max-width: 58.333%;
   }
 
   .col-xl-8 {
     flex-basis: 66.667%;
     max-width: 66.667%;
   }
 
   .col-xl-9 {
     flex-basis: 75%;
     max-width: 75%;
   }
 
   .col-xl-10 {
     flex-basis: 83.333%;
     max-width: 83.333%;
   }
 
   .col-xl-11 {
     flex-basis: 91.667%;
     max-width: 91.667%;
   }
 
   .col-xl-12 {
     flex-basis: 100%;
     max-width: 100%;
   }
 
   .col-xl-offset-0 {
     margin-left: 0;
   }
 
   .col-xl-offset-1 {
     margin-left: 8.333%;
   }
 
   .col-xl-offset-2 {
     margin-left: 16.667%;
   }
 
   .col-xl-offset-3 {
     margin-left: 25%;
   }
 
   .col-xl-offset-4 {
     margin-left: 33.333%;
   }
 
   .col-xl-offset-5 {
     margin-left: 41.667%;
   }
 
   .col-xl-offset-6 {
     margin-left: 50%;
   }
 
   .col-xl-offset-7 {
     margin-left: 58.333%;
   }
 
   .col-xl-offset-8 {
     margin-left: 66.667%;
   }
 
   .col-xl-offset-9 {
     margin-left: 75%;
   }
 
   .col-xl-offset-10 {
     margin-left: 83.333%;
   }
 
   .col-xl-offset-11 {
     margin-left: 91.667%;
   }
 }
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * The size-related variables (small/medium etc.) are directly related to the
  * responsive breakpoints.
  ***************************************************************************** */
 /* Container
   --------------------------------------------------------------------------- */
 /*
  * Maximum container width. The container padding will added to this with so
  * the actual content will have this (maximum) size.
  */
 /* Gutters
   --------------------------------------------------------------------------- */
 /*****************************************************************************
  * Generic module settings
  ***************************************************************************** */
 /*****************************************************************************
  * Forms
  ***************************************************************************** */
 /*  Elements and fields
    =========================================================================== */
 form.hs-form {
   /* Descriptions (targets class applied to Help Text divs) */
   /* Labels (selects field labels and error messages) */
   /* Form Field (selector for form field wrapper) */
   /*****************************************************************************
    * Responsive breakpoints are used bottom-up; extra small means a screen size
    * between 576px and 787px (just before the small breakpoint);
    *
    * @media only screen and (min-width: xxx) { }
    ***************************************************************************** */
   /*****************************************************************************
    * Responsive breakpoints are used bottom-up; extra small means a screen size
    * between 576px and 787px (just before the small breakpoint);
    *
    * @media only screen and (min-width: xxx) { }
    ***************************************************************************** */
   /*****************************************************************************
    * The size-related variables (small/medium etc.) are directly related to the
    * responsive breakpoints.
    ***************************************************************************** */
   /* Container
     --------------------------------------------------------------------------- */
   /*
    * Maximum container width. The container padding will added to this with so
    * the actual content will have this (maximum) size.
    */
   /* Gutters
     --------------------------------------------------------------------------- */
   /*****************************************************************************
    * Generic module settings
    ***************************************************************************** */
   /* Error message (selector for validation messages)
      ========================================================================== */
   /*****************************************************************************
    * Responsive breakpoints are used bottom-up; extra small means a screen size
    * between 576px and 787px (just before the small breakpoint);
    *
    * @media only screen and (min-width: xxx) { }
    ***************************************************************************** */
   /*****************************************************************************
    * Responsive breakpoints are used bottom-up; extra small means a screen size
    * between 576px and 787px (just before the small breakpoint);
    *
    * @media only screen and (min-width: xxx) { }
    ***************************************************************************** */
   /*****************************************************************************
    * The size-related variables (small/medium etc.) are directly related to the
    * responsive breakpoints.
    ***************************************************************************** */
   /* Container
     --------------------------------------------------------------------------- */
   /*
    * Maximum container width. The container padding will added to this with so
    * the actual content will have this (maximum) size.
    */
   /* Gutters
     --------------------------------------------------------------------------- */
   /*****************************************************************************
    * Generic module settings
    ***************************************************************************** */
   /* Fancy fields (label slide up when input is focused)
      ========================================================================== */
   /*****************************************************************************
    * Responsive breakpoints are used bottom-up; extra small means a screen size
    * between 576px and 787px (just before the small breakpoint);
    *
    * @media only screen and (min-width: xxx) { }
    ***************************************************************************** */
   /*****************************************************************************
    * Responsive breakpoints are used bottom-up; extra small means a screen size
    * between 576px and 787px (just before the small breakpoint);
    *
    * @media only screen and (min-width: xxx) { }
    ***************************************************************************** */
   /*****************************************************************************
    * The size-related variables (small/medium etc.) are directly related to the
    * responsive breakpoints.
    ***************************************************************************** */
   /* Container
     --------------------------------------------------------------------------- */
   /*
    * Maximum container width. The container padding will added to this with so
    * the actual content will have this (maximum) size.
    */
   /* Gutters
     --------------------------------------------------------------------------- */
   /*****************************************************************************
    * Generic module settings
    ***************************************************************************** */
   /* Inputs (selectors for all inputs)
      ========================================================================== */
   /* Multi-line inputs (selectors to target multi-line fields
      ========================================================================== */
   /*****************************************************************************
    * Responsive breakpoints are used bottom-up; extra small means a screen size
    * between 576px and 787px (just before the small breakpoint);
    *
    * @media only screen and (min-width: xxx) { }
    ***************************************************************************** */
   /*****************************************************************************
    * Responsive breakpoints are used bottom-up; extra small means a screen size
    * between 576px and 787px (just before the small breakpoint);
    *
    * @media only screen and (min-width: xxx) { }
    ***************************************************************************** */
   /*****************************************************************************
    * The size-related variables (small/medium etc.) are directly related to the
    * responsive breakpoints.
    ***************************************************************************** */
   /* Container
     --------------------------------------------------------------------------- */
   /*
    * Maximum container width. The container padding will added to this with so
    * the actual content will have this (maximum) size.
    */
   /* Gutters
     --------------------------------------------------------------------------- */
   /*****************************************************************************
    * Generic module settings
    ***************************************************************************** */
   /* Multi-select (selectors for multi-select fields)
      ========================================================================== */
   /* Stylized radio display */
   /*****************************************************************************
    * Responsive breakpoints are used bottom-up; extra small means a screen size
    * between 576px and 787px (just before the small breakpoint);
    *
    * @media only screen and (min-width: xxx) { }
    ***************************************************************************** */
   /*****************************************************************************
    * Responsive breakpoints are used bottom-up; extra small means a screen size
    * between 576px and 787px (just before the small breakpoint);
    *
    * @media only screen and (min-width: xxx) { }
    ***************************************************************************** */
   /*****************************************************************************
    * The size-related variables (small/medium etc.) are directly related to the
    * responsive breakpoints.
    ***************************************************************************** */
   /* Container
     --------------------------------------------------------------------------- */
   /*
    * Maximum container width. The container padding will added to this with so
    * the actual content will have this (maximum) size.
    */
   /* Gutters
     --------------------------------------------------------------------------- */
   /*****************************************************************************
    * Generic module settings
    ***************************************************************************** */
   /* Multi Column Form (selectors for fieldsets and field wrappers)
      ========================================================================== */
   /*****************************************************************************
    * Responsive breakpoints are used bottom-up; extra small means a screen size
    * between 576px and 787px (just before the small breakpoint);
    *
    * @media only screen and (min-width: xxx) { }
    ***************************************************************************** */
   /*****************************************************************************
    * Responsive breakpoints are used bottom-up; extra small means a screen size
    * between 576px and 787px (just before the small breakpoint);
    *
    * @media only screen and (min-width: xxx) { }
    ***************************************************************************** */
   /*****************************************************************************
    * The size-related variables (small/medium etc.) are directly related to the
    * responsive breakpoints.
    ***************************************************************************** */
   /* Container
     --------------------------------------------------------------------------- */
   /*
    * Maximum container width. The container padding will added to this with so
    * the actual content will have this (maximum) size.
    */
   /* Gutters
     --------------------------------------------------------------------------- */
   /*****************************************************************************
    * Generic module settings
    ***************************************************************************** */
   /* Submit buttons (selectors for all non-CTA buttons)
      ========================================================================== */
 }
 form.hs-form .hs-field-desc {
   line-height: 1;
 }
 form.hs-form label {
   font-size: 0.7rem;
   font-weight: var(--theme-font-weight-base);
   line-height: 1.3;
 }
 form.hs-form .hs-form-field {
   display: flex;
   flex-direction: column;
   margin-bottom: 1rem;
 }
 form.hs-form .hs-form-field .hs-field-desc {
   color: var(--color-gray-100);
   font-size: 0.7rem;
   margin-top: 0.4rem;
   order: 1;
 }
 form.hs-form .hs-form-field > label {
   color: var(--theme-color-base);
   display: inline-block;
   font-weight: var(--theme-font-weight-semibold);
   margin-bottom: 0.5rem;
 }
 form.hs-form .hs-form-field > label:has(span:empty) {
   margin-bottom: unset;
 }
 form.hs-form .hs-error-msgs {
   list-style: none;
   margin: 0;
   padding: 0;
 }
 form.hs-form .hs-error-msgs li:last-child {
   margin-right: 0;
 }
 form.hs-form .hs-error-msgs label {
   color: var(--theme-color-error);
   font-size: 0.6rem;
 }
 form.hs-form .hs-dependent-field ul {
   list-style: none;
   margin: 0;
   padding: 0;
 }
 form.hs-form .legal-consent-container {
   margin-bottom: 2rem;
 }
 form.hs-form .legal-consent-container .field.hs-form-field {
   margin-bottom: 1rem;
 }
 form.hs-form .legal-consent-container,
 form.hs-form .legal-consent-container p,
 form.hs-form .legal-consent-container a,
 form.hs-form .legal-consent-container label {
   color: var(--color-gray-900);
   font-size: 0.8rem;
   font-weight: var(--theme-font-weight-base);
   line-height: 1.5rem;
 }

wcl-ww-form-contact form.hs-form .legal-consent-container :not(.hs-richtext) p,
wcl-ww-form-contact form.hs-form .legal-consent-container a,
wcl-ww-form-contact form.hs-form .legal-consent-container label,
wcl-ww-form-conversion form.hs-form .legal-consent-container :not(.hs-richtext) p,
wcl-ww-form-conversion form.hs-form .legal-consent-container a,
wcl-ww-form-conversion form.hs-form .legal-consent-container label {
  font-size: 0.7rem;
  line-height: 0.9rem;
}
 form.hs-form .legal-consent-container a {
   text-decoration: underline;
   color: var(--color-base-black);
 }
 form.hs-form .legal-consent-container a:hover {
   color: var(--color-secondary-dark-blue);
 }
 form.hs-form .legal-consent-container label {
   align-items: flex-start !important;
   display: flex;
 }
 form.hs-form .legal-consent-container .hs-error-msgs label {
   color: var(--theme-color-error);
 }
 form.hs-form .legal-consent-container .hs-form-booleancheckbox {
   /*margin: 0.5rem 0;*/
 }
 form.hs-form .legal-consent-container .hs-form-booleancheckbox-display > span {
   margin: 0;
 }
 form.hs-form .hs-fieldtype-text .input,
 form.hs-form .hs-fieldtype-textarea .input,
 form.hs-form .hs-fieldtype-select .input,
 form.hs-form .hs-fieldtype-phonenumber .input {
   background: var(--color-gray-25);
   border: 2px solid transparent;
   border-radius: 0;
   color: var(--theme-color-base);
   font-family: var(--theme-font-family-base);
   font-size: 0.8rem;
   font-weight: var(--theme-font-weight-base);
   position: relative;
 }
 form.hs-form .hs-fieldtype-text.input--focused .input,
 form.hs-form .hs-fieldtype-textarea.input--focused .input,
 form.hs-form .hs-fieldtype-select.input--focused .input,
 form.hs-form .hs-fieldtype-phonenumber.input--focused .input {
   border-color: var(--color-primary-200);
   border-radius: 0;
   position: relative;
 }
 form.hs-form .hs-fieldtype-text.input--focused .hs-error-msgs li,
 form.hs-form .hs-fieldtype-textarea.input--focused .hs-error-msgs li,
 form.hs-form .hs-fieldtype-select.input--focused .hs-error-msgs li,
 form.hs-form .hs-fieldtype-phonenumber.input--focused .hs-error-msgs li {
   display: none;
 }
 form.hs-form .hs-fieldtype-text > label .hs-form-required,
 form.hs-form .hs-fieldtype-textarea > label .hs-form-required,
 form.hs-form .hs-fieldtype-select > label .hs-form-required,
 form.hs-form .hs-fieldtype-phonenumber > label .hs-form-required {
   color: var(--color-base-black);
 }
 form.hs-form .hs-fieldtype-text.input--error .input,
 form.hs-form .hs-fieldtype-textarea.input--error .input,
 form.hs-form .hs-fieldtype-select.input--error .input,
 form.hs-form .hs-fieldtype-phonenumber.input--error .input {
   border-color: var(--theme-color-error);
 }
 form.hs-form .hs-fieldtype-text.input--error > label,
 form.hs-form .hs-fieldtype-textarea.input--error > label,
 form.hs-form .hs-fieldtype-select.input--error > label,
 form.hs-form .hs-fieldtype-phonenumber.input--error > label {
   color: var(--theme-color-error);
 }
 form.hs-form .hs-fieldtype-text.input--error .hs-form-required,
 form.hs-form .hs-fieldtype-textarea.input--error .hs-form-required,
 form.hs-form .hs-fieldtype-select.input--error .hs-form-required,
 form.hs-form .hs-fieldtype-phonenumber.input--error .hs-form-required {
   color: var(--theme-color-error);
 }
 form.hs-form .hs-fieldtype-text.input--error.input--filled .input,
 form.hs-form .hs-fieldtype-textarea.input--error.input--filled .input,
 form.hs-form .hs-fieldtype-select.input--error.input--filled .input,
 form.hs-form .hs-fieldtype-phonenumber.input--error.input--filled .input {
   border-color: transparent;
 }
 form.hs-form .hs-fieldtype-textarea > label {
   top: 1.125rem;
 }
 form.hs-form input[type=text],
 form.hs-form input[type=password],
 form.hs-form input[type=datetime],
 form.hs-form input[type=datetime-local],
 form.hs-form input[type=date],
 form.hs-form input[type=month],
 form.hs-form input[type=time],
 form.hs-form input[type=week],
 form.hs-form input[type=number],
 form.hs-form input[type=email],
 form.hs-form input[type=url],
 form.hs-form input[type=search],
 form.hs-form input[type=tel],
 form.hs-form input[type=color],
 form.hs-form input[type=file],
 form.hs-form textarea,
 form.hs-form select {
   background: transparent;
   border: 0;
   border-radius: 0;
   color: var(--theme-color-base);
   display: block;
   font-family: var(--theme-font-family-base);
   font-size: 0.8rem;
   line-height: 1.63;
   outline: none;
   padding: 0.6rem 0.8rem;
   width: 100%;
 }
 form.hs-form input[type=file] {
   display: flex;
   padding: 0.4rem 0.3rem;
 }
 form.hs-form select {
   -webkit-appearance: none;
   -moz-appearance: none;
 }
 form.hs-form option:hover, form.hs-form option:focus {
   background: var(--color-primary-blue-8);
 }
 form.hs-form .hs-fieldtype-select .input {
   position: relative;
 }
 form.hs-form .hs-fieldtype-select .input::after {
   background: url("https://26222027.fs1.hubspotusercontent-eu1.net/hubfs/26222027/woodwing-theme-assets/icons/chevron-down-gray.svg") center/cover;
   content: "";
   height: 24px;
   pointer-events: none;
   position: absolute;
   right: 0.8rem;
   top: 50%;
   transform: translateY(-50%);
   width: 24px;
 }
 form.hs-form .hs-fieldtype-select .input select {
   padding-right: 2rem;
 }
 form.hs-form textarea {
   height: 180px;
   min-height: 68px;
   min-width: 100%;
   max-width: 100%;
   resize: vertical;
 }
 form.hs-form .hs-form-field ul.inputs-list {
   list-style: none;
   margin: 0;
   padding: 0;
 }
 form.hs-form .hs-form-field ul.inputs-list li label {
   align-items: baseline;
   display: inline-flex;
 }
 form.hs-form .hs-form-radio-display,
 form.hs-form .hs-form-checkbox-display,
 form.hs-form .hs-form-booleancheckbox-display {
   color: var(--color-gray-900);
   font-size: 0.8rem;
 }
 form.hs-form .hs-form-radio-display::before,
 form.hs-form .hs-form-checkbox-display::before,
 form.hs-form .hs-form-booleancheckbox-display::before {
   background: var(--color-base-white);
   border: 1px solid var(--color-gray-75);
   content: "";
   cursor: pointer;
   display: inline-block;
   height: 24px;
   min-width: 24px;
   transform: translateY(5px);
   margin-right: 0.6rem;
   width: 24px;
 }
 form.hs-form .hs-form-radio-display::before {
   border-radius: 50%;
 }
 form.hs-form .hs-form-radio-display.checked::before {
   background: radial-gradient(var(--color-primary-blue) 30%, var(--color-base-white) 38%, var(--color-base-white) 38%);
   border-color: var(--color-primary-blue);
 }
 form.hs-form .hs-form-radio-display input[type=radio] {
   display: none;
 }
 form.hs-form .hs-form-checkbox-display::before,
 form.hs-form .hs-form-booleancheckbox-display::before {
   border-radius: 0.2rem;
 }
 form.hs-form .hs-form-checkbox-display.checked::before,
 form.hs-form .hs-form-booleancheckbox-display.checked::before {
   background: url("https://26222027.fs1.hubspotusercontent-eu1.net/hubfs/26222027/woodwing-theme-assets/icons/checkmark-white.svg") center/14px 10px no-repeat, var(--color-primary-blue);
   box-shadow: none;
   border-color: var(--color-primary-blue);
 }
 form.hs-form .hs-form-checkbox-display input[type=checkbox],
 form.hs-form .hs-form-booleancheckbox-display input[type=checkbox] {
   display: none;
 }
 form.hs-form fieldset {
   padding: 0;
   margin: 0;
   border: 0;
 }
 form.hs-form fieldset.form-columns-1, form.hs-form fieldset.form-columns-2, form.hs-form fieldset.form-columns-3 {
   max-width: 100%;
 }
 form.hs-form fieldset.form-columns-1 .hs-form-field .input, form.hs-form fieldset.form-columns-2 .hs-form-field .input, form.hs-form fieldset.form-columns-3 .hs-form-field .input {
   margin-right: 0;
 }
 form.hs-form fieldset.form-columns-1 .hs-form-field .input .hs-input, form.hs-form fieldset.form-columns-2 .hs-form-field .input .hs-input, form.hs-form fieldset.form-columns-3 .hs-form-field .input .hs-input {
   width: 100% !important;
 }
 form.hs-form fieldset.form-columns-2 .hs-form-field {
   float: none;
   width: 100%;
 }
 @media only screen and (min-width: 576px) {
   form.hs-form fieldset.form-columns-2 {
     display: flex;
   }
   form.hs-form fieldset.form-columns-2 .hs-form-field {
     flex: 0 0 48.253%;
     margin-right: 3.49%;
     width: 48.253% !important;
   }
   form.hs-form fieldset.form-columns-2 .hs-form-field:last-of-type {
     margin-right: 0;
   }
   form.hs-form fieldset.form-columns-3 .hs-form-field {
     flex: 0 0 32.2510823%;
     margin-right: 1.6233766%;
     width: 32.2510823% !important;
   }
   form.hs-form fieldset.form-columns-3 .hs-form-field:last-of-type {
     margin-right: 0;
   }
 }
 form.hs-form .hs-button.primary,
 form.hs-form input[type=submit],
 form.hs-form input[type=button] {
   align-items: center;
   background: linear-gradient(270deg, var(--color-primary-blue) 0%, var(--color-primary-blue) 100%);
   border: 0;
   border-radius: 100px;
   color: var(--color-base-white);
   cursor: pointer;
   display: inline-flex;
   font: var(--theme-font-weight-strong) 0.8rem/1.5 var(--theme-font-family-base);
   justify-content: center;
   outline: none;
   overflow: hidden;
   padding: 0.6rem 1rem;
   position: relative;
   text-decoration: none;
   transition: background 0.1s linear, border 0.1s linear, color 0.1s linear;
   z-index: 1;
 }
 form.hs-form .hs-button.primary:hover,
 form.hs-form input[type=submit]:hover,
 form.hs-form input[type=button]:hover {
   background: var(--color-secondary-blue-gradient);
   text-decoration: none;
 }
 
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * The size-related variables (small/medium etc.) are directly related to the
  * responsive breakpoints.
  ***************************************************************************** */
 /* Container
   --------------------------------------------------------------------------- */
 /*
  * Maximum container width. The container padding will added to this with so
  * the actual content will have this (maximum) size.
  */
 /* Gutters
   --------------------------------------------------------------------------- */
 /*****************************************************************************
  * Generic module settings
  ***************************************************************************** */
 /* Submit buttons (selectors for all non-CTA buttons)
    ========================================================================== */
 .hs-button.primary,
 input[type=submit],
 input[type=button] {
   align-items: center;
   background: linear-gradient(270deg, var(--color-primary-blue) 0%, var(--color-primary-blue) 100%);
   border: 0;
   border-radius: 100px;
   color: var(--color-base-white);
   cursor: pointer;
   display: inline-flex;
   font: var(--theme-font-weight-strong) 0.8rem/1.5 var(--theme-font-family-base);
   justify-content: center;
   outline: none;
   overflow: hidden;
   padding: 0.6rem 1rem;
   position: relative;
   text-decoration: none;
   transition: background 0.1s linear, border 0.1s linear, color 0.1s linear;
   z-index: 1;
 }
 .hs-button.primary:hover,
 input[type=submit]:hover,
 input[type=button]:hover {
   background: var(--color-secondary-blue-gradient);
   text-decoration: none;
 }
 
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * The size-related variables (small/medium etc.) are directly related to the
  * responsive breakpoints.
  ***************************************************************************** */
 /* Container
   --------------------------------------------------------------------------- */
 /*
  * Maximum container width. The container padding will added to this with so
  * the actual content will have this (maximum) size.
  */
 /* Gutters
   --------------------------------------------------------------------------- */
 /*****************************************************************************
  * Generic module settings
  ***************************************************************************** */
 ::-webkit-input-placeholder,
 :-moz-placeholder,
 ::-moz-placeholder,
 :-ms-input-placeholder {
   color: rgba(var(--color-gray-500), 1);
 }
 
 /* Form Variations
    ========================================================================== */
 .hs-form--small .hs-form-field {
   margin-bottom: 0.5rem;
 }
 .hs-form--small .actions {
   margin-top: 1.3rem;
 }
 .hs-form--full-width-actions .actions input[type=submit] {
   width: 100%;
 }
 .hs-form--rounded-actions .actions input[type=submit] {
   border-radius: 5rem;
 }
 .hs-form--centered-actions .actions {
   text-align: center;
 }
 .hs-form--primary .actions input[type=submit] {
   background: var(--theme-color-primary);
   color: #fff;
 }
 .hs-form--primary .actions input[type=submit]:hover {
   background: #fff;
   color: var(--theme-color-primary);
 }
 .hs-form--no-labels .hs-form-field > label {
   display: none;
 }
 
 .form--image-small .hs-main-font-element img {
   height: 100px;
 }
 
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * The size-related variables (small/medium etc.) are directly related to the
  * responsive breakpoints.
  ***************************************************************************** */
 /* Container
   --------------------------------------------------------------------------- */
 /*
  * Maximum container width. The container padding will added to this with so
  * the actual content will have this (maximum) size.
  */
 /* Gutters
   --------------------------------------------------------------------------- */
 /*****************************************************************************
  * Generic module settings
  ***************************************************************************** */
 /*****************************************************************************
  * Tables
  ***************************************************************************** */
 table {
   border: 0.05rem solid var(--color-gray-100);
   border-collapse: collapse;
   margin: 1rem 0 2rem;
   overflow: auto;
   width: 100%;
 }
 
 table th {
   text-align: left;
 }
 
 table thead tr,
 table tfoot tr,
 table tbody tr:nth-child(even) {
   background: #fff;
 }
table tbody tr:nth-child(2n) td {
    background: #f9f9f9 !important;
}
 
 table th,
 table td {
   padding: 0.5rem 1rem;
 }
 
 /*****************************************************************************
  * Typography
  ***************************************************************************** */
 /* Default
   ---------------------------------------------------------------------------- */
 /* -- Base typography -- */
 body {
   line-height: var(--theme-typography-base-line-height);
   color: var(--theme-color-base);
 }
 
 h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
   color: var(--theme-typography-heading-color);
   font-family: var(--theme-typography-heading-font-family);
 }
 h1.no-margin, h2.no-margin, h3.no-margin, h4.no-margin, h5.no-margin, h6.no-margin, .h1.no-margin, .h2.no-margin, .h3.no-margin, .h4.no-margin, .h5.no-margin, .h6.no-margin {
   margin: 0;
 }
 
 .display {
   font-size: var(--theme-typography-display-font-size);
   font-weight: var(--theme-typography-display-font-weight);
   letter-spacing: var(--theme-typography-display-letter-spacing);
   line-height: var(--theme-typography-display-line-height);
   margin-top: var(--theme-typography-display-margin-top);
   margin-bottom: var(--theme-typography-display-margin-bottom);
 }
 
 h1, .h1 {
   font-size: var(--theme-typography-heading-1-font-size);
   font-weight: var(--theme-typography-heading-1-font-weight);
   letter-spacing: var(--theme-typography-heading-1-letter-spacing);
   line-height: var(--theme-typography-heading-1-line-height);
   margin-top: var(--theme-typography-heading-1-margin-top);
   margin-bottom: var(--theme-typography-heading-1-margin-bottom);
 }
 
 h2, .h2 {
   font-size: var(--theme-typography-heading-2-font-size);
   font-weight: var(--theme-typography-heading-2-font-weight);
   letter-spacing: var(--theme-typography-heading-2-letter-spacing);
   line-height: var(--theme-typography-heading-2-line-height);
   margin-top: var(--theme-typography-heading-2-margin-top);
   margin-bottom: var(--theme-typography-heading-2-margin-bottom);
 }
 
 h3, .h3 {
   font-size: var(--theme-typography-heading-3-font-size);
   font-weight: var(--theme-typography-heading-3-font-weight);
   letter-spacing: var(--theme-typography-heading-3-letter-spacing);
   line-height: var(--theme-typography-heading-3-line-height);
   margin-top: var(--theme-typography-heading-3-margin-top);
   margin-bottom: var(--theme-typography-heading-3-margin-bottom);
 }
 
 h4, .h4 {
   font-size: var(--theme-typography-heading-4-font-size);
   font-weight: var(--theme-typography-heading-4-font-weight);
   line-height: var(--theme-typography-heading-4-line-height);
   margin-top: var(--theme-typography-heading-4-margin-top);
   margin-bottom: var(--theme-typography-heading-4-margin-bottom);
 }
 
 h5, .h5 {
   font-size: var(--theme-typography-heading-5-font-size);
   font-weight: var(--theme-typography-heading-5-font-weight);
   line-height: var(--theme-typography-heading-5-line-height);
   margin-top: var(--theme-typography-heading-5-margin-top);
   margin-bottom: var(--theme-typography-heading-5-margin-bottom);
 }
 
 h6, .h6 {
   font-size: var(--theme-typography-heading-6-font-size);
   font-weight: var(--theme-typography-heading-6-font-weight);
   line-height: var(--theme-typography-heading-6-line-height);
   margin-top: var(--theme-typography-heading-6-margin-top);
   margin-bottom: var(--theme-typography-heading-6-margin-bottom);
 }
 
 h1:first-of-type, h2:first-of-type, h3:first-of-type, h4:first-of-type, h5:first-of-type, h6:first-of-type {
   margin-top: 0;
 }
 
 /* -- Paragraph -- */
 p {
   margin-bottom: var(--theme-typography-base-margin-bottom);
 }
 p.no-margin {
   margin: 0;
 }
 
 p:last-child {
   margin-bottom: 0;
 }
 
 p, li {
   color: var(--theme-typography-base-color);
 }
 
 p, li, a:not(.cta_button):not(.button) {
   font-size: var(--theme-typography-base-font-size);
   line-height: var(--theme-typography-base-line-height);
 }
 
 /* -- Blockquote -- */
 blockquote, blockquote p {
   font-size: var(--theme-typography-blockquote-font-size);
   font-weight: var(--theme-typography-blockquote-font-weight);
   line-height: var(--theme-typography-blockquote-line-height);
   margin: 0;
 }
 
 /* -- Pre -- */
 pre {
   font-family: var(--theme-font-family-monospace);
   font-size: var(--theme-typography-pre-font-size);
 }
 
 /* -- Link -- */
 a {
   color: var(--theme-typography-link-color);
   font-family: var(--theme-typography-link-font-family);
   font-weight: var(--theme-typography-link-font-weight);
   line-height: var(--theme-typography-link-line-height);
   transition: color 0.1s linear;
   text-decoration: none;
 }
 a:hover {
   color: var(--theme-typography-link-color-hover);
 }
 
 @media only screen and (min-width: 768px) {
   h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
     margin-bottom: var(--theme-typography-heading-margin-bottom-tablet);
   }
 
   .display {
     font-size: var(--theme-typography-display-font-size-tablet);
     font-weight: var(--theme-typography-display-font-weight-tablet);
     letter-spacing: var(--theme-typography-display-letter-spacing-tablet);
     line-height: var(--theme-typography-display-line-height-tablet);
     margin-top: var(--theme-typography-display-margin-top-tablet);
     margin-bottom: var(--theme-typography-display-margin-bottom-tablet);
   }
 
   h1, .h1 {
     font-size: var(--theme-typography-heading-1-font-size-tablet);
     font-weight: var(--theme-typography-heading-1-font-weight-tablet);
     letter-spacing: var(--theme-typography-heading-1-letter-spacing);
     line-height: var(--theme-typography-heading-1-line-height-tablet);
     margin-top: var(--theme-typography-heading-1-margin-top-tablet);
     margin-bottom: var(--theme-typography-heading-1-margin-bottom-tablet);
   }
 
   h2, .h2 {
     font-size: var(--theme-typography-heading-2-font-size-tablet);
     font-weight: var(--theme-typography-heading-2-font-weight-tablet);
     letter-spacing: var(--theme-typography-heading-2-letter-spacing);
     line-height: var(--theme-typography-heading-2-line-height-tablet);
     margin-top: var(--theme-typography-heading-2-margin-top-tablet);
     margin-bottom: var(--theme-typography-heading-2-margin-bottom-tablet);
   }
 
   h3, .h3 {
     font-size: var(--theme-typography-heading-3-font-size-tablet);
     font-weight: var(--theme-typography-heading-3-font-weight-tablet);
     letter-spacing: var(--theme-typography-heading-3-letter-spacing);
     line-height: var(--theme-typography-heading-3-line-height-tablet);
     margin-top: var(--theme-typography-heading-3-margin-top-tablet);
     margin-bottom: var(--theme-typography-heading-3-margin-bottom-tablet);
   }
 
   h4, .h4 {
     font-size: var(--theme-typography-heading-4-font-size-tablet);
     font-weight: var(--theme-typography-heading-4-font-weight-tablet);
     line-height: var(--theme-typography-heading-4-line-height-tablet);
     margin-top: var(--theme-typography-heading-4-margin-top-tablet);
     margin-bottom: var(--theme-typography-heading-4-margin-bottom-tablet);
   }
 
   h5, .h5 {
     font-size: var(--theme-typography-heading-5-font-size-tablet);
     font-weight: var(--theme-typography-heading-5-font-weight-tablet);
     line-height: var(--theme-typography-heading-5-line-height-tablet);
     margin-top: var(--theme-typography-heading-5-margin-top-tablet);
     margin-bottom: var(--theme-typography-heading-5-margin-bottom-tablet);
   }
 
   h6, .h6 {
     font-size: var(--theme-typography-heading-6-font-size-tablet);
     font-weight: var(--theme-typography-heading-6-font-weight-tablet);
     line-height: var(--theme-typography-heading-6-line-height-tablet);
     margin-top: var(--theme-typography-heading-6-margin-top-tablet);
     margin-bottom: var(--theme-typography-heading-6-margin-bottom-tablet);
   }
 
   /* -- Paragraph -- */
   p, li, a:not(.cta_button):not(.button) {
     font-size: var(--theme-typography-base-font-size-tablet);
   }
 
   /* -- Blockquote -- */
   blockquote, blockquote p {
     font-size: var(--theme-typography-blockquote-font-size-tablet);
     font-weight: var(--theme-typography-blockquote-font-weight-tablet);
     line-height: var(--theme-typography-blockquote-line-height-tablet);
   }
 
   /* -- Pre -- */
   pre {
     font-size: var(--theme-typography-pre-font-size-tablet);
   }
 }
 @media only screen and (min-width: 1175px) {
   h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
     margin-bottom: var(--theme-typography-heading-margin-bottom-desktop);
   }
 
   .display {
     font-size: var(--theme-typography-display-font-size-desktop);
     font-weight: var(--theme-typography-display-font-weight-desktop);
     letter-spacing: var(--theme-typography-display-letter-spacing-desktop);
     line-height: var(--theme-typography-display-line-height-desktop);
     margin-top: var(--theme-typography-display-margin-top-desktop);
     margin-bottom: var(--theme-typography-display-margin-bottom-desktop);
   }
 
   h1, .h1 {
     font-size: var(--theme-typography-heading-1-font-size-desktop);
     font-weight: var(--theme-typography-heading-1-font-weight-desktop);
     line-height: var(--theme-typography-heading-1-line-height-desktop);
     margin-top: var(--theme-typography-heading-1-margin-top-desktop);
     margin-bottom: var(--theme-typography-heading-1-margin-bottom-desktop);
   }
 
   h2, .h2 {
     font-size: var(--theme-typography-heading-2-font-size-desktop);
     font-weight: var(--theme-typography-heading-2-font-weight-desktop);
     line-height: var(--theme-typography-heading-2-line-height-desktop);
     margin-top: var(--theme-typography-heading-2-margin-top-desktop);
     margin-bottom: var(--theme-typography-heading-2-margin-bottom-desktop);
   }
 
   h3, .h3 {
     font-size: var(--theme-typography-heading-3-font-size-desktop);
     font-weight: var(--theme-typography-heading-3-font-weight-desktop);
     line-height: var(--theme-typography-heading-3-line-height-desktop);
     margin-top: var(--theme-typography-heading-3-margin-top-desktop);
     margin-bottom: var(--theme-typography-heading-3-margin-bottom-desktop);
   }
 
   h4, .h4 {
     font-size: var(--theme-typography-heading-4-font-size-desktop);
     font-weight: var(--theme-typography-heading-4-font-weight-desktop);
     line-height: var(--theme-typography-heading-4-line-height-desktop);
     margin-top: var(--theme-typography-heading-4-margin-top-desktop);
     margin-bottom: var(--theme-typography-heading-4-margin-bottom-desktop);
   }
 
   h5, .h5 {
     font-size: var(--theme-typography-heading-5-font-size-desktop);
     font-weight: var(--theme-typography-heading-5-font-weight-desktop);
     line-height: var(--theme-typography-heading-5-line-height-desktop);
     margin-top: var(--theme-typography-heading-5-margin-top-desktop);
     margin-bottom: var(--theme-typography-heading-5-margin-bottom-desktop);
   }
 
   h6, .h6 {
     font-size: var(--theme-typography-heading-6-font-size-desktop);
     font-weight: var(--theme-typography-heading-6-font-weight-desktop);
     line-height: var(--theme-typography-heading-6-line-height-desktop);
     margin-top: var(--theme-typography-heading-6-margin-top-desktop);
     margin-bottom: var(--theme-typography-heading-6-margin-bottom-desktop);
   }
 
   /* -- Paragraph -- */
   p, li, a:not(.cta_button):not(.button) {
     font-size: var(--theme-typography-base-font-size-desktop);
   }
 
   /* -- Blockquote -- */
   blockquote, blockquote p {
     font-size: var(--theme-typography-blockquote-font-size-desktop);
     font-weight: var(--theme-typography-blockquote-font-weight-desktop);
     line-height: var(--theme-typography-blockquote-line-height-desktop);
   }
 
   /* -- Pre -- */
   pre {
     font-size: var(--theme-typography-pre-font-size-desktop);
   }
 }
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * The size-related variables (small/medium etc.) are directly related to the
  * responsive breakpoints.
  ***************************************************************************** */
 /* Container
   --------------------------------------------------------------------------- */
 /*
  * Maximum container width. The container padding will added to this with so
  * the actual content will have this (maximum) size.
  */
 /* Gutters
   --------------------------------------------------------------------------- */
 /*****************************************************************************
  * Generic module settings
  ***************************************************************************** */
 /*****************************************************************************
  * Backgrounds
  ***************************************************************************** */
 .bg_black {
   background: var(--color-base-black);
 }
 .bg_black h1:not(.keep-default),
 .bg_black h2:not(.keep-default),
 .bg_black h3:not(.keep-default),
 .bg_black h4:not(.keep-default),
 .bg_black h5:not(.keep-default),
 .bg_black h6:not(.keep-default),
 .bg_black blockquote:not(.keep-default),
 .bg_black p:not(.keep-default),
 .bg_black a:not(.button):not(.cta_button):not(.keep-default),
 .bg_black li:not(.keep-default) {
   color: var(--color-base-white);
 }
 .bg_black .rich-text-container.keep-default h1,
 .bg_black .rich-text-container.keep-default h2,
 .bg_black .rich-text-container.keep-default h3,
 .bg_black .rich-text-container.keep-default h4,
 .bg_black .rich-text-container.keep-default h5,
 .bg_black .rich-text-container.keep-default h6,
 .bg_black .rich-text-container.keep-default blockquote,
 .bg_black .rich-text-container.keep-default p,
 .bg_black .rich-text-container.keep-default a:not(.button):not(.cta_button),
 .bg_black .rich-text-container.keep-default li {
   color: var(--theme-color-base);
 }
 
 .bg_base {
   background: var(--theme-color-base);
 }
 .bg_base h1:not(.keep-default),
 .bg_base h2:not(.keep-default),
 .bg_base h3:not(.keep-default),
 .bg_base h4:not(.keep-default),
 .bg_base h5:not(.keep-default),
 .bg_base h6:not(.keep-default),
 .bg_base blockquote:not(.keep-default),
 .bg_base p:not(.keep-default),
 .bg_base a:not(.button):not(.cta_button):not(.keep-default),
 .bg_base li:not(.keep-default) {
   color: var(--color-base-white);
 }
 .bg_base .rich-text-container.keep-default h1,
 .bg_base .rich-text-container.keep-default h2,
 .bg_base .rich-text-container.keep-default h3,
 .bg_base .rich-text-container.keep-default h4,
 .bg_base .rich-text-container.keep-default h5,
 .bg_base .rich-text-container.keep-default h6,
 .bg_base .rich-text-container.keep-default blockquote,
 .bg_base .rich-text-container.keep-default p,
 .bg_base .rich-text-container.keep-default a:not(.button):not(.cta_button),
 .bg_base .rich-text-container.keep-default li {
   color: var(--theme-color-base);
 }
 
 .bg_primary-blue {
   background: var(--color-primary-blue);
 }
 .bg_primary-blue h1:not(.keep-default),
 .bg_primary-blue h2:not(.keep-default),
 .bg_primary-blue h3:not(.keep-default),
 .bg_primary-blue h4:not(.keep-default),
 .bg_primary-blue h5:not(.keep-default),
 .bg_primary-blue h6:not(.keep-default),
 .bg_primary-blue blockquote:not(.keep-default),
 .bg_primary-blue p:not(.keep-default),
 .bg_primary-blue a:not(.button):not(.cta_button):not(.keep-default),
 .bg_primary-blue li:not(.keep-default) {
   color: var(--color-base-white);
 }
 .bg_primary-blue .rich-text-container.keep-default h1,
 .bg_primary-blue .rich-text-container.keep-default h2,
 .bg_primary-blue .rich-text-container.keep-default h3,
 .bg_primary-blue .rich-text-container.keep-default h4,
 .bg_primary-blue .rich-text-container.keep-default h5,
 .bg_primary-blue .rich-text-container.keep-default h6,
 .bg_primary-blue .rich-text-container.keep-default blockquote,
 .bg_primary-blue .rich-text-container.keep-default p,
 .bg_primary-blue .rich-text-container.keep-default a:not(.button):not(.cta_button),
 .bg_primary-blue .rich-text-container.keep-default li {
   color: var(--theme-color-base);
 }
 
 .bg_primary-red {
   background: var(--color-primary-red);
 }
 .bg_primary-red h1:not(.keep-default),
 .bg_primary-red h2:not(.keep-default),
 .bg_primary-red h3:not(.keep-default),
 .bg_primary-red h4:not(.keep-default),
 .bg_primary-red h5:not(.keep-default),
 .bg_primary-red h6:not(.keep-default),
 .bg_primary-red blockquote:not(.keep-default),
 .bg_primary-red p:not(.keep-default),
 .bg_primary-red a:not(.button):not(.cta_button):not(.keep-default),
 .bg_primary-red li:not(.keep-default) {
   color: var(--color-base-white);
 }
 .bg_primary-red .rich-text-container.keep-default h1,
 .bg_primary-red .rich-text-container.keep-default h2,
 .bg_primary-red .rich-text-container.keep-default h3,
 .bg_primary-red .rich-text-container.keep-default h4,
 .bg_primary-red .rich-text-container.keep-default h5,
 .bg_primary-red .rich-text-container.keep-default h6,
 .bg_primary-red .rich-text-container.keep-default blockquote,
 .bg_primary-red .rich-text-container.keep-default p,
 .bg_primary-red .rich-text-container.keep-default a:not(.button):not(.cta_button),
 .bg_primary-red .rich-text-container.keep-default li {
   color: var(--theme-color-base);
 }
 
 .bg_grey-100 {
   background: var(--color-gray-100);
 }
 .bg_grey-100 h1:not(.keep-default),
 .bg_grey-100 h2:not(.keep-default),
 .bg_grey-100 h3:not(.keep-default),
 .bg_grey-100 h4:not(.keep-default),
 .bg_grey-100 h5:not(.keep-default),
 .bg_grey-100 h6:not(.keep-default),
 .bg_grey-100 blockquote:not(.keep-default),
 .bg_grey-100 p:not(.keep-default),
 .bg_grey-100 a:not(.button):not(.cta_button):not(.keep-default),
 .bg_grey-100 li:not(.keep-default) {
   color: var(--color-base-white);
 }
 .bg_grey-100 .rich-text-container.keep-default h1,
 .bg_grey-100 .rich-text-container.keep-default h2,
 .bg_grey-100 .rich-text-container.keep-default h3,
 .bg_grey-100 .rich-text-container.keep-default h4,
 .bg_grey-100 .rich-text-container.keep-default h5,
 .bg_grey-100 .rich-text-container.keep-default h6,
 .bg_grey-100 .rich-text-container.keep-default blockquote,
 .bg_grey-100 .rich-text-container.keep-default p,
 .bg_grey-100 .rich-text-container.keep-default a:not(.button):not(.cta_button),
 .bg_grey-100 .rich-text-container.keep-default li {
   color: var(--theme-color-base);
 }
 
 .bg_white {
   background: var(--color-base-white);
 }
 
 .bg_grey-25 {
   background: var(--color-gray-25);
 }
 
 .bg_grey-50 {
   background: var(--color-gray-50);
 }
 
 .bg_grey-75 {
   background: var(--color-gray-75);
 }
 
 /*****************************************************************************
  * Display
  *
  * @TODO expand
  ***************************************************************************** */
 .display_is-hidden {
   display: none;
 }
 
 .display_is-visible {
   display: initial;
 }
 
 .display_inline-block {
   display: inline-block;
 }
 
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * The size-related variables (small/medium etc.) are directly related to the
  * responsive breakpoints.
  ***************************************************************************** */
 /* Container
   --------------------------------------------------------------------------- */
 /*
  * Maximum container width. The container padding will added to this with so
  * the actual content will have this (maximum) size.
  */
 /* Gutters
   --------------------------------------------------------------------------- */
 /*****************************************************************************
  * Generic module settings
  ***************************************************************************** */
 /*****************************************
  * Heading utilities
  *****************************************/
 .heading {
   color: var(--color-primary-blue);
   font-size: 0.8rem;
   font-weight: var(--theme-font-weight-strong);
   letter-spacing: 0.034rem;
   line-height: 3.5;
   margin-bottom: 0;
   text-transform: uppercase;
 }
 
 .inline-video {
   position: absolute;
   -o-object-fit: contain;
      object-fit: contain;
   top: 50%;
   transform: translateY(-50%);
 }
 .inline-video-wrapper {
   position: relative;
   height: 0;
   padding-bottom: 100%;
 }
 
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * The size-related variables (small/medium etc.) are directly related to the
  * responsive breakpoints.
  ***************************************************************************** */
 /* Container
   --------------------------------------------------------------------------- */
 /*
  * Maximum container width. The container padding will added to this with so
  * the actual content will have this (maximum) size.
  */
 /* Gutters
   --------------------------------------------------------------------------- */
 /*****************************************************************************
  * Generic module settings
  ***************************************************************************** */
 /*****************************************
  * Link variations
  *****************************************/
 .link_arrow-right {
   align-items: center;
   color: var(--theme-color-base);
   display: inline-flex;
   font-family: var(--theme-font-family-alternative);
   font-size: 0.8rem;
   font-weight: var(--theme-font-weight-strong);
   line-height: 1.3;
   transition: border 0.1s linear;
 }
 .link_arrow-right::after {
   background: url("https://26222027.fs1.hubspotusercontent-eu1.net/hubfs/26222027/woodwing-theme-assets/icons/cta/arrow-right.svg") center/contain no-repeat;
   content: "";
   display: inline-block;
   flex: 0 0 10.5px;
   height: 9.5px;
   margin-bottom: -2px;
   margin-left: 0.3rem;
   width: 10.5px;
 }
 .link_arrow-right:hover {
   text-decoration: none;
 }
 .link_arrow-right:hover::after {
   background-image: url("https://26222027.fs1.hubspotusercontent-eu1.net/hubfs/26222027/woodwing-theme-assets/icons/cta/arrow-right.svg");
   text-decoration: none;
 }
 
 .parent-link:hover .link_arrow-right::after {
   background-image: url("https://26222027.fs1.hubspotusercontent-eu1.net/hubfs/26222027/woodwing-theme-assets/icons/cta/arrow-right.svg");
   text-decoration: none;
 }
 
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * The size-related variables (small/medium etc.) are directly related to the
  * responsive breakpoints.
  ***************************************************************************** */
 /* Container
   --------------------------------------------------------------------------- */
 /*
  * Maximum container width. The container padding will added to this with so
  * the actual content will have this (maximum) size.
  */
 /* Gutters
   --------------------------------------------------------------------------- */
 /*****************************************************************************
  * Generic module settings
  ***************************************************************************** */
 /*****************************************
  * List variations
  *****************************************/
 /* -- Checkmark -- */
 ul.list_checkmark {
   list-style: none;
   padding-left: 0;
 }
 ul.list_checkmark li {
   line-height: 1.5;
   padding-left: 1rem;
   position: relative;
 }
 ul.list_checkmark li::before {
   background: url("https://26222027.fs1.hubspotusercontent-eu1.net/hubfs/26222027/woodwing-theme-assets/icons/checkmark.svg") center/cover;
   content: "";
   height: 12px;
   left: 0;
   position: absolute;
   top: 3px;
   width: 16px;
 }
 
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * The size-related variables (small/medium etc.) are directly related to the
  * responsive breakpoints.
  ***************************************************************************** */
 /* Container
   --------------------------------------------------------------------------- */
 /*
  * Maximum container width. The container padding will added to this with so
  * the actual content will have this (maximum) size.
  */
 /* Gutters
   --------------------------------------------------------------------------- */
 /*****************************************************************************
  * Generic module settings
  ***************************************************************************** */
 /*****************************************************************************
  * Media utilities
  *
  * Images, videos, embeds, etc.
  ***************************************************************************** */
 .media_image-responsive {
   display: block;
   height: auto;
   width: 100%;
 }
 .media_image-cover, .media_image-contain {
   display: block;
   height: 0;
   overflow: hidden;
   padding-bottom: 56%;
   position: relative;
 }
 .media_image-cover img, .media_image-contain img {
   display: block;
   height: 100%;
   position: absolute;
   width: 100%;
 }
 .media_image-cover img {
   -o-object-fit: cover;
      object-fit: cover;
 }
 .media_image-contain img {
   -o-object-fit: contain;
      object-fit: contain;
 }
 
 .media_video {
   display: block;
   position: relative;
 }
 .media_video .play-icon {
   height: 50px;
   left: 50%;
   position: absolute;
   top: 50%;
   transform: translate(-50%, -50%);
   width: 50px;
 }
 
 @media only screen and (min-width: 768px) {
   .media_video .play-icon {
     height: 90px;
     width: 90px;
   }
 }
 @media only screen and (min-width: 1175px) {
   .media_video .play-icon {
     height: 120px;
     width: 120px;
   }
 }
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * The size-related variables (small/medium etc.) are directly related to the
  * responsive breakpoints.
  ***************************************************************************** */
 /* Container
   --------------------------------------------------------------------------- */
 /*
  * Maximum container width. The container padding will added to this with so
  * the actual content will have this (maximum) size.
  */
 /* Gutters
   --------------------------------------------------------------------------- */
 /*****************************************************************************
  * Generic module settings
  ***************************************************************************** */
 /*****************************************************************************
 * Module options
 ***************************************************************************** */
 .module_top-padding-xxs {
   padding-top: calc(var(--theme-module-spacing-default) * var(--theme-module-spacing-scale-xxs));
 }
 .module_top-padding-xs {
   padding-top: calc(var(--theme-module-spacing-default) * var(--theme-module-spacing-scale-xs));
 }
 .module_top-padding-s {
   padding-top: calc(var(--theme-module-spacing-default) * var(--theme-module-spacing-scale-s));
 }
 .module_top-padding-m {
   padding-top: calc(var(--theme-module-spacing-default) * var(--theme-module-spacing-scale-m));
 }
 .module_top-padding-l {
   padding-top: calc(var(--theme-module-spacing-default) * var(--theme-module-spacing-scale-l));
 }
 .module_top-padding-xl {
   padding-top: calc(var(--theme-module-spacing-default) * var(--theme-module-spacing-scale-xl));
 }
 .module_top-padding-xxl {
   padding-top: calc(var(--theme-module-spacing-default) * var(--theme-module-spacing-scale-xxl));
 }
 .module_top-padding-0 {
   padding-top: 0;
 }
 
 .module_bottom-padding-xxs {
   padding-bottom: calc(var(--theme-module-spacing-default) * var(--theme-module-spacing-scale-xxs));
 }
 .module_bottom-padding-xs {
   padding-bottom: calc(var(--theme-module-spacing-default) * var(--theme-module-spacing-scale-xs));
 }
 .module_bottom-padding-s {
   padding-bottom: calc(var(--theme-module-spacing-default) * var(--theme-module-spacing-scale-s));
 }
 .module_bottom-padding-m {
   padding-bottom: calc(var(--theme-module-spacing-default) * var(--theme-module-spacing-scale-m));
 }
 .module_bottom-padding-l {
   padding-bottom: calc(var(--theme-module-spacing-default) * var(--theme-module-spacing-scale-l));
 }
 .module_bottom-padding-xl {
   padding-bottom: calc(var(--theme-module-spacing-default) * var(--theme-module-spacing-scale-xl));
 }
 .module_bottom-padding-xxl {
   padding-bottom: calc(var(--theme-module-spacing-default) * var(--theme-module-spacing-scale-xxl));
 }
 .module_bottom-padding-0 {
   padding-bottom: 0;
 }
 
 @media only screen and (min-width: 576px) {
   .module_top-padding-xxs {
     padding-top: calc(var(--theme-module-spacing-extra-small) * var(--theme-module-spacing-scale-xxs));
   }
   .module_top-padding-xs {
     padding-top: calc(var(--theme-module-spacing-extra-small) * var(--theme-module-spacing-scale-xs));
   }
   .module_top-padding-s {
     padding-top: calc(var(--theme-module-spacing-extra-small) * var(--theme-module-spacing-scale-s));
   }
   .module_top-padding-m {
     padding-top: calc(var(--theme-module-spacing-extra-small) * var(--theme-module-spacing-scale-m));
   }
   .module_top-padding-l {
     padding-top: calc(var(--theme-module-spacing-extra-small) * var(--theme-module-spacing-scale-l));
   }
   .module_top-padding-xl {
     padding-top: calc(var(--theme-module-spacing-extra-small) * var(--theme-module-spacing-scale-xl));
   }
   .module_top-padding-xxl {
     padding-top: calc(var(--theme-module-spacing-extra-small) * var(--theme-module-spacing-scale-xxl));
   }
   .module_top-padding-0 {
     padding-top: 0;
   }
 
   .module_bottom-padding-xxs {
     padding-bottom: calc(var(--theme-module-spacing-extra-small) * var(--theme-module-spacing-scale-xxs));
   }
   .module_bottom-padding-xs {
     padding-bottom: calc(var(--theme-module-spacing-extra-small) * var(--theme-module-spacing-scale-xs));
   }
   .module_bottom-padding-s {
     padding-bottom: calc(var(--theme-module-spacing-extra-small) * var(--theme-module-spacing-scale-s));
   }
   .module_bottom-padding-m {
     padding-bottom: calc(var(--theme-module-spacing-extra-small) * var(--theme-module-spacing-scale-m));
   }
   .module_bottom-padding-l {
     padding-bottom: calc(var(--theme-module-spacing-extra-small) * var(--theme-module-spacing-scale-l));
   }
   .module_bottom-padding-xl {
     padding-bottom: calc(var(--theme-module-spacing-extra-small) * var(--theme-module-spacing-scale-xl));
   }
   .module_bottom-padding-xxl {
     padding-bottom: calc(var(--theme-module-spacing-extra-small) * var(--theme-module-spacing-scale-xxl));
   }
   .module_bottom-padding-0 {
     padding-bottom: 0;
   }
 }
 @media only screen and (min-width: 768px) {
   .module_top-padding-xxs {
     padding-top: calc(var(--theme-module-spacing-small) * var(--theme-module-spacing-scale-xxs));
   }
   .module_top-padding-xs {
     padding-top: calc(var(--theme-module-spacing-small) * var(--theme-module-spacing-scale-xs));
   }
   .module_top-padding-s {
     padding-top: calc(var(--theme-module-spacing-small) * var(--theme-module-spacing-scale-s));
   }
   .module_top-padding-m {
     padding-top: calc(var(--theme-module-spacing-small) * var(--theme-module-spacing-scale-m));
   }
   .module_top-padding-l {
     padding-top: calc(var(--theme-module-spacing-small) * var(--theme-module-spacing-scale-l));
   }
   .module_top-padding-xl {
     padding-top: calc(var(--theme-module-spacing-small) * var(--theme-module-spacing-scale-xl));
   }
   .module_top-padding-xxl {
     padding-top: calc(var(--theme-module-spacing-small) * var(--theme-module-spacing-scale-xxl));
   }
   .module_top-padding-0 {
     padding-top: 0;
   }
 
   .module_bottom-padding-xxs {
     padding-bottom: calc(var(--theme-module-spacing-small) * var(--theme-module-spacing-scale-xxs));
   }
   .module_bottom-padding-xs {
     padding-bottom: calc(var(--theme-module-spacing-small) * var(--theme-module-spacing-scale-xs));
   }
   .module_bottom-padding-s {
     padding-bottom: calc(var(--theme-module-spacing-small) * var(--theme-module-spacing-scale-s));
   }
   .module_bottom-padding-m {
     padding-bottom: calc(var(--theme-module-spacing-small) * var(--theme-module-spacing-scale-m));
   }
   .module_bottom-padding-l {
     padding-bottom: calc(var(--theme-module-spacing-small) * var(--theme-module-spacing-scale-l));
   }
   .module_bottom-padding-xl {
     padding-bottom: calc(var(--theme-module-spacing-small) * var(--theme-module-spacing-scale-xl));
   }
   .module_bottom-padding-xxl {
     padding-bottom: calc(var(--theme-module-spacing-small) * var(--theme-module-spacing-scale-xxl));
   }
   .module_bottom-padding-0 {
     padding-bottom: 0;
   }
 }
 @media only screen and (min-width: 992px) {
   .module_top-padding-xxs {
     padding-top: calc(var(--theme-module-spacing-medium) * var(--theme-module-spacing-scale-xxs));
   }
   .module_top-padding-xs {
     padding-top: calc(var(--theme-module-spacing-medium) * var(--theme-module-spacing-scale-xs));
   }
   .module_top-padding-s {
     padding-top: calc(var(--theme-module-spacing-medium) * var(--theme-module-spacing-scale-s));
   }
   .module_top-padding-m {
     padding-top: calc(var(--theme-module-spacing-medium) * var(--theme-module-spacing-scale-m));
   }
   .module_top-padding-l {
     padding-top: calc(var(--theme-module-spacing-medium) * var(--theme-module-spacing-scale-l));
   }
   .module_top-padding-xl {
     padding-top: calc(var(--theme-module-spacing-medium) * var(--theme-module-spacing-scale-xl));
   }
   .module_top-padding-xxl {
     padding-top: calc(var(--theme-module-spacing-medium) * var(--theme-module-spacing-scale-xxl));
   }
   .module_top-padding-0 {
     padding-top: 0;
   }
 
   .module_bottom-padding-xxs {
     padding-bottom: calc(var(--theme-module-spacing-medium) * var(--theme-module-spacing-scale-xxs));
   }
   .module_bottom-padding-xs {
     padding-bottom: calc(var(--theme-module-spacing-medium) * var(--theme-module-spacing-scale-xs));
   }
   .module_bottom-padding-s {
     padding-bottom: calc(var(--theme-module-spacing-medium) * var(--theme-module-spacing-scale-s));
   }
   .module_bottom-padding-m {
     padding-bottom: calc(var(--theme-module-spacing-medium) * var(--theme-module-spacing-scale-m));
   }
   .module_bottom-padding-l {
     padding-bottom: calc(var(--theme-module-spacing-medium) * var(--theme-module-spacing-scale-l));
   }
   .module_bottom-padding-xl {
     padding-bottom: calc(var(--theme-module-spacing-medium) * var(--theme-module-spacing-scale-xl));
   }
   .module_bottom-padding-xxl {
     padding-bottom: calc(var(--theme-module-spacing-medium) * var(--theme-module-spacing-scale-xxl));
   }
   .module_bottom-padding-0 {
     padding-bottom: 0;
   }
 }
 @media only screen and (min-width: 1175px) {
   .module_top-padding-xxs {
     padding-top: calc(var(--theme-module-spacing-large) * var(--theme-module-spacing-scale-xxs));
   }
   .module_top-padding-xs {
     padding-top: calc(var(--theme-module-spacing-large) * var(--theme-module-spacing-scale-xs));
   }
   .module_top-padding-s {
     padding-top: calc(var(--theme-module-spacing-large) * var(--theme-module-spacing-scale-s));
   }
   .module_top-padding-m {
     padding-top: calc(var(--theme-module-spacing-large) * var(--theme-module-spacing-scale-m));
   }
   .module_top-padding-l {
     padding-top: calc(var(--theme-module-spacing-large) * var(--theme-module-spacing-scale-l));
   }
   .module_top-padding-xl {
     padding-top: calc(var(--theme-module-spacing-large) * var(--theme-module-spacing-scale-xl));
   }
   .module_top-padding-xxl {
     padding-top: calc(var(--theme-module-spacing-large) * var(--theme-module-spacing-scale-xxl));
   }
   .module_top-padding-0 {
     padding-top: 0;
   }
 
   .module_bottom-padding-xxs {
     padding-bottom: calc(var(--theme-module-spacing-large) * var(--theme-module-spacing-scale-xxs));
   }
   .module_bottom-padding-xs {
     padding-bottom: calc(var(--theme-module-spacing-large) * var(--theme-module-spacing-scale-xs));
   }
   .module_bottom-padding-s {
     padding-bottom: calc(var(--theme-module-spacing-large) * var(--theme-module-spacing-scale-s));
   }
   .module_bottom-padding-m {
     padding-bottom: calc(var(--theme-module-spacing-large) * var(--theme-module-spacing-scale-m));
   }
   .module_bottom-padding-l {
     padding-bottom: calc(var(--theme-module-spacing-large) * var(--theme-module-spacing-scale-l));
   }
   .module_bottom-padding-xl {
     padding-bottom: calc(var(--theme-module-spacing-large) * var(--theme-module-spacing-scale-xl));
   }
   .module_bottom-padding-xxl {
     padding-bottom: calc(var(--theme-module-spacing-large) * var(--theme-module-spacing-scale-xxl));
   }
   .module_bottom-padding-0 {
     padding-bottom: 0;
   }
 }
 @media only screen and (min-width: 1440px) {
   .module_top-padding-xxs {
     padding-top: calc(var(--theme-module-spacing-extra-large) * var(--theme-module-spacing-scale-xxs));
   }
   .module_top-padding-xs {
     padding-top: calc(var(--theme-module-spacing-extra-large) * var(--theme-module-spacing-scale-xs));
   }
   .module_top-padding-s {
     padding-top: calc(var(--theme-module-spacing-extra-large) * var(--theme-module-spacing-scale-s));
   }
   .module_top-padding-m {
     padding-top: calc(var(--theme-module-spacing-extra-large) * var(--theme-module-spacing-scale-m));
   }
   .module_top-padding-l {
     padding-top: calc(var(--theme-module-spacing-extra-large) * var(--theme-module-spacing-scale-l));
   }
   .module_top-padding-xl {
     padding-top: calc(var(--theme-module-spacing-extra-large) * var(--theme-module-spacing-scale-xl));
   }
   .module_top-padding-xxl {
     padding-top: calc(var(--theme-module-spacing-extra-large) * var(--theme-module-spacing-scale-xxl));
   }
   .module_top-padding-0 {
     padding-top: 0;
   }
 
   .module_bottom-padding-xxs {
     padding-bottom: calc(var(--theme-module-spacing-extra-large) * var(--theme-module-spacing-scale-xxs));
   }
   .module_bottom-padding-xs {
     padding-bottom: calc(var(--theme-module-spacing-extra-large) * var(--theme-module-spacing-scale-xs));
   }
   .module_bottom-padding-s {
     padding-bottom: calc(var(--theme-module-spacing-extra-large) * var(--theme-module-spacing-scale-s));
   }
   .module_bottom-padding-m {
     padding-bottom: calc(var(--theme-module-spacing-extra-large) * var(--theme-module-spacing-scale-m));
   }
   .module_bottom-padding-l {
     padding-bottom: calc(var(--theme-module-spacing-extra-large) * var(--theme-module-spacing-scale-l));
   }
   .module_bottom-padding-xl {
     padding-bottom: calc(var(--theme-module-spacing-extra-large) * var(--theme-module-spacing-scale-xl));
   }
   .module_bottom-padding-xxl {
     padding-bottom: calc(var(--theme-module-spacing-extra-large) * var(--theme-module-spacing-scale-xxl));
   }
   .module_bottom-padding-0 {
     padding-bottom: 0;
   }
 }
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * The size-related variables (small/medium etc.) are directly related to the
  * responsive breakpoints.
  ***************************************************************************** */
 /* Container
   --------------------------------------------------------------------------- */
 /*
  * Maximum container width. The container padding will added to this with so
  * the actual content will have this (maximum) size.
  */
 /* Gutters
   --------------------------------------------------------------------------- */
 /*****************************************************************************
  * Generic module settings
  ***************************************************************************** */
 /*****************************************************************************
  * Text utilities
  *
  * @TODO: Add responsive utility selectors
  ***************************************************************************** */
 /* -- Color -- */
 .text_color-black {
   color: var(--color-base-black);
 }
 
 .text_color-primary-blue {
   color: var(--color-primary-blue);
 }
 
 .text_color-primary-red {
   color: var(--color-primary-red);
 }
 
 .text_color-secondary-dark-blue {
   color: var(--color-secondary-dark-blue);
 }
 
 .text_color-gray-25 {
   color: var(--color-gray-25);
 }
 
 .text_color-gray-50 {
   color: var(--color-gray-50);
 }
 
 .text_color-gray-75 {
   color: var(--color-gray-75);
 }
 
 .text_color-gray-100 {
   color: var(--color-gray-100);
 }
 
 .text_color-white {
   color: var(--color-base-white);
 }
 
 /* -- Alignment -- */
 .text_left {
   text-align: left;
 }
 
 .text_right {
   text-align: right;
 }
 
 .text_center {
   text-align: center;
 }
 
 /* -- Weight -- */
 .text_weight-light {
   font-weight: var(--theme-font-weight-light);
 }
 .text_weight-regular {
   font-weight: var(--theme-font-weight-regular);
 }
 .text_weight-medium {
   font-weight: var(--theme-font-weight-medium);
 }
 .text_weight-semibold {
   font-weight: var(--theme-font-weight-semibold);
 }
 .text_weight-strong {
   font-weight: var(--theme-font-weight-strong);
 }
 .text_weight-extrabold {
   font-weight: var(--theme-font-weight-extrabold);
 }
 
 /* -- Sizes -- */
 .text_size-xs {
   line-height: var(--theme-typography-text-xs-line-height);
   font-size: var(--theme-typography-text-xs-font-size);
 }
 .text_size-sm {
   line-height: var(--theme-typography-text-sm-line-height);
   font-size: var(--theme-typography-text-sm-font-size);
 }
 .text_size-md {
   line-height: var(--theme-typography-text-md-line-height);
   font-size: var(--theme-typography-text-md-font-size);
 }
 .text_size-lg {
   line-height: var(--theme-typography-text-lg-line-height);
   font-size: var(--theme-typography-text-lg-font-size);
 }
 .text_size-xl {
   line-height: var(--theme-typography-text-xl-line-height);
   font-size: var(--theme-typography-text-xl-font-size);
 }
 
 /* -- Rich text -- */
 .rich-text-container p a:not(.button):not(.cta_button) {
   font-size: inherit;
 }
 .rich-text-container img {
   height: auto;
   max-width: 100%;
 }
 .rich-text-container--color-black,
 .rich-text-container--color-black p,
 .rich-text-container--color-black li {
   color: var(--color-base-black);
 }
 .rich-text-container--color-primary-blue,
 .rich-text-container--color-primary-blue p,
 .rich-text-container--color-primary-blue li {
   color: var(--color-primary-blue);
 }
 .rich-text-container--color-primary-red,
 .rich-text-container--color-primary-red p,
 .rich-text-container--color-primary-red li {
   color: var(--color-primary-red);
 }
 .rich-text-container--color-secondary-dark-blue,
 .rich-text-container--color-secondary-dark-blue p,
 .rich-text-container--color-secondary-dark-blue li {
   color: var(--color-secondary-dark-blue);
 }
 .rich-text-container--color-gray-25,
 .rich-text-container--color-gray-25 p,
 .rich-text-container--color-gray-25 li {
   color: var(--color-gray-25);
 }
 .rich-text-container--color-gray-50,
 .rich-text-container--color-gray-50 p,
 .rich-text-container--color-gray-50 li {
   color: var(--color-gray-50);
 }
 .rich-text-container--color-gray-75,
 .rich-text-container--color-gray-75 p,
 .rich-text-container--color-gray-75 li {
   color: var(--color-gray-75);
 }
 .rich-text-container--color-gray-100,
 .rich-text-container--color-gray-100 p,
 .rich-text-container--color-gray-100 li {
   color: var(--color-gray-100);
 }
 .rich-text-container--color-white,
 .rich-text-container--color-white p,
 .rich-text-container--color-white li {
   color: var(--color-base-white);
 }
 .rich-text-container--light p, .rich-text-container--light li, .rich-text-container--light a:not(.button):not(.cta_button):not(.module-action) {
   font-weight: var(--theme-font-weight-light);
 }
 .rich-text-container--regular p, .rich-text-container--regular li, .rich-text-container--regular a:not(.button):not(.cta_button):not(.module-action) {
   font-weight: var(--theme-font-weight-base);
 }
 .rich-text-container--medium p, .rich-text-container--medium li, .rich-text-container--medium a:not(.button):not(.cta_button):not(.module-action) {
   font-weight: var(--theme-font-weight-medium);
 }
 .rich-text-container--semibold p, .rich-text-container--semibold li, .rich-text-container--semibold a:not(.button):not(.cta_button):not(.module-action) {
   font-weight: var(--theme-font-weight-semibold);
 }
 .rich-text-container--strong p, .rich-text-container--strong li, .rich-text-container--strong a:not(.button):not(.cta_button):not(.module-action) {
   font-weight: var(--theme-font-weight-strong);
 }
 .rich-text-container--extrabold p, .rich-text-container--extrabold li, .rich-text-container--extrabold a:not(.button):not(.cta_button):not(.module-action) {
   font-weight: var(--theme-font-weight-extrabold);
 }
 .rich-text-container--xs p, .rich-text-container--xs li, .rich-text-container--xs a:not(.button):not(.cta_button):not(.module-action) {
   line-height: var(--theme-typography-text-xs-line-height);
   font-size: var(--theme-typography-text-xs-font-size);
 }
 .rich-text-container--sm p, .rich-text-container--sm li, .rich-text-container--sm a:not(.button):not(.cta_button):not(.module-action) {
   line-height: var(--theme-typography-text-sm-line-height);
   font-size: var(--theme-typography-text-sm-font-size);
 }
 .rich-text-container--md p, .rich-text-container--md li, .rich-text-container--md a:not(.button):not(.cta_button):not(.module-action) {
   line-height: var(--theme-typography-text-md-line-height);
   font-size: var(--theme-typography-text-md-font-size);
 }
 .rich-text-container--lg p, .rich-text-container--lg li, .rich-text-container--lg a:not(.button):not(.cta_button):not(.module-action) {
   line-height: var(--theme-typography-text-lg-line-height);
   font-size: var(--theme-typography-text-lg-font-size);
 }
 .rich-text-container--xl p, .rich-text-container--xl li, .rich-text-container--xl a:not(.button):not(.cta_button):not(.module-action) {
   line-height: var(--theme-typography-text-xl-line-height);
   font-size: var(--theme-typography-text-xl-font-size);
 }
 .rich-text-container--xxl p, .rich-text-container--xxl li, .rich-text-container--xxl a:not(.button):not(.cta_button):not(.module-action) {
   line-height: var(--theme-typography-text-xxl-line-height);
   font-size: var(--theme-typography-text-xxl-font-size);
   font-family: var(--theme-font-family-heading);
 }
 .rich-text-container blockquote {
   margin: 1.8rem 0 !important;
   padding-left: 3.75rem;
   position: relative;
 }
 .rich-text-container blockquote::before {
   background: url("https://26222027.fs1.hubspotusercontent-eu1.net/hubfs/26222027/woodwing-theme-assets/icons/quote.svg") center/cover no-repeat;
   content: "";
   display: block;
   height: 40px;
   left: 0;
   position: absolute;
   top: 0;
   width: 40px;
 }
 .rich-text-container blockquote,
 .rich-text-container blockquote h4,
 .rich-text-container blockquote p {
   font-weight: var(--theme-font-weight-base);
   margin-bottom: 0;
 }
 
 /* Tablet
   ---------------------------------------------------------------------------- */
 @media only screen and (min-width: 768px) {
   /* -- Sizes -- */
   .text_size-xs {
     line-height: var(--theme-typography-text-xs-line-height-tablet);
     font-size: var(--theme-typography-text-xs-font-size-tablet);
   }
   .text_size-sm {
     line-height: var(--theme-typography-text-sm-line-height-tablet);
     font-size: var(--theme-typography-text-sm-font-size-tablet);
   }
   .text_size-md {
     line-height: var(--theme-typography-text-md-line-height-tablet);
     font-size: var(--theme-typography-text-md-font-size-tablet);
   }
   .text_size-lg {
     line-height: var(--theme-typography-text-lg-line-height-tablet);
     font-size: var(--theme-typography-text-lg-font-size-tablet);
   }
   .text_size-xl {
     line-height: var(--theme-typography-text-xl-line-height-tablet);
     font-size: var(--theme-typography-text-xl-font-size-tablet);
   }
 
   .rich-text-container--xs p, .rich-text-container--xs li, .rich-text-container--xs a:not(.button):not(.cta_button):not(.module-action) {
     line-height: var(--theme-typography-text-xs-line-height-tablet);
     font-size: var(--theme-typography-text-xs-font-size-tablet);
   }
   .rich-text-container--sm p, .rich-text-container--sm li, .rich-text-container--sm a:not(.button):not(.cta_button):not(.module-action) {
     line-height: var(--theme-typography-text-sm-line-height-tablet);
     font-size: var(--theme-typography-text-sm-font-size-tablet);
   }
   .rich-text-container--md p, .rich-text-container--md li, .rich-text-container--md a:not(.button):not(.cta_button):not(.module-action) {
     line-height: var(--theme-typography-text-md-line-height-tablet);
     font-size: var(--theme-typography-text-md-font-size-tablet);
   }
   .rich-text-container--lg p, .rich-text-container--lg li, .rich-text-container--lg a:not(.button):not(.cta_button):not(.module-action) {
     line-height: var(--theme-typography-text-lg-line-height-tablet);
     font-size: var(--theme-typography-text-lg-font-size-tablet);
   }
   .rich-text-container--xl p, .rich-text-container--xl li, .rich-text-container--xl a:not(.button):not(.cta_button):not(.module-action) {
     line-height: var(--theme-typography-text-xl-line-height-tablet);
     font-size: var(--theme-typography-text-xl-font-size-tablet);
   }
   .rich-text-container--xxl p, .rich-text-container--xxl li, .rich-text-container--xxl a:not(.button):not(.cta_button):not(.module-action) {
     line-height: var(--theme-typography-text-xxl-line-height-tablet);
     font-size: var(--theme-typography-text-xxl-font-size-tablet);
   }
   .rich-text-container blockquote {
     margin: 3rem 0 !important;
     padding-left: 6rem;
   }
   .rich-text-container blockquote::before {
     height: 80px;
     width: 80px;
   }
 }
 /* Desktop
   ---------------------------------------------------------------------------- */
 @media only screen and (min-width: 1175px) {
   /* -- Sizes -- */
   .text_size-xs {
     line-height: var(--theme-typography-text-xs-line-height-desktop);
     font-size: var(--theme-typography-text-xs-font-size-desktop);
   }
   .text_size-sm {
     line-height: var(--theme-typography-text-sm-line-height-desktop);
     font-size: var(--theme-typography-text-sm-font-size-desktop);
   }
   .text_size-md {
     line-height: var(--theme-typography-text-md-line-height-desktop);
     font-size: var(--theme-typography-text-md-font-size-desktop);
   }
   .text_size-lg {
     line-height: var(--theme-typography-text-lg-line-height-desktop);
     font-size: var(--theme-typography-text-lg-font-size-desktop);
   }
   .text_size-xl {
     line-height: var(--theme-typography-text-xl-line-height-desktop);
     font-size: var(--theme-typography-text-xl-font-size-desktop);
   }
 
   .rich-text-container--xs p, .rich-text-container--xs li, .rich-text-container--xs a:not(.button):not(.cta_button):not(.module-action) {
     line-height: var(--theme-typography-text-xs-line-height-desktop);
     font-size: var(--theme-typography-text-xs-font-size-desktop);
   }
   .rich-text-container--sm p, .rich-text-container--sm li, .rich-text-container--sm a:not(.button):not(.cta_button):not(.module-action) {
     line-height: var(--theme-typography-text-sm-line-height-desktop);
     font-size: var(--theme-typography-text-sm-font-size-desktop);
   }
   .rich-text-container--md p, .rich-text-container--md li, .rich-text-container--md a:not(.button):not(.cta_button):not(.module-action) {
     line-height: var(--theme-typography-text-md-line-height-desktop);
     font-size: var(--theme-typography-text-md-font-size-desktop);
   }
   .rich-text-container--lg p, .rich-text-container--lg li, .rich-text-container--lg a:not(.button):not(.cta_button):not(.module-action) {
     line-height: var(--theme-typography-text-lg-line-height-desktop);
     font-size: var(--theme-typography-text-lg-font-size-desktop);
   }
   .rich-text-container--xl p, .rich-text-container--xl li, .rich-text-container--xl a:not(.button):not(.cta_button):not(.module-action) {
     line-height: var(--theme-typography-text-xl-line-height-desktop);
     font-size: var(--theme-typography-text-xl-font-size-desktop);
   }
   .rich-text-container--xxl p, .rich-text-container--xxl li, .rich-text-container--xxl a:not(.button):not(.cta_button):not(.module-action) {
     line-height: var(--theme-typography-text-xxl-line-height-desktop);
     font-size: var(--theme-typography-text-xxl-font-size-desktop);
   }
   .rich-text-container blockquote {
     margin: 3rem 0 !important;
     padding-left: 6rem;
   }
   .rich-text-container blockquote::before {
     height: 80px;
     width: 80px;
   }
 }
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * The size-related variables (small/medium etc.) are directly related to the
  * responsive breakpoints.
  ***************************************************************************** */
 /* Container
   --------------------------------------------------------------------------- */
 /*
  * Maximum container width. The container padding will added to this with so
  * the actual content will have this (maximum) size.
  */
 /* Gutters
   --------------------------------------------------------------------------- */
 /*****************************************************************************
  * Generic module settings
  ***************************************************************************** */
 .newsletter-footer {
   position: relative;
   display: flex;
   flex-direction: column;
   border-radius: 100px !important;
   max-width: 100%;
   width: 100%;
 }
 .newsletter-footer form.hs-form .hs-error-msgs {
   display: none;
 }
 .newsletter-footer .hs-form {
   display: flex;
   flex-direction: column;
   justify-content: flex-start;
   align-items: flex-start;
 }
 .newsletter-footer .hs-form .hs-form-field {
   margin-bottom: 0rem;
   width: 100%;
 }
 .newsletter-footer .hs-form .hs-form-field > label {
   margin-bottom: 0rem;
 }
 .newsletter-footer .hs-form .hs-form-field {
   width: 100%;
   display: flex;
   justify-content: flex-start;
   align-items: flex-start;
 }
 .newsletter-footer form {
   display: flex;
   position: relative;
   align-items: center;
 }
 .newsletter-footer form .hs_email {
   width: 100%;
   flex: 1;
 }
 .newsletter-footer form .hs_email .input {
   margin-bottom: 8px;
   border: none;
   background: rgba(84, 84, 84, 0.4);
   border-radius: 100px !important;
   height: 44px;
   width: 100%;
 }
 .newsletter-footer form .hs_email .input input {
   color: var(--color-base-white) !important;
   border-radius: 100px;
   padding: 10px 50px 10px 16px;
   height: 44px;
   width: 100%;
 }
 .newsletter-footer form .hs_email .input input::-moz-placeholder {
   color: var(--color-gray-500);
   font-size: 16px;
   line-height: 1.5;
   font-weight: 400;
   font-family: var(--theme-font-family-base);
 }
 .newsletter-footer form .hs_email .input input:-ms-input-placeholder {
   color: var(--color-gray-500);
   font-size: 16px;
   line-height: 1.5;
   font-weight: 400;
   font-family: var(--theme-font-family-base);
 }
 .newsletter-footer form .hs_email .input input::placeholder {
   color: var(--color-gray-500);
   font-size: 16px;
   line-height: 1.5;
   font-weight: 400;
   font-family: var(--theme-font-family-base);
 }
 .newsletter-footer form .actions .hs-button {
   color: transparent;
   position: absolute;
   width: 44px;
   height: 44px;
   top: 0;
   border-radius: 50%;
   right: 0;
   padding: 0;
   background: url("https://26222027.fs1.hubspotusercontent-eu1.net/hubfs/26222027/woodwing-theme-assets/icons/subscribe.svg");
   background-repeat: no-repeat;
   background-size: 20px;
   background-position: center;
   background-color: #F05428;
 }
 .newsletter-footer form .actions .hs-button:hover {
   background: url("https://26222027.fs1.hubspotusercontent-eu1.net/hubfs/26222027/woodwing-theme-assets/icons/subscribe.svg");
   background-repeat: no-repeat;
   background-size: 20px;
   background-position: center;
   background-color: #F05428;
 }
 .newsletter-footer form.hs-form .legal-consent-container,
 .newsletter-footer form.hs-form .legal-consent-container p,
 .newsletter-footer form.hs-form .legal-consent-container a,
 .newsletter-footer form.hs-form .legal-consent-container label p li {
   color: var(--color-base-white);
   margin-bottom: unset;
   font-size: 12px;
   opacity: 0.7;
 }
 .newsletter-footer form.hs-form .legal-consent-container a {
   color: var(--color-gray-600);
 }
 .newsletter-footer form.hs-form .legal-consent-container a:hover {
   color: var(--theme-color-primary-hover) !important;
 }
 
 @media only screen and (min-width: 992px) {
   .newsletter-footer form {
     align-items: flex-start;
     flex-direction: column;
     margin-bottom: 0;
     max-width: 260px;
     width: 100%;
   }
   .newsletter-footer form .legal-consent-container {
     flex: 0 0 100%;
     order: 2;
   }
   .newsletter-footer form .hs_email {
     flex: 0 0 100%;
     margin-bottom: 0;
   }
   .newsletter-footer form .hs_submit {
     flex: 1;
   }
 }
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * Responsive breakpoints are used bottom-up; extra small means a screen size
  * between 576px and 787px (just before the small breakpoint);
  *
  * @media only screen and (min-width: xxx) { }
  ***************************************************************************** */
 /*****************************************************************************
  * The size-related variables (small/medium etc.) are directly related to the
  * responsive breakpoints.
  ***************************************************************************** */
 /* Container
   --------------------------------------------------------------------------- */
 /*
  * Maximum container width. The container padding will added to this with so
  * the actual content will have this (maximum) size.
  */
 /* Gutters
   --------------------------------------------------------------------------- */
 /*****************************************************************************
  * Generic module settings
  ***************************************************************************** */
 .newsletter form {
   display: flex;
   flex-direction: column;
 }
 .newsletter form .hubspot-link__container {
   display: none !important;
 }
 .newsletter form .legal-consent-container {
   margin-top: 0.6rem !important;
 }
 .newsletter form .legal-consent-container .hs-form-booleancheckbox-display > span {
   color: var(--color-gray-900) !important;
 }
 .newsletter form .legal-consent-container {
   order: 3;
   margin-bottom: 0;
 }
 .newsletter form .legal-consent-container p, .newsletter form a {
   color: var(--color-gray-900) !important;
 }
 .newsletter form .hs_email input,
 .newsletter form .hs_submit input {
   height: 48px;
 }
 .newsletter form .hs_email label {
   display: none;
 }
 .newsletter form .hs_email .input {
   border-radius: 5rem !important;
 }
 .newsletter form .hs_submit input {
   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%3Cpath d='M18.3332 4.99992C18.3332 4.08325 17.5832 3.33325 16.6665 3.33325H3.33317C2.4165 3.33325 1.6665 4.08325 1.6665 4.99992M18.3332 4.99992V14.9999C18.3332 15.9166 17.5832 16.6666 16.6665 16.6666H3.33317C2.4165 16.6666 1.6665 15.9166 1.6665 14.9999V4.99992M18.3332 4.99992L9.99984 10.8333L1.6665 4.99992' stroke='white' stroke-width='1.67' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
   background-repeat: no-repeat !important;
   background-color: var(--color-primary-blue) !important;
   background-position: center right 20px !important;
   background-size: 20px !important;
   height: 52px;
   padding-right: 2.4rem !important;
   line-height: unset !important;
   width: 100%;
 }
 .newsletter form .actions::before, .newsletter form .actions::after {
   display: none;
 }
 .newsletter form .inputs-list.multi-container {
   align-items: center;
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
   margin-bottom: 1.5rem;
 }
 .newsletter form .inputs-list.multi-container li {
   margin-right: 1.65rem;
 }
 .newsletter form .inputs-list.multi-container li:last-of-type {
   margin-right: 0;
 }
 .newsletter form .inputs-list.multi-container li span {
   font-size: 0.8rem;
 }
 
 @media only screen and (min-width: 992px) {
   .newsletter form {
     align-items: flex-start;
     flex-direction: row;
     flex-wrap: wrap;
     margin-bottom: 0;
     position: relative;
     width: 100%;
   }
   .newsletter form .legal-consent-container {
     flex: 0 0 100%;
     order: 2;
   }
   .newsletter form .hs_email {
     flex: 0 0 90%;
     margin-bottom: 0;
     margin-right: 0.8rem;
   }
   .newsletter form .hs_submit {
     flex: 1;
     position: absolute;
     left: auto;
     right: 0;
   }
 }