/*** FONTS ***/
  @import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@100;200;300;400;500;600;700;800;900&family=Outfit:wght@100..900&family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap');

  /*** VARIABLES ***/

  :root {

    /* Font Styles */

    --gl_font-size_display: clamp(72px, 6.5vw, 86px);
    --gl_font-size_h1: clamp(48px, 4.5vw, 56px);
    --gl_font-size_h2: clamp(38px, 3.8vw, 48px);
    --gl_font-size_h3: clamp(32px, 3vw, 38px);
    --gl_font-size_h4: clamp(26px, 2.5vw, 32px);
    --gl_font-size_h5: clamp(20px, 2vw, 26px);
    --gl_font-size_h6: clamp(16px, 1.6vw, 20px);
    --gl_font-size_lead: clamp(18px, 1.8vw, 22px);
    --gl_font-size_body: clamp(16px, 1.4vw, 18px);
    --gl_font-size_link: var(--gl_font-size_body);
    --gl_font-size_label: var(--gl_font-size_body);
    --gl_font-size_terms: clamp(12px, 1.2vw, 14px);
    --gl_font-size_tag: 14px;

    --gl_font-family_display: "Barlow Condensed", sans-serif;
    --gl_font-weight_display: 700;
    --gl_line-height_display: .85em;

    --gl_font-family_heading: "Outfit", sans-serif;
    --gl_font-weight_heading: 700;
    --gl_line-height_heading: 1.2em;

    --gl_font-family_lead: var(--gl_font-family_body);
    --gl_font-weight_lead: 300;
    --gl_line-height_lead: 1.6em;

    --gl_font-family_body: "Poppins", system-ui, -apple-system, sans-serif;
    --gl_font-weight_body: 400;
    --gl_line-height_body: 1.4em;

    /* Transitions */
    --gl_transition-property: all;
    --gl_transition-duration: 0.4s;
    --gl_transition-easing: ease-in-out;
    --gl_transition: var(--gl_transition-property) var(--gl_transition-duration) var(--gl_transition-easing);

    /* Colours */

    --gl_color_orange: #fa900f;
    --gl_color_dark-navy: #001c29;
    --gl_color_black: #121212;
    --gl_color_purple: #662982;
    --gl_color_blue: #0097ce;
    --gl_color_turquoise: #007070;
    --gl_color_green: #6da21d;
    --gl_color_pink: #d10056;
    --gl_color_red: #b91319;
    --gl_color_yellow: #f5d000;

    /* Colours — Bright */

    --gl_color_orange_bright: #ffaa3b;
    --gl_color_dark-navy_bright: #215068;
    --gl_color_black_bright: #434241;
    --gl_color_purple_bright: #9431be;
    --gl_color_blue_bright: #11b9fa;
    --gl_color_turquoise_bright: #00acac;
    --gl_color_green_bright: #87c924;
    --gl_color_pink_bright: #fe106d;
    --gl_color_red_bright: #ec1e21;
    --gl_color_yellow_bright: #ffe12b;

    /* Shades - Lighter */

    --gl_color_orange_lighter-10: #fc9f26;
    --gl_color_orange_lighter-20: #fcaa3e;
    --gl_color_orange_lighter-30: #fbb457;
    --gl_color_orange_lighter-40: #fdbf6d;
    --gl_color_orange_lighter-50: #fdca85;
    --gl_color_orange_lighter-60: #fdd39d;
    --gl_color_orange_lighter-70: #fedeb6;
    --gl_color_orange_lighter-80: #fee9ce;
    --gl_color_orange_lighter-90: #fff3e5;

    --gl_color_dark-navy_lighter-10: #1b333f;
    --gl_color_dark-navy_lighter-20: #344a54;
    --gl_color_dark-navy_lighter-30: #4d6069;
    --gl_color_dark-navy_lighter-40: #66777f;
    --gl_color_dark-navy_lighter-50: #7f8d94; 
    --gl_color_dark-navy_lighter-60: #99a4a9;
    --gl_color_dark-navy_lighter-70: #b3bbbe; /* Inverted subtle text, form help, GDPR and input border colour */
    --gl_color_dark-navy_lighter-80: #ccd2d4;
    --gl_color_dark-navy_lighter-90: #e5e7e8;

    --gl_color_black_lighter-10: #2c2a29;
    --gl_color_black_lighter-20: #444241;
    --gl_color_black_lighter-30: #5a5a59;
    --gl_color_black_lighter-40: #73706f;
    --gl_color_black_lighter-50: #8b8786; /* Subtle text, form help, GDPR and input border colour */
    --gl_color_black_lighter-60: #a29f9e;
    --gl_color_black_lighter-70: #bab7b6; /* Form placeholder and disabled text colour */
    --gl_color_black_lighter-80: #d0cfce;
    --gl_color_black_lighter-90: #e8e6e5;

    --gl_color_purple_lighter-10: #783e8e;
    --gl_color_purple_lighter-20: #87549b;
    --gl_color_purple_lighter-30: #9668a8;
    --gl_color_purple_lighter-40: #a57eb4;
    --gl_color_purple_lighter-50: #b493c0;
    --gl_color_purple_lighter-60: #c2a9cd;
    --gl_color_purple_lighter-70: #d2bed9;
    --gl_color_purple_lighter-80: #e1d3e4;
    --gl_color_purple_lighter-90: #f0e8f1;

    --gl_color_blue_lighter-10: #1a9fd3;
    --gl_color_blue_lighter-20: #34aad8;
    --gl_color_blue_lighter-30: #4db4db;
    --gl_color_blue_lighter-40: #66bfe1;
    --gl_color_blue_lighter-50: #80cae5;
    --gl_color_blue_lighter-60: #99d3ea;
    --gl_color_blue_lighter-70: #b3deef;
    --gl_color_blue_lighter-80: #cce9f3;
    --gl_color_blue_lighter-90: #e5f3f8;

    --gl_color_turquoise_lighter-10: #1b7d7e;
    --gl_color_turquoise_lighter-20: #348c8d;
    --gl_color_turquoise_lighter-30: #4c9b9b;
    --gl_color_turquoise_lighter-40: #66a9a9;
    --gl_color_turquoise_lighter-50: #80b7b7;
    --gl_color_turquoise_lighter-60: #99c6c6;
    --gl_color_turquoise_lighter-70: #b3d3d4;
    --gl_color_turquoise_lighter-80: #cce1e1;
    --gl_color_turquoise_lighter-90: #e5f0ef;

    --gl_color_green_lighter-10: #7bac32;
    --gl_color_green_lighter-20: #8ab649;
    --gl_color_green_lighter-30: #99bf60;
    --gl_color_green_lighter-40: #a7c875;
    --gl_color_green_lighter-50: #b6d18c;
    --gl_color_green_lighter-60: #c4d9a3;
    --gl_color_green_lighter-70: #d3e3ba;
    --gl_color_green_lighter-80: #e1ecd0;
    --gl_color_green_lighter-90: #f0f5e6;

    --gl_color_pink_lighter-10: #d71964;
    --gl_color_pink_lighter-20: #db3374;
    --gl_color_pink_lighter-30: #e04c85;
    --gl_color_pink_lighter-40: #e46597;
    --gl_color_pink_lighter-50: #e97fa8;
    --gl_color_pink_lighter-60: #ed98b9;
    --gl_color_pink_lighter-70: #f2b2ca;
    --gl_color_pink_lighter-80: #f6ccdb;
    --gl_color_pink_lighter-90: #fbe4ec;

    --gl_color_red_lighter-10: #c12a2c;
    --gl_color_red_lighter-20: #c84243;
    --gl_color_red_lighter-30: #cf5a5b;
    --gl_color_red_lighter-40: #d67071;
    --gl_color_red_lighter-50: #dd8889;
    --gl_color_red_lighter-60: #e4a0a0;
    --gl_color_red_lighter-70: #eab8b8;
    --gl_color_red_lighter-80: #f1cfcf;
    --gl_color_red_lighter-90: #f8e6e6;

    --gl_color_yellow_lighter-10: #f7d818;
    --gl_color_yellow_lighter-20: #f8dc32;
    --gl_color_yellow_lighter-30: #f9e14c;
    --gl_color_yellow_lighter-40: #fae565;
    --gl_color_yellow_lighter-50: #fbe97e;
    --gl_color_yellow_lighter-60: #fced97;
    --gl_color_yellow_lighter-70: #fcf1b1;
    --gl_color_yellow_lighter-80: #fdf6cb;
    --gl_color_yellow_lighter-90: #fefae3;

    /* Shades - Darker */

    --gl_color_orange_darker-10: #e2850c;
    --gl_color_orange_darker-20: #c9770b;
    --gl_color_orange_darker-30: #b1680a;
    --gl_color_orange_darker-40: #985a08;
    --gl_color_orange_darker-50: #7f4b07;
    --gl_color_orange_darker-60: #663c05;
    --gl_color_orange_darker-70: #4c2d04;
    --gl_color_orange_darker-80: #341f03;
    --gl_color_orange_darker-90: #1b1001;

    --gl_color_dark-navy_darker-10: #001925;
    --gl_color_dark-navy_darker-20: #001621;
    --gl_color_dark-navy_darker-30: #00141D;
    --gl_color_dark-navy_darker-40: #001119;
    --gl_color_dark-navy_darker-50: #000E15;
    --gl_color_dark-navy_darker-60: #000B10;
    --gl_color_dark-navy_darker-70: #00080C;
    --gl_color_dark-navy_darker-80: #000608;
    --gl_color_dark-navy_darker-90: #000304;

    --gl_color_black_darker-XX: #XXXXXX; /* Darker shades are not required */

    --gl_color_purple_darker-10: #5e2575;
    --gl_color_purple_darker-20: #542169;
    --gl_color_purple_darker-30: #4a1d5c;
    --gl_color_purple_darker-40: #40194e;
    --gl_color_purple_darker-50: #361541;
    --gl_color_purple_darker-60: #2b1134;
    --gl_color_purple_darker-70: #210d27;
    --gl_color_purple_darker-80: #17091a;
    --gl_color_purple_darker-90: #0c050d;

    --gl_color_blue_darker-10: #0285b8;
    --gl_color_blue_darker-20: #0276a4;
    --gl_color_blue_darker-30: #02688f;
    --gl_color_blue_darker-40: #025a7b;
    --gl_color_blue_darker-50: #024b67;
    --gl_color_blue_darker-60: #023c52;
    --gl_color_blue_darker-70: #022d3e;
    --gl_color_blue_darker-80: #021f29;
    --gl_color_blue_darker-90: #021015;

    --gl_color_turquoise_darker-10: #026465;
    --gl_color_turquoise_darker-20: #02595a;
    --gl_color_turquoise_darker-30: #024e4e;
    --gl_color_turquoise_darker-40: #024343;
    --gl_color_turquoise_darker-50: #023838;
    --gl_color_turquoise_darker-60: #022d2d;
    --gl_color_turquoise_darker-70: #022222;
    --gl_color_turquoise_darker-80: #021716;
    --gl_color_turquoise_darker-90: #020c0b;

    --gl_color_green_darker-10: #619319;
    --gl_color_green_darker-20: #578216;
    --gl_color_green_darker-30: #4c7214;
    --gl_color_green_darker-40: #426311;
    --gl_color_green_darker-50: #38520e;
    --gl_color_green_darker-60: #2d420b;
    --gl_color_green_darker-70: #223208;
    --gl_color_green_darker-80: #172206;
    --gl_color_green_darker-90: #0d1103;

    --gl_color_pink_darker-10: #bc014b;
    --gl_color_pink_darker-20: #a80142;
    --gl_color_pink_darker-30: #93013a;
    --gl_color_pink_darker-40: #7e0132;
    --gl_color_pink_darker-50: #690129;
    --gl_color_pink_darker-60: #550121;
    --gl_color_pink_darker-70: #410119;
    --gl_color_pink_darker-80: #2c0111;
    --gl_color_pink_darker-90: #190109;

    --gl_color_red_darker-10: #a81113;
    --gl_color_red_darker-20: #960f11;
    --gl_color_red_darker-30: #830e0f;
    --gl_color_red_darker-40: #710c0d;
    --gl_color_red_darker-50: #5e0a0b;
    --gl_color_red_darker-60: #4c0808;
    --gl_color_red_darker-70: #3a0606;
    --gl_color_red_darker-80: #270504;
    --gl_color_red_darker-90: #150302;

    --gl_color_yellow_darker-10: #dcbf00;
    --gl_color_yellow_darker-20: #c4aa00;
    --gl_color_yellow_darker-30: #ac9400;
    --gl_color_yellow_darker-40: #947f00;
    --gl_color_yellow_darker-50: #7b6a00;
    --gl_color_yellow_darker-60: #635600;
    --gl_color_yellow_darker-70: #4b4100;
    --gl_color_yellow_darker-80: #332b00;
    --gl_color_yellow_darker-90: #1a1600;

    /* Web colours */

    --gl_text_heading_color: #000000;
    --gl_text_heading_color_inverted: var(--gl_color_white);
    --gl_text_lead_color: #1f1f1f;
    --gl_text_lead_color_inverted: var(--gl_color_white);
    --gl_text_body_color: #1f1f1f;
    --gl_text_body_color_inverted: var(--gl_color_white);
    --gl_form_label_color: #000000;
    --gl_form_label_color_inverted: var(--gl_color_white);
    --gl_text_subtle_color: var(--gl_color_black_lighter-50);
    --gl_text_subtle_color_inverted: var(--gl_color_dark-navy_lighter-70);
    --gl_list_color: var(--gl_color_blue);
    --gl_color_accent: var(--gl_color_blue);
    --gl_color_background_light: #f2f9fb;
    --gl_color_background_dark: var(--gl_color_dark-navy);
    --gl_color_white: #ffffff;

    /* Link colours */

    --gl_link_primary_color: var(--gl_color_orange);
    --gl_link_primary_color_hover: var(--gl_color_orange_darker-40);
    --gl_link_primary_color_active: var(--gl_color_orange_darker-60);
    --gl_link_primary_color_focus: var(--gl_color_orange_lighter-20);

    --gl_link_secondary_color: var(--gl_color_green);
    --gl_link_secondary_color_hover: var(--gl_color_green_darker-40);
    --gl_link_secondary_color_active: var(--gl_color_green_darker-60);
    --gl_link_secondary_color_focus: var(--gl_color_green_lighter-20);

    --gl_link_tertiary_color: var(--gl_color_turquoise);
    --gl_link_tertiary_color_hover: var(--gl_color_turquoise_darker-40);
    --gl_link_tertiary_color_active: var(--gl_color_turquoise_darker-60);
    --gl_link_tertiary_color_focus: var(--gl_color_turquoise_lighter-20);

    /* Social colours */

    --facebook_color: #1877F2;
    --facebook_color_hover: color-mix(in srgb, var(--facebook_color), black 40%);
    --facebook_color_active: color-mix(in srgb, var(--facebook_color), black 60%);
    --facebook_color_focus: color-mix(in srgb, var(--facebook_color), white 20%);

    --linkedin_color: #0077B5;
    --linkedin_color_hover: color-mix(in srgb, var(--linkedin_color), black 40%);
    --linkedin_color_active: color-mix(in srgb, var(--linkedin_color), black 60%);
    --linkedin_color_focus: color-mix(in srgb, var(--linkedin_color), white 20%);

    --x_color: #000000;
    --x_color_hover: color-mix(in srgb, var(--x_color), white 20%); /* Black can't get darker, so we lighten slightly */
    --x_color_active: color-mix(in srgb, var(--x_color), white 40%);
    --x_color_focus: color-mix(in srgb, var(--x_color), white 20%);

    --pinterest_color: #BD081C;
    --pinterest_color_hover: color-mix(in srgb, var(--pinterest_color), black 40%);
    --pinterest_color_active: color-mix(in srgb, var(--pinterest_color), black 60%);
    --pinterest_color_focus: color-mix(in srgb, var(--pinterest_color), white 20%);

    --whatsapp_color: #25D366;
    --whatsapp_color_hover: color-mix(in srgb, var(--whatsapp_color), black 40%);
    --whatsapp_color_active: color-mix(in srgb, var(--whatsapp_color), black 60%);
    --whatsapp_color_focus: color-mix(in srgb, var(--whatsapp_color), white 20%);

    --youtube_color: #FF0000;
    --youtube_color_hover: color-mix(in srgb, var(--youtube_color), black 40%);
    --youtube_color_active: color-mix(in srgb, var(--youtube_color), black 60%);
    --youtube_color_focus: color-mix(in srgb, var(--youtube_color), white 20%);

    --copy_color: #707070;
    --copy_color_hover: color-mix(in srgb, var(--copy_color), black 40%);
    --copy_color_active: color-mix(in srgb, var(--copy_color), black 60%);
    --copy_color_focus: color-mix(in srgb, var(--copy_color), white 20%);
  }

  /*** GLOBAL OVERRIDES AND FIXES ***/

  /** Grid **/

  .row-fluid .span6 {
    width: auto; /* Mobile first */
  }
  .row-fluid [class*=span] {
    margin-left: 0; /* Theme does not require extra margin */
  }
  @media (min-width: 768px) {
    .row-fluid .span6 {
      width: 50%; /* Mobile first */
    }
  }
  .hs_cos_wrapper_type_inline_rich_text .row {
    padding-top: 0 !important; /* Remove margin and padding from rows inside rich text modules */
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }
  .hs_cos_wrapper_type_inline_rich_text .row > [class*="col-"]:first-of-type {
    padding-left: 0;
  }
  .hs_cos_wrapper_type_inline_rich_text .row > [class*="col-"]:last-of-type {
    padding-right: 0;
  }
  @media (max-width: 575px) {
    .hs_cos_wrapper_type_inline_rich_text .row [class*="col-"] {
      padding-right: 0 !important;
      padding-left: 0 !important;
    }
  }

  /** Typography **/

  :is(h1, h2, h3, h4, h5, h6) {
    margin-bottom: 1rem; /* Standardised bottom margin */
    font-weight: var(--gl_font-weight_heading);
  }
  :is(h1, h2, h3, h4, h5, h6, p, ol, ul):last-child {
    margin-bottom: 0; /* Remove bottom margin from last child */
  }
  ol,
  ul {
    margin-top: 0;
    margin-bottom: 1rem;
  }
  strong {
    font-weight: bold; /* Theme does not allow me to set this */
  }
  address {
    font-style: normal; /* Override default font style italic */
  }
  blockquote {
    border-left: 2px solid var(--gl_color_accent);
    margin: 0;
  }
  blockquote p {
    all: unset; /* Reset all inherited and non-inherited styles */
  }
  blockquote footer {
    color: var(--gl_text_heading_color);
    margin-top: 15px;
    font-size: var(--gl_font-size_lead);
    line-height: var(--gl_line-height_body);
    font-weight: 600;
  }
  blockquote cite {
    font-size: var(--gl_font-size_body);
    font-style: normal;
    font-weight: var(--gl_font-weight_body);
    color: var(--gl_color_black_lighter-50);
  }
  a:active {
    color: var(--gl_link_primary_color_active); /* The theme doesn't seperate active colours */ 
  }
  a:focus {
    color: var(--gl_link_primary_color_focus); /* The theme doesn't seperate focus colours */ 
  }
  [class*="cta-"],
  .cta-primary, .cta-primary:active, .hhs-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a.cta-primary, .hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a.cta-primary, .hhs-alt-nav .hhs-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a.cta-primary, .widget-span .hs-search-field button,
  .cta-secondary, .cta-secondary:active, .hhs-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a.cta-secondary, .hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a.cta-secondary, .hhs-alt-nav .hhs-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a.cta-secondary,
  .cta-tertiary, .cta-tertiary:active, .hhs-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a.cta-tertiary, .hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a.cta-tertiary, .hhs-alt-nav .hhs-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a.cta-tertiary,
  .cta-four, .cta-four:active, .hhs-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a.cta-four, .hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a.cta-four, .hhs-alt-nav .hhs-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a.cta-four,
  .cta-five, .cta-five:active, .hhs-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a.cta-five, .hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a.cta-five, .hhs-alt-nav .hhs-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a.cta-five,
  .cta-six, .cta-six:active, .hhs-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a.cta-six, .hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a.cta-six, .hhs-alt-nav .hhs-header-menu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a.cta-six {
    font-size: var(--gl_font-size_link) !important;
  }
  h1, .h1 {
    font-size: var(--gl_font-size_h1);
  }
  h2, .h2 {
    font-size: var(--gl_font-size_h2);
  }
  h3, .h3 {
    font-size: var(--gl_font-size_h3);
  }
  h4, .h4 {
    font-size: var(--gl_font-size_h4);
  }
  h5, .h5 {
    font-size: var(--gl_font-size_h5);
  }
  h6, .h6 {
    font-size: var(--gl_font-size_h6);
  }
  p, li {
    font-size: var(--gl_font-size_body);
  }
  .display {
    font-family: var(--gl_font-family_display);
    font-size: var(--gl_font-size_display);
    color: var(--gl_text_heading_color);
    font-weight: var(--gl_font-weight_display);
    font-style: normal;
    line-height: var(--gl_line-height_display);
    letter-spacing: -.025em;
    text-transform: uppercase;
  }
  .lead {
    font-size: var(--gl_font-size_lead);
    font-weight: var(--gl_font-weight_lead);
    line-height: var(--gl_line-height_lead);
  }
  .preheader {
    color: var(--gl_color_accent);
    font-weight: 500;
    letter-spacing: .25em;
    text-transform: uppercase;
    margin-bottom: .5rem;
  }
  .lined {
    display: flex;
    align-items: center;
    text-align: center;
    gap: 15px;
    width: 100%;
    line-height: 1em;
    justify-self: center;
    max-width: 600px;
  }
  .lined::before,
  .lined::after {
    content: "";
    height: 1px;
    background-color: var(--gl_color_black);
    flex: 1;
  }
  /* TypeIt JS cursor */
  .ti-cursor {
    margin-left: .125em;
  }

  /** Call To Actions **/

  button,
  input,
  optgroup,
  select,
  textarea {
    font-size: var(--gl_font-size_label) !important;
    line-height: var(--gl_line-height_body) !important; /*  Unable to change this within the theme */
  }
  .c-cta-con {
    margin: 0; /* Replaced with flexbox gap */
  }
  .c-content-con:has(.c-cta-con) {
    gap: 15px; /* Replaces the need for margin in between */
  }
  :is(.button--primary, .cta-primary, .cta-secondary, .cta-tertiary, .cta-four, .cta-five, .cta-six, .hs-button) {
    padding: 15px 18px;
    cursor: pointer;
  }
  /* Adjusted to implement outlined button */
  :is(.cta-four, .cta-five):is(:active, :focus, :hover) {
    color: var(--gl_color_white); /* The theme does not allow you to choose a different hover colour */
  }

  /* The theme does not include the option for borders, or a seperate active and seperate focus state for buttons */
  .cta-primary {
    border: 1px solid var(--gl_link_primary_color);
  }
  .cta-primary:active {
    background-color: var(--gl_link_primary_color_active);
    border: 1px solid var(--gl_link_primary_color_active); /* Borders added so solid and outline buttons are equal heights */
  }
  .cta-primary:focus {
    background-color: var(--gl_link_primary_color_focus) !important;
    border: 1px solid var(--gl_link_primary_color_focus) !important;
  }
  .cta-primary:hover {
    background-color: var(--gl_link_primary_color_hover);
    border: 1px solid var(--gl_link_primary_color_hover);
  }
  .cta-secondary:active {
    background-color: var(--gl_link_secondary_color_active);
    border: 1px solid var(--gl_link_secondary_color_active);
  }
  .cta-secondary:focus {
    background-color: var(--gl_link_secondary_color_focus) !important;
    border: 1px solid var(--gl_link_secondary_color_focus) !important;
  }
  .cta-tertiary:active {
    background-color: var(--gl_link_tertiary_color_active);
    border: 1px solid var(--gl_link_tertiary_color_active);
  }
  .cta-tertiary:focus {
    background-color: var(--gl_link_tertiary_color_focus) !important;
    border: 1px solid var(--gl_link_tertiary_color_focus) !important;
  }
  .cta-four:active {
    color: var(--gl_color_white) !important; /* Reverting the theme's outline button style */
    background-color: var(--gl_link_primary_color_active);
    border-color: var(--gl_link_primary_color_active);
  }
  .cta-four:focus {
    background-color: var(--gl_link_primary_color_focus);
    border-color: var(--gl_link_primary_color_focus);
  }
  .cta-five:active {
    color: var(--gl_color_white) !important; /* Reverting the theme's outline button style */
    background-color: var(--gl_link_secondary_color_active);
    border-color: var(--gl_link_secondary_color_active);
  }
  .cta-five:focus {
    background-color: var(--gl_link_secondary_color_focus);
    border-color: var(--gl_link_secondary_color_focus);
  }

  /* Button with Icon */
  :is(a,button)[class^="cta-"]:has(.svg-inline--fa, i[class*="fa-"], svg),
  :is(a,button)[class*=" cta-"]:has(.svg-inline--fa, i[class*="fa-"], svg) {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    /* line-height: 1.4em; */
    vertical-align: middle;
  }
  :is(a,button)[class^="cta-"]:has(.svg-inline--fa, i[class*="fa-"], svg) > span,
  :is(a,button)[class*=" cta-"]:has(.svg-inline--fa, i[class*="fa-"], svg) > span {
    display: inline-block;
    /* line-height: 1.4em; */
  }
  :is(a,button)[class^="cta-"] :is(.svg-inline--fa, i[class*="fa-"], svg),
  :is(a,button)[class*=" cta-"] :is(.svg-inline--fa, i[class*="fa-"], svg) {
    width: 1.1em;
    height: 1.1em;
    /* line-height: 1.4em; */
    flex: 0 0 auto;
    margin-top: -5px; /* Adjusted to fit the button padding */
    margin-left: auto;
  }
  .gl_buttons-inline .c-rel > .c-col-inner:has(.c-cta-con) {
    display: flex;
    justify-content: center;
    gap: 15px;
  }
  .gl_buttons-inline .c-rel > .c-col-inner > .c-content-con:has(.c-cta-con) {
    width: auto;
    align-content: center;
  }

  /* Text Link */
  .gl_text-link_primary { color: var(--gl_link_primary_color); transition: var(--gl_transition); }
  .gl_text-link_primary:active { color: var(--gl_link_primary_color_active); }
  .gl_text-link_primary:focus { color: var(--gl_link_primary_color_focus); }
  .gl_text-link_primary:hover { color: var(--gl_link_primary_color_hover); }
  .gl_text-link_secondary { color: var(--gl_link_secondary_color); var(--gl_transition); }
  .gl_text-link_secondary:active { color: var(--gl_link_secondary_color_active); }
  .gl_text-link_secondary:focus { color: var(--gl_link_secondary_color_focus); }
  .gl_text-link_secondary:hover { color: var(--gl_link_secondary_color_hover); }
  .gl_text-link_tertiary { color: var(--gl_link_tertiary_color); var(--gl_transition); }
  .gl_text-link_tertiary:active { color: var(--gl_link_tertiary_color_active); }
  .gl_text-link_tertiary:focus { color: var(--gl_link_tertiary_color_focus); }
  .gl_text-link_tertiary:hover { color: var(--gl_link_tertiary_color_hover); }

  /* Arrow Link */
  .gl_arrow-link {
    display: inline-flex;
    align-items: center;
    gap: .5em;
    position: relative;
    hyphens: auto;
    overflow-wrap: break-word;
    word-break: break-word;
    transition: var(--gl_transition);
  }
  .gl_arrow-link_arrow {
    position: relative;
    display: inline-block;
    width: 3em;
    height: 2px;
    background-color: currentColor;
    --gl_transition-property: transform;
    transition: var(--gl_transition);
  }
  .gl_arrow-link_arrow::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 10px;
    height: 10px;
    border-top: 2px solid currentColor;
    border-right: 2px solid currentColor;
    transform: translateY(-50%) rotate(45deg);
    transform-origin: center;
  }
  .gl_arrow-link:active .gl_arrow-link_arrow,
  .gl_arrow-link:focus .gl_arrow-link_arrow,
  .gl_arrow-link:hover .gl_arrow-link_arrow {
    transform: translateX(.5em);
  }
  .gl_arrow-link_primary { color: var(--gl_link_primary_color); }
  .gl_arrow-link_primary:active { color: var(--gl_link_primary_color_active); }
  .gl_arrow-link_primary:focus { color: var(--gl_link_primary_color_focus); }
  .gl_arrow-link_primary:hover { color: var(--gl_link_primary_color_hover); }
  .gl_arrow-link_secondary { color: var(--gl_link_secondary_color); }
  .gl_arrow-link_secondary:active { color: var(--gl_link_secondary_color_active); }
  .gl_arrow-link_secondary:focus { color: var(--gl_link_secondary_color_focus); }
  .gl_arrow-link_secondary:hover { color: var(--gl_link_secondary_color_hover); }
  .gl_arrow-link_tertiary { color: var(--gl_link_tertiary_color); }
  .gl_arrow-link_tertiary:active { color: var(--gl_link_tertiary_color_active); }
  .gl_arrow-link_tertiary:focus { color: var(--gl_link_tertiary_color_focus); }
  .gl_arrow-link_tertiary:hover { color: var(--gl_link_tertiary_color_hover); }

  /* Text Gradients - Brand */
  .gl_text-gradient,
  .gl_text-gradient_animated {
    --from: var(--gl_color_pink);
    --to: var(--gl_color_blue);
  }
  .gl_text-gradient_pink-blue {
    --from: var(--gl_color_pink);
    --to: var(--gl_color_blue);
  }
  .gl_text-gradient_green-blue {
    --from: var(--gl_color_green);
    --to: var(--gl_color_blue);
  }
  .gl_text-gradient_turquoise-red {
    --from: var(--gl_color_turquoise);
    --to: var(--gl_color_red);
  }
  .gl_text-gradient_blue-yellow {
    --from: var(--gl_color_blue);
    --to: var(--gl_color_yellow);
  }
  .gl_text-gradient_purple-orange {
    --from: var(--gl_color_purple);
    --to: var(--gl_color_orange);
  }
  .gl_text-gradient_blue-orange {
    --from: var(--gl_color_blue);
    --to: var(--gl_color_orange);
  }
  /* Text Gradients - Subtle */
  .gl_text-gradient_pink-pink_bright {
    --from: var(--gl_color_pink);
    --to: var(--gl_color_pink_bright);
  }
  .gl_text-gradient_red-red_bright {
    --from: var(--gl_color_red);
    --to: var(--gl_color_red_bright);
  }
  .gl_text-gradient_yellow-yellow_bright {
    --from: var(--gl_color_yellow);
    --to: var(--gl_color_yellow_bright);
  }
  .gl_text-gradient_orange-orange_bright {
    --from: var(--gl_color_orange);
    --to: var(--gl_color_orange_bright);
  }
  .gl_text-gradient_dark-navy-dark-navy_bright {
    --from: var(--gl_color_dark-navy);
    --to: var(--gl_color_dark-navy_bright);
  }
  .gl_text-gradient_black-black_bright {
    --from: var(--gl_color_black);
    --to: var(--gl_color_black_bright);
  }
  .gl_text-gradient_purple-purple_bright {
    --from: var(--gl_color_purple);
    --to: var(--gl_color_purple_bright);
  }
  .gl_text-gradient_blue-blue_bright {
    --from: var(--gl_color_blue_bright);
    --to: var(--gl_color_blue_bright);
  }
  .gl_text-gradient_turquoise-turquoise_bright {
    --from: var(--gl_color_turquoise);
    --to: var(--gl_color_turquoise_bright);
  }
  .gl_text-gradient_green-green_bright {
    --from: var(--gl_color_green);
    --to: var(--gl_color_green_bright);
  }
  /* Static gradient */
  .gl_text-gradient {
    background: linear-gradient(90deg, var(--from), var(--to));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
  /* Animated gradient */
  .gl_text-gradient_animated {
    background: repeating-linear-gradient(90deg, var(--from) 0%, var(--to) 50%, var(--from) 100%);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: gradient-flow 40s linear infinite;
  }
  @keyframes gradient-flow {
    to { background-position: 400% 50%; }
  }
  [class*="gl_text-gradient_"] {
    text-shadow: none; /* Fix for drop shadow being inherited */
  }

  /* Text highlight */
  .gl_text-highlight {
    background-color: var(--gl_color_black_lighter-90);
    padding: .1em .4em;
    margin: 0 .1em;
  }

  /* Text underline */
  .gl_text-underline {
    text-decoration: underline;
    text-decoration-color: var(--gl_color_accent);
    text-underline-offset: 4px;
  }

  /* isometric right */
  .gl_isometric_right .hhs-img,
  .gl_isometric_right .c-content-con:has(> img) {
    position: relative;
    display: inline-block;
  }
  .gl_isometric_right .hhs-video {
    position: relative;
  }
  .gl_isometric_right .hhs-img::before,
  .gl_isometric_right .hhs-video::before,
  .gl_isometric_right .c-content-con:has(> img)::before,
  .gl_isometric_right .c-content-con:has(.hs-embed-wrapper)::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -30px;
    bottom: -60px;
    left: 0;
    background: var(--gl_color_blue);
    -webkit-mask: url('https://www.gl-systemhaus.de/hubfs/gl-systemhaus.de/img/illustration_isometric-right.svg') no-repeat center right / contain;
    mask: url('https://www.gl-systemhaus.de/hubfs/gl-systemhaus.de/img/illustration_isometric-right.svg') no-repeat center right / contain;
    z-index: -1;
  }
  .gl_isometric_right .hhs-img img,
  .gl_isometric_right .hhs-video iframe,
  .gl_isometric_right .c-content-con:has(> img),
  .gl_isometric_right .c-content-con:has(.hs-embed-wrapper) {
    display: block;
    height: auto;
    max-width: 100%;
    position: relative;
    z-index: 1;
    /* box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.02), 0px 2px 3px rgba(0, 0, 0, 0.04), 0px 4px 7px rgba(0, 0, 0, 0.06), 0px 6px 13px rgba(0, 0, 0, 0.08), 0px 10px 20px rgba(0, 0, 0, 0.10); */
  }
  .gl_isometric_right_blue_lighter-10 .hhs-img::before,
  .gl_isometric_right_blue_lighter-10 .hhs-video::before,
  .gl_isometric_right_blue_lighter-10 .c-content-con::before {
    background: var(--gl_color_blue_lighter-10);
  }
  .gl_isometric_right_blue_lighter-20 .hhs-img::before,
  .gl_isometric_right_blue_lighter-20 .hhs-video::before,
  .gl_isometric_right_blue_lighter-20 .c-content-con::before {
    background: var(--gl_color_blue_lighter-20);
  }
  .gl_isometric_right_blue_lighter-30 .hhs-img::before,
  .gl_isometric_right_blue_lighter-30 .hhs-video::before,
  .gl_isometric_right_blue_lighter-30 .c-content-con::before {
    background: var(--gl_color_blue_lighter-30);
  }
  .gl_isometric_right_blue_lighter-40 .hhs-img::before,
  .gl_isometric_right_blue_lighter-40 .hhs-video::before,
  .gl_isometric_right_blue_lighter-40 .c-content-con::before {
    background: var(--gl_color_blue_lighter-40);
  }
  .gl_isometric_right_blue_lighter-50 .hhs-img::before,
  .gl_isometric_right_blue_lighter-50 .hhs-video::before,
  .gl_isometric_right_blue_lighter-50 .c-content-con::before {
    background: var(--gl_color_blue_lighter-50);
  }
  .gl_isometric_right_blue_lighter-60 .hhs-img::before,
  .gl_isometric_right_blue_lighter-60 .hhs-video::before,
  .gl_isometric_right_blue_lighter-60 .c-content-con::before {
    background: var(--gl_color_blue_lighter-60);
  }
  .gl_isometric_right_blue_lighter-70 .hhs-img::before,
  .gl_isometric_right_blue_lighter-70 .hhs-video::before,
  .gl_isometric_right_blue_lighter-70 .c-content-con::before {
    background: var(--gl_color_blue_lighter-70);
  }
  .gl_isometric_right_blue_lighter-80 .hhs-img::before,
  .gl_isometric_right_blue_lighter-80 .hhs-video::before,
  .gl_isometric_right_blue_lighter-80 .c-content-con::before {
    background: var(--gl_color_blue_lighter-80);
  }
  .gl_isometric_right_blue_lighter-90 .hhs-img::before,
  .gl_isometric_right_blue_lighter-90 .hhs-video::before,
  .gl_isometric_right_blue_lighter-90 .c-content-con::before {
    background: var(--gl_color_blue_lighter-90);
  }

/* Ribbon */
.gl_ribbon_container  {
  margin-bottom: 1rem;
}
.gl_ribbon {
  background-color: var(--gl_color_blue);
  border-left: 10px solid var(--gl_color_blue_darker-10);
  border-right: 10px solid var(--gl_color_blue_darker-10);
  color: var(--gl_color_white);
  font-family: var(--gl_font-family_heading);
  font-size: var(--gl_font-size_body);
  font-size: var(--gl_font-size_body);
  font-weight: var(--gl_font-weight_heading);
  line-height: var(--gl_line-height_heading);
  text-align: center;
  float: right;
  /* text-transform: uppercase; */
  margin-left: 30px;
  margin-bottom: 30px;
  padding: 15px 10px 40px 15px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 78%, 0 100%);
}

/* Global Padding */
@media (max-width: 575px) {
  .gl_global-padding {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}
@media (max-width: 992px) {
  .gl_global-padding {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}

  /* Wider column gutter on desktop */
  @media (min-width: 992px) {
    .gl_row-wider > .container > .row {
      margin-left: -15px!important;
      margin-right: -15px!important;
    }
    .gl_row-wider > .container > .row > [class^="col-"],
    .gl_row-wider > .container > .row > [class*=" col-"] {
      padding-left: 30px;
      padding-right: 30px;
    }
  }

  /* Justify Content Center */
  .gl_justify-content-center > .container > .row {
    justify-content: center;
  }

  /* Col md 6 */
  @media (min-width: 768px) and (max-width: 991px) {
    .gl_col-md-6 .col-md-12 {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }

  /* Back to top link */
  #return-to-top {
    left: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    display: flex !important; /* Overrides inline style */
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
  }
  #return-to-top svg {
    left: unset;
    top: unset;
    width: 30px;
    height: auto;
    transition: var(--gl_transition);
  }
  #return-to-top:hover svg {
    top: unset;
  }

  /* Hexagon */
  .gl_hexagon {
    position: relative;
    aspect-ratio: 5 / 6;
    width: 100%;
    height: auto;
    display: flex;
    align-self: center;
    justify-self: center;
  }
  .gl_hexagon:active .gl_hexagon_background,
  .gl_hexagon:focus .gl_hexagon_background,
  .gl_hexagon:hover .gl_hexagon_background {
    background: var(--gl_color_blue_lighter-80);
  }
  .gl_hexagon.gl_hexagon_hover:active .gl_hexagon_image,
  .gl_hexagon.gl_hexagon_hover:focus .gl_hexagon_image,
  .gl_hexagon.gl_hexagon_hover:hover .gl_hexagon_image {
    transform: translate(-50%, calc(-50% - 15px));
  }
  .gl_hexagon_image {
    position: absolute;
    height: auto;
    z-index: 2;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 260px;
    max-width: none !important;
    transition: var(--gl_transition);
  }
  .gl_hexagon_background {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gl_color_blue_lighter-90);
    clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
    z-index: 1;
    transition: var(--gl_transition);
  }

  /** Forms **/
  body form.hs-form fieldset .hs-form-field:last-child {
    padding: 0; /* Remove unnecessary padding on last child item */
  }
  body form.hs-form .hs-form-field {
    margin-bottom: 30px !important;
  }
  body form.hs-form .legal-consent-container .hs-form-field {
    margin-bottom: 1rem !important;
  }
  input[type=color],
  input[type=date],
  input[type=datetime-local],
  input[type=datetime],
  input[type=email],
  input[type=month],
  input[type=number],
  input[type=password],
  input[type=search],
  input[type=tel],
  input[type=text],
  input[type=time],
  input[type=url],
  input[type=week],
  textarea {
    padding: 15px 18px !important; /* Matches button padding */
  }
  select {
    padding: 15px 48px 12px 18px !important; /* Unable to adjust within the theme or HubSpot. Paddding right is larger to compensate for the space for dropdown arrow */
  }
  form.filters:focus-within,
  form input:focus,
  form select:focus,
  select:focus,
  form textarea:focus {
    border-color: var(--gl_link_primary_color_focus);
  }
  .hs-input {
    line-height: 1.4em;
  }
  hs-fieldtype-checkbox > label,
  .hs-form label {
    font-size: var(--gl_font-size_label);
    line-height: 1.4em !important; /*  Unable to change this within the theme */
  }
  .hs-richtext,
  .inputs-list label > input,
  .inputs-list label > span {
    line-height: 1.4em; /* Unable to adjust within the theme or HubSpot */
  }
  .legal-consent-container {
    margin: 0 0 30px;
  }
  .legal-consent-container .hs-dependent-field .hs-form-booleancheckbox {
    margin-top: 1rem;
  }
  .legal-consent-container .hs-dependent-field .hs-form-booleancheckbox label {
    color: var(--gl_form_label_color);
    font-size: 14px; /* Matches GDPR text theme settings */
    margin-bottom: 0; /* Margin is controlled via .hs-form-field */
  }
  .legal-consent-container .hs-form-booleancheckbox-display > span {
    margin-left: 0 !important; /* Overrides unnecessary margin left */
  }
  .legal-consent-container .hs-richtext {
      margin-bottom: 0;
  }
  .legal-consent-container .hs-richtext + .hs-richtext {
      margin-top: 1rem;
  }
  .legal-consent-container .hs-dependent-field {
    margin-bottom: 1rem;
  }
  .hs_recaptcha {
    margin-top: 30px;
  }
  .hs-recaptcha {
    margin-top: 0;
  }
  .hs-recaptcha .grecaptcha-badge {
    margin-left: 0; /* Left align reCAPTCHA */
  }
  .hs-fieldtype-textarea.hs-input {
    vertical-align: top; /* Fix: gap between textarea and error text */
  }
  .mdl-checkbox__focus-helper,
  .mdl-checkbox__box-outline {
    border-radius: 0;
    top: 0;
  }
  .mdl-checkbox__box-outline {
    border: 1px solid var(--gl_color_black);
  }
  .hs-form .mdl-checkbox.is-checked .mdl-checkbox__box-outline {
    border-color: var(--gl_color_black);
  }
  .mdl-checkbox.is-checked .mdl-checkbox__box-outline {
    border: 2px solid var(--gl_color_black);
  }
  .hs-form .mdl-checkbox.is-checked .mdl-checkbox__tick-outline {
    background: rgb(0, 0, 0) url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8cGF0aAogICAgIGQ9Ik0gMC4wNDAzODA1OSwwLjYyNjc3NjcgMC4xNDY0NDY2MSwwLjUyMDcxMDY4IDAuNDI5Mjg5MzIsMC44MDM1NTMzOSAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IE0gMC4yMTcxNTcyOSwwLjgwMzU1MzM5IDAuODUzNTUzMzksMC4xNjcxNTcyOSAwLjk1OTYxOTQxLDAuMjczMjIzMyAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IgogICAgIGlkPSJyZWN0Mzc4MCIKICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO3N0cm9rZTpub25lIiAvPgo8L3N2Zz4K")
  }
  input[type="submit" i] {
    cursor: pointer; /* Fix: make form buttons consistent with regular buttons */
  }
  .hs-fieldtype-checkbox > label,
  .hs-form label {
    margin-bottom: 15px;
  }
  .user-is-tabbing:focus {
    -webkit-box-shadow: none; /* Remove focus styling */
    box-shadow: none; /* Remove focus styling */
  }
  @media (min-width: 401px) {
    body form.hs-form fieldset .hs-form-field {
      padding: 0 15px 0 0; /* Fix: remove unnecessary right padding */
    }
  }
  .gl_inverted .legal-consent-container .hs-dependent-field .hs-form-booleancheckbox label {
    color: var(--gl_form_label_color_inverted);
  }

  /* Social sharing */
  .gl_social-sharing {
    display: flex;
    flex-direction: row;
    gap: .5em;
    flex-wrap: wrap;
    align-items: center;
  }
  .gl_social-sharing a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--social-sharing_background-color, var(--gl_link_primary_color));
    color: var(--gl_color_white);
    align-self: center;
    flex-shrink: 0;
    font-size: 20px;
  }
  .gl_social-sharing a:hover {
    background-color: var(--social-sharing_background-color-hover, var(--gl_link_primary_color_hover));
  }
  .gl_social-sharing a:active {
    background-color: var(--social-sharing_background-color-active, var(--gl_link_primary_color_active));
  }
  .gl_social-sharing a:focus {
    background-color: var(--social-sharing_background-color-focus, var(--gl_link_primary_color_focus));
  }
  .gl_social-sharing.gl_social-sharing_left {
    justify-content: flex-start;
  }
  .gl_social-sharing.gl_social-sharing_center {
    justify-content: center;
  }
  .gl_social-sharing.gl_social-sharing_right {
    justify-content: flex-end;
  }
  .gl_social-sharing a[href*="facebook"] {
    --social-sharing_background-color: var(--facebook_color);
    --social-sharing_background-color-hover: var(--facebook_color_hover);
    --social-sharing_background-color-active: var(--facebook_color_active);
    --social-sharing_background-color-focus: var(--facebook_color_focus);
  }
  .gl_social-sharing a[href*="linkedin"] {
    --social-sharing_background-color: var(--linkedin_color);
    --social-sharing_background-color-hover: var(--linkedin_color_hover);
    --social-sharing_background-color-active: var(--linkedin_color_active);
    --social-sharing_background-color-focus: var(--linkedin_color_focus);
  }
  .gl_social-sharing a[href*="twitter"] {
    --social-sharing_background-color: var(--x_color);
    --social-sharing_background-color-hover: var(--x_color_hover);
    --social-sharing_background-color-active: var(--x_color_active);
    --social-sharing_background-color-focus: var(--x_color_focus);
  }
  .gl_social-sharing a[href*="pinterest"] {
    --social-sharing_background-color: var(--pinterest_color);
    --social-sharing_background-color-hover: var(--pinterest_color_hover);
    --social-sharing_background-color-active: var(--pinterest_color_active);
    --social-sharing_background-color-focus: var(--pinterest_color_focus);
  }
  .gl_social-sharing a[href*="whatsapp"] {
    --social-sharing_background-color: var(--whatsapp_color);
    --social-sharing_background-color-hover: var(--whatsapp_color_hover);
    --social-sharing_background-color-active: var(--whatsapp_color_active);
    --social-sharing_background-color-focus: var(--whatsapp_color_focus);
  }
  .gl_social-sharing a[href*="reddit"] {
    --social-sharing_background-color: var(--reddit_color);
    --social-sharing_background-color-hover: var(--reddit_color_hover);
    --social-sharing_background-color-active: var(--reddit_color_active);
    --social-sharing_background-color-focus: var(--reddit_color_focus);
  }
  .gl_social-sharing a.gl_copy-link {
    --social-sharing_background-color: var(--copy_color);
    --social-sharing_background-color-hover: var(--copy_color_hover);
    --social-sharing_background-color-active: var(--copy_color_active);
    --social-sharing_background-color-focus: var(--copy_color_focus);
  }
  .gl_social-sharing a[href*="youtube"] {
    --social-sharing_background-color: var(--youtube_color);
    --social-sharing_background-color-hover: var(--youtube_color_hover);
    --social-sharing_background-color-active: var(--youtube_color_active);
    --social-sharing_background-color-focus: var(--youtube_color_focus);
  }

/** Header navigation **/
@keyframes stickyHeaderSlideIn {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.sticky-menu.active {
  animation: stickyHeaderSlideIn 0.4s ease forwards;
}
.hhs-top-bar.hhs-alt-nav {
  background: var(--gl_color_blue_darker-90); /* Overrides forced transparent background */
}
.hhs-nav-grid {
  padding-right: 30px; /* Aligns header navigation with the rest of the column structure */
  padding-left: 30px;
}
.hhs-nav-grid__extras {
  display: flex;
  height: calc(100% - 30px);
}
#hs-link-global_header_v2_ {
  display: block;
}
@media (max-width: 920px) {
  .hhs-menu-toggle {
    display: flex; /* Changed fro block to vertically centre align burger menu */
  }
}
@media (max-width: 960px) {
  .hhs-menu-toggle {
    display: flex; /* Changed fro block to vertically centre align burger menu */
  }
}
.mega-menu {
  background-color: var(--gl_color_blue_darker-90); /* I cannot find where to edit this */
  top: var(--gl_nav_height, 85px);
  border-top: none; /* Disables the theme's forced bridge height */
  box-shadow: 0 0 1px rgba(0, 0, 0, .02), 0 2px 3px rgba(0, 0, 0, .04), 0 4px 7px rgba(0, 0, 0, .06), 0 6px 13px rgba(0, 0, 0, .08), 0 10px 20px rgba(0, 0, 0, .1);
  padding: 50px 15px;
}
.mega-menu.active {
  padding: 50px 15px;
}
.sticky-menu.active {
  box-shadow: 0 0 1px rgba(0, 0, 0, .02), 0 2px 3px rgba(0, 0, 0, .04), 0 4px 7px rgba(0, 0, 0, .06), 0 6px 13px rgba(0, 0, 0, .08), 0 10px 20px rgba(0, 0, 0, .1);
}
.mega-menu > div > .container {
  padding-right: 0;
  padding-left: 0;
}
.hhs-top-bar {
  display: flex;
}
.hhs-header-logo {
  padding: 22.4px 22.4px 22.4px 0; /* Don't ask */
}
.hhs-menu-toggle {
  padding-left: 30px; /* Matches standard padding */
}
.top-bar-search {
  padding: 0;
  margin-right: 0;
  margin-left: 15px;
}
.top-bar-search svg {
  width: 22px; /* The theme's default size is unnecessarily small */
  height: 22px;
  fill: var(--gl_link_primary_color);
  transition: var(--gl_transition);
}
.top-bar-search:active svg {
  fill: var(--gl_link_primary_color_active);
}
.top-bar-search:focus svg {
  fill: var(--gl_link_primary_color_focus);
}
.top-bar-search:hover svg {
  fill: var(--gl_link_primary_color_hover);
}
@media (min-width: 851px) {
  .hhs-menu-toggle {
    display: none;
  }
}
.main-nav,
.main-nav > nav,
.main-nav > nav > .hhs-nav-links {
  height: 100%;
}
nav.hs-menu-wrapper > .hhs-nav-links > .hs-item-has-children > .hs-menu-children-wrapper a {
  transition: none; /* Disables default link transition for dropdown menus */
}
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children > a svg {
  margin-left: 10px !important;
}
.hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal > ul li .mega-menu a[href="javascript:void(0);"] {
  color: color-mix(in srgb, var(--gl_color_white) 50%, transparent) !important; /* Override style for 'no link' navigation items */
  padding-top: 0 !important;
}
.hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal > ul li .mega-menu a[href="javascript:void(0);"]:active,
.hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal > ul li .mega-menu a[href="javascript:void(0);"]:focus,
.hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal > ul li .mega-menu a[href="javascript:void(0);"]:hover {
  color: inherit;
  cursor: default;
}
.hhs-top-bar .mega-nav-con .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
  padding: 10px 15px;
}
.hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal > ul li .mega-menu a,
.hhs-alt-nav .hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal > ul li .mega-menu a,
.hhs-top-bar .mega-menu .mega-nav-con ul li ul.hs-menu-children-wrapper li a,
.hhs-alt-nav .hhs-top-bar .mega-menu .mega-nav-con ul li ul.hs-menu-children-wrapper li a,
.hhs-hat-menu .hs-menu-children-wrapper li a,
.hhs-lang-switch .lang_list_class li a,
.custom-menu-primary .hs-menu-wrapper > ul li a,
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a,
.hhs-lang-switch .lang_list_class li a,
.hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a,
.hhs-alt-nav .hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
  font-size: var(--gl_font-size_body) !important; /* Force responsive font size */
}
.hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal>ul li .mega-menu a {
  padding: 10px 0 !important;
  gap: .3em;
}
.hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-item:has(+ li a[href="javascript:void(0);"]) > a {
  padding-bottom: 5px !important;
}
.hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
  font-family: var(--gl_font-family_body);
  font-weight: var(--gl_font-weight_body) !important;
  font-style: normal;
  line-height: var(--gl_line-height_body) !important;
}
.hs-menu-wrapper.hs-menu-flow-horizontal .mega-menu ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 !important;
  max-width: 100%; /* Unsure why a max-width is even set */
}
.hhs-top-bar .mega-menu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li {
  margin: 0;
}
.hhs-top-bar .mega-menu .hs-menu-wrapper.hs-menu-flow-horizontal > ul li:last-child {
  margin-bottom: 0;
}
.hhs-side-menu__extras .hs-menu-item a {
  font-weight: normal; /* Fix spelling mistake from the theme */
}
/* Dropdown navigation menu */
.sc-site-header__menu .hs-menu-children-wrapper {
  padding: 0 !important;
  display: flex;
  flex-direction: column;
}
.hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-item {
  height: 100%;
}
.hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-item > a {
  display: inline-flex;
  align-items: center;
  height: 100%;
}
.hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  box-shadow: 0 0 1px rgba(0, 0, 0, .02), 0 2px 3px rgba(0, 0, 0, .04), 0 4px 7px rgba(0, 0, 0, .06), 0 6px 13px rgba(0, 0, 0, .08), 0 10px 20px rgba(0, 0, 0, .1);
}
.hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
  padding: 10px 15px; /* I cannot figure out how to make this apply to non-mega menus */
}
.hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal > ul li {
  margin: 0;
}
.hhs-top-bar .hs-menu-wrapper.hs-menu-flow-horizontal > ul li > a {
  padding: 30px 15px;
}
/* Vertically centrally align search bar */
.hhs-top-bar .hs-search-field.is-open .hs-search-field__bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hhs-top-bar .hs-search-field__bar {
  transition: none;
}
/* Matches input style */
.hhs-top-bar .hs-search-field__bar .hs-search-field__input {
  border: 1px solid var(--gl_color_black_lighter-70); /* Matches theme form border colour */
  background-color: rgba(255, 255, 255, 1.0);
  padding: 15px !important;
  border-radius: 0;
  height: auto;
}

/** Modules **/
.gl_meeting-scheduler {
  padding-top: 84px !important;
  padding-top: 84px !important;
}
@media (max-width: 575px) {
  .gl_meeting-scheduler {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
}
@media (max-width: 992px) {
  .gl_meeting-scheduler {
    padding-top: 44px !important;
    padding-bottom: 44px !important;
  }
}

/* Inverted */
.gl_inverted {
  background-color: var(--gl_color_background_dark) !important;
}
.gl_inverted blockquote footer,
.gl_inverted .hhs-rich-text :is(h1, h2, h3, h4, h5, h6):not(.preheader),
.gl_inverted .hs_cos_wrapper_type_inline_rich_text :is(h1, h2, h3, h4, h5, h6):not(.preheader) {
  color: var(--gl_text_heading_color_inverted);
}
.gl_inverted .hhs-rich-text :is(p, li),
.gl_inverted .hs_cos_wrapper_type_inline_rich_text :is(p, li) {
  color: var(--gl_text_body_color_inverted);
}
.gl_inverted .hhs-rich-text > label,
.gl_inverted .hs-fieldtype-checkbox > label,
.gl_inverted .hs-form label {
  color: var(--gl_form_label_color_inverted);
}
.gl_inverted.hhs-rich-text input,
.gl_inverted.widget-span .hs-search-field input,
.gl_inverted select,
.gl_inverted .hs-input {
  border-color: var(--gl_text_subtle_color_inverted);
}
.gl_inverted blockquote cite {
  color: var(--gl_text_subtle_color_inverted);
}

  /* Tabs */
  .gl_tabs .hhs-tab-wrapper li {
    flex: none;
  }
  .gl_tabs .hhs-tab-wrapper button {
    padding: 30px 30px 25px; /* Adjusted for the line height */
    border-color: var(--gl_color_black_lighter-70) !important; /* Matches theme form border colour */
    border-width: 1px;
    border-style: solid;
    transition: none;
  }
  .gl_tabs .hhs-tab-wrapper button.is-active {
    border-top-color: var(--gl_color_orange) !important;
  }
  @media (max-width: 575px) {
    .gl_tabs .hhs-tab-wrapper button {
      margin-top: -1px;
    }
  }
  @media (min-width: 576px) {
    .gl_tabs .hhs-tab-wrapper li:not(:first-child) > button {
      margin-left: -1px;
      width: calc(100% + 1px);
    }
    .gl_tabs .hhs-tab-wrapper button.is-active {
      border-bottom-color: transparent !important;
    }
  }
  .gl_tabs .selected-tab {
    border-top-width: 1px !important;
    padding: 30px 40px 25px;
    border: 1px solid var(--gl_color_black_lighter-70); /* Matches theme form border colour */
  }
  .gl_tabs .hhs-panel-wrapper .panel {
    border: 1px solid var(--gl_color_black_lighter-70); /* Matches theme form border colour */
    margin-top: -1px; /* place underneth tabs */
  }
  .gl_tabs .hhs-panel-wrapper > .panel > .row > [class*='col-']:first-child {
    padding-left: 0 !important; /* Removes the first column's unnecessary padding */
  }
  .gl_tabs .hhs-panel-wrapper > .panel > .row > [class*='col-']:last-child {
    padding-right: 0 !important;  /* Removes the last column's unnecessary padding */
  }
  .gl_tabs .gl_inverted .hs_cos_wrapper_type_inline_rich_text :is(h1, h2, h3, h4, h5, h6, p,li) {
    color: var(--gl_text_body_color);
  }

  /* Blog Listing */
  /* The theme has no ability to add an id or class  */
  .blog-index {
    display: flex;
    padding: 0;
  }
  .blog-index__post-content--large-wrapper {
    margin: 0;
    flex: 0 0 100%;
    padding: 15px;
  }
  .blog-index__post.blog-index__post--large {
    height: 100%;
    padding: 0;
  }
  .blog-index__post--large .blog-index__post-content {
    padding: 30px;
  }
  .blog-index__post {
    padding: 15px;
    margin: 0;
    transition: none;
  }
  .blog-index__post:hover {
    transform: none;
  }
  .blog-index__post--large,
  .hhs-blog-card-inner {
    --gl_transition_property: transform;
    transition: var(--gl_transition);
    will-change: transform;
    padding-bottom: 0;
  }
  .blog-index__post--large:is(:active, :focus-visible, :hover),
  .hhs-blog-card-inner:is(:active, :focus-visible, :hover) {
    transform: translateY(-15px);
  }
  .blog-index__post-author {
    margin: 0 0 10px 0;
  }
  .meta-author a:active,
  a.blog-index__post-author-name:active {
    color: var(--gl_link_primary_color_active);
  }
  .meta-author a:focus,
  a.blog-index__post-author-name:focus {
    color: var(--gl_link_primary_color_focus);
  }
  .meta-author a:hover,
  a.blog-index__post-author-name:hover {
    color: var(--gl_link_primary_color_hover);
  }
  .blog-recent-posts__post,
  .hhs-blog-card-inner,
  .blog-index__post--large {
    -webkit-box-shadow: none;
    box-shadow: none; /* Turn off forced box-shadow */
  }
  a.blog-index__post-image img {
    --gl_transition-property: filter;
    transition: var(--gl_transition);
  }
  a.blog-index__post-image:active img,
  a.blog-index__post-image:focus img,
  a.blog-index__post-image:hover img {
    filter: brightness(60%);
  }
  .hhs-blog-card-inner .blog-index__post-content {
    padding: 30px;
  }
  .blog-index__post-author-image {
    display: none;
  }
  a.blog-index__post-button {
    font-size: var(--gl_font-size_link);
    color: var(--gl_link_primary_color); /* Focused because I cannot set interactive states in the theme */
    right: 30px;
    bottom: 30px;
  }
  a.blog-index__post-button:active {
  color: var(--gl_link_primary_color_active);
  }
  a.blog-index__post-button:focus {
  color: var(--gl_link_primary_color_focus);
  }
  a.blog-index__post-button:hover {
  color: var(--gl_link_primary_color_hover);
  }
  :is(.blog-index__post-content--small, .blog-index__post--large) h4.card_post_title,
  :is(.blog-index__post-content--small, .blog-index__post--large) h4.card_post_title a {
    font-size: var(--gl_font-size_h5);
  }
  :is(.blog-index__post--large, .blog-index__post .blog-index__post-content--small, .blog-index__post .blog-index__post--large) h4.card_post_title a:active {
    color: var(--gl_link_primary_color_active);
  }
  :is(.blog-index__post--large, .blog-index__post .blog-index__post-content--small, .blog-index__post .blog-index__post--large) h4.card_post_title a:focus-visible {
    color: var(--gl_link_primary_color_focus);
  }
  :is(.blog-index__post--large, .blog-index__post .blog-index__post-content--small, .blog-index__post .blog-index__post--large) h4.card_post_title a:hover {
    color: var(--gl_link_primary_color_hover);
  }
  .blog-index p.reading-minutes {
    font-size: var(--gl_font-size_body) !important;
    color: var(--gl_color_accent);
    font-weight: 500;
    letter-spacing: .25em;
    text-transform: uppercase;
    margin-bottom: .5rem;
  }
  .blog-index__post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    width: calc(100% - 120px); /* Prevent overflowing on to 'Read more' link */
  }
  .blog-index__post-tag {
    padding: .5em .75em .4em !important;
    display: inline-block;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    vertical-align: baseline;
    white-space: nowrap;
    border-radius: 1em !important;
    width: fit-content;
    font-size: var(--gl_font-size_tag) !important;
    font-weight: 500;
    text-transform: uppercase;
    margin: 0;
  }
  .blog-recent-posts__post p,
  .blog-index__post--large p,
  .blog-index__post--small p,
  .blog-index__tag-subtitle {
    font-family: var(--gl_font-family_body);
    font-size: var(--gl_font-size_body);
  }
  @media (min-width: 992px) {
    .blog-index__post-content--large-wrapper {
      flex: 0 0 calc(100% / 3 * 2);
    }
    .hhs-blog-grid-cards.listing-page .blog-index__post {
      flex: 0 0 calc(100% / 3);
    }
  }

  /* Blog Thumbnails */
  .gl_blog-thumbnails.hhs-blog-post-mod {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  .gl_blog-thumbnails > .container > .row {
    justify-content: center;
  }
  .gl_blog-thumbnails .hhs-post-feat-img {
    min-height: auto !important;
    height: 0;
    padding-top: 56.25%; /* 16:9 */
    --gl_transition_property: filter;
    transition: var(--gl_transition);
  }
  .gl_blog-thumbnails .hhs-post-meta {
    margin-top: 10px; /* Standardised bottom margin */
  }
  .gl_blog-thumbnails .hhs-post-meta p {
    color: var(--gl_color_black_lighter-30);
    font-size: var(--gl_font-size_body);
  }
  .gl_blog-thumbnails .hhs-post-content .reading-minutes {
    color: var(--gl_color_accent);
    font-weight: 500;
    letter-spacing: .25em;
    margin-bottom: .5rem;
    text-transform: uppercase;
  }
  .gl_blog-thumbnails .hhs-post-content a {
    margin-bottom: 0;
  }
  .gl_blog-thumbnails .hhs-post-summary {
    font-size: var(--gl_font-size_body);
    color: var(--gl_text_body_color); /* Matches body text colour */
    font-style: normal;
    letter-spacing: 0;
    line-height: 1.4em;
    margin-top: 10px;
  }
  .gl_blog-thumbnails .hhs-post-content {
    margin-top: 30px; /* Matches the theme's predefined small spacing for old modules */
  }
  .gl_blog-thumbnails .hhs-blog-post-card {
    transition: var(--gl_transition);
    margin-bottom: 60px;
  }
  .gl_blog-thumbnails .hhs-blog-post-card:is(:active, :focus-visible, :hover) {
    box-shadow: none;
    transform: none;
    transition: var(--gl_transition);
  }
  .gl_blog-thumbnails .hhs-blog-post-card > a:is(:active, :focus-visible, :hover) > .hhs-post-feat-img {
    filter: brightness(60%);
  }
  .gl_blog-thumbnails .hhs-blog-post-card .hhs-post-content > a > :is(h1, h2, h3, h4, h5, h6) {
    transition: var(--gl_transition);
  }
  .gl_blog-thumbnails .hhs-blog-post-card .hhs-post-content > a:active > :is(h1, h2, h3, h4, h5, h6) {
    color: var(--gl_link_primary_color_active);
  }
  .gl_blog-thumbnails .hhs-blog-post-card .hhs-post-content > a:focus > :is(h1, h2, h3, h4, h5, h6) {
    color: var(--gl_link_primary_color_focus);
  }
  .gl_blog-thumbnails .hhs-blog-post-card .hhs-post-content > a:hover > :is(h1, h2, h3, h4, h5, h6) {
    color: var(--gl_link_primary_color_hover);
  }
  @media (max-width: 575px) {
    .gl_blog-thumbnails.hhs-blog-post-mod {
      padding-top: 60px;
      padding-bottom: 0;
    }
  }
  @media (max-width: 992px) {
    .gl_blog-thumbnails.hhs-blog-post-mod {
      padding-top: 60px;
      padding-bottom: 0;
    }
  }
  .gl_blog-thumbnails.gl_inverted .hhs-blog-post-card .hhs-post-content h5,
  .gl_blog-thumbnails.gl_inverted .hhs-post-meta h5 {
    color: var(--gl_text_heading_color_inverted);
  }
  .gl_blog-thumbnails.gl_inverted .hhs-post-meta p {
    color: var(--gl_text_subtle_color_inverted);
  }
  .gl_blog-thumbnails.gl_inverted .hhs-post-summary {
    color: var(--gl_text_body_color_inverted);
  }

  /* Blog post */
  .post-page-full {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  @media (max-width: 575px) {
    .post-page-full {
      padding-top: 60px !important;
      padding-bottom: 60px !important;
    }
  }
  @media (max-width: 992px) {
    .post-page-full {
      padding-top: 60px !important;
      padding-bottom: 60px !important;
    }
  }
  .post-page-full .blog-header-full {
    padding: 0;
    margin-bottom: 60px;
  }
  .post-header .blog-header__inner {
    padding: 0;
    margin-bottom: 60px;
  }
  .blog-header__inner p.reading-minutes {
    font-size: var(--gl_font-size_h6) !important;
    color: var(--gl_color_accent);
    font-weight: 500;
    letter-spacing: .25em;
    text-transform: uppercase;
    margin-bottom: .5rem;
  }
  /* Forced CSS because I either can't set it via the theme or the CSS is better */
  h1.blog-post__title {
    font-family: "Barlow Condensed", sans-serif;
    font-size: var(--gl_font-size_display);
    color: var(--gl_text_heading_color);
    font-weight: 600;
    line-height: .85em;
    letter-spacing: -.025em;
  }
  .blog-post__tags {
    display: flex;
    gap: 5px;
    margin-bottom: 0;
  }
  .blog-post__tags a.blog-post__tag-link {
    background: var(--gl_color_orange_lighter-80);
    color: var(--gl_color_orange_darker-10);
    border-radius: 1em !important;
    display: inline-block;
    font-size: var(--gl_font-size_tag) !important;
    font-weight: 500;
    line-height: 1;
    margin-bottom: 0;
    padding: .5em .75em .4em !important;
    text-align: center;
    text-transform: uppercase;
    vertical-align: baseline;
    white-space: nowrap;
    width: fit-content;
    transition: var(--gl_transition);
    margin: 0;
  }
  .blog-post__tags a.blog-post__tag-link:active {
    color: var(--gl_color_white);
    background-color: var(--gl_link_primary_color_active);
  }
  .blog-post__tags a.blog-post__tag-link:focus {
    color: var(--gl_color_white);
    background-color: var(--gl_link_primary_color_focus);
  }
  .blog-post__tags a.blog-post__tag-link:hover {
    color: var(--gl_color_white);
    background-color: var(--gl_link_primary_color_hover);
  }
  @media (max-width: 922px) {
    .blog-post__tags {
        margin-bottom: 0;
    }
  }
  #main-content .hs-audio-player {
    margin-bottom: 60px;
  }
  .table-of-contents {
    padding: 0 !important;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  .table-of-contents p {
    margin-bottom: 0;
  }
  .table-of-contents-lead-text p {
    /* The following code matches h6 */
    color: var(--gl_text_heading_color);
    font-family: var(--gl_font-family_heading);
    font-size: var(--gl_font-size_h6);
    font-weight: var(--gl_font-weight_heading);
    line-height: var(--gl_line-height_heading);
    padding: 0;
  }
  #main-content .table-of-contents-section a {
    color: var(--gl_link_primary_color);
    padding: 0;
  }
  #main-content .table-of-contents a.table-of-contents-sub-section {
      padding: 1rem 0 0 1rem;
  }
  #main-content .table-of-contents-sub-section.active,
  #main-content .table-of-contents-section-heading.active,
  #main-content .table-of-contents-section a:active {
    color: var(--gl_link_primary_color_active);
  }
  #main-content .table-of-contents-section.table-of-contents-section a:focus {
    color: var(--gl_link_primary_color_focus);
  }
  #main-content .table-of-contents-section.table-of-contents-section a:hover {
    color: var(--gl_link_primary_color_hover);
  }

  /* Hero */
  @media (max-width: 767px) {
    .gl_hero .hs_cos_wrapper_type_inline_rich_text {
      text-align: center;
    }
    .gl_hero .c-cta-group {
      justify-content: center;
    }
  }
  @media (min-width: 767px) and (max-width: 992px) {
    .gl_hero .hs_cos_wrapper_type_inline_rich_text:has(.display) {
      hyphens: auto;
      overflow-wrap: break-word;
      word-break: break-word;
    }
  }

  /* Page header */
  /* Add award winner badge */
  .gl_page-header.gl_badge_award-winner::after {
    content: '';
    background: url('https://www.gl-systemhaus.de/hubfs/gl-systemhaus/images/assets/asset_badge_award-winner.svg') no-repeat 50% / contain;
    height: 12vw;
    width: 12vw;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    max-width: 160px;
    max-height: 160px;
    min-width: 120px;
    min-height: 120px;
    z-index: 100;
  }
  /* Vertically align image with text */
  .gl_page-header .clean-base .c-2 .c-col-inner {
    align-items: center;
    display: flex;
    justify-content: center;
  }

  /* Page header basic */
  .gl_page-header-basic .hs_cos_wrapper_type_inline_rich_text {
    text-align: center;
  }

  /* Panel Media Background */
  .gl_panel-media-background .hs_cos_wrapper_type_inline_rich_text :is(h1, h2, h3, h4, h5, h6) {
    color: var(--gl_text_heading_color_inverted);
  }
  .gl_panel-media-background .hs_cos_wrapper_type_inline_rich_text :is(p, li) {
    color: var(--gl_text_body_color_inverted);
  }
  .gl_panel-media-background.clean-base .c-1 .c-col-inner {
    margin-left: 15px;
    margin-right: 15px;
  }

  /* Full Media Background */
  .gl_full-media-background .hs_cos_wrapper_type_inline_rich_text :is(h1, h2, h3, h4, h5, h6) {
    color: var(--gl_text_heading_color_inverted);
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
  }
  .gl_full-media-background .hs_cos_wrapper_type_inline_rich_text :is(p, li) {
    color: var(--gl_text_body_color_inverted);
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
  }
  .gl_full-media-background .hs_cos_wrapper_type_inline_rich_text :is(h1, h2, h3, h4, h5, h6, p) + ul {
    margin-top: 2rem;
  }
  .gl_full-media-background .s-overlay {
    background: rgba(2,60,82,.8) !important;
  }
  @media (min-width: 768px) {
    .gl_full-media-background:not(.gl_banner_event) .s-overlay {
      background: linear-gradient(90deg,rgba(2,60,82,.8) 25%,rgba(2,60,82,0)) !important;
    }
  }

  /* Banner - Event */
  .gl_header_event ul > li {
    font-size: var(--gl_font-size_lead);
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
  }
  .gl_banner_event ul > li {
    /* font-size: var(--gl_font-size_lead); */
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
  }
  @media (max-width: 767px) {
    .gl_banner_event .order-1-mobile {
        order: 1 !important; /* Fix theme not working */
    }
    .gl_banner_event .order-2-mobile {
        order: 2 !important; /* Fix theme not working */
    }
  }

  /* Banner - Digital Signer */
  .gl_banner_digital-signer .lead {
    font-weight: 500; /* For legibility */
  }
  @media (min-width: 1200px) {
    .gl_banner_digital-signer .lead {
      margin-right: 20%; /* Fit the text inside the gl_background */
    }
  }
  .gl_banner_digital-signer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    width: 100%;
    background-color: var(--gl_color_black);
    opacity: .4;
  }
  .gl_banner_digital-signer .hs_cos_wrapper_type_inline_rich_text :is(h1, h2, h3, h4, h5, h6) {
    color: var(--gl_text_heading_color_inverted);
    text-shadow: 0px 0px 10px rgba(0,0,0,.2);  /* For legibility */
  }
  .gl_banner_digital-signer .hs_cos_wrapper_type_inline_rich_text :is(p, li) {
    color: var(--gl_text_body_color_inverted);
    text-shadow: 0px 0px 10px rgba(0,0,0,.2);  /* For legibility */
  }
  .gl_banner_digital-signer .c-content-con:has(> img) {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    padding: 15px 15px 0;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  /* Forces .col-md-8 and .col-md-4 to act like .col-md-6 */
  @media (min-width: 768px) and (max-width: 991px) {
    .gl_banner_digital-signer .c-col.c-1,
    .gl_banner_digital-signer .c-col.c-2 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%;
    }
  }

  /* Section Header */
  .gl_section-header.gl_section-header_center .hs_cos_wrapper_type_inline_rich_text :is(h1, h2, h3, h4, h5, h6, p) {
    text-align: center;
  }
  [id^="section_"] {
    scroll-margin-top: 85px;
  }
  @media (max-width: 922px) {
    [id^="section_"] {
      scroll-margin-top: 0px;
    }
  }

  /* Count Up */
  .gl_count-up > .container > .row {
    padding-right: 15px !important;
    padding-left: 15px !important;
  }
  .gl_count-up .number-counter-card {
    padding: 0;
  }
  .gl_count-up .number-counter-grid {
    display: flex !important;
    flex-direction: column;
    gap: 60px;
    width: auto;
  }
  .gl_count-up .number-counter-top-text .hs_cos_wrapper_type_inline_rich_text img {
    width: 100%;
  }
  .gl_count-up .number-counter-middle-container {
    align-items: baseline;
    gap: .5rem;
  }
  .gl_count-up .number-counter-top-text,
  .gl_count-up .number-counter-bottom-text {
    height: auto !important;
    text-align: center;
  }
  .gl_count-up .number-counter-card-inner {
    gap: .5rem;
  }
  @media (min-width: 922px) {
    .gl_count-up .number-counter-grid {
      flex-direction: row;
    }
  }
  .gl_count-up.gl_inverted .number-counter-card-inner {
    color: var(--gl_color_white) !important
  }

  /* Icons and Text */
  .gl_icons-and-text .c-col-inner {
    display: flex;
    gap: 30px;
  }
  .gl_icons-and-text .c-col-inner > .c-icon-con {
    width: 80px;
    height: 80px;
    color: var(--gl_color_white);
    background-color: var(--gl_color_accent);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }
  .gl_icons-and-text .c-col-inner > .c-icon-con > .c-icon-1 {
    max-width: unset !important;
  }
  .gl_icons-and-text .c-col-inner > .c-icon-con::after {
    content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 48px 80px 0 0;
    border-color: var(--gl_color_accent) transparent transparent transparent;
    transform: rotate(0deg);
    position: absolute;
    top: 80px;
    left: 0;
  }

  /* Illustrations and text */
  .gl_illustrations-and-text .hs_cos_wrapper_type_inline_rich_text {
    text-align: center;
    max-width: calc(100% - 30px);
    margin: 0 auto;
  }
  .gl_illustrations-and-text .gl_hexagon {
    max-width: 200px;
  }
  .gl_illustrations-and-text.gl_illustrations-and-text_inverted {
    background-color: var(--gl_color_background_dark) !important;
  }
  .gl_illustrations-and-text.gl_illustrations-and-text_inverted .hs_cos_wrapper_type_inline_rich_text :is(h1, h2, h3, h4, h5, h6, p) {
    color: var(--gl_text_heading_color_inverted);
  }
  .gl_illustrations-and-text.gl_illustrations-and-text_inverted .hs_cos_wrapper_type_inline_rich_text p {
    color: var(--gl_text_body_color_inverted);
  }
  .gl_illustrations-and-text.gl_illustrations-and-text_inverted .gl_hexagon:active .gl_hexagon_background,
  .gl_illustrations-and-text.gl_illustrations-and-text_inverted .gl_hexagon:focus .gl_hexagon_background,
  .gl_illustrations-and-text.gl_illustrations-and-text_inverted .gl_hexagon:hover .gl_hexagon_background {
    background: var(--gl_color_blue_darker-60);
  }
  .gl_illustrations-and-text.gl_illustrations-and-text_inverted .gl_hexagon_background {
    background: var(--gl_color_blue_darker-70);
  }
  /* Collpease margins when stacked inside one column */
  .dnd-row:has(+ .dnd-row .gl_illustrations-and-text) .gl_illustrations-and-text .row {
    margin-bottom: 0px !important;
  }
  .dnd-row + .dnd-row .gl_illustrations-and-text .row {
    margin-top: 0px !important;
  }

  /* Team */
  .gl_team .hhs-profile-card {
    padding-bottom: 0 !important;
  }
  .gl_team .row {
    row-gap: 60px;
  }
  .gl_team .hhs-profile-card > img {
    margin-left: auto;
    margin-right: auto;
    display: block;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    aspect-ratio: 5 / 6;
    object-fit: cover;
    max-width: 65% !important;
    transition: var(--gl_transition);
  }
  .gl_team .hhs-profile-content {
    margin-top: 30px;
  }
  .gl_team .hhs-profile-content h4 {
    font-size: var(--gl_font-size_h5); /* Reduce font size by changing h4 font size to h5 font size */
    margin-bottom: .5rem;
  }
  .gl_team .hhs-profile-content h5 {
    font-size: var(--gl_font-size_lead);
    font-weight: var(--gl_font-weight_lead);
    line-height: var(--gl_line-height_lead);
    color: var(--gl_color_black_lighter-40);
  }
  .gl_team .hhs-profile-content .hhs-social-team-con {
    display: flex;
    flex-direction: row;
    gap: .5em;
    flex-wrap: wrap;
    align-items: center;
    justify-content: start;
  }
  .gl_team .hhs-profile-content .hhs-social-team-con a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background-color: var(--gl_link_primary_color);
    color: var(--gl_text_body_color_inverted);
    align-self: center;
    /* width: 40px; */
    /* height: 40px; */
    /* flex-shrink: 0; */
    /* font-size: 20px; */
    box-sizing: border-box;
    flex: 0 0 1.75em;
    height: 1.75em;
    padding: .4em;
    width: 1.75em;
  }
  .gl_team .hhs-profile-content .hhs-social-team-con a:active {
    color: var(--gl_color_white);
    background-color: var(--gl_link_primary_color_active);
  }
  .gl_team .hhs-profile-content .hhs-social-team-con a:focus {
    color: var(--gl_color_white);
    background-color: var(--gl_link_primary_color_focus);
  }
  .gl_team .hhs-profile-content .hhs-social-team-con a:hover {
    color: var(--gl_color_white);
    background-color: var(--gl_link_primary_color_hover);
  }
  .gl_team .hhs-profile-card:has(.hhs-social-team-con a:active) > img,
  .gl_team .hhs-profile-card:has(.hhs-social-team-con a:focus) > img,
  .gl_team .hhs-profile-card:has(.hhs-social-team-con a:hover) > img {
    transform: translateY(-15px);
  }
  .gl_team.gl_inverted .hhs-profile-content h4 {
    color: var(--gl_text_heading_color_inverted);
  }
  .gl_team.gl_inverted .hhs-profile-content h5 {
    color: var(--gl_text_subtle_color_inverted);
  }
  .gl_team.gl_inverted .hhs-profile-content p {
    color: var(--gl_text_body_color_inverted);
  }

  /* Text Panels */
  .gl_text-panels .row:first-of-type {
    row-gap: 30px;
  }
  /* Team Profile Cards - Opt 2 (Pro): Fixed missing space around social media icons */
  .hhs-profile-card-mod .hhs-social-team-con {
    margin-top: 15px;
    gap: 15px;
  }

  /*** PAGES ***/

  /* Contact */

/* Text and Form */
.gl_text-and-form .hs-form-required {
  color: var(--gl_color_accent); /* Not adjustable from within the theme */
  margin-left: .25em;
}
.gl_text-and-form input.hs-input.error,
.gl_text-and-form textarea.hs-input.error {
  border-bottom: 1px solid #b91319; /* Adjusted: added back bottom border because I added top margin to the error message */
}
.gl_text-and-form .hs-error-msgs {
  border: none;
  background-color: transparent; /* Fixed: Theme settings do not work */
  margin: 15px 0 0 0;
}
.gl_text-and-form .hs-error-msgs label {
  margin-bottom: 0;
}

/* Text and Calendly */
.gl_text-and-calendly {
  font-size: 0; /* Hack to remove space created by &nbsp added in HubSpot */
}
.gl_text-and-calendly .calendly-inline-widget::-webkit-scrollbar-track {
	-webkit-box-shadow: none;
	border-radius: 0;
	background-color: rgba(0,0,0,0.1);
}
.gl_text-and-calendly .calendly-inline-widget::-webkit-scrollbar {
	width: 10px;
	background-color: rgba(0,0,0,0.1);
}
.gl_text-and-calendly .calendly-inline-widget::-webkit-scrollbar-thumb {
	border-radius: 0;
	-webkit-box-shadow: none;
	background-color: var(--gl_link_primary_color);
}
@media (min-width: 1389px) {
  .gl_text-and-calendly .row {
    margin-top: 40px !important;
  }
  .gl_text-and-calendly .row .c-1 {
    margin-top: 60px;
  }
  /* Subtle gradient to avoid having a sudden missing bottom border on desktop */
  .calendly-inline-widget::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 1));
    pointer-events: none;
  }
}
@media (min-width: 712px) and (max-width: 767px) {
  .gl_text-and-calendly .row .c-1 {
    margin-bottom: 0 !important;
  }
}
@media (max-width: 711px), (min-width: 768px) and (max-width: 1388px) {
  .gl_text-and-calendly .calendly-inline-widget {
    border: 1px solid #d4e0de;
    border-radius: 8px;
    box-shadow: 0 1px 8px 0 rgb(0 0 0 / 8%);
    padding-bottom: 30px;
  }
}

/* Form */
/* Nothing required */

/* Blog listing */
@media (max-width: 575px) {
  .hhs-blog-grid-cards.listing-page {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}
@media (max-width: 992px) {
  .hhs-blog-grid-cards.listing-page {
    padding-top: 60px !important;
    padding-bottom: 60px !important;
  }
}
  select.post__category-selector {
    background-color: var(--gl_color_white);
    border-color: var(--gl_text_subtle_color_inverted); /* Matches .gl_form_inverted */
    color: var(--gl_color_black);
    padding: 15px 48px 12px 18px !important;
    border-radius: 0;
    font-family: var(--gl_font-family_body);
    cursor: pointer;
    background-image: none;
  }
  select.post__category-selector:focus {
    border-color: var(--gl_link_primary_color_focus); /* Matches form select */
  }
  .filter__header {
    gap: 15px;
    padding: 0;
  }
  .post__filter {
    position: relative;
    flex-direction: row;
    display: flex;
    align-items: center;
  }
  .post__filter::after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: var(--gl_color_orange) transparent transparent transparent;
    pointer-events: none;
    position: absolute;
    right: 15px;
    border-width: 6px 6px 0px;
  }
  @media (min-width: 922px) {
    .filter__header .column--4 {
      margin: 0;
    }
  }

/* Map and Text */
.gl_map-privacy-wrapper {
  position: relative;
  width: 100%;
  height: 100%; 
  /* min-height: 400px; */
  overflow: hidden;
}
.gl_map-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: right; /* The image from Google Maps is not centralised */
  --gl_transition-property: transform;
  --gl_transition-duration: 0.8s;
  transition: var(--gl_transition);
  z-index: 1;
}
.gl_map-placeholder_cologne {
  background-image: url('https://www.gl-systemhaus.de/hubfs/gl-systemhaus/images/pages/contact/pages_contact_google-map_cologne.jpg');
}
.gl_map-placeholder_berlin {
  background-image: url('https://www.gl-systemhaus.de/hubfs/gl-systemhaus/images/pages/contact/pages_contact_google-map_berlin.jpg');
}
.gl_map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}
.gl_map-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 100px;
}
@media (max-width: 922px) {
  .gl_map-content {
    padding: 60px;
  }
  .gl_map-and-text .hhs-google-map {
    height: 355px !important; /* Matches current contact content */
  }
}
.gl_map-consent-text {
  color: var(--gl_text_body_color_inverted);
  text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
  margin-bottom: 0;
}
.gl_map-privacy-wrapper:hover .gl_map-placeholder {
  transform: scale(1.4);
}
.gl_map-privacy-wrapper:hover .gl_map-overlay {
  transform: none;
}
.gl_map-and-text.gl_inverted .hhs-rich-text {
  background-color: var(--gl_color_background_dark) !important;
}
.gl_map-and-text.gl_inverted .hhs-rich-text :is(h1, h2, h3, h4, h5, h6):not(.preheader) {
  color: var(--gl_text_heading_color_inverted);
}
.gl_map-and-text.gl_inverted :is(p, ol, ul, li) {
  color: var(--gl_text_body_color_inverted);
}
/* Adjusted: Centre map text on tablet */
@media (max-width: 767px) {
  .gl_map-and-text .hhs-rich-text :is(h1, h2, h3, h4, h5, h6, p, li, span) {
    text-align: center !important;
  }
  .gl_map-and-text .gl_ul.gl_ul_circle {
    align-items: center;
  }
  .gl_map-and-text .gl_ul.gl_ul_circle > li {
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }
}
@media (max-width: 922px) {
  .gl_map-and-text .hhs-rich-text {
    padding: 60px !important; /* Fixed: Forced padding because the theme doesn't allow me to adjust the top/bottom padding */
  }
}
@media (max-width: 767px) {
  .gl_map-and-text .hhs-rich-text {
    padding: 60px 30px 60px !important; /* Fixed: Forced padding because the theme doesn't allow me to adjust the top/bottom padding */
  }
}
/* Adjust: Keep text and map 50% until mobile */
@media (min-width: 768px) {
  .gl_map-and-text .col-lg-6.col-md-12 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
  .gl_map-and-text .hhs-google-map {
    height: auto !important;;
  }
}

  /* Scrollspy */
  #gl_scrollspy nav {
    position: sticky;
  }
  #gl_scrollspy .c-content-con.c-in-1,
  #gl_scrollspy div[id^="hs_cos_wrapper_widget_"] {
    height: 100%;
  }
  #gl_scrollspy .gl_scrollspy-content section:not(:last-of-type) {
    margin-bottom: 30px;
  }
  .gl_scrollspy-content [id^="section-"]::before {
    content: ""; /* Workaround used because the theme is inteferring with inner page link scroll positioning */
    display: block;
    height: 15px;
    margin-top: -15px;
    visibility: hidden;
    pointer-events: none;
  }
  @media (min-width: 768px) {
    #gl_scrollspy nav a.active {
      color: var(--gl_link_primary_color_active);
    }
  }
  @media (min-width: 768px) and (max-width: 922px) {
    #gl_scrollspy nav {
      top: 60px;
    }
  }
  @media (min-width: 923px) {
    #gl_scrollspy nav {
      top: calc(85px + 60px); /* 85px matches the sticky main navbar height + padding */
    }
  }

  /* Full Image and Text */
  .gl_full-image-and-text.hhs-img-text-mod .hhs-img,
  .gl_full-image-and-text.hhs-img-text-mod .hhs-rich-text {
    margin-bottom: 0 !important; /* The theme forces margin bottom */
  }
  @media (max-width: 575px) {
    .gl_full-image-and-text .hhs-rich-text {
      padding-top: 60px;
      padding-bottom: 60px;
    }
  }
  /* Should be 991px but the theme developer made a mistake */
  @media (max-width: 922px) {
    .gl_full-image-and-text .hhs-rich-text {
      padding-top: 60px;
      padding-bottom: 60px;
    }
  }

  /* Image and Text */
  .gl_image-and-text .hhs-img-col {
    display: flex !important; /* Override theme's display table */
    justify-content: center;
    align-items: center;
  }
  .gl_image-and-text.hhs-img-text-mod .hhs-img {
    margin-bottom: 0;
  }
  @media (min-width: 992px) {
    .gl_image-and-text.hhs-img-text-mod .hhs-img {
      margin: 30px 30px 30px 0;
    }
  }
  .gl_image-and-text .row {
    row-gap: 60px;
  }
  @media (max-width: 992px) {
    .hhs-img-text-mod .hhs-img,
    .hhs-img-text-mod .hhs-rich-text {
        margin-bottom: 0; /* Disable theme forced bottom margin */
    }
  }
  /* aligns image to bottom of container */
  .gl_image-and-text_image-bottom {
    padding-bottom: 0 !important;
  }
  .gl_image-and-text.gl_image-and-text_image-bottom .hhs-img-col {
    align-items: end;
  }
  .gl_image-and-text.gl_image-and-text_image-bottom.hhs-img-text-mod .hhs-img {
    max-width: 645px;
  }
  @media (max-width: 991px) {
    .gl_image-and-text.gl_image-and-text_image-bottom .hhs-img-col {
      order: 3; /* Diable theme forced ordering */
    }
  }
  @media (min-width: 992px) {
    .gl_image-and-text.gl_image-and-text_image-bottom.hhs-img-text-mod .hhs-img {
      margin: 30px 30px 0 0;
    }
    .gl_image-and-text.gl_image-and-text_image-bottom > .container > .row > [class*="col-"]:not(.hhs-img-col) {
      margin-bottom: 100px;
    }
  }

  /* Video and Text */
  .gl_video-and-text .row > div:has(> .hhs-video) {
    display: flex !important; /* Override theme's display table */
    justify-content: center;
    align-items: center;
  }
  .gl_video-and-text.hhs-video-text-mod .hhs-video {
    width: 100%;
    margin-bottom: 0;
  }
  @media (min-width: 992px) {
    .gl_video-and-text.hhs-video-text-mod .hhs-video {
      margin: 30px 30px 30px 0;
    }
  }
  .gl_video-and-text .row {
    row-gap: 60px;
  }

  /* Lists */
  .gl_ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
  }
  .gl_ul > li {
    display: flex;
    align-items: flex-start;
    gap: 0.5em;
    margin-bottom: 1em;
  }
  .gl_ul > li:last-child {
    margin-bottom: 0;
  }
  .gl_ul_icon {
    flex: 0 0 var(--gl_ul_icon_width, 1.25em);
    line-height: inherit;
    height: 1lh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gl_ul_icon.svg-inline--fa {
    height: 1lh;
  }
  .gl_ul_text {
    flex: 1 1 auto;
    min-width: 0;
  }
  .gl_ul_text > .gl_ul {
    margin-top: 1em;
    margin-bottom: 0;
  }
  .gl_ul_dash .gl_ul_icon {
    color: var(--gl_list_color);
  }
  .gl_ul_check .gl_ul_icon {
    color: var(--gl_list_color);
  }
  .gl_ul_xmark .gl_ul_icon {
    color: var(--gl_list_color);
  }
  .gl_ul_purple {
    --gl_list_color: #7c3aed;
  }
  .gl_ul_fa {
    --gl_ul_icon_width: 2em;
  }
  .gl_ul_fa .gl_ul_icon {
    color: var(--gl_list_color);
  }
  .gl_list_inverted {
    --gl_list_color: var(--gl_color_white);
  }
  .gl_list_inverted .gl_ul_text {
    color: var(--gl_color_white);
  }
  .gl_ul_inline {
    display: flex;
    flex-wrap: wrap;
    gap: 1em;
  }
  .gl_ul_inline > li {
    margin-bottom: 0;
  }
  .gl_ul_inline.gl_ul_center {
    justify-content: center;
  }
  .gl_ul_inline.gl_ul_right {
    justify-content: flex-end;
  }
  .gl_ul_divider {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1em;
  }
  .gl_ul_divider > li {
    display: flex;
    align-items: center;
    gap: 1em;
    margin-bottom: 0;
  }
  .gl_ul_divider .gl_ul_icon,
  .gl_ul_divider .gl_ul_icon.svg-inline--fa {
    flex: 0 0 auto;
    width: auto;
    height: 1em;
    color: var(--gl_list_color);
  }
  .gl_ul_circle .gl_ul_icon,
  .gl_ul_circle .gl_ul_icon.svg-inline--fa {
    background-color: var(--gl_color_blue);
    color: var(--gl_color_white);
    border-radius: 50%;
    flex: 0 0 1.75em;
    width: 1.75em;
    height: 1.75em;
    padding: 0.4em;
    box-sizing: border-box;
  }
  .gl_ul_circle > li {
    align-items: center; 
  }
  .gl_ol {
    list-style: none;
    counter-reset: gl_ol;
    padding: 0;
    margin: 0 0 1rem;
  }
  .gl_ol > li {
    display: grid;
    grid-template-columns: 1.5em 1fr;
    column-gap: 0.5em;
    align-items: start;
    margin-bottom: 1em;
    counter-increment: gl_ol;
  }
  .gl_ol > li:last-child {
    margin-bottom: 0;
  }
  .gl_ol > li::before {
    content: counter(gl_ol) ".";
    line-height: inherit;
    height: 1lh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    color: var(--gl_list_color);
  }
  .gl_ol .gl_ol > li::before {
    content: counter(gl_ol, lower-alpha) ".";
  }
  .gl_ol .gl_ol .gl_ol > li::before {
    content: counter(gl_ol, lower-roman) ".";
  }
  .gl_ol_alpha > li::before {
    content: counter(gl_ol, lower-alpha) "." !important;
  }
  .gl_ol_roman > li::before {
    content: counter(gl_ol, lower-roman) "." !important;
  }
  .gl_ol > li > .gl_ol {
    grid-column: 2;
    margin-top: 1em;
    margin-bottom: 0;
  }
  .gl_list_inverted.gl_ol > li,
  .gl_list_inverted .gl_ol > li {
    color: var(--gl_color_white);
  }

  /** Global **/

  /* Background star */
  /*
  .gl_banner_award {
    background: url('https://www.gl-systemhaus.de/hubfs/gl-systemhaus/images/global/global_background_star.svg') no-repeat center right / auto 100%, var(--gl_color_yellow);
  }
  */
  .gl_banner_award {
    background: var(--gl_color_yellow);
  }
  .gl_banner_award::after {
    content: '';
    position: absolute;
    inset: 0;
    mask: url('https://www.gl-systemhaus.de/hubfs/gl-systemhaus/images/global/global_background_star.svg') no-repeat 100% / auto 100%;
    -webkit-mask: url('https://www.gl-systemhaus.de/hubfs/gl-systemhaus/images/global/global_background_star.svg') no-repeat 100% / auto 100%;
    background: var(--gl_color_yellow_bright);
    pointer-events: none;
  }
  .gl_banner_award.gl_inverted::after {
    background: var(--gl_color_white);
  }
  /* Banner */
  .gl_banner_award .container > .row,
  .gl_banner_award .container-slim > .row {
    justify-content: center;
  }
  .gl_banner_award .container > .row > .c-2,
  .gl_banner_award .container-slim > .row > .c-2 {
    max-width: fit-content;
  }
  .gl_banner_award .c-col-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .gl_banner_award .preheader {
    color: var(--gl_color_black) !important;
  }
  .gl_banner_award .hs_cos_wrapper_type_inline_rich_text h2:has(+ p) {
    margin-bottom: .5rem;
  }
  .gl_banner_award .hs_cos_wrapper_type_inline_rich_text :is(h1, h2, h3, h4, h5, h6) {
    text-transform: uppercase;
  }
  .gl_banner_award .hs_cos_wrapper_type_inline_rich_text :is(h1, h2, h3, h4, h5, h6, p) {
    text-align: center;
  }
  .gl_banner_award img.c-img-1 {
    /* background-color: rgba(255, 255, 255, 1); */
    padding: 15px;
    box-sizing: content-box;
    border: 1px solid var(--gl_color_black);
  }
  @media (max-width: 767px) {
    .gl_banner_award .order-1-mobile {
        order: 1 !important; /* Extend order to tablet */
    }
    .gl_banner_award .order-2-mobile {
        order: 2 !important; /* Extend order to tablet */
    }
  }

  /* Backgrounds */
  .gl_background_dark,
  .gl_background_light {
    overflow: hidden;
  }
  .gl_background_dark::before,
  .gl_background_light::before,
  .span12.widget-span.widget-type-cell.dnd-column:has(.gl_background_dark_span)::before,
  .span12.widget-span.widget-type-cell.dnd-column:has(.gl_background_light_span)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 150vw 250vw 0 0;
  }
  @media (min-width: 993px) {
    .gl_background_dark::before,
    .gl_background_light::before,
    .span12.widget-span.widget-type-cell.dnd-column:has(.gl_background_dark_span)::before,
    .span12.widget-span.widget-type-cell.dnd-column:has(.gl_background_light_span)::before {
      top: auto;
      bottom: 0;
    }
  }
  .gl_background_dark::before {
    border-color: var(--gl_color_blue_darker-70) transparent transparent transparent;
  }
  .gl_background_light::before {
    border-color: var(--gl_color_blue_lighter-90) transparent transparent transparent;
  }
  .span12.widget-span.widget-type-cell.dnd-column:has(.gl_background_dark_span),
  .span12.widget-span.widget-type-cell.dnd-column:has(.gl_background_light_span) {
    overflow: hidden;
    position: relative;
  }
  .gl_background_dark_span.gl_inverted {
    background-color: unset !important;
  }
  .span12.widget-span.widget-type-cell.dnd-column:has(.gl_background_dark_span.gl_inverted) {
    background-color: var(--gl_color_background_dark);
  }
  /* .span12.widget-span.widget-type-cell.dnd-column:has(.gl_background_light_span) {
    background-color: var(--gl_color_blue_lighter-90);
  } */
  .span12.widget-span.widget-type-cell.dnd-column:has(.gl_background_dark_span)::before {
    border-color: var(--gl_color_blue_darker-70) transparent transparent transparent;
  }
  .span12.widget-span.widget-type-cell.dnd-column:has(.gl_background_light_span)::before {
    border-color: var(--gl_color_blue_lighter-90) transparent transparent transparent;
  }

  /* Footer */
  /* Remove unnecessary spacing around the footer main navigation */
  #gl_footer .hhs-col-content > .row {
    margin-right: -30px;
    margin-left: -30px;
  }
  #gl_footer .nav-col-2 {
    margin-top: 60px;
  }
  #gl_footer .col-title {
    display: none;
  }
  #gl_footer .gl_footer_badge {
    display: block;
    margin-bottom: 30px;
  }
  #gl_footer .gl_footer_badge img {
    width: 100%;
    height: auto;
  }
  #gl_footer img.gl_footer_sme {
    width: 75%;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #gl_footer p {
    color: var(--gl_text_body_color_inverted);
  }
  #gl_footer a:not(:hover):not(:focus):not(:active) {
    color: var(--gl_color_white);
  }
  /* Re-mapped columns - unable to change from within the theme */
  @media (min-width: 576px) {
    #gl_footer .hhs-foot-nav-cols > .col-sm-6.col-12.col-md-4 {
      /* sm = col-sm-3 */
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
  }
  @media (min-width: 768px) {
    #gl_footer .hhs-foot-nav-cols > .col-sm-6.col-12.col-md-4 {
      /* md = col-md-2 */
      -ms-flex: 0 0 16.6667%;
      flex: 0 0 16.6667%;
      max-width: 16.6667%;
    }
  }
  /* Second column remap */
  #gl_footer .hhs-foot-nav-cols > .col-sm-6.col-12.col-md-8 {
    /* base = col-12 */
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }
  @media (min-width: 576px) {
    #gl_footer .hhs-foot-nav-cols > .col-sm-6.col-12.col-md-8 {
      /* sm = col-sm-9 */
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%;
    }
  }
  @media (min-width: 768px) {
    #gl_footer .hhs-foot-nav-cols > .col-sm-6.col-12.col-md-8 {
      /* md = col-md-10 */
      -ms-flex: 0 0 83.3333%;
      flex: 0 0 83.3333%;
      max-width: 83.3333%;
    }
  }
  /* sm and up: behave like col-sm-9 / col-sm-3 */
  @media (min-width: 576px) {
    #gl_footer .hhs-foot-nav-base > .col-sm-6.order-2-mobile {
      -ms-flex: 0 0 75%;
      flex: 0 0 75%;
      max-width: 75%;
    }
    #gl_footer .hhs-foot-nav-base > .col-sm-6.order-1-mobile {
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%;
    }
  }
  #gl_footer #hs_cos_wrapper_global_footer_ {
    font-size: 14px;
  }
  #gl_footer .hhs-foot-break-line {
    width: calc(100% - 30px); /* make the divider line-up with the container */
    padding: 0;
    margin: 30px auto;
    border-color: rgba(255, 255, 255,.25);
  }
  #gl_footer .hhs-social-con {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  #gl_footer .hhs-social-con a {
    padding: 0;
    margin: 0;
  }
  #gl_footer .hhs-social-con svg {
    width: auto; /* Height controlled by the theme */
    transition: var(--gl_transition);
  }
  #gl_footer .hhs-foot-base-nav ul {
    margin: 0;
  }
  #gl_footer .foot-nav-title {
    padding-bottom: 30px;
  }
  #gl_footer .hhs-foot-nav-col {
    border-color: hsla(0,0%,100%,.25);
  }
  #gl_footer .hhs-foot-nav-col .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1 {
    margin-bottom: 15px;
  }
  #gl_footer .hhs-foot-nav-col .hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-menu-depth-1:last-child {
    margin-bottom: 0;
  }
  #gl_footer .hhs-foot-copyright {
    display: none;
  }
  #gl_footer .gl_footer_copyright {
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 14px;
    position: relative;
    text-align: center;
  }
  #gl_footer .hhs-foot-nav-base {
    margin-bottom: 30px !important;
  }
  #gl_footer .gl_footer_sub-links {
    margin-bottom: 0;
    font-size: 14px;
    display: flex;
    gap: 15px;
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }
  #gl_footer .row.hhs-foot-nav-base + .row {
    background-color: #0276a4;
    position: relative;
  }
  #gl_footer .row.hhs-foot-nav-base + .row::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background-color: #0276a4;
  }
  #gl_footer .gl_footer_alliances {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 60px;
  }
  #gl_footer .gl_footer_alliances img {
    max-height: 80px;
    width: auto;
    vertical-align: middle;
  }
  #gl_footer .foot-nav-title:after {
    font-family: "Font Awesome 6 Pro" !important;
    font-weight: 400;
  }
  @media (max-width: 575px) {
    #gl_footer .hhs-foot-nav-cols {
      padding-top: 30px;
    }
    #gl_footer .hhs-foot-nav-cols > .col-sm-6.col-12.col-md-4 {
      display: none; /* There is no value in making an already overly large footer even larger */
    }
    #gl_footer .hhs-social-con a {
      display: unset;
      height: inherit;
      width: inherit;
    }
    #gl_footer .hhs-foot-nav-col .hs-menu-wrapper.hs-menu-flow-horizontal > ul li a {
      padding: 0;
    }
    #gl_footer .hhs-foot-rss {
      margin-bottom: 30px;
      margin-top: 30px;
      padding-bottom: 30px;
    }
    #gl_footer button.foot-nav-title {
      color: var(--gl_link_primary_color);
      cursor: pointer;
      text-transform: unset;
      width: auto;
      margin-left: auto;
      margin-right: auto;
    }
    #gl_footer button.foot-nav-title:active {
      color: var(--gl_link_primary_color_active);
    }
    #gl_footer button.foot-nav-title:focus {
      color: var(--gl_link_primary_color_focus);
    }
    #gl_footer button.foot-nav-title:hover {
      color: var(--gl_link_primary_color_hover);
    }
    #gl_footer .hhs-col-content .gl_icon-list {
      align-items: center;
    }
    #gl_footer .hhs-col-content .row {
      gap: 1rem;
    }
  }
  @media (min-width: 576px) {
    #gl_footer .gl_footer_sub-links {
      justify-content: start;
      text-align: left;
      flex-direction: row;
    }
    #gl_footer .gl_footer_copyright {
      text-align: left;
    }
    #gl_footer .hhs-social-con {
      justify-content: right;
      margin-top: 0;
      margin-bottom: 0;
    }
    #gl_footer .gl_footer_alliances {
      justify-content: flex-end;
    }
  }
  @media (max-width: 922px) {
    #gl_footer .hhs-foot-nav-col, .hhs-foot-rss {
      margin-bottom: 0;
    }
  }

  /* HR */
  .gl_hr {
    width: 20%;
    border: 0;
    height: 2px;
    margin: 0 auto;
    background-color: var(--gl_color_accent);
  }
  .gl_hr + :is(h1, h2, h3, h4, h5, h6) {
    margin-top: 20px; /* Appears more like 30px caused by font */
  }
  .gl_hr + p {
    margin-top: 30px;
  }
  :is(h1, h2, h3, h4, h5, h6) + .gl_hr {
    margin-top: 20px; /* Appears more like 30px caused by font */
  }
  p + .gl_hr {
    margin-top: 30px;
  }
  hr {
    width: 100%;
    height: 1px;
    background-color: var(--gl_color_accent);
    margin: 60px auto 60px;
    padding: 0;
    border: 0;
  }
  hr.gl_accent-line {
    width: 20%;
    height: 2px;
    margin-top: 0;
    margin-bottom: 0;
  }
  hr.gl_accent-line.gl_accent-line_small {
    width: 10%;
  }
  hr.gl_accent-line.gl_accent-line_large {
    width: 30%;
  }
  hr.gl_accent-line.gl_accent-line_center {
    margin-left: auto;
    margin-right: auto;
  }
  hr.gl_accent-line.gl_accent-line_left {
    margin-left: 0;
  }
  hr.gl_accent-line.gl_accent-line_right {
    margin-right: 0;
  }

  /* Masonry Gallery */
  .gl_masonry-gallery .filter-row {
    margin-bottom: 0; /* Remove forced bottom margin when not using filter */
  }
  .gl_masonry-gallery .lb-next,
  .gl_masonry-gallery .lb-prev {
    border: 0 !important; /* Fix aweful design choices */
    height: 100% !important;
  }
  .gl_masonry-gallery .lightbox-trigger {
    position: relative;
    display: block;
    overflow: hidden;
  }
  .gl_masonry-gallery .lightbox-trigger::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .25);
    opacity: 0;
    --gl_transition-property: opacity;
    transition: var(--gl_transition);
    z-index: 1;
  }
  .gl_masonry-gallery .lightbox-trigger:active::before,
  .gl_masonry-gallery .lightbox-trigger:focus::before,
  .gl_masonry-gallery .lightbox-trigger:hover::before {
    opacity: .25;
  }
  .gl_masonry-gallery .lightbox-trigger img {
    display: block;
    width: 100%;
    height: auto;
  }
  @media (max-width: 767px) {
    .g-0 {
      padding-top: 15px;
      padding-bottom: 15px;
      padding-left: 15px;
      padding-right: 15px;
    }
    .gl_masonry-gallery .lightbox-trigger {
      pointer-events: none;
      cursor: default;
    }
  }
  /* Fixes the issue that you can't turn off lightbox linking within the theme */
  .gl_masonry-gallery a.lightbox-trigger:has(div.image-name) {
    pointer-events: none !important;
    cursor: default !important;
    text-decoration: none !important;
  }

  /* Image Gallery Grid */
  .gl_image-gallery-grid {
    margin-top: 45px; /* 15px image padding + 45px = 60px spacing */
    margin-bottom: 45px;
  }
  .gl_image-gallery-grid .hhs-img-gallery-card {
    max-width: 50%;
  }
  .gl_image-gallery-grid_grayscale .hhs-img-gallery-card > a > img {
    filter: grayscale(100%);
    --gl_transition-property: filter;
    transition: var(--gl_transition);
  }
  .gl_image-gallery-grid_grayscale .hhs-img-gallery-card > a:active > img,
  .gl_image-gallery-grid_grayscale .hhs-img-gallery-card > a:focus > img,
  .gl_image-gallery-grid_grayscale .hhs-img-gallery-card > a:hover > img {
    filter: none;
  }
  .gl_image-gallery-grid_ghost .hhs-img-gallery-card > a > img {
    filter: brightness(0) invert(1) opacity(.7);
    --gl_transition-property: filter;
    transition: var(--gl_transition);
  }
  .gl_image-gallery-grid_ghost .hhs-img-gallery-card > a:active > img,
  .gl_image-gallery-grid_ghost .hhs-img-gallery-card > a:focus > img,
  .gl_image-gallery-grid_ghost .hhs-img-gallery-card > a:hover > img {
    filter: brightness(0) invert(1) opacity(1);
  }
  @media (min-width: 993px) {
    .gl_image-gallery-grid {
      margin-top: 85px; /* 15px image padding + 85px = 100px spacing */
      margin-bottom: 85px;
    }
  }
  .dnd-section:has(.gl_image-gallery-grid.gl_inverted) {
    background-image: none !important; /* Override forced background image to apply colour */
    background-color: var(--gl_color_background_dark);
  }

  /* Versa Cards */
  .no-filter-label .select-container {
    padding-left: 0 !important; /* Works with JS to remove padding when there's no filter label */
  }
  .gl_versa-cards .search-bar {
    width: 100%;
    margin-left: 0;
  }
  .gl_versa-cards .filter-row {
    gap: 30px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    /* flex-direction: column !important; */
    margin-bottom: 45px;
  }
  .gl_versa-cards .filter-container {
    margin: 0 !important;
  }
  .gl_versa-cards .filter-layout-container {
    gap: 30px;
    flex-wrap: wrap !important;
    width: auto !important;
  }
  .gl_versa-cards .c-card-content .hs_cos_wrapper_type_inline_rich_text + .tags {
    padding-top: 1rem;
  }
  .gl_versa-cards .c-card img + .c-card-content {
    margin-top: 30px;
  }
  .gl_versa-cards .c-hover-scale:active,
  .gl_versa-cards .c-hover-scale:focus,
  .gl_versa-cards .c-hover-scale:hover {
    transform: none; /* Disable forced transform */
  }
  .gl_versa-cards.gl_versa-cards_hover a.flexi-card-outer:active,
  .gl_versa-cards.gl_versa-cards_hover a.flexi-card-outer:focus,
  .gl_versa-cards.gl_versa-cards_hover a.flexi-card-outer:hover {
    transform: translateY(-15px);
  }
  .gl_versa-cards.gl_versa-cards_dim-image a.flexi-card-outer .c-card > img {
    --gl_transition-property: filter;
    transition: var(--gl_transition);
  }
  .gl_versa-cards.gl_versa-cards_dim-image a.flexi-card-outer:active .c-card > img,
  .gl_versa-cards.gl_versa-cards_dim-image a.flexi-card-outer:focus .c-card > img,
  .gl_versa-cards.gl_versa-cards_dim-image a.flexi-card-outer:hover .c-card > img {
    filter: brightness(75%);
  }
  .gl_versa-cards.gl_versa-cards_dim-cards .filter-card > .c-card {
    --gl_transition-property: opacity;
    transition: var(--gl_transition);
  }
  .gl_versa-cards.gl_versa-cards_dim-cards .portfolio-grid:has(.c-card:hover) .filter-card > .c-card:not(:hover) {
      opacity: 0.5;
  }
  .gl_versa-cards .filters {
    position: relative;
    border-width: 1px;
  }
  .gl_versa-cards .filters::after {
    position: absolute;
    right: 15px;
    pointer-events: none;
    border-width: 6px 6px 0 6px !important;
  }
  .gl_versa-cards .select {
    background: var(--gl_color_white) !important; /* Unable to set through the theme and now matches global form styling */
  }
  .gl_versa-cards .c-card.inline-card {
    gap: 30px !important;
  }
  .gl_versa-cards .c-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
  }
  .gl_versa-cards .c-card-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
  .gl_versa-cards .c-card-content .hs_cos_wrapper_type_inline_rich_text {
    /* height: 100%; */
    display: flex;
    flex-direction: column;
  }
  .gl_versa-cards .c-card-content .hs_cos_wrapper_type_inline_rich_text * + .cta-primary {
    margin-top: 30px;
  }
  .gl_versa-cards .c-card-content .hs_cos_wrapper_type_inline_rich_text > p:last-child:has(> .gl_arrow-link),
  .gl_versa-cards .c-card-content .hs_cos_wrapper_type_inline_rich_text > .cta-primary:last-child {
    margin-top: auto;
  }
  .gl_versa-cards a.flexi-card-outer:active .c-card-content .hs_cos_wrapper_type_inline_rich_text .cta-primary {
    background-color: var(--gl_link_primary_color_active);
  }
  .gl_versa-cards a.flexi-card-outer:focus .c-card-content .hs_cos_wrapper_type_inline_rich_text .cta-primary {
    background-color: var(--gl_link_primary_color_focus);
  }
  .gl_versa-cards a.flexi-card-outer:hover .c-card-content .hs_cos_wrapper_type_inline_rich_text .cta-primary {
    background-color: var(--gl_link_primary_color_hover);
  }
  .gl_versa-cards a.flexi-card-outer:active .c-card-content .hs_cos_wrapper_type_inline_rich_text .cta-secondary {
    background-color: var(--gl_link_secondary_color_active);
  }
  .gl_versa-cards a.flexi-card-outer:focus .c-card-content .hs_cos_wrapper_type_inline_rich_text .cta-secondary {
    background-color: var(--gl_link_secondary_color_focus);
  }
  .gl_versa-cards a.flexi-card-outer:hover .c-card-content .hs_cos_wrapper_type_inline_rich_text .cta-secondary {
    background-color: var(--gl_link_secondary_color_hover);
  }
  .gl_versa-cards a.flexi-card-outer:active .c-card-content .hs_cos_wrapper_type_inline_rich_text .cta-tertiary {
    background-color: var(--gl_link_tertiary_color_active);
  }
  .gl_versa-cards a.flexi-card-outer:focus .c-card-content .hs_cos_wrapper_type_inline_rich_text .cta-tertiary {
    background-color: var(--gl_link_tertiary_color_focus);
  }
  .gl_versa-cards a.flexi-card-outer:hover .c-card-content .hs_cos_wrapper_type_inline_rich_text .cta-tertiary {
    background-color: var(--gl_link_tertiary_color_hover);
  }
  .gl_versa-cards .load-more-row {
    margin-top: 45px;
  }
  .gl_versa-cards a.flexi-card-outer:active .gl_arrow-link .gl_arrow-link_arrow,
  .gl_versa-cards a.flexi-card-outer:focus .gl_arrow-link .gl_arrow-link_arrow,
  .gl_versa-cards a.flexi-card-outer:hover .gl_arrow-link .gl_arrow-link_arrow {
    transform: translateX(.5em);
  }
  .gl_versa-cards a.flexi-card-outer:active .gl_arrow-link_primary {
    color: var(--gl_link_primary_color_active);
  }
  .gl_versa-cards a.flexi-card-outer:focus .gl_arrow-link_primary {
    color: var(--gl_link_primary_color_focus);
  }
  .gl_versa-cards a.flexi-card-outer:hover .gl_arrow-link_primary {
    color: var(--gl_link_primary_color_hover);
  }
  .gl_versa-cards.gl_inverted .filter-label {
    color: var(--gl_form_label_color_inverted) !important;
  }
  @media (max-width: 575px) {
    .gl_versa-cards .c-card.inline-card {
      flex-direction: column !important;
    }
    .gl_versa-cards .c-card.inline-card .c-card-img-con {
      max-width: 100% !important;
    }
    .gl_versa-cards .search-bar {
      width: 100%;
      margin-bottom: 0;
    }
    .gl_versa-cards .filter-container {
      margin-top: 30px !important;
    }
    .gl_versa-cards .filter-row {
      display: flex !important; /* Does not work because the theme targets a unique ID that I cannot override */
    }
    .gl_versa-cards .filter-layout-container {
      display: flex;
      flex-wrap: wrap;
      flex-direction: column;
    }
    .gl_versa-cards .select-container {
      margin-top: 15px !important;
      margin-bottom: 0 !important;
    }
  }
  /* Add new badge if the content includes .gl_badge-new */
  .gl_versa-cards .c-card .gl_badge-new {
    background: url('https://www.gl-systemhaus.de/hubfs/gl-systemhaus/images/assets/asset_badge_new.svg') no-repeat 50% / contain;
    height: 10vw;
    width: 10vw;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: 0;
    max-width: 110px;
    max-height: 110px;
    min-width: 90px;
    min-height: 90px;
    z-index: 100;
  }
  .gl_versa-cards .c-card .gl_badge-new + h5 {
    margin-right: 55px;
  }
  .gl_versa-cards .c-card.inline-card .c-card-content {
    padding-top: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  .gl_versa-cards .pages {
    margin-top: 15px !important;
    gap: 5px;
  }
  .gl_versa-cards .pages > .page-number {
    margin: 0 !important;
  }
  .gl_versa-cards.gl_versa-cards_white .c-card-img-con img {
    filter: brightness(0) invert(1);
  }

  /* Video Library */
  #gl_video-library.gl_versa-cards .c-card img + .c-card-content {
    margin-bottom: 30px;
  }
  #gl_video-library .c-video-card-outer {
    gap: 30px;
  }
  #gl_video-library .c-video-card-outer .embed_container,
  #gl_video-library .c-video-card-outer .oembed_container {
    height: auto;
  }
  #gl_video-library .filter-container {
    margin-bottom: 45px;
    width: fit-content;
  }
  /* Force col-12 on mobile */
  @media (max-width: 575px) {
    #gl_video-library .col-6 {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }
  @media (min-width: 768px) {
    #gl_video-library .c-video-card-outer {
      flex-direction: row;
      align-items: flex-start;
    }
    #gl_video-library .c-video-card-outer .oembed_container {
      flex: 1;
    }
    #gl_video-library .c-video-card-outer .c-vid-text {
      flex: 2;
    }
  }
  @media (max-width: 991px) {
    #gl_video-library.gl_versa-cards .c-card {
      height: auto !important;
    }
    #gl_video-library.gl_versa-cards .c-card img + .c-card-content {
      margin-bottom: 0;
    }
  }

  /* Alliances */
  #gl_alliances.gl_versa-cards > .container {
    max-width: 960px; /* Force container to be slimmer */
  }

  #gl_alliances.gl_versa-cards .c-card.inline-card .c-card-content,
  #gl_clients.gl_versa-cards .c-card.inline-card .c-card-content,
  #gl_partners.gl_versa-cards .c-card.inline-card .c-card-content {
    padding-top: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    padding-bottom: 30px;
  }
  #gl_alliances.gl_versa-cards .c-card.inline-card .c-card-img-con img,
  #gl_clients.gl_versa-cards .c-card.inline-card .c-card-img-con img,
  #gl_partners.gl_versa-cards .c-card.inline-card .c-card-img-con img {
    max-height: 130px !important; /* Theme's max height is incorrect */
  }
  #gl_alliances.gl_versa-cards .c-card.inline-card .c-card-content hr,
  #gl_clients.gl_versa-cards .c-card.inline-card .c-card-content hr,
  #gl_partners.gl_versa-cards .c-card.inline-card .c-card-content hr {
    margin: 0;
    height: 1px;
    background-color: var(--gl_color_black_lighter-70);
  }
  @media (max-width: 767px) {
    #gl_alliances.gl_versa-cards .c-card.inline-card,
    #gl_clients.gl_versa-cards .c-card.inline-card,
    #gl_partners.gl_versa-cards .c-card.inline-card {
      height: auto !important;
    }
  }
  /* Adjust: The theme does not seperate mobile and tablet columns */
  #gl_workshops.gl_versa-cards .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  #gl_workshops .c-card-btn-con a {
    width: 100%;
    text-align: left;
  }
  @media (min-width: 768px) {
    #gl_workshops.gl_versa-cards .col-md-6 {
      flex: 0 0 50%;
      max-width: 50%;
    }
  }
  @media (min-width: 992px) {
    #gl_workshops.gl_versa-cards .col-lg-4 {
      flex: 0 0 33.333333%;
      max-width: 33.333333%;
    }
  }
   #gl_workshops.gl_versa-cards.gl_inverted .c-card {
    background: rgba(0,0,0,.2) !important;
  }
  

  /* Responsive space between columns */
  .gl_responsive-col-space .row {
    row-gap: 30px;
  }

  /* Banner */
  .gl_banner .hs_cos_wrapper_type_inline_rich_text :is(h1, h2, h3, h4, h5, h6, p, li) {
    text-align: center;
  }

  /* Accordions */
  .gl_text-and-accordion .c-accordion {
    margin: 0 auto;
  }
  .c-accordion a.accordion-title,
  .c-accordion a.accordion-title .c-acc-title {
    font-size: var(--gl_font-size_body) !important;
  }
  .gl_text-and-accordion .c-accordion a.accordion-title {
    padding: 15px 0 15px 0 !important;
    color: var(--gl_link_primary_color);
  }
  .gl_text-and-accordion .c-accordion a.accordion-title.active,
  .gl_text-and-accordion .c-accordion a.accordion-title:active {
      /* color: var(--gl_link_primary_color_active); */
      color: var(--gl_link_primary_color_hover); /* Active is too dark for the navy background */
  }
  .gl_text-and-accordion .c-accordion a.accordion-title:hover {
      color: var(--gl_link_primary_color_hover);
  }
  .gl_text-and-accordion .c-accordion a.accordion-title h4 {
    color: #fa900f;
    font-family: var(--gl_font-family_body); /* Adjusted: Force paragraph styling */
    font-size: var(--gl_font-size_body) !important;
    font-weight: 400;
  }
  .gl_text-and-accordion .c-accordion a.accordion-title:active h4 {
    color: var(--gl_link_primary_color_active);
  }
  .gl_text-and-accordion .c-accordion a.accordion-title:focus h4 {
    color: var(--gl_link_primary_color_focus);
  }
  .gl_text-and-accordion .c-accordion a.accordion-title:hover h4 {
    color: var(--gl_link_primary_color_hover);
  }
  .gl_text-and-accordion .c-accordion .c-accordion-content {
    padding-right: 0;
    padding-left: 0;
  }
  .gl_text-and-accordion .c-accordion a.accordion-title:after {
    right: 5px;
  }
  .gl_text-and-accordion .c-accordion-content .hs_cos_wrapper_type_inline_rich_text {
    line-height: 1.4em; /* Matches paragraph style */
  }
  .gl_text-and-accordion.gl_inverted .c-accordion-content .hs_cos_wrapper_type_inline_rich_text {
    color: var(--gl_text_body_color_inverted);
  }
  .gl_text-and-accordion.gl_inverted .c-accordion,
  .gl_text-and-accordion.gl_inverted .c-accordion li {
    border-color: rgba(204,204,204,0.5) !important;
  }

  /* Quote */
  .gl_quote.gl_quote_inverted {
    background-color: var(--gl_color_background_dark) !important;
  }
  .gl_quote.gl_quote_inverted blockquote {
    color: var(--gl_text_lead_color_inverted);
  }
  .gl_quote.gl_quote_inverted blockquote footer {
    color: var(--gl_text_heading_color_inverted);
  }
  .gl_quote.gl_quote_inverted blockquote cite {
    color: var(--gl_text_subtle_color_inverted);
  }

  /* Image and Quote */
  .gl_image-and-quote .c-col-inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .gl_image-and-quote .c-content-con > [class^="c-img-"] {
    aspect-ratio: 5 / 6;
    clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    height: auto;
    max-width: 440px !important;
    object-fit: cover;
  }
  .gl_image-and-quote blockquote,
  .gl_image-and-quote blockquote p {
    padding-left: 0;
    border-left: 0;
  }
  .gl_image-and-quote.gl_image-and-quote_inverted {
    background-color: var(--gl_color_background_dark) !important;
  }
  .gl_image-and-quote.gl_image-and-quote_inverted blockquote {
    color: var(--gl_text_lead_color_inverted);
  }
  .gl_image-and-quote.gl_image-and-quote_inverted blockquote footer {
    color: var(--gl_text_heading_color_inverted);
  }
  .gl_image-and-quote.gl_image-and-quote_inverted blockquote cite {
    color: var(--gl_text_subtle_color_inverted);
  }


  /* Content Slider */
  .c-slider-inner-container-3 {
    padding: 0; /* Removed padding to align with other content */
  }
  .gl_content-slider .c-slide-inner-2 {
    height: 100%;  /* Vertically align images (logos) */
    justify-content: center;
    align-items: center;
    flex-direction: unset !important;
  }
  /* Disable positioning outside of the DOM  */
  #gl_testimonials.gl_content-slider .c-slide-inner-3 .c-quote-icon-container-3 {
    height: auto;
    margin-bottom: 0;
  }
  .gl_content-slider .c-fixed-text-3 {
    position: unset !important;
    top: unset !important;
    transform: unset !important;
    margin-bottom: 30px;
    text-align: center;
  }
  .gl_content-slider .c-slide-3 {
    padding: 0 30px !important; /* Remove unnecessary top and bottom padding */
  }
  #gl_logo-slider.gl_content-slider .c-slide-inner-2 .c-image-2 img {
    max-height: 110px !important;
  }
  #gl_testimonials.gl_content-slider .c-slide-inner-3 .c-image-3 {
    align-items: flex-start;
    height: 140px;
  }
  #gl_testimonials.gl_content-slider .c-slide-inner-3 .c-image-3 img {
    transform: unset;
    top: unset;
    max-width: 220px !important;
  }
  @media (min-width: 992px) {
    #gl_testimonials.gl_content-slider .c-slide-inner-3 .c-image-3 {
      margin-bottom: 30px;
    }
  }
  #gl_testimonials.gl_content-slider .c-slider button.slick-prev,
  #gl_testimonials.gl_content-slider .c-slider button.slick-next {
    --gl_transition-property: background-color;
    transition: var(--gl_transition);
    width: 48px !important;
    height: 48px !important;
  }
  #gl_testimonials.gl_content-slider .c-slider button.slick-prev {
    left: 30px !important;
  }
  #gl_testimonials.gl_content-slider .c-slider button.slick-next {
    left: calc(30px + 48px) !important;
  }
  #gl_testimonials.gl_content-slider .c-quote-icon-3 {
    margin-left: 32px; /* Matches testimonial text + 2px border */
    top: unset;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 0;
  }
  .gl_content-slider .c-slider .slick-arrow:active,
  .gl_content-slider .c-slider .slick-arrow:focus,
  .gl_content-slider .c-slider .slick-arrow:hover {
    opacity: 1;
  }
  .gl_content-slider .c-slider .slick-arrow:active {
    background-color: var(--gl_link_primary_color_active) !important; /* Not able to set within the theme */
  }
  .gl_content-slider .c-slider .slick-arrow:focus {
    background-color: var(--gl_link_primary_color_focus) !important; /* Not able to set within the theme */
  }
  .gl_content-slider .c-slider .slick-arrow:hover {
    background-color: var(--gl_link_primary_color_hover) !important; /* Not able to set within the theme */
  }
  @media (min-width: 993px) {
    .gl_content-slider .c-fixed-text-3 {
      text-align: left;
    }
  }
  .gl_content-slider .c-image-link img {
    --gl_transition-property: filter;
    transition: var(--gl_transition);
  }
  .gl_content-slider .c-image-link img:is(:active, :focus-visible, :hover) {
    filter: grayscale(100%);
  }
  .gl_content-slider_grayscale .c-slide-inner-2 .c-image-2 img,
  .gl_content-slider_grayscale .c-slide-inner-3 .c-image-3 img,
  .gl_content-slider_grayscale .c-image-link img {
    filter: grayscale(100%);
  }
  .gl_content-slider_grayscale .c-image-link img:is(:active, :focus-visible, :hover) {
    filter: none;
  }
  .gl_content-slider_ghost .c-slide-inner-2 .c-image-2 img,
  .gl_content-slider_ghost .c-slide-inner-3 .c-image-3 img,
  .gl_content-slider_ghost .c-image-link img {
    filter: brightness(0) invert(1) opacity(0.7);
  }
  .gl_content-slider_ghost .c-image-link img:is(:active, :focus-visible, :hover) {
    filter: brightness(0) invert(1) opacity(1);
  }
  .gl_content-slider_white .c-slide-inner-2 .c-image-2 img,
  .gl_content-slider_white .c-slide-inner-3 .c-image-3 img {
    filter: brightness(0) invert(1);
  }
  .gl_content-slider_white .c-image-link img:is(:active, :focus-visible, :hover) {
    filter: brightness(0) invert(1) opacity(0.7);
  }
  /* Force responsiveness for small images (logos) */
  @media (max-width: 992px) {
    .gl_content-slider.gl_content-slider_logos .slick-list {
      max-width: 400px;
      width: 100%;
      margin-left: auto !important;
      margin-right: auto !important;
      overflow: visible;
    }
  }
  .gl_content-slider_fade {
    --gl_content-slider_fade_color: var(--gl_color_white);
  }
  .gl_content-slider_fade::before,
  .gl_content-slider_fade::after {
    content: '';
    display: block;
    height: 100%;
    width: 33%;
    position: absolute;
    z-index: 5;
    pointer-events: none;
    top: 0;
  }
  @media (min-width: 992px) {
    .gl_content-slider_fade::before {
      left: 0;
      background: linear-gradient(to right, var(--gl_content-slider_fade_color) 15px, transparent);
    }
    .gl_content-slider_fade::after {
      right: 0;
      background: linear-gradient(to left, var(--gl_content-slider_fade_color) 15px, transparent);
    }
  }
  .gl_content-slider.gl_content-slider_fade.gl_inverted {
    --gl_content-slider_fade_color: var(--gl_color_dark-navy);
  }

  /** Team **/

  /** Careers **/

  /* Jobs */
  #gl_jobs.gl_versa-cards .c-card-content,
  #gl_jobs.gl_versa-cards .c-card-content .hs_cos_wrapper_type_inline_rich_text {
    height: 100%;
  }
  #gl_jobs.gl_versa-cards.gl_inverted .c-card {
    background: rgba(0,0,0,.2) !important;
  }

  /* Testimonial Ratings */
  .gl_testimonial-ratings .row {
    row-gap: 60px;
    justify-content: center;
  }
  .gl_testimonial-ratings .hhs-testimonial-card {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
    justify-content: center;
  }
  .gl_testimonial-ratings .hhs-testimonial-card > a {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers the content inside child-1 */
  }
  .gl_testimonial-ratings .hhs-testimonial-card > a > img {
    width: 100%;
    max-width: 100%;
    max-height: 130px;
    --gl_transition-property: filter;
    transition: var(--gl_transition);
  }
  .gl_testimonial-ratings .hhs-testimonial-card > a:active > img,
  .gl_testimonial-ratings .hhs-testimonial-card > a:focus > img,
  .gl_testimonial-ratings .hhs-testimonial-card > a:hover > img {
    filter: grayscale(100%);
  }
  .gl_testimonial-ratings .hhs-testimonial-content {
    margin-top: auto;
  }
  .gl_testimonial-ratings .hhs-testimonial-content h5 {
    font-size: var(--gl_font-size_h4); /* Matches h4 style */
    font-weight: 500;
    margin-bottom: 5px;
    line-height: 1;
  }
  .gl_testimonial-ratings .hhs-testimonial-content h5 a {
    display: inline-block;
  }
  .gl_testimonial-ratings .hhs-testimonial-content .star-rating {
    cursor: default;
  }
  .gl_testimonial-ratings .hhs-testimonial-content .star-rating [class^="star-"] {
    font-size: var(--gl_font-size_h4); /* Matches h4 style */
  }
  .gl_testimonial-ratings .hhs-testimonial-content .star-rating .star-solid {
    color: var(--gl_color_orange) !important;
  }
  .gl_testimonial-ratings .hhs-testimonial-content .star-rating .star-outline {
    color: var(--gl_color_black_lighter-80) !important;
  }
  .gl_testimonial-ratings .hhs-testimonial-content blockquote,
  .gl_testimonial-ratings .hhs-testimonial-content h6 {
    display: none;
  }
  @media (max-width: 991px) {
    .gl_testimonial-ratings .hhs-testimonial-card {
      margin-bottom: 0;
    }
    .gl_testimonial-ratings .col-sm-12 {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%; /* Force col-sm-6 styling */
    }
  }

  /* About */


  /** Events **/

  /* Countdown timer */
  .gl_countdown-timer .time h4 {
    letter-spacing: -1px;
    line-height: 1.2em;
  }
  .gl_countdown-timer .time h4 {
    letter-spacing: -1px;
    line-height: 1.2em;
  }
  .gl_countdown-timer .c-countdown-end-text,
  .gl_countdown-timer .c-countdown-text {
    text-align: center;
  }
  .gl_countdown-timer .c-countdown-end-text h2,
  .gl_countdown-timer .c-countdown-text h2 {
    color: var(--gl_color_white);
  }
  .gl_countdown-timer .countdown {
    margin-top: 30px;
  }
  .gl_countdown-timer .time > p > small {
    font-size: unset;
  }
  .c-countdown-text[style*="display: none"] + .countdown {
    display: none !important;
  }

  /* Hover cards */

  /* Adds gradient hover */
  .gl_hover-cards > .container > .row {
    row-gap: 30px;
  }
  .gl_hover-cards .img-hover-overlay {
    background: rgba(2,60,82, .8) !important;
    background: linear-gradient(0deg, rgba(2,60,82, .8) 25%, rgba(2,60,82, 0) 100%) !important;
  }
  .gl_hover-cards .hhs-img-hover-con:active .img-hover-overlay,
  .gl_hover-cards .hhs-img-hover-con:focus .img-hover-overlay,
  .gl_hover-cards .hhs-img-hover-con:hover .img-hover-overlay {
    background: none; /* Disables solid background colour hover */
  }
  /* Workaround for smooth gradient transition */
  .gl_hover-cards .hhs-img-hover-con .img-hover-overlay::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(2,60,82, .8);
    opacity: 0;
    --gl_transition-property: opacity;
    --gl_transition-duration: 0.8s;
    transition: var(--gl_transition);
    pointer-events: none;
  }
  .gl_hover-cards .hhs-img-hover-con:active .img-hover-overlay::after,
  .gl_hover-cards .hhs-img-hover-con:focus .img-hover-overlay::after,
  .gl_hover-cards .hhs-img-hover-con:hover .img-hover-overlay::after {
    opacity: 1;
  }
  .gl_hover-cards .hhs-img-hover-con .hhs-hover-img {
    --gl_transition-property: transform;
    --gl_transition-duration: 0.8s;
    transition: var(--gl_transition);
  }
  .gl_hover-cards .hhs-img-hover-con:hover .hhs-hover-img {
    transform: scale(1.1); /* Increases default scale */
  }
  .hhs-img-hover-con .hhs-img-hover-front {
    color: var(--gl_color_white);
    transition: opacity 0.8s ease-in-out 0.8s;
  }
  .hhs-img-hover-con :is(.hhs-img-hover-front, .hhs-img-hover-back) .inner-con :is(h1, h2, h3, h4, h5, h6) {
    color: var(--gl_text_heading_color_inverted);
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
  }
  .hhs-img-hover-con :is(.hhs-img-hover-front, .hhs-img-hover-back) .inner-con :is(p, ol, ul, li) {
    color: var(--gl_text_body_color_inverted);
    text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
  }
  .hhs-img-hover-con:active .hhs-img-hover-front,
  .hhs-img-hover-con:focus .hhs-img-hover-front,
  .hhs-img-hover-con:hover .hhs-img-hover-front {
    visibility: visible;
    transition: opacity 0.8s ease-in-out 0s;
  }
  .hhs-img-hover-con .hhs-img-hover-back {
    color: var(--gl_color_white);
    visibility: visible;
    transition: opacity 0.8s ease-in-out 0s;
  }
  .hhs-img-hover-con:active .hhs-img-hover-back,
  .hhs-img-hover-con:focus .hhs-img-hover-back,
  .hhs-img-hover-con:hover .hhs-img-hover-back {
    transition: opacity 0.8s ease-in-out 0.8s;
  }
  @media (max-width: 922px) {
    .card-col.c1,
    .card-col.c2,
    .card-col.c3,
    .card-col.c4 {
      margin-bottom: 0; /* Replaced with row-gap */
    }
  }

  /* Flexi cards */
  .gl_flexi-cards .row {
    padding-left: 15px;
    padding-right: 15px;
  }
  .gl_flexi-cards .row > [class*="col"] {
    padding-left: 0;
    padding-right: 0;
  }
  @media (min-width: 576px) {
    .gl_flexi-cards .col-lg-6.col-sm-12.flex-col {
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%; /* Force col-sm-6 styling */
    }
  }
  .gl_flexi-cards .hhs-flexi-card {
    margin-bottom: 0;
  }
  .gl_flexi-cards a.flexi-card-outer .hhs-flexi-card img {
    --gl_transition-property: transform;
    --gl_transition-duration: 1s;
    transition: var(--gl_transition);
  }
  .gl_flexi-cards .hhs-flexi-card::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, .6) 25%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
  }
  .gl_flexi-cards .hhs-flexi-card::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    --gl_transition-property: opacity;
    --gl_transition-duration: 1s;
    transition: var(--gl_transition);
    opacity: 0;
    background: rgba(0, 0, 0, .6);
    z-index: 2;
    position: absolute;
    top: 0;
    left: 0;
  }
  .gl_flexi-cards a.flexi-card-outer:active .hhs-flexi-card::after,
  .gl_flexi-cards a.flexi-card-outer:focus .hhs-flexi-card::after,
  .gl_flexi-cards a.flexi-card-outer:hover .hhs-flexi-card::after {
    opacity: 1;
  }
  .gl_flexi-cards a.flexi-card-outer {
    overflow: hidden;
  }
  .gl_flexi-cards a.flexi-card-outer::before {
    content: url(https://www.gl-systemhaus.de/hubfs/gl-systemhaus/images/assets/asset_triangle_tertiary_more-information.svg);
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 40%;
    z-index: 4;
    max-width: 150px;
  }
  .gl_flexi-cards a.flexi-card-outer:active,
  .gl_flexi-cards a.flexi-card-outer:focus,
  .gl_flexi-cards a.flexi-card-outer:hover {
    transform: none;
  }
  .gl_flexi-cards a.flexi-card-outer:active .hhs-flexi-card img,
  .gl_flexi-cards a.flexi-card-outer:focus .hhs-flexi-card img,
  .gl_flexi-cards a.flexi-card-outer:hover .hhs-flexi-card img {
    transform: scale(1.4);
  }
  .gl_flexi-cards .hhs-flexi-card {
    position: relative;
  }
  .gl_flexi-cards .hhs-flexi-card > .hhs-card-content {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 3;
  }
  .gl_flexi-cards .hhs-flexi-card > .hhs-card-content :is(h1, h2, h3, h4, h5, h6) {
    color: var(--gl_text_heading_color_inverted);
  }
  .gl_flexi-cards .hhs-flexi-card > .hhs-card-content p {
    color: var(--gl_color_white);
    font-size: var(--gl_font-size_lead);
    font-weight: var(--gl_font-weight_lead);
    line-height: var(--gl_line-height_lead);
  }
  .gl_flexi-cards a.flexi-card-outer .hhs-flexi-card > .hhs-card-content :is(h1, h2, h3, h4, h5, h6) {
    color: #fb9b28;
  }

  /* Flexi table */
  .gl_flexi-table {
    margin-top: 60px;
    margin-bottom: 60px;
  }
  .gl_flexi-table table {
    border: none !important;
    table-layout: auto;
    padding: unset; /* Has no effect but fixes theme setting */
    color: var(--gl_text_body_color); /* Matches body text colour */
    font-family: var(--gl_font-family_body);
    font-size: var(--gl_font-size_body);
    font-style: normal;
    font-weight: var(--gl_font-weight_body);
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0px;
    line-height: var(--gl_line-height_body);
  }
  .gl_flexi-table table th {
    /* The following code matches the h6 style */
    color: var(--gl_text_heading_color) !important;
    font-family: var(--gl_font-family_heading);
    font-size: var(--gl_font-size_h6);
    font-weight: var(--gl_font-weight_heading);
    text-transform: none;
    letter-spacing: 0px;
    line-height: var(--gl_line-height_heading);
  }
  .gl_flexi-table table tr {
    border: none !important;
    padding: unset; /* Has no effect but fixes theme setting */
  }
  .gl_flexi-table th,
  .gl_flexi-table td {
    padding: 15px;
    vertical-align: top;
  }
  .gl_flexi-table tr:first-child th,
  .gl_flexi-table tr:first-child td {
    padding-top: 0;
  }
  /* .gl_flexi-table tr:last-child th, */
  .gl_flexi-table tr:last-child td {
    padding-bottom: 0;
  }
  .gl_flexi-table th:first-of-type,
  .gl_flexi-table td:first-of-type {
    padding-left: 0;
  }
  .gl_flexi-table th:last-of-type,
  .gl_flexi-table td:last-of-type {
    padding-right: 0;
  }
  .gl_flexi-table table tr + tr {
    border-top: 1px solid var(--gl_color_black_lighter-70) !important;
  }
  .gl_flexi-table table:has(th span:empty) th {
    padding: 0;
  }
  @media (max-width: 992px) {
    .gl_flexi-table table tr + tr {
      border-top: none !important;
    }
    .gl_flexi-table tr th,
    .gl_flexi-table tr td {
      padding: 15px 0 15px !important;
    }
    .gl_flexi-table tr th:first-of-type,
    .gl_flexi-table tr td:first-of-type {
      padding-top: 0 !important;
    }
    .gl_flexi-table tr th:last-of-type,
    .gl_flexi-table tr td:last-of-type {
      padding-bottom: 0 !important;
    }
    .gl_flexi-table table td:before {
      display: block; /* Added to fix an unfixable issue with table content running underneath the header */
      padding-right: 0;
      padding-bottom: 5px;
      float: unset;
    }
    .gl_flexi-table table:has(th span:empty) td::before {
      all: unset;
    }
    .gl_flexi-table.hhs-table-mod table tr {
      margin-bottom: 30px;
      padding: unset;
    }
    .gl_flexi-table.hhs-table-mod table tr:last-child {
      margin-bottom: 0;
    }
    .gl_flexi-table.hhs-table-mod table th,
    .gl_flexi-table.hhs-table-mod table td {
      font-size: unset;
      text-align: left !important;
    }
    .gl_flexi-table.hhs-table-mod table td {
      border-bottom: 1px solid var(--gl_color_black_lighter-70);
    }
  }
  @media (max-width: 767px) {
    .row-fluid [class*="span"]:not(:last-child) .gl_flexi-table {
      margin-bottom: 0;
    }
  }
  @media (min-width: 993px) {
    .gl_flexi-table {
      margin-top: 100px;
      margin-bottom: 100px;
    }
  }

  /*** GLOBAL CLASSES ***/

  /* Smaller button */
  .cta-sm {
    align-self: center;
    font-size: clamp(12px, 1.1vw, 14px) !important;
  }

  .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.tags .tag p {
  padding: .5em .75em .4em !important;
  display: inline-block;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  vertical-align: baseline;
  white-space: nowrap;
  border-radius: 1em !important;
  width: fit-content;
  margin-bottom: 0px;
  font-size: var(--gl_font-size_tag) !important;
  text-transform: uppercase;
  background: color-mix(in srgb, var(--gl_color_blue) 15%, transparent) !important;
  color: color-mix(in srgb, var(--gl_color_blue) 100%, white 20%) !important;
}
.tags .tag p.tag_workshops {
  background: color-mix(in srgb, var(--gl_color_red) 15%, transparent) !important;
  color: color-mix(in srgb, var(--gl_color_red) 100%, white 60%) !important;
}
.tags .tag p.tag_interviews {
  background: color-mix(in srgb, var(--gl_color_purple) 15%, transparent) !important;
  color: color-mix(in srgb, var(--gl_color_purple) 100%, white 60%) !important;
}
.tags .tag p.tag_speeches {
  background: color-mix(in srgb, var(--gl_color_orange) 15%, transparent) !important;
  color: color-mix(in srgb, var(--gl_color_orange) 100%, white 10%) !important;
}
.tags .tag p.tag_solutions {
  background: color-mix(in srgb, var(--gl_color_turquoise) 15%, transparent) !important;
  color: color-mix(in srgb, var(--gl_color_turquoise) 100%, white 50%) !important;
}
/* Inverted */
.gl_inverted .tags .tag p {
  background: color-mix(in srgb, var(--gl_color_blue) 30%, transparent) !important;
  color: color-mix(in srgb, var(--gl_color_blue) 100%, white 10%) !important;
}
.gl_inverted .tags .tag p.tag_workshops {
  background: color-mix(in srgb, var(--gl_color_red) 50%, transparent) !important;
  color: color-mix(in srgb, var(--gl_color_red) 100%, white 80%) !important;
}
.gl_inverted .tags .tag p.tag_interviews {
  background: color-mix(in srgb, var(--gl_color_purple) 60%, transparent) !important;
  color: color-mix(in srgb, var(--gl_color_purple) 100%, white 100%) !important;
}
.gl_inverted .tags .tag p.tag_speeches {
  background: color-mix(in srgb, var(--gl_color_orange) 40%, transparent) !important;
  color: color-mix(in srgb, var(--gl_color_orange) 100%, white 20%) !important;
}
.gl_inverted .tags .tag p.tag_solutions {
  background: color-mix(in srgb, var(--gl_color_turquoise) 50%, transparent) !important;
  color: color-mix(in srgb, var(--gl_color_turquoise) 100%, white 50%) !important;
}

/* Badges */
.gl_badge {
  display: inline-block;
  padding: .4em .4em .3em !important;
  font-size: .8em !important;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  border-radius: 0 !important;
  background: var(--gl_color_blue);
  color: var(--gl_color_white);
  text-transform: uppercase;
  cursor: default;
  margin-left: .1em;
  vertical-align: text-bottom;
}
:is(h1, h2, h3, h4, h5, h6).gl_badge,
:is(h1, h2, h3, h4, h5, h6) .gl_badge {
  font-weight: var(--gl_font-weight_heading); /* Adpots header font weight */
  padding: .25em .35em !important;
}
a .gl_badge {
  transition: var(--gl_transition);
  cursor: pointer;
}
a:active .gl_badge {
  background: var(--gl_color_blue_darker-60);
}
a:focus .gl_badge {
  background: var(--gl_color_blue_lighter-20);
}
a:hover .gl_badge {
  background: var(--gl_color_blue_darker-40);
}

/* Responsive iframe video wrapper */
.gl_video-wrapper {
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  background-color: var(--gl_color_dark-navy);
  overflow: hidden;
}
.gl_video-wrapper iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
}
.gl_video {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-size: cover;
  background-position: center;
}
.gl_video_play {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gl_video_play_icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, .25);
  border: 2px solid var(--gl_color_white);
  color: var(--gl_color_white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 35px;
  cursor: pointer;
  --gl_transition-property: background-color;
  transition: var(--gl_transition);
  padding-left: 5px /* Visually corrected to appear centred */
}
@media (min-width: 576px) {
  .gl_video_play_icon {
    width: 90px;
    height: 90px;
    font-size: 45px;
  }
}
@media (min-width: 768px) {
  .gl_video_play_icon {
    width: 80px;
    height: 80px;
    font-size: 40px;
  }
}
@media (min-width: 992px) {
  .gl_video_play_icon {
    width: 100px;
    height: 100px;
    font-size: 50px;
  }
}
.gl_video_play_icon:hover {
  background-color: rgba(0, 0, 0, .5);
}
.gl_video_content {
  width: 100%;
  background-color: rgba(0, 0, 0, .75);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  box-sizing: border-box;
  text-align: center;
}
.gl_video_content p {
  color: var(--gl_text_body_color_inverted);
  font-size: var(--gl_font-size_terms);
  text-shadow: 0px 0px 10px rgba(0,0,0,0.3);
}