/* Theme base styles */

body {
    font-family: var(--base-font-family);
    font-size: var(--base-font-size);
}

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* Tools
Any animations, or functions used throughout the project.
Note: _macros.css needs to be imported into each stylesheet where macros are used and not included here
*/

/* Variables
Global variables for the project
*/
    :root {
    --speed: .3s;
}
    /* Breakpoints */
:root {
    --small: 568px;
    --medium: 768px;
    --large: 1024px;
    --xlarge: 1280px;
    --xxlarge: 1440px;
}

/* Animations */
:root {
    --speed: 3s;
}
    :root {
    --card-box-shadow:  0px 12px 40px 0px rgba(13, 58, 66, 0.14);
    --card-box-shadow-alt: 0px 2px 4px 0px rgba(13, 58, 66, 0.25);
}
    :root {
    --white: #FFF;
    --black: #000;
    --grey: #7B8089;
    --primary-color: #6bfad8;
    --secondary-color: #0d3a42;
    --accent-color-1: #427983;
    --accent-color-2: #43aa99;
    --accent-color-3: #bf0df6;
    --additional-color-1: #eef24c;
    --additional-color-2: #a2bdc2;
    --additional-color-3: #c6d7da;
    --base-text-color: var(--secondary-color);
    --hover-color: var(--accent-color-1);
    --header-bg: #fff;
    --header-text: ;
    --footer-bg: #0d3a42;
    --footer-text: #fff;
    --secondary-color-darker: #0B2F36;
    --accent-color-1-darker: #3B6C75;
    --accent-color-1-90: #55868F;
    --accent-color-1-30: #C6D7DA;
    --accent-color-2-20: #D9EEEB;
    --accent-color-2-25: #D0EAE5;
    
    --accent-color-2-darker: rgba(67, 170, 153, 1.05);
    --error: #D71844;
    --success: #2C9B4C;
    --outline: #1C88C8;
    --check-color: #007bff;
    --frosted-mint: #E1FEF7;
    --lily-white: #E5F6FF;
    --iron: #D8D9DC;
    --juniper: #6D8A8E;
    --viking: #60DAC3;
    --bismark: #427983;
    --dusty-teal: #43AA99;
    --misty-grey: #c6d7da;
}
    @font-face {
  font-family: 'FilsonProRegular';
  src: url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/fonts/filsonProRegular.woff2),url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/fonts/filsonProRegular.woff);
}

@font-face {
  font-family: 'FilsonProBold';
  src: url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/fonts/filsonProBold.woff2), url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/fonts/filsonProBold.woff);
}

@font-face {
  font-family: 'FilsonProRegularItalic';
  src: url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/fonts/filsonProRegularItalic.woff2), url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/fonts/filsonProRegularItalic.woff);
}

:root {
  --filsonPro: 'FilsonProRegular', sans-serif;
  --filsonPro-bold: 'FilsonProBold', sans-serif;
  --filsonPro-italic: 'FilsonProRegularItalic', sans-serif;
}
    :root {
    --input-border-radius: 4px;
    --form-success: green;
    --form-error: red;
}
    :root {
    --button-radius: 1024px;
    --checkbox-size: 24px;
    --input-border-radius: 2px;
    --spacing: 24px;
    --speed: .3s;
    --top-position: 20px;
}
    :root {
    --base-font-family: "Mulish", sans-serif;
    --giga: 3.625rem;
    --mega: 3.25rem;
    --h1: 2.563rem;
    --h2: 2.063rem;
    --h3: 1.625rem;
    --h4: 1.313rem;
    --h5: 1.188rem;
    --h6: 1.188rem;
    --base-text-color: var(--secondary-color);
    --base-font-size: 17px;
    --base-line-height: 1.5;

    --button-font-size: 15px;

    --heading-color: var(--secondary-color);
    --heading-font-family: var(--filsonPro);

    --large-body-size: 19px;
    --medium-body-size: 17px;
    --nav-size: 16px;
    --small-body-size: 13px;
    --tiny-body-size: 11px;
    --tag-size: var(--tiny-body-size);

    --weight-light: 300;
    --weight-normal: 400;
    --weight-semi: 500;
    --weight-bold: 700;
}

    /* Generic*/
    * {
    box-sizing: border-box;

    @media (prefers-reduced-motion: reduce) {
        animation: none !important;
        transition: none !important;
    }
}

body {
    margin: 0;
}

main {
    display: block;
}

figure {
    margin: 0;
}

img {
    display: block;
    height: auto;
    max-width: 100%;
}

svg {
    flex-shrink: 0;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;

    h1, h2, h3, h4, h5, h6 {
        margin-top: 0;
    }
}

p {
    margin-top: 0;

    &:last-child {
        margin-bottom: 0;
    }
}

p a {
    text-decoration: underline;
}

p a:hover {
    text-decoration: underline;
}

blockquote {
    margin: 0;
}

address {
    font-style: normal;
}

button {
    margin: 0;
}

button > * {
    pointer-events: none;
}

iframe {
    border: 0;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

fieldset {
    border: none;
    font-weight: normal;
    margin: 0;
    min-width: 0;
    padding: 0;
    width: 100%;
}

legend {
    padding: 0;
    width: 100%;
}

form {
    background-color: transparent;
    border: 0;
}
    .border {
    border: 1px solid var(--grey);
}

.border--left {
    border-left: 1px solid var(--grey);
}

.border--right {
    border-right: 1px solid var(--grey);
}

.border--bottom {
    border-bottom: 1px solid var(--grey);
}

.border--top {
    border-top: 1px solid var(--grey);
}

.border .card__link,
.border--left .card__link,
.border--right .card__link,
.border--bottom .card__link,
.border--top .card__link {
    padding: 50px 40px;
}

.border-radius-4 {
    border-radius: 4px;
}
    .tm-button,
.icon-button,
.dialog-trigger,
.blog-post__author,
.navbar__submenu-btn {
    background: transparent;
    border: none;
    color: var(--base-color, black);
    cursor: pointer;
    font-family: var(--base-font-family);
    font-size: var(--base-font-size);
    margin: 0;
    padding: 0;
}
    /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
   ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */

h1 {
  font-size: 2em;
  margin: 0 0;
}

/* Grouping content
   ========================================================================== */

/**
 * Add the correct box sizing in Firefox.
 */

hr {
  box-sizing: content-box;
  height: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, Opera, and Safari.
 */

abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Forms
   ========================================================================== */

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */

button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Remove the inheritance of text transform in Edge and Firefox.
 * 1. Remove the inheritance of text transform in Firefox.
 */

button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * Remove the padding so developers are not caught out when they zero out `fieldset` elements in all browsers.
 */

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */

progress {
  vertical-align: baseline;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */

[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */

::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */

/*
 * Add the correct display in Edge and Firefox.
 */

details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */

summary {
  display: list-item;
}
    .navbar__card-list,
.navbar__submenu-list,
li {
    list-style: none;
    margin: 0;
    padding: 0;
}
    .widget-type-rich_text {
    color: var(--base-text-color);
    width: 100%;
}

.widget-type-rich_text h1,
.widget-type-rich_text h2,
.widget-type-rich_text h3,
.widget-type-rich_text h4,
.widget-type-rich_text h5,
.widget-type-rich_text h6 {
    font-family: var(--heading-font-family);
    font-weight: 500;
    margin-bottom: var(--spacing);
}

.widget-type-rich_text h1 {
    font-size: clamp(2.25rem, 10vw, var(--h1));
    margin-bottom: var(--spacing);
}

.widget-type-rich_text h2 {
    font-size: clamp(var(--h5), 10vw, var(--h2));
    margin-bottom: var(--spacing);
}

.widget-type-rich_text h3 {
    font-size: clamp(1.5rem, 10vw, var(--h3));
    margin-bottom: var(--spacing);
}

.widget-type-rich_text h4 {
    font-size: clamp(var(--h6), 10vw, var(--h4));
    margin-bottom: 16px;
}

.widget-type-rich_text h5 {
    font-size: clamp(var(--base-font-size), 10vw, var(--h5));
    margin-bottom: 16px;
}

.widget-type-rich_text h6 {
    font-size: clamp(var(--base-font-size), 10vw, var(--h6));
    margin-bottom: 16px;
}

.widget-type-rich_text h1:not(:first-child),
.widget-type-rich_text h2:not(:first-child),
.widget-type-rich_text h3:not(:first-child),
.widget-type-rich_text h4:not(:first-child),
.widget-type-rich_text h5:not(:first-child),
.widget-type-rich_text h6:not(:first-child) {
    margin-top: var(--spacing);
}

.widget-type-rich_text::after {
    clear: both;
    content: '';
    display: table;
}

.widget-type-rich_text ul,
.widget-type-rich_text ol {
    list-style: none;
    margin-bottom: 10px;
    margin-left: 0;
    margin-top: 0;
    padding-left: 0;
}

.widget-type-rich_text ul li,
.widget-type-rich_text ol li {
    margin-bottom: 25px;
    position: relative;
}

.widget-type-rich_text ul li:last-child,
.widget-type-rich_text ol li:last-child {
    margin-bottom: 0;
}

.widget-type-rich_text ul li {
    padding-left: 27px;
}

.widget-type-rich_text ul li::before {
    background-color: var(--primary-color);
    border-radius: 50%;
    content: '';
    display: inline-block;
    height: 12px;
    margin-left: -27px;
    margin-right: 15px;
    width: 12px;
}

.widget-type-rich_text ol {
    counter-reset: item;
}

.widget-type-rich_text ol li {
    counter-increment: item;
    margin-bottom: 5px;
    padding-left: 25px;
}

.widget-type-rich_text ol li::before {
    border-radius: 100%;
    color: var(--primary-color);
    content: counter(item) '.';
    display: inline-block;
    left: 0;
    position: absolute;
    top: 2px;
}

.widget-type-rich_text hr {
    background: var(--primary-color);
    border: 0;
    height: 1px;
    margin-block: calc(var(--spacing) * 2);
}

.widget-type-rich_text .table-wrapper {
    overflow-x: auto;
}

.widget-type-rich_text table {
    border-collapse: collapse;
    hyphens: auto;
    margin-bottom: var(--spacing);
    min-width: 400px;
    table-layout: fixed;
}

.widget-type-rich_text table td,
.widget-type-rich_text table th {
    border: 1px solid var(--base-text-color);
    box-sizing: border-box;
    padding: 10px;
}

.widget-type-rich_text p {
    margin-bottom: var(--spacing);
}
    .heading {
    color: var(--secondary-color);
    font-family: var(--heading-font-family);
    font-weight: var(--weight-semi);
    line-height: 1.1;
}

.heading--highlight span {
    color: var(--primary-color);
}

:root {
    --giga-clamp: clamp(3.75rem, 10vw, var(--giga));
    --mega-clamp: clamp(2rem, 10vw, var(--mega));
    --h1-clamp: clamp(2rem, 10vw, var(--h1));
    --h2-clamp: clamp(var(--h5), 10vw, var(--h2));
    --h3-clamp: clamp(1.5rem, 10vw, var(--h3));
    --h4-clamp: clamp(var(--h6), 10vw, var(--h4));
    --h5-clamp: clamp(var(--base-font-size), 10vw, var(--h5));
    --h6-clamp: clamp(var(--base-font-size), 10vw, var(--h6));
}

.heading--giga {
    font-size: clamp(3.75rem, 10vw, var(--giga));
}

.heading--mega {
    font-size: clamp(2rem, 10vw, var(--mega));
    line-height: 1.1;
}

.heading--1 {
    font-size: clamp(2rem, 10vw, var(--h1));
}

.heading--2 {
    font-size: clamp(var(--h5), 10vw, var(--h2));
}

.heading--3 {
    font-size: clamp(1.5rem, 10vw, var(--h3));
}

.heading--4 {
    font-size: clamp(var(--h6), 10vw, var(--h4));
    line-height: 1.3;
}

.heading--5 {
    font-size: clamp(var(--base-font-size), 10vw, var(--h5));
}

.heading--6 {
    font-size: clamp(var(--base-font-size), 10vw, var(--h6));
}

/* util classes */
.bold {
    font-weight: 700;
}

.large {
    font-size: var(--large-body-size);
}

.small {
    font-size: var(--small-body-size);
}

.tiny {
    font-size: var(--tiny-body-size);
}

.white, .white * {
    color: var(--white);
}

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

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

.accent-color-1-darker {
    color: var(--accent-color-1-darker);
}

    /* Objects
    Non-cosmetic design patterns including grid and layout classes)
    */
    

/* CSS variables */

:root {
  --column-gap: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}


  .row-fluid .span1,
  .row-fluid .span2,
  .row-fluid .span3,
  .row-fluid .span4,
  .row-fluid .span5,
  .row-fluid .span6,
  .row-fluid .span7,
  .row-fluid .span8,
  .row-fluid .span9,
  .row-fluid .span10,
  .row-fluid .span11,
  .row-fluid .span12{
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  
    .row-fluid .span1 {
      width: calc(var(--column-width-multiplier) * 1% * 1 - var(--column-gap) * (11 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span2 {
      width: calc(var(--column-width-multiplier) * 1% * 2 - var(--column-gap) * (10 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span3 {
      width: calc(var(--column-width-multiplier) * 1% * 3 - var(--column-gap) * (9 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span4 {
      width: calc(var(--column-width-multiplier) * 1% * 4 - var(--column-gap) * (8 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span5 {
      width: calc(var(--column-width-multiplier) * 1% * 5 - var(--column-gap) * (7 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span6 {
      width: calc(var(--column-width-multiplier) * 1% * 6 - var(--column-gap) * (6 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span7 {
      width: calc(var(--column-width-multiplier) * 1% * 7 - var(--column-gap) * (5 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span8 {
      width: calc(var(--column-width-multiplier) * 1% * 8 - var(--column-gap) * (4 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span9 {
      width: calc(var(--column-width-multiplier) * 1% * 9 - var(--column-gap) * (3 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span10 {
      width: calc(var(--column-width-multiplier) * 1% * 10 - var(--column-gap) * (2 * var(--column-width-multiplier) / 100));
    }
  
    .row-fluid .span11 {
      width: calc(var(--column-width-multiplier) * 1% * 11 - var(--column-gap) * (1 * var(--column-width-multiplier) / 100));
    }
  
}
    .content-wrapper {
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 1380px) {
  .content-wrapper {
    padding: 0;
  }
}

.dnd-section > .row-fluid {
  margin: 0 auto;
}

.dnd-section .dnd-column {
  padding: 0 1rem;
}

@media (max-width: 767px) {
  .dnd-section .dnd-column {
    padding: 0;
  }
}

    /* Layouts
    */
    /* Default width and padding are set in settings/utility.css */
:root {
    --container-small: 640px;
    --container-medium: 800px;
    --container-large: 1200px;
    --container-padding: 20px;
}

.container {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--container-width);
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
}

.container .container {
    padding-left: 0;
    padding-right: 0;
}

.container--small {
    max-width: calc(var(--container-small) + (var(--container-padding) * 2));
}

.container--medium {
    max-width: calc(var(--container-medium) + (var(--container-padding) * 2));
}

.container--large {
    max-width: calc(var(--container-large) + (var(--container-padding) * 2));
}

.container--left {
    margin-left: 0;
    margin-right: auto;
}

.section-wrapper {
    padding: 80px 24px 128px;
}

@media (max-width: 768px) {
    .container--no-padding-md {
        padding-left: 0;
        padding-right: 0;
    }

    .section-wrapper {
        padding: 48px 24px 48px;
    }
}


@media (min-width: 568px) {
    .container {
        padding-left: var(--container-padding);
        padding-right: var(--container-padding);
    }

    .container--no-padding {
        padding-left: 0;
        padding-right: 0;
    }

    .container .container {
        padding-left: 0;
        padding-right: 0;
    }
}
    .island {
    border: 1px solid var(--accent-color-1-30);
    border-radius: 32px;
    box-shadow: 0px 0px 30px 0px rgba(0, 12, 54, 0.10);
}

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

.island__content {
    padding: 32px;
}

.island--half-pad .island__content {
    padding: 16px;
}

.island--form {
    background: var(--white);
}

.island--form .hs-submit {
    display: flex;
    justify-content: right;
    margin-top: 24px;
}
    --top-position: 106px;

.nav {
    background-color: var(--white);
    height: calc(100vh - 130px);
    left: 0;
    overflow-x: hidden;
    overflow-y: scroll;
    position: absolute;
    top: var(--top-position);
    transform: translateX(100%);
    transition: transform var(--speed) ease-in-out;
    width: 100vw;
    z-index: 1;
}

.nav--active {
    height: 100vh;
    transform: translateX(0);
}

.nav__list-item {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.nav__list-item:focus {
    outline: auto;
}

.nav__list-header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 0;
    padding-top: 17px;
    width: 100%;
}

.nav__link {
    color: var(--base-text-color);
    display: block;
    font-family: var(--base-font-family);
    font-size: 14px;
    font-weight: bold;
    line-height: 1.4;
    margin-bottom: 20px; 
    white-space: nowrap;
    text-decoration: underline;
}

.nav__link--parent {
    color: var(--base-text-color);
    font-size: 18px;
    margin-bottom: 24px;
}

.nav__link--parent:hover {
    color: var(--base-text-color);
    text-decoration: none;
}

.nav__button {
    align-items: center;
    display: flex;
    font-size: 0;
    height: 80px;
    justify-content: center;
    width: 60px;
}

.nav__chevron {
    display: none;
    height: auto;
    transform: rotate(90deg);
    width: 12px;
}

.nav__icon {
    fill: var(--black);
}

.nav__secondary-level {
    background-color: var(--white);
    padding: 0 30px;
    position: absolute;
    top: 97px;
    transform: translateX(100%);
    transition: transform var(--speed) ease-in-out;
    width: 100vw;
}

.nav__secondary-level .nav__link {
    white-space: break-spaces;
}

.nav--sub {
    background-color: var(--white);
    height: auto;
    padding: 24px 0 13px;
    position: relative;
    top: auto;
    transform: translateX(0);
}

.nav--sub .nav__list {
    display: flex;
    overflow-x: scroll;
}

.nav--sub .nav__list-item:not(:last-child) {
    margin-right: 16px;
}

.nav--sub .nav__link {
    color: var(--base-text-color);
    font-size: 18px;
}

.nav--sub .nav__link:hover {
    color: var(--base-text-color);
    text-decoration: none;
}

.nav--sub .nav__link:hover .nav__underline {
    opacity: 1;
}

.nav--sub .nav__link--active {
    color: var(--base-text-color);
    text-decoration: none;
}

.nav--sub .nav__link--active .nav__underline {
    opacity: 1;
}

.nav--sub .nav__underline {
    border-style: solid;
    border-width: 4px;
    display: block;
    margin: 0 auto;
    opacity: 0;
    position: relative;
    width: 100%;
}

.nav--sub .nav__underline--blue {
    border-color: var(--outline);
    border-top-left-radius: 75% 75%;
    border-top-right-radius: 75% 75%;
    z-index: 1;
}

.nav--sub .nav__underline--white {
    border-color: var(--white);
    border-top-left-radius: 65% 55%;
    border-top-right-radius: 65% 55%;
    margin-top: -5px;
    z-index: 3;
}

/* Responsive styles for max-width x-large */
@media (max-width: 1280px) {
    .nav__list-item--active {
        background-color: var(--white);
        flex-direction: column;
        position: absolute;
        top: 0;
    }

    .nav__list-item--active .nav__list-header {
        flex-direction: row-reverse;
        justify-content: flex-end;
        padding-left: 0;
        padding-right: 30px;
    }

    .nav__list-item--active .nav__icon {
        transform: rotate(180deg);
    }

    .nav__list-item--active .nav__separator {
        background-color: rgba(#000, 0.2);
        display: block;
        height: 1px;
        margin-bottom: 10px;
        width: 100%;
    }

    .nav__list-item--active .nav__secondary-level {
        transform: translateX(0);
    }
}

/* Responsive styles for min-width x-large */
@media (min-width: 1280px) {
    .nav {
        background-color: transparent;
        height: auto;
        left: auto;
        overflow: unset;
        position: unset;
        top: auto;
        transform: translateX(0);
        width: auto;
    }

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

    .nav__list-item {
        padding-left: 0;
        padding-right: 22px;
    }

    .nav__list-item:hover .nav__list-header::after {
        display: block;
    }

    .nav__list-item:hover .nav__secondary-level {
        height: auto;
        left: 0;
        overflow: visible;
        transform: translateX(0);
    }

    .nav__list-item--active .nav__list-header::after {
        display: block;
    }

    .nav__list-item--active .nav__secondary-level {
        height: auto;
        left: 50%;
        overflow: visible;
    }

    .nav__separator {
        display: none;
    }

    .nav__list-header {
        padding: 0;
        position: relative;
    }

    .nav__list-header::after {
        background-color: var(--white);
        bottom: -10px;
        content: '';
        display: none;
        height: 20px;
        left: 50%;
        position: absolute;
        transform: translateX(-50%) rotate(45deg);
        width: 20px;
        z-index: 3;
    }

    .nav__link {
        padding: 51px 10px 51px 22px;
    }

    .nav__secondary-level {
        border-radius: 12px;
        box-shadow: 2px 2px 40px rgba(63, 63, 105, 0.12);
        height: 0;
        left: -10000px;
        max-width: 928px;
        overflow: hidden;
        padding: 64px 54px;
        position: absolute;
        top: 126px;
        transform: translateX(-100%);
        transition: none;
        width: 100%;
        z-index: 2;
    }

    .nav__secondary-level .nav__link {
        padding: 0;
    }

    .nav__chevron {
        display: block;
    }

    .nav__button {
        display: none;
    }

    .nav--sub .nav__list-item {
        padding-right: 0;
    }

    .nav--sub .nav__list-item:not(:last-child) {
        margin-right: 40px;
    }

    .nav--sub .nav__link {
        padding: 0;
    }
}
    .tm-page {
    margin: 0 auto;
    min-height: 100vh;
    overflow: clip;
}

.tm-page__skip {
    opacity: 0;
    pointer-events: none;
}

.tm-page__skip.button {
    position: absolute;
}

.tm-page__skip:focus {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}
    /* Used on tabs */


@media (max-width: 992px) {
    .scroller {
        display: flex !important; /* override grids */
        margin-top: -40px;
        -webkit-overflow-scrolling: touch;
        overflow-x: auto;
        overflow-y: visible;
        overscroll-behavior-inline: contain;
        padding-block: 40px;
        padding-right: 30px;
        scrollbar-color: #000;
        scrollbar-width: thin;
    }
    
    .scroller:not(.tabs) {
        margin-left: -50px;
        padding-left: 30px;
    }

    .scroller.items-start {
        align-items: stretch;
    }

    .scroller::-webkit-scrollbar {
        height: 6px;
    }

    .scroller::-webkit-scrollbar-track {
        background: #fff;
        border-radius: 3px;
        margin-left: 20px;
        margin-right: 20px;
    }

    .scroller::-webkit-scrollbar-thumb {
        background-color: #000;
        border-radius: 3px;
    }

    .scroller .scroller__item.card {
        flex-shrink: 0;
        width: 304px;
    }
}
    /* Grid Container */
.grid {
    display: grid;
}

/* Grid Columns */
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

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

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

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

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

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

/* Grid Gap */
.gap-0 {
    gap: 0;
}

.gap-1 {
    gap: .25rem; /* 4px gap */
}

.gap-2 {
    gap: .5rem; /* 8px gap */
}

.gap-3 {
    gap: .75rem; /* 12px gap */
}

.gap-4 {
    gap: 1rem;
    /* 16px gap */
}

.gap-6 {
    gap: 1.5rem;
    /* 24px gap */
}

.gap-8 {
    gap: 2rem;
    /* 32px gap */
}

.gap-12 {
    gap: 3rem;
    /* 48px gap */
}

.gap-16 {
    gap: 4rem;
    /* 64px gap */
}


/* Grid Row */
.grid-rows-1 {
    grid-template-rows: repeat(1, 1fr);
}

.grid-rows-2 {
    grid-template-rows: repeat(2, 1fr);
}

.grid-rows-3 {
    grid-template-rows: repeat(3, 1fr);
}

.grid-rows-12 {
    grid-template-rows: repeat(12, 1fr);
}

/* Grid Item (Span columns or rows) */
.col-span-1 {
    grid-column: span 1;
}

.col-span-2 {
    grid-column: span 2;
}

.col-span-3{
    grid-column: span 3;
}

.col-span-4 {
    grid-column: span 4;
}

.col-span-5{
    grid-column: span 5;
}

.col-span-6 {
    grid-column: span 6;
}

.col-span-8 {
    grid-column: span 8;
}

.col-span-9 {
    grid-column: span 9;
}

.col-span-10 {
    grid-column: span 10;
}

.col-span-11 {
    grid-column: span 11;
}

.col-span-12 {
    grid-column: span 12;
}

.row-span-2 {
    grid-row: span 2;
}

/* Center Grid Item */
.grid-center {
    place-items: center;
}

/* Justify Content (for grid) */
.justify-items-start {
    justify-items: start;
}

.justify-items-center {
    justify-items: center;
}

.justify-items-end {
    justify-items: end;
}

/* Align Content (for grid) */
.align-items-start {
    align-items: start;
}

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

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

/* Responsive Grid */
@media (max-width: 1024px) {
    .grid-cols-1-lg {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

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

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

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

@media (max-width: 768px) {
    .grid-cols-1-md {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

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

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

    .order-1-md {
        order: 1;
    }

    .order-2-md {
        order: 2;
    }
}

@media (max-width: 480px) {
    .grid-cols-1-sm {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

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

    .grid-cols-3-sm {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}
    /* Flex Container */
.flex {
    display: flex;
}

@media (max-width: 480px) {
    .flex-sm {
        display: flex;
    }
}

/* Flex Direction */
.flex-row {
    flex-direction: row;
}

.flex-row-reverse {
    flex-direction: row-reverse;
}

.flex-col {
    flex-direction: column;
}

.flex-col-reverse {
    flex-direction: column-reverse;
}

/* Justify Content */
.justify-start {
    justify-content: flex-start;
}

.justify-center {
    justify-content: center;
}

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

.justify-between {
    justify-content: space-between;
}

.justify-around {
    justify-content: space-around;
}

.justify-evenly {
    justify-content: space-evenly;
}

/* Align Items */
.items-start {
    align-items: flex-start;
}

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

.items-end {
    align-items: flex-end;
}

.items-baseline {
    align-items: baseline;
}

.items-stretch {
    align-items: stretch;
}

/* Align Self */
.self-start {
    align-self: flex-start;
}

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

.self-end {
    align-self: flex-end;
}

.self-baseline {
    align-self: baseline;
}

.self-stretch {
    align-self: stretch;
}

/* Flex Wrap */
.flex-wrap {
    flex-wrap: wrap;
}

.flex-nowrap {
    flex-wrap: nowrap;
}

.flex-wrap-reverse {
    flex-wrap: wrap-reverse;
}

/* Flex Grow/Shrink */
.flex-grow-1 {
    flex-grow: 1;
}

.flex-grow-0 {
    flex-grow: 0;
}

.flex-shrink-1 {
    flex-shrink: 1;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

/* Flex Basis */
.flex-basis-auto {
    flex-basis: auto;
}

.flex-basis-0 {
    flex-basis: 0;
}

.flex-basis-1 {
    flex-basis: 1rem;
}

/* Center Flex Items */
.flex-center {
    justify-content: center;
    align-items: center;
}

/* Order (for flex) */
.order-first {
    order: -1;
}

.order-last {
    order: 1;
}

.order-0 {
    order: 0;
}

.order-1 {
    order: 1;
}

.order-2 {
    order: 2;
}
    /* Hide above 1024px */
.hide {
    display: none;
}

/* Show above 1024px */
.show {
    display: block;
}

@media (max-width: 1024px) {
    .hide-lg {
        display: none;
    }

    .show-lg {
        display: block;
    }
}


@media (max-width: 768px) {
    .show-md {
        display: block;
    }

    .hide-md {
        display: none;
    }
}

@media (max-width: 480px) {
    .show-sm {
        display: block;
    }

    .show-sm-flex {
        display: flex;
    }

    .hide-sm {
        display: none;
    }
}
    .swiper-pagination {
  bottom: auto !important;
  display: flex;
  gap: 8px;
  justify-content: center;
  position: relative !important;
  top: auto !important
}

.swiper-pagination .swiper-pagination-bullet {
    background: var(--accent-color-2);
    border-radius: 100%;
    display: inline-block;
    height: 12px;
    opacity: 1;
    transition: all .3s ease-in-out;
    width: 12px;
}

.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color-1);
  border-radius: 12px;
  transition: all .3s ease-in-out;
  width: 96px;
}

    /* Elements
    Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
    */
    /* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

body {
  line-height: 1.4;
  overflow-wrap: break-word;
}

/* Handles word breaking for a few specific languages which handle breaks in words differently. If your content is not translated into these languages, you can safely remove this.  */

html[lang^="ja"] body,
html[lang^="zh"] body,
html[lang^="ko"] body {
  line-break: strict;
  overflow-wrap: normal;
  word-break: break-all;
}

/* Paragraphs */

p {
  font-size: var(--base-font-size);
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1.4rem;
}

/* Lists */

ul,
ol {
  margin: 0 0 1.4rem;
}

ul ul,
ol ul,
ul ol,
ol ol {
  margin: 0;
}

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 1.4rem;
  padding-left: 0.7rem;
}

/* Horizontal rules */

hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
    button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.button:disabled,
.hs-button:disabled {
  background-color: #D0D0D0;
  border-color: #D0D0D0;
  color: #E6E6E6;
}

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
    /* Table */

table {
  border-collapse: collapse;
  margin-bottom: 1.4rem;
  overflow-wrap: break-word;
}

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

    /* Components
    Specific pieces of UI that are stylized. Typically used for global partial styling
    */
    .accordion__details {
    border-bottom: 1px solid var(--additional-color-3);
    display: block;
    padding: 24px 0;
    transition: all .3s ease-in-out;
}

.accordion--stylised {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.accordion--stylised .accordion__details {
    background: var(--accent-color-2-20);
    border-left: 8px solid var(--accent-color-1);
    border-bottom: none;
    border-radius: 24px;
    display: block;
    padding: 24px 32px;
}

.accordion--stylised .accordion__details:hover {
    background: var(--accent-color-2-25);
}

.accordion__details .accordion__icon svg path:first-child {
    transition: all .3s ease-in-out;
}

.accordion__details:hover .accordion__icon svg path:first-child {
    fill: var(--accent-color-1);
}

.accordion__details:last-child  {
    border-bottom: none;
}

.accordion__details summary {
    cursor: pointer;
    display: flex;
    font-size: var(--h3);
    font-weight: var(--weight-bold);
    gap: 24px;
    justify-content: space-between;
}

.accordion__details summary .accordion__icon {
    align-items: center;
    border-radius: 50%;
    display: flex;
    gap: 12px;
    flex-direction: column;
    justify-content: flex-end;
    width: 36px;
    height: 36px;
}

.accordion__icon {
    height: 32px;
    overflow: hidden;
    width: 32px;
}

.accordion__details--open .accordion__icon,
.accordion__details[open] .accordion__icon {
    transform: rotate(45deg);
}

.accordion__icon-track {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 12px;
    transform: translateY(-6px);
}

.accordion__details .accordion__copy {
    display: none;
    font-family: var(--base-font-family);
    max-width: 800px;
    padding: 16px 0 24px;
}

.accordion--stylised .accordion__details .accordion__copy {
    max-width: 100%;
}

.accordion__details--open .accordion__copy,
.accordion__details[open] .accordion__copy {
    display: block;
}

.accordion__copy .tm-button {
    margin-top: 32px;
}

details summary::-webkit-details-marker {
  display: none;
}

details summary::marker {
  content: "";
}

.accordion__highlight {
    align-items: center;
    background: rgba(127, 139, 178, 0.1);
    border: 1px solid rgba(127, 139, 178, 0.5);
    max-width: 360px;
    display: flex;
    gap: 16px;
    margin-top: 36px;
    max-height: 76px;
    padding: 0 8px;
}

.accordion__highlight-content {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.accordion__image {
    max-width: 100px;
    max-height: 100px;
    object-fit: cover;
    height: 100%;
    padding: 0 4px;
    width: 100%;
}

.accordion__strapline {
    color: rgba(127, 139, 178, 1);
    font-size: 14px;
    padding-left: 16px;
    position: relative;
}

.accordion__strapline:before {
    background: var(--primary-color);
    border-radius: 50%;
    content: "";
    height: 7px;
    left: 2px;
    position: absolute;
    top: 6px;
    width: 7px;
}

.accordion__highlight-copy {
    font-size: 18px;
    font-weight: var(--weight-bold);
}

@media (max-width: 1024px) {
    .accordion__details {
        padding: 34px 24px;
    }
}
    .alert {
    border-radius: 4px;
    display: flex;
    gap: 10px;
    padding: 10px 16px;
}

.alert--info {
    background-color: var(--lily-white);
}

.alert--form {
    margin: 36px 0;
}

.alert h1,
.alert h2,
.alert h3,
.alert h4,
.alert h5,
.alert h6 {
    margin: 0;
}

.alert__content {
    display: flex;
    align-items: center;
    gap: 16px;
}

.alert__icon {
    width: 24px;
    height: 24px;
    margin-top: 3px;
}
    .banner {
  background-color: var(--secondary-color);
  position: relative;
  overflow: hidden;
  padding: 128px 0;
}

/* padding options */
.banner--medium-pad {
  padding: 92px 0;
}

.banner--small-pad {
  padding: 80px 0;
}

.banner--light {
  background-color: var(--accent-color-2-20);
}

.banner__circle {
  background-color: var(--secondary-color);
  border-radius: 50%;
  bottom: 0;
  height: 1200px;
  left: -580px;
  width: 1200px;
  position: absolute;
}

.banner__pagination {
  margin-top: 52px;
}

@media (min-width: 568px) {
  .banner__circle {
    height: 1600px;
    left: -1020px;
    width: 1600px;
  }

  .banner__pagination {
    margin-top: 60px;
  }
}

@media (min-width: 768px) {
  .banner__circle {
    bottom: 0;
    height: 2400px;
    left: -820px;
    width: 2400px;
  }

  .banner__pagination {
    margin-top: 40px;
  }
}
    .bullets ul,
.bullets ol {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bullets ul {
    padding-left: 68px;
}

.bullets.bullets--icon ul {
    padding-left: 0;
}

.bullets ol {
    counter-reset: item;
    padding-left: 0;
}

.bullets li {
    color: var(--base-text-color);
}

.bullets ol li {
    color: var(--base-text-color);
    display: flex;
    gap: 8px;
}

.bullets ul li::marker {
    color: var(--accent-color-1);
    font-size: 1.5rem;
    line-height: 12px;
}

.bullets ol li:before {
    counter-increment: item;
    content: counter(item, decimal-leading-zero);
    color: var(--accent-color-1-darker);
    font-size: var(--base-font-size);
    font-weight: var(--weight-bold);
}

.bullets ol .bullets__content {
    margin-left: 8px;
}

.bullets ul li {
    color: var(--base-text-color);
    list-style-type: disc;
}

.bullets.bullets--icon ul li {
    list-style-type: none;
}

.bullets--icon li {
    display: flex;
    gap: 8px;
}

.bullets--icon li:not(:last-child) {
    margin-bottom: 8px;
}

.bullets--icon svg {
    width: 24px;
    height: 24px;
}

.bullets.bullets--pl-0 ul {
    padding-left: 0;
}
    .button-wrapper {
    display: flex;
}

.tm-button {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: var(--button-radius);
    border: none;
    font-family: var(--heading-font-family);
    font-size: var(--button-font-size);
    font-weight: var(--weight-semi);
    padding: 14px 16px;
    transition: all .2s ease-in-out;
}

.tm-button:hover {
    background-color: var(--white);
}

.tm-button svg {
    height: 24px;
    width: 24px;
}

.tm-button svg path {
    fill: var(--secondary-color);
}

.tm-button--small {
    font-size: var(--small-body-size);
    line-height: 0.8;
    padding: 11px 16px;
}

.tm-button--small svg path {
    fill: var(--secondary-color);
}

.tm-button--large {
    padding: 18px 24px;
}

.tm-button--icon-left {
    flex-direction: row-reverse;
}

.tm-button--icon {
    background-color: var(--secondary-color);
    padding: 8px;
}

.tm-button--icon:hover {
    background-color: var(--accent-color-1);
}

.tm-button--icon svg path {
   fill: var(--white);
}

.tm-button--square-icon {
    background-color: transparent;
    border-radius: 0;
    display: block;
    font-size: 0;
    height: 40px;
    padding: 0;
    width: 40px;
}

.tm-button--square-icon img {
    margin: 0 auto;
}

.tm-button--2 {
    background-color: var(--secondary-color);
    color: var(--white);
}

.tm-button--2:hover {
    background-color: var(--accent-color-1);
}

.tm-button--2 svg path {
    fill: var(--white);
}

.tm-button--3,
.tm-button--7 {
    color: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}

.tm-button--3 {
    background-color: var(--white);
}

.tm-button--7 {
    background-color: transparent;
}

.tm-button--3:hover,
.tm-button--7:hover {
    background-color: var(--accent-color-1);
    border-color: var(--accent-color-1);
    color: var(--white);
}

.tm-button--2:active {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white);
}


.tm-button--3:hover svg path {
    fill: var(--white);
}

.tm-button--3 svg path {
    fill: var(--secondary-color);
}

.tm-button--4 {
    background-color: transparent;
    color: var(--accent-color-1-darker);
    padding-left: 0 !important; /* override button size padding */
    padding-right: 0 !important; /* override button size padding */
}

.tm-button--4:hover {
    background-color: transparent;
    color: var(--secondary-color);
}

.tm-button--4 svg path {
    fill: var(--accent-color-1-darker);
}

.tm-button--4:hover svg path {
    fill: var(--secondary-color);
}

.tm-button--5 {
    background-color: transparent;
    color: var(--white);
    border: 1px solid var(--primary-color);
}

.tm-button--5:hover {
    background-color: var(--white);
    border-color: var(--white);
    color: var(--secondary-color);
}

.tm-button--5:hover svg path {
    fill: var(--secondary-color);
}

.tm-button--5:active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--secondary-color);
}

.tm-button--5:active svg path {
    fill: var(--secondary-color);
}

.tm-button--5 svg path {
    fill: var(--white);
}

.tm-button--6 {
    background-color: transparent;
    color: var(--primary-color);
    padding-left: 0 !important; /* override button size padding */
    padding-right: 0 !important; /* override button size padding */
}

.tm-button--6:hover {
    background-color: transparent;
    color: var(--white);
}

.tm-button--6:hover svg path {
    fill: var(--white);
}

.tm-button--6:active {
    color: var(--accent-color-2);
}

.tm-button--6:active svg path {
    fill: var(--accent-color-2);
}

.tm-button--6 svg path {
    fill: var(--primary-color);
}

.tm-button--category {
    background-color: var(--white);
    border: 1px solid var(--accent-color-1-30);
    border-radius: 4px;
    color: var(--secondary-color);
    font-size: var(--large-body-size);
    width: 100%;
    justify-content: space-between;
}

.tm-button--category:hover {
    background-color: var(--accent-color-1-30);
}

.tm-button--play {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    background: none;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
}

.tm-button--play:hover {
    background: transparent;
}

.tm-button--play:hover::before {
    background: var(--white);
}

.tm-button--play::before {
    background: var(--primary-color);
    border-radius: 50%;
    content: '';
    height: 70px;
    width: 70px;
    left: 50%;
    top: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    transition: background 0.3s, transform 0.3s;
}

.tm-button--play::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: 2px;
    transform: translate(-50%, -50%);
    border-style: solid;
    border-color: transparent transparent transparent var(--secondary-color);
    border-width: 9px 0 9px 15px;
    height: 0;
    width: 0;
    z-index: 10;
    transition: background 0.3s, transform 0.3s;
}

.button-list--background {
  background: rgba(225, 254, 247, 0.50);
  border-radius: 16px;
  padding: 24px;
}

.button-list--background .button-list__heading {
  color: var(--secondary-color);
  font-size: var(--base-font-size);
}

.button-list__buttons {
  gap: 8px;
}

@media (min-width: 568px) {
    .tm-button--large {
        padding-left: 32px;
        padding-right: 32px;
    }
}

@media (min-width: 768px) {
    .tm-button--large {
        padding-left: 40px;
        padding-right: 40px;
    }
}
    .card-grid {
    gap: 32px;
}

.card {
    align-self: stretch;
    background-color: var(--white);
    border-radius: 16px;
}

.card--2 {
    background-color: var(--frosted-mint);
}

.card--3 .card__heading-wrapper {
    background-color: var(--frosted-mint);
}

.card--4 {
    background-color: var(--secondary-color-darker);
}

.card--people {
    background-color: transparent;
    text-align: center;
}

.card--notepad,
.card--circles,
.card--circles-green,
.card--circles-light {
    background-image: url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/images/circles-notepad.svg);
    background-position: bottom -60px right -115px;
    background-size: 230px;
    background-repeat: no-repeat;
    position: relative;
}

.card--circles-light {
    background-image: url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/images/circles-card.svg);
    background-position: bottom -100px right -115px;
    background-size: 280px;
}

.card--circles-green {
    background-image: url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/images/circles-green.svg);
    background-position: bottom -100px right -115px;
    background-size: 280px;
}

.card--notepad {
    border-radius: 0 24px 24px 0;
    height: 440px;
    max-width: 360px;
}

.card--notepad:after {
    background: var(--accent-color-2);
    clip-path: polygon(0% 41%, 27% 31%, 27% 100%, 0% 80%);
    content: "";
    height: 80px;
    left: 20px;
    position: absolute;
    bottom: -35px;
    width: 100px;
    z-index: -1;
}

.card--circles {
    background-position: bottom -99px right -115px;
    background-size: 277px;
}

.card--blog-large {
    background-color: transparent;
    border-radius: 0;
}

.card--blog-large p {
    margin-bottom: 0;
}

.card--4 .card__heading,
.card--4 .card_subheading,
.card--4 .card_copy,
.card--4 .card__content {
    color: var(--white);
}

.card--4 .bullets {
    color: var(--white);
}

.card--3 .bullets {
    padding: 0 48px;
}

.card--3 .card_subheading,
.card--3 .card_copy,
.card--3 .bullets--icon,
.card--3 .card__cta {
    padding: 0 24px;
}

.card--3 .card__heading-wrapper {
    border-radius: 16px 16px 0 0;
    padding: 32px;
    text-align: center;
}

.card--3 .bullets ul {
    gap: 8px;
}

.card--3 .card__heading-wrapper img {
    margin: 0 auto;
    max-height: 84px;
    max-width: 84px;
    object-fit: contain;
}

.card .card__heading-wrapper img {
    margin-bottom: 16px;
}

.card .card__heading-wrapper.card__heading-wrapper--small img {
    margin-bottom: 0;
}

.card--3 .card__content {
    padding: 0 0 32px;
}

.card--people .card__content,
.card--notepad .card__content {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card--blog-large .card__link.card__link--horizontal {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 100px;
}

.card--blog-large .card__link--horizontal .card__image-container {
    flex-shrink: 0;
    flex-basis: 50%;
}

.card--blog-large .card__link--horizontal .card__image-container img {
    height: 100%;
    margin-bottom: 0;
}

.card--blog-large .card__link--horizontal .card__content {
    flex-basis: 50%;
}

.card--blog-large .card__content {
    padding: 0;
}

.card--blog-large .card__image-container img {
    border-radius: 16px;
    margin-bottom: 24px;
    max-height: 392px;
    width: 100%;
}

.card--blog-large .card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.card--people .card__content,
.card--blog .card__content {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

.card--notepad .card__content {
    align-items: baseline;
    height: 100%;
    gap: 24px;
    justify-content: flex-start;
}

.card__image-container {
    position: relative;
    width: 100%;
}

.card--blog .card__content {
    align-items: baseline;
}

.card--blog .card__heading {
    margin-bottom: 0;
}

.card--notepad .card__cta,
.card--blog .card__cta {
    margin-top: auto;
}

.card--people svg {
    height: 32px;
    width: 32px;
}

.card--people .card__image-container img {
    border-radius: 16px;
}

.card--blog .card__image-container img {
    object-fit: contain;
}

.card--people .card__copy {
    margin-bottom: 0;
}

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

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

.card--shadow-3 {
    border: 1px solid var(--accent-color-1-30);
}

.card--shadow-4 {
    border: 1px solid var(--accent-color-2);
}

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

.card--center img {
    margin: 0 auto;
}

.card--center .tm-button {
    justify-content: center;
}

.card--info .tm-button {
    display: inline-flex;
}

.card__image-container img {
    border-radius: 16px 16px 0 0;
    width: 100%;
}

.card__content {
    display: flex;
    flex-direction: column;
    padding: 24px;
}

.card__content--thin {
    padding: 24px;
}

.card__content--full {
    height: 100%;
}

.card__content--no-pad {
    padding: 0;
}

.card--notepad .card__content {
    padding-left: 48px;
}

.card__heading {
    margin-bottom: 16px;
}

.card_subheading {
    font-weight: var(--weight-semi);
}

.card__heading-wrapper--small {
    align-items: center;
    display: flex;
    gap: 8px;
}

.card__heading-wrapper--small img {
    width: 42px;
    height: 42px;
}

.card__heading-wrapper--small .card__heading {
    font-size: var(--h4);
}

.card .bullets ul {
    padding-left: 24px;
}


.card .bullets.bullets--icon ul,
.card .bullets ol {
    padding-left: 0;
}

.card__logo {
    width: max-content;
    max-height: 70px;
    /* Safari fix */
    object-fit: contain;
    object-position: 0;
}

.card__tag {
    align-self: flex-end;
}

.card__tag--uppercase {
    text-transform: uppercase;
}

.card__tags,
.card__extra-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.card__extra-tags .tag {
    font-size: var(--small-body-size);
}

.card__meta-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.card__meta-wrapper .card__meta {
    flex-basis: 44%;
    flex-wrap: nowrap;
}

.card__meta {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: var(--small-body-size);
}

.card--video {
    position: relative;
}

.card--video .card__heading,
.card--video .card__copy,
.card--video .card__tags:not(.card__tags--justify-end),
.card--video .card__cta,
.card--video .card__meta-wrapper {
    padding: 0 24px;
}

.card--video .card__cta {
    padding-bottom: 24px;
}

.card--video .card__tags--justify-end .card__tag {
    position: absolute;
    top: 24px;
    right: 24px;
    z-index: 2;
}

.card--video .card__content,
.card--video .card__content.card__content--thin {
    padding: 0;
}

@media (max-width: 992px) {
    .card--blog-large .card__link--horizontal {
        flex-direction: column;
        gap: 12px;
    }

    .card--blog-large .card__link--horizontal .card__image-container {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .card-grid {
        gap: 16px;
    }
}
    .cta {
    background: var(--primary-color);
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
    position: relative;
}

.cta--marketing {
    max-width: 768px;
}

.cta__wrapper {
    align-items: center;
    display: flex;
    gap: 96px;
    position: relative;
    z-index: 1;
}

.cta--marketing .cta__wrapper {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
}

.cta--marketing .button-wrapper {
    margin-top: 16px;
}

.cta__background {
    animation: rotateAndReverse 25s ease-in-out infinite;
    position: absolute;
    top: -75%;
    right: -200px;
}

.cta--marketing .cta__background {
    top: -55%;
}

.cta__background,
.cta__background svg {
    height: 442px;
    width: 442px;
}

.cta--marketing .cta__background,
.cta--marketing .cta__background svg {
    height: 525px;
    width: 525px;
}

.cta__background svg path {
    stroke: var(--viking);
    stroke-width: 6px;
}

.cta--dark .cta__background svg path {
    stroke: var(--accent-color-1);
    stroke-width: 3px;
}

.cta--large .cta__background svg path {
    stroke-width: 1.4px;
}

.cta--medium .cta__background,
.cta--medium .cta__background svg {
    height: 1200px;
    width: 1200px;
}

.cta--large .cta__background,
.cta--large .cta__background svg {
    height: 1700px;
    width: 1700px;
}

.cta--medium .cta__background,
.cta--large .cta__background {
    animation: rotateAndReverse 25s ease-in-out infinite;
    left: 0;
    position: absolute;
    transform-origin: center;
    top: -75%;
    z-index: 0;
}

.cta--medium .cta__background {
    top: -85%;
}

.cta__prefix,
.cta__suffix {
    font-family: var(--base-font-family) !important;
    font-size: var(--base-font-size);
}

.cta__prefix {
    font-weight: var(--weight-bold);
}

.cta--dark .cta__prefix {
    color: var(--primary-color);
}

.cta--dark .cta__suffix {
    color: var(--white);
}

.cta--medium .cta__wrapper,
.cta--large .cta__wrapper {
    flex-direction: column;
    text-align: center;
}

.cta--medium {
    padding: 80px;
}

.cta--medium .cta__wrapper {
    gap: 32px;
}

.cta--medium .cta__background svg path {
    stroke-width: 2px;
}

.cta--large {
    border-radius: 0;
    padding: 128px 28px;
}

.cta--large .cta__wrapper {
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.cta--dark {
    background: var(--secondary-color);
}

/* Borrowing styles from the accordion component to overide the default background color */
.accordion--stylised .accordion__details.cta--alt-lighter {
    background: var(--white);
}

.cta .button-wrapper {
    flex-shrink: 0;
}

.cta .heading {
    color: var(--secondary-color);
    margin: 0;
}

.cta--dark .heading {
    color: var(--white);
}

.cta--medium .cta__wrapper,
.cta--large .cta__wrapper {
    max-width: 800px;
    margin: 0 auto;
}

/* Borrowing styles from the accordion component */
.accordion--stylised .accordion__details.cta--alt-lighter {
    background-color: var(--white);
}

.cta--alt-lighter .cta__heading {
    color: var(--secondary-color);
}

@media (max-width: 992px) {
    .cta--marketing {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .cta,
    .cta--medium,
    .cta--large {
        padding: 72px 40px;
    }

    .cta__wrapper {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .cta--marketing .cta__wrapper {
        text-align: left;
    }

    .cta__background {
        top: -75%;
        left: -30%;
    }

    .cta__background svg path {
        stroke-width: 1.4px;
    }

    .cta--medium .cta__background {
        top: -70%;
        left: -30%;
    }

    .cta--large .cta__background {
        top: -40%;
        left: -30%;
    }

    .cta__background,
    .cta--medium .cta__background,
    .cta--large .cta__background,
    .cta__background svg,
    .cta--medium .cta__background svg,
    .cta--large .cta__background svg {
        height: unset;
        width: 150%;
    }
}

@media (max-width: 480px) {
    .cta,
    .cta--medium,
    .cta--large {
        padding: 56px 24px;
    }

    .cta__background {
        top: -50%;
        left: -50%;
    }

    .cta__background,
    .cta__background svg {
        height: unset;
        width: 200%;
    }

    .cta--medium .cta__background {
        top: -50%;
        left: -55%;
    }

    .cta--medium .cta__background,
    .cta--medium .cta__background svg {
        height: unset;
        width: 200%;
    }

    .cta--large .cta__background {
        top: -50%;
        left: -70%;
    }

    .cta--large .cta__background,
    .cta--large .cta__background svg {
        height: unset;
        width: 250%;
    }
}
    /* Menu and simple menu */

.hs-menu-wrapper ul:not(.navbar__submenu-list):not(.navbar__card-list) {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}
    .dialog {
  background: transparent;
  border: 0;
  display: none;
  max-width: 100%;
  overflow: visible;
  padding: 0;
}

.dialog--form {
  border: none;
  max-width: 640px;
}


.dialog::backdrop {
  background: var(--secondary-color);
}

.dialog[open] {
  display: flex;
}

.dialog__body {
  max-width: 1344px;
  position: relative;
}

.dialog__body--narrow {
  max-width: 1088px;
}

.dialog__close {
  background: var(--primary-color);
  border: none;
  border-radius: 50%;
  color: var(--base-text-color);
  cursor: pointer;
  font-family: var(--base-font-family);
  font-size: var(--base-font-size);
  margin: 0;
  padding: 0;
  height: 40px;
  padding: 0;
  position: absolute;
  right: 24px;
  top: -20px;
  transition: background var(--speed) ease;
  width: 40px;
  z-index: 9999;
}

.dialog__close:hover {
  background: var(--primary-color);
}

.dialog__close:hover::before,
.dialog__close:hover::after {
  background: var(--white);
}

.dialog__close::before,
.dialog__close::after {
  background: var(--secondary-color);
  border-radius: 4px;
  content: '';
  height: 50%;
  left: calc(50% - 1px);
  position: absolute;
  top: 25%;
  transition: background var(--speed) ease;
  width: 3px;
}

.dialog__close::before {
  transform: rotate(45deg);
}

.dialog__close::after {
  transform: rotate(135deg);
}

.dialog--image .dialog__body {
  padding: 0;
}

.dialog__tag {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Image button that triggers video modal */

.dialog-trigger {
  display: flex;
  position: relative;
  margin: 0 auto;
}

.dialog-trigger__image {
  border-radius: 16px;
}

.dialog-trigger__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.dialog-trigger__footer {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 16px 16px;
  width: 100%;
}
.dialog__video-title {
  color: var(--white);
  font-weight: var(--weight-bold);
  margin-bottom: 0;
}


@media (min-width: 480px) {
  .dialog {
    padding: 40px;
  }

  .dialog__close {
    right: -20px;
    top: -20px;
  }
}

@media (orientation: landscape) and  (min-width: 480px) {
  .dialog {
    padding: 10px;
  }
  .dialog__body {
    max-width: 460px;
  }
}

@media (min-width: 768px) {
  .dialog {
    max-width: 1344px;
  }
}

@media (orientation: landscape) and  (min-width: 768px) {
  .dialog {
    padding: 40px;
  }
  .dialog__body {
    max-width: unset;
  }
}
    .featured-casestudy-tabs__wrapper {
    gap: 80px;
}

@media (max-width: 992px) {
    .featured-casestudy-tabs .tabs {
        margin-left: auto;
    }

    .featured-casestudy-tabs__wrapper {
        display: flex;
        flex-direction: column;
        gap: 48px;
    }

    .featured-casestudy-tabs__card.col-span-4,
    .featured-casestudy-tabs__content.col-span-8 {
        grid-column: span 12;
    }

    .featured-casestudy-tabs__card .card {
        margin: 0 auto;
    }
}
    .filter-group {
  padding: 32px;
  display: flex;
  gap: 16px;
  margin: 16px;
}

.filter-group--no-pad {
    padding: 0;
}

.filter-group--page {
    margin: 0 auto;
    width: 100%;
}

.filter-group__field {
  flex: 1; /* Ensure dropdowns take equal space */
  position: relative;
  max-width: 388px;
}

.filter-group__label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  color: var(--base-text-color);
}

@media (max-width: 768px) {
    .filter-group {
        flex-direction: column;
        gap: 20px;
    }

    .filter-group__field {
        max-width: 100%;
        width: 100%;
    }
}
    .footer {
    background-color: var(--secondary-color);
    color: var(--white);
}

.footer__wrapper {
    padding: 0 24px 128px;
}

.footer__logo {
    margin-bottom: 32px;
    padding: 128px 24px 0;
}

.footer__title {
    margin-bottom: 24px;
}

.footer__newsletter {
    background-color: var(--secondary-color);
    margin-top: 12px;
}

.footer__newsletter-title {
    font-size: var(--nav-size);
    font-weight: var(--weight-bold);
}

.footer__menu .dnd-section .dnd-column {
    padding: 0;
}

.footer__menu ul {
    gap: 18px;
}

.footer__socials .social-links {
    justify-content: flex-start;
    margin-top: 32px;
}


.footer__socials .social-links__icon {
    background: white;
    border-radius: 100%;
    transition: all .2s ease;
}

.footer__socials .social-links__icon:hover {
    background: var(--accent-color-1);
}

.footer__socials .social-links__icon svg {
    fill: var(--secondary-color);
    height: 32px;
    padding: 4px 6px;
    transition: all .2s ease;
    width: 32px;
}

.footer__menu .hs-menu-item a {
    font-size: var(--nav-size);
    font-weight: var(--weight-bold);
}

.footer__policies {
    background-color: var(--accent-color-1);
    color: var(--white);
    font-size: var(--small-body-size);
    padding: 16px 0;
}

#footer-hubspot-form input.hs-button {
    appearance: none;
    border: none;
    background-image:  url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/images/interface/arrow-right.svg);
    background-position: 100% 50%;
    background-size: 24px;
    background-color: transparent;
    color: var(--primary-color);
    font-size: var(--button-font-size);
    outline: none;
    padding: 12px 36px 12px 0;
}

#footer-hubspot-form .actions {
    display: flex;
    justify-content: flex-end;
}

#footer-hubspot-form .hs-form-field {
    margin-bottom: .2rem;
}

.footer__divider {
    border-color: var(--accent-color-2);
    margin: 24px 0 44px;
    width: 100%;
}

@media (max-width: 768px) {
    .footer__wrapper {
        padding: 0 28px 48px;
    }

    .footer__logo {
        padding: 48px 28px 0;
    }

    .footer__policies {
        padding: 16px 28px;
    }

    .footer__menu {
        margin-bottom: 24px;
    }

    .footer__socials .social-links__icon {
        height: 40px;
        width: 40px;
    }

    .footer__socials .social-links__icon svg {
        height: 40px;
        padding: 8px;
        width: 40px;
    }

}

@media (max-width: 480px) {
    .footer__title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        transition: all .2s ease-in-out;
        margin-bottom: 0;
    }

    .footer__title--open {
        margin-bottom: 24px;
    }

    .footer__title--open .footer__title-icon {
        transform: rotate(180deg);
    }

    .footer__title-icon {
        transition: all .2s ease-in-out;
    }

    .footer__menu-wrapper {
        display: none;
    }

    .footer__menu-wrapper--open {
        display: block;
    }
}
    /* Header DND sections */

.header .dnd-section {
  padding: 0;
}

/* Header container */

.header__container {
  display: flex;
  justify-content: space-between;
}

.header__row-1 {
  padding-top: 1rem;
}

.header__row-1,
.header__row-2 {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

@media (max-width: 1150px) and (min-width: 767px) {
  .header__column {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .header__container {
    flex-direction: column;
    padding: 1rem 0 0;
  }

  .header__column {
    position: relative;
  }

  .header__row-1 {
    padding-top: 0;
  }

  .header__row-2 {
    justify-content: center;
    padding: 1.05rem;
  }
}

/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}

/* Logo */

.header__logo {
  align-items: center;
  display: flex;
  height: auto;
  margin-right: auto;
  max-width: 200px;
  overflow: hidden;
}

@media (max-width: 767px) {
  .header__logo {
    margin: 0 auto;
    width: 100%;
  }
}

.header__logo img {
  max-width: 100%;
}

.header__logo .logo-company-name {
  font-size: 1.167rem;
  margin-top: 0.7rem;
}

.header__logo--main {
  padding-top: 1rem;
}

/* Search bar */

.header__search {
  padding: 0 1rem;
  width: auto;
}



  .hs-search-field__form {
    position: relative;
  }

  .header__search .hs-search-field__label {
    flex-basis: auto;
  }



.header__search .hs-search-field__input {
  
  height: 45px;
  padding: 0 0.7rem;
}



  .header__search .hs-search-field__button {
    padding: 0;
    fill: #000;
    background-color: transparent;
    border: none;
    padding: 10px;
    position: absolute;
    top: 0;
    right: 0;
  }

  .header__search .hs-search-field__button svg {
    height: 25px;
  }


.header__search .hs-search-field--open .hs-search-field__input {
  border-bottom: none;
  border-radius: 6px 6px 0 0;
  max-width: 100%;
}

.header__search .hs-search-field--open .hs-search-field__suggestions {
  background-color: #FFF;
  border: 2px solid #D1D6DC;
  border-radius: 0 0 6px 6px;
  border-top-width: 1px;
  position: absolute;
  width: 100%;
  z-index: 10;
}

.header__search .hs-search-field__suggestions li {
  border-top: 1px solid #D1D6DC;
  font-size: 0.875rem;
}

.header__search .hs-search-field__suggestions li a {
  color: #494A52;
  padding: 0.35rem 0.7rem;
  text-decoration: none;
  transition: background-color 0.3s;
}

.header__search .hs-search-field__suggestions #results-for {
  display: none;
}

@media (min-width: 767px) {
  .header__search form {
    align-items: center;
    display: flex;
    flex-direction: row;
  }

  .header__search label {
    margin: 0 1rem 0 0;
  }

  .header__search .hs-search-field__input {
    width: auto;
  }
}

@media (max-width: 767px) {
  .header__search {
    border-top: 2px solid #CED4DB;
    order: 1;
    padding: 1.05rem;
  }
}

/* Language switcher */

.header__language-switcher {
  cursor: pointer;
  padding-right: 1.4rem;
}

.header__language-switcher .lang_switcher_class {
  position: static;
}

.header__language-switcher .lang_list_class {
  border: 2px solid;
  border-radius: 3px;
  box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
  display: block;
  left: calc(100% - 24px);
  opacity: 0;
  min-width: 100px;
  padding-top: 0;
  text-align: left;
  top: 100%;
  transition: opacity 0.3s;
  visibility: hidden;
}

.header__language-switcher:hover .lang_list_class,
.header__language-switcher:focus .lang_list_class {
  opacity: 1;
  transition: opacity 0.3s;
  visibility: visible;
}

.header__language-switcher .lang_list_class:before {
  left: 70%;
  top: -25px;
}

.header__language-switcher .lang_list_class:after {
  left: 70%;
  top: -22px;
}

.header__language-switcher .lang_list_class.first-active::after {
  top: -22px;
  transition: 0.3s;
}

.header__language-switcher .lang_list_class li {
  border: none;
  font-size: 18px;
  padding: 0.35rem 0.7rem;
}

.header__language-switcher .lang_list_class li:first-child {
  border-radius: 6px 6px 0 0;
  border-top: none;
}

.header__language-switcher .lang_list_class li:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

.header__language-switcher .lang_list_class li:hover {
  transition: background-color 0.3s;
}

.header__language-switcher--label {
  display: flex;
  position: relative;
}

.header__language-switcher--label-current {
  align-items: center;
  display: flex;
  font-size: 0.75rem;
  margin-bottom: 0.175rem;
  margin-left: 0.7rem;
}

.header__language-switcher--label-current:after {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 6px solid #494A52;
  content: "";
  display: block;
  height: 0px;
  margin-left: 0.7rem;
  margin-top: 0.175rem;
  width: 0px;
}

@media (max-width: 767px) {
  .header__language-switcher {
    border-top: 2px solid #CED4DB;
    padding-left: 1.05rem;
    padding-right: 0;
  }

  .header__language-switcher .lang_list_class {
    border: none;
    box-shadow: unset;
    display: block;
    left: 30px;
    opacity: 1;
    padding: 0 1.05rem;
    top: 0;
    visibility: visible;
  }

  .header__language-switcher .lang_list_class li {
    background-color: inherit;
    font-size: 0.917rem;
  }

  .header__language-switcher--label-current {
    display: none;
  }

  .header__language-switcher .globe_class {
    background-image: none;
  }

  .header__language-switcher .lang_list_class li:hover{
    background-color: inherit;
  }

  .header__language-switcher .lang_list_class:before,
  .header__language-switcher .lang_list_class:after {
    content: none;
  }}

/* Navigation */

#nav-toggle {
  display: none;
}

/* Mobile toggles */

@media (max-width: 767px) {
  .header__navigation,
  .header__search,
  .header__language-switcher {
    display: none;
    width: 100%;
  }

  .header__navigation.open,
  .header__search.open,
  .header__language-switcher.open {
    background-color: #F8FAFC;
    display: block;
    left: 0;
    min-height: calc(100vh - 115px);
    position: absolute;
    right: 0;
    top: 75px;
    z-index: 2;
  }

  .header__navigation--toggle,
  .header__search--toggle,
  .header__language-switcher--toggle,
  .header__close--toggle {
    cursor: pointer;
    margin: 0 5vw;
    position: relative;
  }

  .header__navigation--toggle.hide,
  .header__search--toggle.hide,
  .header__language-switcher--toggle.hide {
    display: none;
  }

  .header__navigation--toggle.open,
  .header__search--toggle.open,
  .header__language-switcher--toggle.open {
    display: block;
    margin-left: 0;
    margin-right: auto;
  }

  .header__navigation--toggle:after,
  .header__search--toggle:after,
  .header__language-switcher--toggle:after {
    display: none;
    font-size: 1.083rem;
    font-weight: 600;
    position: absolute;
    left: 40px;
    text-transform: uppercase;
    top: -10px;
  }

  .header__navigation--toggle.open:after,
  .header__search--toggle.open:after,
  .header__language-switcher--toggle.open:after {
    display: block;
    word-break: normal;
  }

  .header__navigation--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5oYW1idXJnZXI8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGcgaWQ9ImhhbWJ1cmdlciIgc3Ryb2tlPSJub25lIiBzdHJva2Utd2lkdGg9IjEiIGZpbGw9Im5vbmUiIGZpbGwtcnVsZT0iZXZlbm9kZCI+ICAgICAgICA8ZyBpZD0iR3JvdXAiIHN0cm9rZT0iIzQ5NEE1MiIgc3Ryb2tlLXdpZHRoPSIzIj4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlIiB4PSIxLjUiIHk9IjEuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNCIgeD0iMS41IiB5PSI5LjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICAgICAgPHJlY3QgaWQ9IlJlY3RhbmdsZS1Db3B5LTUiIHg9IjEuNSIgeT0iMTcuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgIDwvZz4gICAgPC9nPjwvc3ZnPg==);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__navigation--toggle:after {
    content: "Menu";
  }

  .header__language-switcher--toggle {
    background-image: url(//static.hsappstatic.net/cos-LanguageSwitcher/static-1.1/img/globe.png);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__language-switcher--toggle:after {
    content: "Language";
  }

  .header__search--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjI0cHgiIHZpZXdCb3g9IjAgMCAyNCAyNCIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5TZWFyY2g8L3RpdGxlPiAgICA8ZGVzYz5DcmVhdGVkIHdpdGggU2tldGNoLjwvZGVzYz4gICAgPGRlZnM+ICAgICAgICA8cGF0aCBkPSJNOS4xMzg2MTUzNCwxNS44OTI1Njg1IEM1LjQxMzk1NzQyLDE1Ljg5MjU2ODUgMi4zODM4ODUyNywxMi44NjM0NDc1IDIuMzgzODg1MjcsOS4xMzkwMDM3NiBDMi4zODM4ODUyNyw1LjQxNDU2MDA1IDUuNDEzOTU3NDIsMi4zODM4ODUyNyA5LjEzODYxNTM0LDIuMzgzODg1MjcgQzEyLjg2MzI3MzMsMi4zODM4ODUyNyAxNS44OTI1Njg1LDUuNDE0NTYwMDUgMTUuODkyNTY4NSw5LjEzOTAwMzc2IEMxNS44OTI1Njg1LDEyLjg2MzQ0NzUgMTIuODYzMjczMywxNS44OTI1Njg1IDkuMTM4NjE1MzQsMTUuODkyNTY4NSBNOS4xMzg3NTI0NSwyLjQzMzYwODg3ZS0xMyBDMTQuMTc3OTk1NSwyLjQzMzYwODg3ZS0xMyAxOC4yNzY0NTM3LDQuMTAwMzI0NzEgMTguMjc2NDUzNyw5LjEzOTI3Nzk2IEMxOC4yNzY0NTM3LDExLjIyOTgyMTEgMTcuNTcxMDE2OSwxMy4xNTg0NDM0IDE2LjM4NTYzMTMsMTQuNjk5NjY5NiBMMjMuNjUwODg4MSwyMS45NjUyMjY2IEMyNC4xMTYzNzA2LDIyLjQzMDcwOTIgMjQuMTE2MzcwNiwyMy4xODU0MDU1IDIzLjY1MDg4ODEsMjMuNjUwODg4MSBDMjMuMTg1NDA1NSwyNC4xMTYzNzA2IDIyLjQzMDcwOTIsMjQuMTE2MzcwNiAyMS45NjUyMjY2LDIzLjY1MDg4ODEgTDE0LjY5OTgxMzMsMTYuMzg1NDcxMyBDMTMuMTU4NDQwNSwxNy41NzA5NTA5IDExLjIyOTU3MzgsMTguMjc2NDUzNyA5LjEzODc1MjQ1LDE4LjI3NjQ1MzcgQzQuMDk5NTA5MzgsMTguMjc2NDUzNyAtMy43MzAzNDkzNmUtMTQsMTQuMTc4MjMxMiAtMy43MzAzNDkzNmUtMTQsOS4xMzkyNzc5NiBDLTMuNzMwMzQ5MzZlLTE0LDQuMTAwMzI0NzEgNC4wOTk1MDkzOCwyLjQzMzYwODg3ZS0xMyA5LjEzODc1MjQ1LDIuNDMzNjA4ODdlLTEzIFoiIGlkPSJwYXRoLTEiPjwvcGF0aD4gICAgPC9kZWZzPiAgICA8ZyBpZD0iU2VhcmNoIiBzdHJva2U9Im5vbmUiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj4gICAgICAgIDxtYXNrIGlkPSJtYXNrLTIiIGZpbGw9IndoaXRlIj4gICAgICAgICAgICA8dXNlIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICAgICAgPC9tYXNrPiAgICAgICAgPHVzZSBpZD0iSWNvbnMvQWN0aW9ucy9TZWFyY2giIGZpbGw9IiM0OTRBNTIiIHhsaW5rOmhyZWY9IiNwYXRoLTEiPjwvdXNlPiAgICA8L2c+PC9zdmc+);
    background-size: cover;
    height: 25px;
    width: 25px;
  }

  .header__search--toggle:after {
    content: "Search";
  }

  .header__close--toggle {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiPz48c3ZnIHdpZHRoPSIyNHB4IiBoZWlnaHQ9IjE5cHgiIHZpZXdCb3g9IjAgMCAyNCAxOSIgdmVyc2lvbj0iMS4xIiB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHhtbG5zOnhsaW5rPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5L3hsaW5rIj4gICAgICAgIDx0aXRsZT5jbG9zZTwvdGl0bGU+ICAgIDxkZXNjPkNyZWF0ZWQgd2l0aCBTa2V0Y2guPC9kZXNjPiAgICA8ZyBpZD0iY2xvc2UiIHN0cm9rZT0ibm9uZSIgc3Ryb2tlLXdpZHRoPSIxIiBmaWxsPSJub25lIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPiAgICAgICAgPGcgaWQ9Ikdyb3VwIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgyLjAwMDAwMCwgLTEuMDAwMDAwKSIgc3Ryb2tlPSIjNDk0QTUyIiBzdHJva2Utd2lkdGg9IjMiPiAgICAgICAgICAgIDxyZWN0IGlkPSJSZWN0YW5nbGUiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDEwLjAwMDAwMCwgMTAuNTAwMDAwKSByb3RhdGUoLTQ1LjAwMDAwMCkgdHJhbnNsYXRlKC0xMC4wMDAwMDAsIC0xMC41MDAwMDApICIgeD0iLTAuNSIgeT0iMTAuNSIgd2lkdGg9IjIxIiBoZWlnaHQ9IjEiIHJ4PSIwLjUiPjwvcmVjdD4gICAgICAgICAgICA8cmVjdCBpZD0iUmVjdGFuZ2xlLUNvcHktNSIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuMDAwMDAwLCAxMC41MDAwMDApIHJvdGF0ZSg0NS4wMDAwMDApIHRyYW5zbGF0ZSgtMTAuMDAwMDAwLCAtMTAuNTAwMDAwKSAiIHg9Ii0wLjUiIHk9IjEwLjUiIHdpZHRoPSIyMSIgaGVpZ2h0PSIxIiByeD0iMC41Ij48L3JlY3Q+ICAgICAgICA8L2c+ICAgIDwvZz48L3N2Zz4=);
    background-repeat: no-repeat;
    background-size: 110%;
    display: none;
    height: 25px;
    margin-right: 0;
    width: 25px;
  }

  .header__close--toggle.show {
    display: block;
  }
}
    .hr {
    border-color: var(--primary-color);
}

.hr--secondary {
    border-color: var(--secondary-color);
}

.hr--accent-1 {
    border-color: var(--accent-color-1);
}

.hr--accent-2 {
    border-color: var(--accent-color-2);
}

.hr--accent-3 {
    border-color: var(--accent-color-3);
}

.hr--additional-1 {
    border-color: var(--additional-color-1);
}

.hr--additional-2 {
    border-color: var(--additional-color-2);
}

.hr--additional-3 {
    border-color: var(--additional-color-3);
}
    .info-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

.info-card:not(:last-child) {
  margin-bottom: 64px;
}

.info-card__section {
  background-color: var(--white);
  border-radius: 16px;
  border: 1px solid var(--white);
  display: flex;
  flex: 1;
}

.info-card__section--primary {
  position: relative;
}

.info-card__section--primary .info-card__content {
  color: var(--accent-color-1-darker);
}

.info-card__section--primary::before {
  background-color: var(--white);
  content: '';
  height: 55px;
  transform: rotate(-45deg) translateX(-50%);
  position: absolute;
  left: 50%;
  bottom: 15px;
  width: 55px;
  z-index: 0;
}

.info-card__section--secondary {
  background-color: transparent;
  border-color: var(--accent-color-1-90);
  display: flex;
  flex-direction: column;
}

.info-card__item {
  flex: 1;
  padding: 32px;
  z-index: 1;
}

.info-card__section--secondary .info-card__item:last-child:not(.info-card__item--full-width) {
  padding-top: 0;
}

.info-card__heading {
  color: var(--accent-color-1-darker);
  font-weight: var(--weight-bold);
  margin-bottom: 8px;
}

.info-card__section--secondary .info-card__heading {
  color: var(--primary-color);
}

.info-card__content {
  color: var(--white);
}

@media (min-width: 993px) {
  .info-card {
    flex-direction: row;
  }

  .info-card__section--primary {
    max-width: 33.33%;
  }

  .info-card__section--secondary {
    max-width: 66.66%;
  }

  .info-card__section--primary::before {
    bottom: auto;
    left: auto;
    right: -24px;
    top: 43%;
    transform: rotate(-45deg) translateY(-50%)
  }

  .info-card:not(:last-child) {
    margin-bottom: 32px;
  }

  .info-card__section--secondary {
    flex-direction: row;
  }

  .info-card__section--secondary .info-card__item:last-child:not(.info-card__item--full-width) {
    padding-top: 32px;
  }

  
}
    .logo-grid {
    container-type: inline-size;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px 0;
    gap: 40px;
}

.logo-grid__img {
    display: flex;
    flex-basis: 12.5%;
    justify-content: center;
}

.logo-grid--global .logo-grid__img {
    flex-basis: 20%;
}

.logo-grid__img img {
    object-fit: contain;
}

@container (max-width: 992px) {
    .logo-grid--global .logo-grid__img {
        flex-basis: 26%;
    }
}

@container (max-width: 768px) {
    .logo-grid__img {
        flex-basis: 26%;
    }
}

@container (max-width: 480px) {
    .logo-grid__img {
        flex-basis: 40%;
    }

    .logo-grid--global .logo-grid__img {
        flex-basis: 30%;
    }
}
    .mid-page-menu {
    gap: 16px;
    position: relative;
    width: 100%;
}

.mid-page-menu__logo {
    flex-shrink: 0;
    max-width: 140px;
}

.mid-page-menu__menu-wrapper {
    width: 100%;
}

.mid-page-menu ul {
    gap: 16px;
}

.mid-page-menu__menu-active {
    background-color: var(--additional-color-2);
    border-radius: 50px;
    color: var(--secondary-color);
    padding: 14px;
}

@media (max-width: 768px) {
    .mid-page-menu {
        padding-bottom: 88px;
        overflow: hidden;
    }

    .mid-page-menu__menu-wrapper {
        align-items: flex-start;
        flex-direction: column;
        overflow-x: scroll;
    }

    .mid-page-menu .hs-menu-wrapper.hs-menu-flow-horizontal ul {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: scroll;
        padding: 10px 0;
        scrollbar-width: none;
    }

    .mid-page-menu .hs-menu-wrapper.hs-menu-flow-horizontal ul::-webkit-scrollbar {
        display: none;
    }

    .mid-page-menu .hs-menu-wrapper.hs-menu-flow-horizontal ul li {
        flex-shrink: 0;
    }

    .mid-page-menu__cta {
        left: 0;
        position: absolute;
        top: 50px;
        width: 100%;
    }

    .mid-page-menu__cta .tm-button {
        display: inline-flex;
        margin-top: 12px;
    }
}
    .partner-card {
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0px 12px 40px 0px #0D3A4224;
  display: flex;
  flex-basis: 50%;
  flex-direction: column;
  justify-content: flex-end;
  min-width: 276px;
  padding: 24px;
}

.partner-card__logo {
  align-items: center;
  display: flex;
  height: 150px;
  justify-content: center;
  position: relative;
  width: 100%;
}

.partner-card__logo img {
  max-width: 60%;
  max-height: 90%;
  object-fit: contain;
}

.partner-card__description, .partner-card__link {
  color: var(--accent-color-1-darker);
  padding: 0 8px;
  width: 100%;
}

.partner-card__link {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}

.partner-card__tag {
  background: var(--additional-color-1);
  border-radius: 1024px;
  font-size: var(--tiny-body-size);
  padding: 6px 11px 5px;
  position: absolute;
  right: 0;
  top: 0;
}

@media (max-width: 480px) {
  .partner-card {
    flex-basis: 100%;
  }

  .partner-card__logo {
    height: 100px;
  }
}
    .steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.stepped-content {
    padding: 24px;
}

.stepped-content--bordered {
    background: var(--secondary-color-darker);
    border: 1px solid var(--juniper);
    border-radius: 16px;
    padding: 48px;
}

.stepped-content__wrapper {
    border-left: 2px solid var(--juniper);
    padding-left: 60px;
    position: relative;
}

.stepped-content__wrapper:before {
    background-color: var(--secondary-color);
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    content: '';
    height: 20px;
    left: -13px;
    position: absolute;
    top: 0;
    width: 20px;
}

.stepped-content__wrapper:after {
    background-color: var(--juniper);
    border-radius: 50%;
    bottom: -10px;
    content: '';
    height: 10px;
    left: -6px;
    position: absolute;
    width: 10px;
}

.stepped-content__number {
    color: var(--primary-color);
    font-size: var(--base-font-size);
}

.stepped-content__heading {
    align-items: center;
    color: var(--white);
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.stepped-content__copy {
    color: var(--white);
    font-size: var(--large-body-size);
}

.stepped-content__table {
    margin-top: 24px;
}
    .media {
    container-type: inline-size;
    position: relative;
}

.media__mask {
    mask-image: url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/images/masks/1.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
}

.media--2 .media__mask {
    mask-image: url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/images/masks/2.svg);
}

.media--3 .media__mask {
    mask-image: url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/images/masks/3.svg);
}

.media--4 .media__mask {
    mask-image: url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/images/masks/4.svg);
}

.media--5 .media__mask {
    mask-image: url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/images/masks/5.svg);
}

.media--6 .media__mask {
    mask-image: url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/images/masks/6.svg);
}

.media--no_mask .media__mask {
    mask-image: unset;
}

.media--no_mask img {
    border-radius: 16px;
}

.media__top-circle {
    animation: moveUpDown90 9s ease-in-out infinite;
    background: var(--accent-color-2);
    border-radius: 100%;
    height: 150px;
    left: -25px;
    position: absolute;
    top: 100px;
    width: 150px;
}

.media__bottom-circle {
    animation: moveUpDown160 8s ease-in-out infinite;
    background: var(--accent-color-3);
    border-radius: 100%;
    bottom: 0px;
    height: 280px;
    mix-blend-mode: multiply;
    position: absolute;
    right: -70px;
    width: 280px;
}

.media--2 .media__top-circle {
    animation: moveRightLeft100 8s ease-in-out infinite;
    height: 184px;
    right: 30px;
    left: unset;
    width: 184px;
}

.media--2 .media__bottom-circle {
    animation: moveUpDown160 10s ease-in-out infinite;
    height: 274px;
    width: 274px;
    left: 0;
    bottom: 55px;
}

.media--3 .media__bottom-circle {
    animation: moveUpDown160 10s ease-in-out infinite;
    height: 274px;
    width: 274px;
    left: 0;
    bottom: 55px;
}

.media--3 .media__top-circle {
    animation: moveRightLeft100 8s ease-in-out infinite;
    height: 184px;
    right: 0;
    left: unset;
    width: 184px;
    z-index: 2;
}


.media--4 .media__top-circle {
    animation: moveUpDown240 8s ease-in-out infinite;
    background: var(--primary-color);
    bottom: 0;
    height: 160px;
    left: -25px;
    top: unset;
    width: 160px;
    z-index: 2;
}

.media--4 .media__bottom-circle {
    animation: moveDownUp220 9s ease-in-out infinite;
    bottom: 140px;
    height: 380px;
    right: -70px;
    width: 380px;
}

.media--5 .media__top-circle {
    animation: moveUpDown200 8s ease-in-out infinite;
    background: var(--primary-color);
    height: 160px;
    left: unset;
    right: 0;
    top: 140px;
    width: 160px;
}

.media--5 .media__bottom-circle {
    animation: moveDownUp180 9s ease-in-out infinite;
    bottom: 100px;
    height: 380px;
    left: -15px;
    right: unset;
    width: 380px;
}

.media--6 .media__top-circle {
    animation: moveLeftRight100 7.5s ease-in-out infinite;
    height: 224px;
    bottom: 80px;
    left: 50px;
    top: unset;
    width: 224px;
    z-index: 2;
}

.media--6 .media__bottom-circle {
    animation: moveUpDown100 9s ease-in-out infinite;
    height: 170px;
    right: -15px;
    width: 170px;
    bottom: 50px;
}

.media--no_mask .media__bottom-circle {
    animation: moveDownUp100 9s ease-in-out infinite;
    bottom: unset;
    top: 35px;
    height: 150px;
    right: -56px;
    width: 150px;
}

.media--no_mask .media__top-circle {
    animation: moveUpDown100 8s ease-in-out infinite;
    height: 82px;
    right: 0;
    bottom: -20px;
    top: unset;
    width: 82px;
}

.media--square {
    animation: none;
}

.media--square .media__mask {
    mask-image: unset;
}

.media--square img,
.media--no_mask img,
.media--square video {
    border-radius: 16px;
}

.media--square .media__top-circle {
    display: none;
}

.media--square .media__bottom-circle {
    display: none;
}

.media__video {
    width: 100%;
}

@container (max-width: 768px) {
    .media__top-circle {
        animation: moveUpDown60 9s ease-in-out infinite;
        height: 100px;
        left: 15px;
        width: 100px;
    }

    .media__bottom-circle {
        animation: moveUpDown100 8s ease-in-out infinite;
        height: 210px;
        right: 0px;
        width: 210px;
    }

    .media--2 .media__top-circle {
        animation: moveRightLeft50 8s ease-in-out infinite;
        height: 120px;
        right: 100px;
        width: 120px;
    }

    .media--2 .media__bottom-circle {
        animation: moveUpDown100 10s ease-in-out infinite;
        height: 180px;
        width: 180px;
    }

    .media--3 .media__bottom-circle {
        animation: moveUpDown100 10s ease-in-out infinite;
        height: 180px;
        width: 180px;
    }

    .media--3 .media__top-circle {
        animation: moveRightLeft50 8s ease-in-out infinite;
        height: 120px;
        width: 120px;
    }


    .media--4 .media__top-circle {
        animation: moveUpDown160 8s ease-in-out infinite;
        height: 105px;
        left: 0;
        width: 105px;
    }

    .media--4 .media__bottom-circle {
        animation: moveDownUp130 10s ease-in-out infinite;
        height: 250px;
        right: -10px;
        width: 250px;
    }

    .media--5 .media__top-circle {
        animation: moveUpDown160 8s ease-in-out infinite;
        height: 105px;
        top: 190px;
        width: 105px;
    }

    .media--5 .media__bottom-circle {
        animation: moveDownUp100 9s ease-in-out infinite;
        bottom: 170px;
        height: 250px;
        width: 250px;
    }

    .media--6 .media__top-circle {
        animation: moveLeftRight50 8s ease-in-out infinite;
        bottom: 120px;
        height: 150px;
        left: 90px;
        width: 150px;
    }

    .media--6 .media__bottom-circle {
        animation: moveUpDown60 9s ease-in-out infinite;
        height: 100px;
        right: 5px;
        width: 100px;
    }
}

@container (max-width: 480px) {
    .media__top-circle {
        height: 75px;
        width: 75px;
    }

    .media__bottom-circle {
        height: 135px;
        width: 135px;
    }

    .media--2 .media__top-circle {
        height: 90px;
        width: 90px;
    }

    .media--2 .media__bottom-circle {
        height: 135px;
        width: 135px;
    }

    .media--3 .media__bottom-circle {
        height: 135px;
        width: 135px;
    }

    .media--3 .media__top-circle {
        height: 90px;
        right: 60px;
        width: 90px;
    }


    .media--4 .media__top-circle {
        height: 85px;
        width: 85px;
    }

    .media--4 .media__bottom-circle {
        height: 150px;
        width: 150px;
    }

    .media--5 .media__top-circle {
        height: 105px;
        width: 105px;
    }

    .media--5 .media__bottom-circle {
        height: 150px;
        left: 10px;
        width: 150px;
    }

    .media--6 .media__top-circle {
        height: 110px;
        width: 110px;
    }

    .media--6 .media__bottom-circle {
        height: 75px;
        width: 75px;
    }
}
    .statistic {
  background: var(--secondary-color-darker);
  border: 1px solid var(--accent-color-1-90);
  border-radius: 16px;
  margin: 0;
  padding: 24px;
}

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

.statistic--2 {
  background: var(--white);
}

.statistic--3 {
  background: var(--accent-color-2-20);
}

.statistic__value {
  font-weight: var(--weight-bold);
  letter-spacing: -2.6px;
}

.statistic--2 .statistic__value,
.statistic--3 .statistic__value {
  color: var(--accent-color-1-darker);
}

.statistic__value sup {
  font-size: 33px;
}

.statistic__heading {
  color: var(--white);
}

.statistic--2 .statistic__heading,
.statistic--2 .statistic__desc,
.statistic--2 .statistic__sprint,
.statistic--3 .statistic__heading,
.statistic--3 .statistic__desc,
.statistic--3 .statistic__sprint{
  color: var(--secondary-color); 
}

.statistic__desc {
  color: var(--white);
  font-weight: var(--weight-semi);
  margin-left: 0;
}

.statistic__sprint {
  color: var(--white);
  font-size: var(--base-font-size);
  margin-left: 0;
  margin-top: 14px;
}
    .table__wrapper {
  border: 1px solid #55868F;
  border-radius: 4px;
}

.table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  border-radius: 4px;
  margin-bottom: 0;
}

.table__header {
  background-color: #427983;
  color: #fff;
}

.table__header .table__heading:first-child {
  text-align: left;
}

.table__header:nth-child(odd) .table__heading {
  border: 1px solid #427983;
}

.table__row {
  border: none;
  color:#fff;
}

.table__row:nth-child(odd) {
  background-color: #0D3A42;
}

.table__row:nth-child(even) {
  background-color: #0B2F36;
}

.table__row:nth-child(odd) .table__data {
  border: 1px solid #0D3A42;
}

.table__row:nth-child(even) .table__data {
  border: 1px solid #0B2F36;
}

/* Removed duplicate .table__row:nth-child(even) rule */
.table__data, .table__heading {
  padding: 8px 16px;
}

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

.table__data img {
    margin: 0 auto;
}

@media (max-width: 768px) {
  .table__wrapper {
    overflow-x: scroll;
  }
}
    .tabs {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  width: 100%;
}

.tabs.tabs--center {
  justify-content: center;
}

.tabs.tabs--images {
  gap: 40px;
  margin-top: 48px;
}


.tabs--images .tabs__link {
  background: transparent;
  border: none;
  border-radius: 0;
  border-top: 6px solid var(--accent-color-2-20);
  opacity: .4;
  padding-top: 24px;
  width: 146px;
}

.tabs--images.tabs--images-light .tabs__link {
  border-top: 6px solid var(--secondary-color);
}

.tabs__link {
  align-items: center;
  background: transparent;
  border: 1px solid var(--accent-color-2);
  border-radius: 1024px;
  color: var(--white);
  cursor: pointer;
  display: flex;
  font-family: var(--heading-font-family);
  font-size: var(--small-body-size);
  font-weight: var(--weight-semi);
  flex: 1 1 100%;
  justify-content: center;
  line-height: 1;
  padding: 8px 16px 7px;
  position: relative;
  text-align: center;
  transition: background 0.2s;
  white-space: nowrap;
}

.tabs__link--dark {
  background: var(--white);
  border-color: var(--secondary-color);
  color: var(--secondary-color);
}

.tabs__link:hover, .tabs__link:active{
  background: var(--white);
  border-color: var(--white);
  color: var(--secondary-color);
}

.tabs__link--dark:hover, .tabs__link--dark:active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

.tabs__link--active  {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--secondary-color);
  font-weight: var(--weight-semi);
  cursor: pointer;
  pointer-events: none;
}

.tabs.tabs--images .tabs__link--active {
  opacity: 1;
}

.tabs--images .tabs__link:hover,
.tabs--images .tabs__link:active {
  background: transparent;
  border-color: var(--secondary-color);
}

.tabs--images.tabs--images-light .tabs__link:hover,
.tabs--images.tabs--images-light .tabs__link:active {
  background: transparent;
  border-color: var(--primary-color);
}

.tabs--images .tabs__link--active {
  border-color: var(--secondary-color);
}

.tabs--images.tabs--images-light .tabs__link--active {
  border-color: var(--primary-color);
}

.tabs__link--dark.tabs__link--active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--white);
}

.tabs__content {
  display: none;
}

.tabs__group-content {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.tabs__2-col {
  align-items: center;
  display: flex;
  gap: 104px;
}

.tabs__2-col .tabs__content--media {
  flex-basis: 40%;
  flex-shrink: 0;
}

.tabs__2-col .tabs__content--copy {
  flex-basis: 60%;
}

.tabs__content--active {
  display: block;
}

.tab__logo img {
  max-height: 42px;
  max-width: 150px;
  object-fit: contain;
}

@media (max-width: 992px) {
  .tabs__2-col {
    flex-direction: column;
    gap: 28px;
  }

  .tabs__content--media {
    width: 100%;
  }
}
    .tag {
    background-color: transparent;
    border: 1px solid var(--additional-color-3);
    border-radius: 1024px;
    color: var(--secondary-color);
    font-size: var(--tag-size);
    font-weight: var(--weight-semi);
    padding: 4px 8px;
}

.tag--2 {
    border-color: var(--accent-color-1);
    color: var(--primary-color);
}

.tag--3 {
    background-color: var(--additional-color-1);
    border-color: var(--additional-color-1);
    color: var(--secondary-color);
}

.tag--4 {
    background-color: var(--additional-color-2);
}

.tag--no-border {
    border: none;
}

.tag--no-padding {
    padding: 0;
}

.tag--uppercase {
    text-transform: uppercase;
}

.tag--filson {
    font-family: var(--filsonPro);
    font-weight: var(--weight-semi);

}

.tag--5,
.tag--6 {
    border: none;
    font-weight: var(--weight-bold);
    background-color: transparent;
    padding: 0;
}

.tag--5 {
    color: var(--accent-color-1-darker);
}

.tag--6 {
    color: var(--primary-color);
}

.tag--7 {
    background-color: var(--white);
    color: var(--secondary-color);
    border-color: var(--white);
}

.tag--8 {
    background-color: #427983;
    color: #6BFAD8;
    border-color: #427983;
}

.tag--9 {
    background-color: var(--secondary-color);
    border-color: var(--accent-color-1);
    color: var(--primary-color);
}

/* Size variations */
.tag--large {
    font-size: var(--base-font-size);
}

.tag--medium {
    font-size: var(--button-font-size);
    padding: 7px 12px;
}
    .testimonials {
  background: var(--accent-color-1);
  border-radius: 16px;
  position: relative;
  padding: 50px 50px 100px;
}

.testimonials--solo {
    padding: 50px;
}

.testimonials--solo .testimonial {
    flex-basis: 100%;
}

.testimonials--transparent {
  background: transparent;
  padding: 0;
}

.testimonials--circles {
    background: url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/images/outlined.svg) no-repeat 110% -15%, var(--accent-color-1);
}

.testimonial {
  padding: 14px;
  position: relative;
  flex-basis: 60%;
}

.testimonial__wrapper {
  display: flex !important;
  position: relative;
  gap: 80px;
  z-index: 0;
}

.testimonial__wrapper--reverse {
  flex-direction: row-reverse;
}

.testimonial__image {
  flex-basis: 40%;
  max-width: 456px !important;
  object-fit: contain;
}

.testimonial__copy {
  border: none;
  color: var(--white);
  font-weight: var(--weight-bold);
  line-height: 130%;
  margin-top: 16px;
  padding: 0;
}

.testimonial__author {
  color: var(--white);
  font-size: var(--large-body-size);
  font-style: normal;
  font-weight: var(--weight-bold);
}

.testimonial__position {
  color: var(--white);
  font-size: var(--small-body-size);
  font-style: normal;
}

.testimonials--transparent .testimonial__copy,
.testimonials--transparent .testimonial__author,
.testimonials--transparent .testimonial__position {
  color: var(--secondary-color);
}

.testimonial__pagination.swiper-pagination {
  bottom: -50px !important;
  display: flex;
  gap: 8px;
  justify-content: center;
}

.testimonial__pagination.swiper-pagination .swiper-pagination-bullet {
    background: var(--accent-color-2);
    border-radius: 100%;
    display: inline-block;
    height: 12px;
    opacity: 1;
    transition: all .3s ease-in-out;
    width: 12px;
}

.testimonial__pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--accent-color-1);
  transition: all .3s ease-in-out;
  width: 96px;
}

.testimonial__img {
  left: 0;
  position: absolute;
  z-index: -1;
  top: 0;
}

.testimonials--transparent .testimonial__img {
  opacity: .3;
}

.testimonial footer {
  gap: 32px;
  margin-top: 48px;
}

@media (max-width: 1024px) {
  .testimonial__wrapper {
    flex-direction: column-reverse;
  }

  .testimonial-tabs .testimonial__wrapper {
    flex-direction: column;
  }

  .testimonial__image {
    align-self: center;
  }
}

@media (max-width: 992px) {
  .testimonial__wrapper {
    gap: 48px;
  }
}

@media (max-width: 768px) {
  .testimonials {
    padding: 24px 24px 80px;
  }

  .testimonial-tabs .testimonials {
    padding-bottom: 48px;
  }

  .testimonial__copy {
    font-size: 24px;
    line-height: 130%;
  }

  .testimonial__author {
    font-size: var(--base-font-size);
  }

  .testimonial__position {
    font-size: var(--small-body-size);
  }

  .testimonial footer {
    flex-direction: column;
  }

}

@media (max-width: 400px) {
  .testimonial-tabs .tabs {
    padding-left: 120px;
  }
}
    .video {
  cursor: pointer;
  display: block;
  position: relative;
  transition: background 0.3s;
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
}

.video__img {
  border-radius: 16px;
  display: block;
  margin: 0 auto;
}

.video__player {
  display: none;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.video--active .video__button {
  transform: scale(0);
}

.video--active .video__img {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
}

.video--active .video__player {
  display: block;
}

    /* Sections
    */
    .accordion-title .hs_cos_wrapper_type_header h1,
.accordion-title .hs_cos_wrapper_type_header h2,
.accordion-title .hs_cos_wrapper_type_header h3,
.accordion-title .hs_cos_wrapper_type_header h4,
.accordion-title .hs_cos_wrapper_type_header h5,
.accordion-title .hs_cos_wrapper_type_header h6 {
    font-family: var(--heading-font-family);
    font-size: var(--h1-clamp);
    font-weight: var(--weight-semi);
    margin-bottom: 48px;
}


.accordion-text > .row-fluid {
    gap: 80px;
}


@media (max-width: 992px) {
    .accordion-text > .row-fluid {
        flex-direction: column !important; /* override hubspot dnd default */
        gap: 64px;
    }

    .accordion-text > .row-fluid > .dnd-column {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .accordion-text > .row-fluid {
        gap: 48px;
    }
}
    .stats-section .statistic,
.intro-stats .statistic,
.text-stats .statistic {
    padding: 24px;
}

.stats-section.dnd-section .dnd-column,
.intro-stats.dnd-section .dnd-column,
.text-stats.dnd-section .dnd-column {
    padding: 0;
}

.stats-section .statistic__value,
.intro-stats .statistic__value {
    font-size: 58px;
    line-height: 0.9;
}

.intro-stats .statistics {
    margin-top: 48px;
}

.key-stats > .row-fluid > .dnd-column:nth-child(2) {
    padding: 0;
}

.key-stats .statistic__value {
    line-height: 1.2;
}

@media (max-width: 992px) {
    .key-stats > .row-fluid > .dnd-column {
        width: 100%;
    }

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

@media (max-width: 768px) {
    .stats-section .statistic__value,
    .intro-stats .statistic__value,
    .text-stats .statistic__value {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .text-stats .statistics.grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .stats-section .statistic__value,
    .intro-stats .statistic__value,
    .text-stats .statistic__value {
        font-size: 38px;
    }
}
    .intro-bullets > .row-fluid {
    gap: 80px;
}

.intro-bullets .card-grid {
    margin-top: 24px;
}

.intro-bullets .bullets ul,
.media-bullets .bullets ul {
    padding-left: 0;
}

.intro-bullets .button-wrapper {
    margin-top: 24px;
}
    .event-speakers .hs_cos_wrapper_type_header h1,
.event-speakers .hs_cos_wrapper_type_header h2,
.event-speakers .hs_cos_wrapper_type_header h3,
.event-speakers .hs_cos_wrapper_type_header h4,
.event-speakers .hs_cos_wrapper_type_header h5,
.event-speakers .hs_cos_wrapper_type_header h6 {
    font-size: var(--h1-clamp);
    font-family: var(--font-family-heading);
    margin-bottom: 48px;
}
    .featured-case-studies .button-wrapper {
    margin-bottom: 40px;
}

.featured-case-studies .widget-type-rich_text {
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .featured-case-studies .button-wrapper {
        margin-bottom: 0;
    }
}
    .event-schedule .icon-text__img {
    height: 24px;
    width: 24px;
}

.event-schedule .icon-text__heading {
    font-size: var(--base-font-size);
}

.event-schedule .widget-type-text {
    font-weight: var(--weight-bold);
    margin-top: 32px;
}

@media (max-width: 992px) {
    .event-schedule.row-control > .row-fluid {
        flex-direction: row !important;
        flex-wrap: wrap;
    }

    .event-schedule > .row-fluid > .dnd-column {
        display: inline-block;
    }

    .event-schedule > .row-fluid > .dnd-column:nth-child(1) {
        width: 100%;
    }

    .event-schedule > .row-fluid > .dnd-column:nth-child(2),
    .event-schedule > .row-fluid > .dnd-column:nth-child(3) {
        flex: 1;
        margin-top: 64px;
    }

    .event-schedule > .row-fluid > .dnd-column:nth-child(2) > .row-fluid-wrapper:nth-child(1) > .row-fluid,
    .event-schedule > .row-fluid > .dnd-column:nth-child(3) > .row-fluid-wrapper:nth-child(1) > .row-fluid {
        display: grid;
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .event-schedule > .row-fluid > .dnd-column:nth-child(2) > .row-fluid-wrapper:nth-child(1) > .row-fluid > .dnd-column:nth-child(1),
    .event-schedule > .row-fluid > .dnd-column:nth-child(3) > .row-fluid-wrapper:nth-child(1) > .row-fluid > .dnd-column:nth-child(1) {
        grid-column: span 2;
        min-width: 50px;
    }

    .event-schedule > .row-fluid > .dnd-column:nth-child(2) > .row-fluid-wrapper:nth-child(1) > .row-fluid > .dnd-column:nth-child(2),
    .event-schedule > .row-fluid > .dnd-column:nth-child(3) > .row-fluid-wrapper:nth-child(1) > .row-fluid > .dnd-column:nth-child(2) {
        grid-column: span 10;
    }
}

@media (max-width: 600px) {
    .event-schedule.row-control > .row-fluid {
        flex-direction: column !important;
    }

    .event-schedule > .row-fluid > .dnd-column:nth-child(2),
    .event-schedule > .row-fluid > .dnd-column:nth-child(3) {
        flex-basis: 100%;
        margin-top: 24px;
        width: 100%;
    }
}
    .intro-logos .widget-type-rich_text {
    max-width: 800px;
    margin: 0 auto;
}
    .site-search-section h1,
.site-search-section h2,
.site-search-section h3,
.site-search-section h4,
.site-search-section h5,
.site-search-section h6 {
    margin-bottom: 0;
}
    .stats-section .statistic,
.intro-stats .statistic,
.text-stats .statistic {
    padding: 24px;
}

.stats-section.dnd-section .dnd-column,
.intro-stats.dnd-section .dnd-column,
.text-stats.dnd-section .dnd-column {
    padding: 0;
}

.stats-section .statistic__value,
.intro-stats .statistic__value {
    font-size: 58px;
    line-height: 0.9;
}

.intro-stats .statistics {
    margin-top: 48px;
}

.key-stats > .row-fluid > .dnd-column:nth-child(2) {
    padding: 0;
}

.key-stats .statistic__value {
    line-height: 1.2;
}

@media (max-width: 992px) {
    .key-stats > .row-fluid > .dnd-column {
        width: 100%;
    }

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

@media (max-width: 768px) {
    .stats-section .statistic__value,
    .intro-stats .statistic__value,
    .text-stats .statistic__value {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .text-stats .statistics.grid-cols-1 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .stats-section .statistic__value,
    .intro-stats .statistic__value,
    .text-stats .statistic__value {
        font-size: 38px;
    }
}
    .text-section > .row-fluid > .dnd-column {
    max-width: 800px;
}

.text-section--centralised > .row-fluid > .dnd-column {
    margin: 0 auto;
}

.text-media {
    overflow: hidden;
}

.text-media > .row-fluid > .dnd-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.text-section .card {
    max-width: 384px;
}

.text-media.featured-banner > .row-fluid > .dnd-column {
    gap: 24px;
}

.text-section .button-wrapper {
    margin-top: 24px;
}

@media (max-width: 992px) {
    .text-section .card {
        margin: 0 auto;
    }

    .text-section > .row-fluid {
        gap: 64px;
    }
}

@media (max-width: 480px) {
    .text-section .card {
        width: 100%;
    }
}
    .text-form .bullets {
    margin-top: 32px;
}

.text-form .bullets p {
    margin-bottom: 12px;
}

.text-form .logo-grid {
    justify-content: flex-start;
    margin-top: 12px;
}
    .title-link h1,
.title-link h2,
.title-link h3,
.title-link h4,
.title-link h5,
.title-link h6 {
    font-family: var(--heading-font-family);
    font-size: var(--h2-clamp) !important; /* override hubspot default */
    margin-bottom: 0 !important; /* override hubspot default */
}

@media (max-width: 768px) {
    .title-link .button-wrapper {
        justify-content: left !important;
    }

    .title-link.row-control > .row-fluid {
        gap: 8px;
    }
}
    .video-banner .button-wrapper {
    margin-top: 32px;
}

@media (max-width: 992px) {
    .video-banner .dialog-trigger,
    .video-banner img {
        width: 100%;
    }
}
    /* Settings
    */
    /* Spacing */
:root {
    --site-width: 1200px;
    --container-width: 1200px;
}

.hidden {
    display: none;
}

.block {
    display: block;
}

@media (max-width: 768px) {
    .hidden-md {
        display: none;
    }
}

    /* Utilities
    Helper classes with ability to override anything that comes before it
    */
    .animation {
  position: relative;
}

.animation__circle {
  border-radius: 100%;
  height: 50px;
  position: absolute;
  width: 50px;
}

/* Size Options */
.animation__circle--large {
  height: 95px;
  width: 95px;
}

/* Colour Options*/
.animation__circle--green {
  background: var(--accent-color-2);
}

.animation__circle--fuschia {
  background: var(--accent-color-3);
}

/* Start position options */
.animation__circle--top-left {
  top: 18px;
  left: -50px;
}

.animation__circle--top-right {
  top: 18px;
  right: -50px;
}

.animation__circle--bottom-left {
  bottom: -10px;
  left: 20px;
}

.animation__circle--bottom-right {
  bottom: 68px;
  right: -20px;
}

.animation__green-circle {
  animation: moveUpDown90 9s ease-in-out infinite;
}

.animation__circle--blend {
  mix-blend-mode: multiply;
}

/* Animation Options */
.animation__circle--downUp100 {
  animation: moveDownUp100 8s ease-in-out infinite;
}

.animation__circle--moveUpDown60 {
  animation: moveUpDown60 8s ease-in-out infinite;
}

@media (min-width: 568px) {
  .animation__circle {
    height: 94px;
    width: 94px;
  }

  .animation__circle--large {
    height: 176px;
    width: 176px;
  }
}

@media (min-width: 768px) {
  .animation__circle {
    height: 80px;
    width: 80px;
  }
  .animation__circle--large {
    height: 150px;
    width: 150px;
  }
}

/* Keyframes */
@keyframes moveUpDown240 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-240px);
  }
  100% {
    transform: translateY(0);
  }
}


@keyframes moveDownUp220 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(220px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes moveUpDown200 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-200px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes moveDownUp180 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(180px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes moveDownUp130 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(130px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes moveUpDown160 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-160px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes moveDownUp160 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(160px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes moveUpDown100 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-100px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes moveDownUp100 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(100px);
  }
  100% {
    transform: translateY(0);
  }
}



@keyframes moveRightLeft100 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(100px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes moveRightLeft50 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(50px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes moveLeftRight100 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-100px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes moveLeftRight50 {
  0% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(-50px);
  }
  100% {
    transform: translateX(0);
  }
}


@keyframes moveUpDown90 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-90px);
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes moveUpDown60 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-60px);
  }
  100% {
    transform: translateY(0);
  }
}


@keyframes rotateAndReverse {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
    .bg-dark {
    background-color: var(--secondary-color);
}

.bg-dark .button-list__heading {
    color: var(--white);
    font-size: 26px;
    font-family: var(--font-family-heading);
    margin-top: 12px;
}

.circles-bg {
    background-image: url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/images/circles.svg);
    background-repeat: no-repeat;
}

.circles-bg--left {
    background-position: left -830px bottom 100%;
}

.circles-bg--right {
    background-position: right -830px bottom 100%;
}

.circles-bg--multi {
    background-image: url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/images/multi-circles.png);
    background-size: 605px;
}

.circles-bg--top {
    background-position: right -125px top -125px;
}

.circles-bg--top-small {
    background-position: right -390px top -560px;
    background-size: 1250px;
}

.circles-bg--top-micro {
    background-position: right -390px top -585px;
    background-size: 1075px;
}
    .primary-text {
    color: var(--primary-color);
}

.accent1-text {
    color: var(--accent-color-1);
}
    /* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}
    .row-control > .row-fluid {
    gap: 80px;
}

.row-control--small > .row-fluid {
    flex-wrap: nowrap;
}

.row-control--small-gap > .row-fluid {
    gap: 24px;
}

.row-control--large-gap > .row-fluid {
    gap: 108px;
}

.row-control--small-gap > .row-fluid > .dnd-column {
    padding: 0;
}

.row-control .hs_cos_wrapper_type_rich_text p:last-child {
    margin-bottom: 0;
}

.sticky-col > .row-fluid {
    position: relative;
}

.sticky-col--left > .row-fluid > .dnd-column:first-child,
.sticky-col--right > .row-fluid > .dnd-column:last-child {
    align-self: flex-start;
    position: sticky;
    top: 0;
}


@media (max-width: 992px) {
    .row-control > .row-fluid > .dnd-column {
        width: 100%;
    }

    .row-control.row-control--medium > .row-fluid,
    .row-control.row-control--small > .row-fluid {
        flex-direction: row !important;
    }

    .row-control--small > .row-fluid .row-fluid-wrapper,
    .row-control--small > .row-fluid .row-fluid-wrapper > .row-fluid,
    .row-control--small > .row-fluid .row-fluid-wrapper > .row-fluid .hs_cos_wrapper {
        height: 100%;
    }

    .row-control > .row-fluid,
    .row-control--small-gap > .row-fluid,
    .row-control--large-gap > .row-fluid {
        flex-direction: column !important; /* override hubspot dnd default */
        gap: 64px;
    }

    .row-control.row-control--reverse > .row-fluid {
        flex-direction: column-reverse !important;
        gap: 64px;
    }

    .row-control:not(.row-control--small) > .row-fluid > .dnd-column {
        width: 100%;
    }

    .sticky-col--left > .row-fluid > .dnd-column:first-child,
    .sticky-col--right > .row-fluid > .dnd-column:last-child {
        position: relative;
    }
}

@media (max-width: 768px) {
    .row-control--medium-gap > .row-fluid {
        flex-direction: column !important;
    }
}

@media (max-width: 576px) {
    .row-control--small > .row-fluid {
        flex-direction: column !important;
        flex-wrap: wrap;
    }
}
    /* For content that needs to be visually hidden but stay visible for screenreaders */

.off-screen {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}   

@media (max-width: 768px) {
  .off-screen--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}
    /* Stick to multiples of 4 */
.mt-0 {
    margin-top: 0;
}

.mt-auto {
    margin-top: auto;
}

.m-0-auto {
    margin: 0 auto;
}

.mt-16 {
    margin-top: 16px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-40 {
    margin-top: 40px;
}

.mt-80 {
    margin-top: 80px;
}

.mr-16 {
    margin-right: 16px;
}

.mr-32 {
    margin-right: 32px;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-12 {
    margin-bottom: 12px;
}

.mb-16 {
    margin-bottom: 16px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-24 {
    margin-bottom: 24px;
}

.mb-32 {
    margin-bottom: 32px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mb-48 {
    margin-bottom: 48px;
}

.mb-56 {
    margin-bottom: 56px;
}

.mb-72px {
    margin-bottom: 72px;
}

.mb-80 {
    margin-bottom: 80px;
}

.mb-100 {
    margin-bottom: 100px;
}

.ml-8 {
    margin-left: 8px;
}

.pb-0 {
    padding-bottom: 0;
}

.py-18 {
    padding-top: 18px;
    padding-bottom: 18px;
}

@media (max-width: 768px) {
    .mx-40-md {
        margin-left: 40px;
        margin-right: 40px;
    }
}

@media (max-width: 568px) {
    .mx-28-sm {
        margin-left: 28px;
        margin-right: 28px;
    }
}

    /* Forms
    */
    /* Fields */
.hs-form-field {
  margin-bottom: 1.4rem;
  position: relative;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

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

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

    .checkbox {
    display: flex;
    gap: 10px;
}

.checkbox__input {
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox__label {
    cursor: pointer;
}

.checkbox label,
.hs-form-booleancheckbox label {
    color: var(--secondary-color);
    display: flex;
    gap: 10px;
    font-size: var(--base-font-size);
    padding: 0;
    position: unset;
}

.checkbox .checkbox__input,
.hs-form-booleancheckbox .hs-input,
.hsfc-CheckboxInput {
    border-radius: 4px !important;
    flex-shrink: 0;
    height: 24px;
    width: 24px;
    padding: 0 !important;
}

.checkbox .checkbox__input:checked,
.hs-form-booleancheckbox .hs-input:checked,
.hsfc-CheckboxInput:checked {
    background-color: var(--accent-color-1) !important;
    border-color: var(--accent-color-1) !important;
    position: relative !important;
}

.checkbox .checkbox__input:checked::before,
.hs-form-booleancheckbox .hs-input:checked::before,
.hsfc-CheckboxInput:checked::before {
    content: '';
    background: white;
    width: 2px;
    height: 14px;
    position: absolute;
    transform: rotate(45deg);
    left: 13px;
    top: 3px;
}

.checkbox .checkbox__input:checked::after,
.hs-form-booleancheckbox .hs-input:checked::after,
.hsfc-CheckboxInput:checked::after {
    content: '' !important;
    background: white;
    width: 2px;
    height: 8px;
    position: absolute !important;
    transform: rotate(-45deg);
    left: 5px !important;
    top: 9px !important;
}

.hsfc-CheckboxInput:checked::after {
    background-color: var(--white) !important;
    mask-image: none !important;
}

.hs-form-booleancheckbox .hs-input:hover,
.hs-form-booleancheckbox .hs-input:focus,
.checkbox .checkbox__input:hover,
.checkbox .checkbox__input:focus,
.hsfc-CheckboxInput:hover,
.hsfc-CheckboxInput:focus {
    border-width: 1px;
}

.hs-fieldtype-booleancheckbox + div > .hs-richtext {
    color: var(--secondary-color);
    font-size: var(--base-font-size);
    padding-left: 34px;
}
    .form {
    font-family: var(--base-font-family);
    position: relative;
}

.form__item {
    margin-bottom: 20px;
}

.form .pristine-error {
    color: var(--form-error);
    font-size: 14px;
    margin-bottom: 10px;
}

.form .loading {
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    height: 100%;
    justify-content: center;
    left: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10;
}

label.hs-error-msg {
    color: var(--form-error);
    font-size: 12px;
    margin-bottom: 10px;
    margin-top: -1px;
}

.hs-form-field,
.hsfc-row > div,
.hsfc-TextField,
.hsfc-TextArea,
.hsfc-EmailField,
.hsfc-CheckboxField {
  margin-bottom: 1.4rem;
  position: relative;
}

.hsfc-Step .hsfc-Step__Content {
    padding: 0 !important; /* Override padding from step content */
}

.inputs-list {
    padding: 0;
    margin-bottom: 0;
}

.form-title {
    display: none;
}
    .tm-input, .hs-input, .hsfc-TextInput {
    appearance: none;
    background: #fff;
    border: 1px solid var(--accent-color-2);
    border-radius: 2px;
    color: var(--secondary-color);
    display: block;
    font-size: 1.125rem;
    padding: 12px 20px 13px;
    padding: 12px 20px 13px !important;
    transition: all .15s ease-in-out;
    width: 100%;
}

.rn-input.invalid, .hs-input.invalid, .rn-input.error, .hs-input.error {
    border-width: 3px;
    border-color: var(--form-error);
}

select.hs-input {
    background-image: url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/images/interface/triangle-down.svg);
    background-position: calc(100% - 15px) 50%;
    background-repeat: no-repeat;
    background-size: 20px 20px;
}

.tm-input:hover {
    background-color: rgba(0, 123, 255, 0.1);
}

.rn-input:hover, .hs-input:hover, .rn-input:focus, .hs-input:focus, .rn-input:active, .hs-input:active {
    border: 1px solid var(--accent-color-1);
}

.tm-input::-webkit-input-placeholder, .hs-input::-webkit-input-placeholder {
    color: rgba(51, 51, 51, 0.6);
}

.tm-input:-ms-input-placeholder, .hs-input:-ms-input-placeholder {
    color: rgba(51, 51, 51, 0.6);
}

.tm-input::placeholder, .hs-input::placeholder {
    color: rgba(51, 51, 51, 0.6);
}

.form__success .tm-input, .form__success .hs-input {
    border-color: var(--success);
}

.form__error .tm-input, .form__error .hs-input {
    border-color: var(--error);
}

input.hs-button {
    appearance: none;
    background: var(--secondary-color);
    border: none;
    border-radius: var(--button-radius);
    color: var(--white);
    font-weight: var(--weight-semi);
    outline: none;
    padding: 23px 40px;
    transition: background-color .2s ease-in-out;
}

input.hs-button:hover {
    background-color: var(--accent-color-1);
    border-color: var(--accent-color-1);
}

input.hs-button:active {
    background-color: var(--secondary-color);
}
    .label, label, .hsfc-FieldLabel {
    color: var(--base-text-color);
    font-family: var(--base-font-family);
    font-size: var(--small-body-size);
    position: absolute;
    top: -20px;
    left: 10px;
    background: white;
    padding: 10px 10px 0;
}

.hsfc-CheckboxField .hsfc-FieldLabel {
    left: 0;
    padding: 0 !important;
}

label .hs-form-required {
    color: var(--primary-color);
}
    .radio {
    display: flex;
    gap: 10px;
}

.radio__input {
    accent-color: var(--outline);
    cursor: pointer;
    flex-shrink: 0;
    height: 24px;
    width: 24px;
}

.radio__label {
    cursor: pointer;
}
    .search {
  display: flex;
  width: calc(100% - 48px);
  max-width: 100%;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--dusty-teal);
  border-radius: 2.5rem;
  margin: 28px 24px;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

.search--dark {
    background: var(--secondary-color);
    border: 1px solid var(--accent-color-2);
}

.search__input {
  flex: 1 1 auto;
  border: none;
  background: transparent;
  color: var(--secondary-color, #11343A);
  font-size: var(--base-font-size);
  padding: 14px 15px 14px 54px;
  outline: none;
  border-radius: 2.5rem 0 0 2.5rem;
  min-width: 0;
}

.search--dark .search__input {
    color: var(--iron);
    padding: 10px 15px 10px 54px;
}

.search--dark .search__input::placeholder {
    color: var(--iron);
}

.search__icon--input {
  position: absolute;
  left: 22px;
  top: 18px;
}

.search__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  border: none;
  border-radius: 50%;
  min-width: 56px;
  width: 56px;
  height: 56px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  z-index: 1;
}

.search--dark .search__btn {
    background: var(--accent-color-1-darker);
    height: 50px;
    min-width: 50px;
    width: 50px;
}


.search__btn:focus,
.search__btn:hover {
  background: var(--accent-color-1, #2CA39F);
  border: none;
}

/* Search Input Styles */

.hs-editor-hide-until-active {
  display: none;
}

.inpage-editor-active-field .hs-editor-hide-until-active {
  display: block;
}

.hs-search-field__input {
  box-sizing: border-box;
  width: 100%;
  flex: 1;
}

.hs-search-field__bar button svg {
  height: 10px;
}

.hs-search-field__suggestions {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hs-search-field--open .hs-search-field__suggestions,
.inpage-editor-active-field .hs-search-field__suggestions {
  background-color: var(--white);
  border: none;
  border-radius: 16px;
  box-shadow: var(--card-box-shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  position: absolute;
  top: 2px;
  width: 100%;
  z-index: 9;
}

.hs-search-field__suggestions li {
  display: block;
  padding: 0;
  margin: 0;
}

.hs-search-field__suggestions .results-for {
  color: var(--accent-color-1);
  margin-bottom: 16px;
}

.hs-search-field__suggestions a,
.hs-search-field__suggestions .results-for {
  display: block;
  padding: 0 10px;
  line-height: 1.7rem;
}

.hs-search-field__suggestions a:hover,
.hs-search-field__suggestions a:focus {
  background-color: transparent;
  color: var(--accent-color-2);
  outline: none;
}

.hs-search-field__input:focus {
  outline-style: none !important;
}

.hs-search-field__suggestions-container {
  position: relative;
  flex-basis: 100%;
}

.hs-search-field__form {
  display: flex;
  flex-wrap: wrap;
}

.hs-search-field__label {
  flex-basis: 100%;
}

.hs-search-field__bar--button-beneath .hs-search-field__input {
  flex-basis: 100%;
}

.hs-search-field__bar--button-beneath .hs-search-field__button {
  margin-top: 0.725rem;
  margin-right: 0.725rem;
}

.hs-search-field__bar--button-align-right .hs-search-field__button {
  margin-right: 0;
  margin-left: 0.725rem;
  order: 2;
}

.hs-search-field__bar--button-beneath .hs-search-field__suggestions-container {
  min-width: 75%;
  flex-basis: auto;
  flex-grow: 1;
}

.hs-search-field__button--labelled .hs_cos_wrapper_type_icon {
  margin-right: 0.5rem;
}

@media (max-width: 992px) {
    .search--dark {
        margin: 0;
        width: 100%;
    }
}
    .select {
    appearance: none;
    background-color: var(--white);
    background-image: url(//1787045.fs1.hubspotusercontent-eu1.net/hubfs/1787045/raw_assets/public/trustmarque-theme/images/interface/triangle-down.svg);
    background-position: calc(100% - 15px) 50%;
    background-repeat: no-repeat;
    background-size: 20px 20px;
    border-radius: 2px;
    color: var(--base-text-color);  /
    font-family: var(--base-font-family);
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);
    padding: 10px 50px 10px 10px;
    transition: background var(--speed) ease;
}

.select::-ms-expand {
    display: none;
}
    .search {
  display: flex;
  width: calc(100% - 48px);
  max-width: 100%;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--dusty-teal);
  border-radius: 2.5rem;
  margin: 28px 24px;
  padding: 0;
  box-sizing: border-box;
  position: relative;
}

.search--dark {
    background: var(--secondary-color);
    border: 1px solid var(--accent-color-2);
}

.search__input {
  flex: 1 1 auto;
  border: none;
  background: transparent;
  color: var(--secondary-color, #11343A);
  font-size: var(--base-font-size);
  padding: 14px 15px 14px 54px;
  outline: none;
  border-radius: 2.5rem 0 0 2.5rem;
  min-width: 0;
}

.search--dark .search__input {
    color: var(--iron);
    padding: 10px 15px 10px 54px;
}

.search--dark .search__input::placeholder {
    color: var(--iron);
}

.search__icon--input {
  position: absolute;
  left: 22px;
  top: 18px;
}

.search__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--secondary-color);
  border: none;
  border-radius: 50%;
  min-width: 56px;
  width: 56px;
  height: 56px;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  z-index: 1;
}

.search--dark .search__btn {
    background: var(--accent-color-1-darker);
    height: 50px;
    min-width: 50px;
    width: 50px;
}


.search__btn:focus,
.search__btn:hover {
  background: var(--accent-color-1, #2CA39F);
  border: none;
}

/* Search Input Styles */

.hs-editor-hide-until-active {
  display: none;
}

.inpage-editor-active-field .hs-editor-hide-until-active {
  display: block;
}

.hs-search-field__input {
  box-sizing: border-box;
  width: 100%;
  flex: 1;
}

.hs-search-field__bar button svg {
  height: 10px;
}

.hs-search-field__suggestions {
  padding: 0;
  margin: 0;
  list-style: none;
}

.hs-search-field--open .hs-search-field__suggestions,
.inpage-editor-active-field .hs-search-field__suggestions {
  background-color: var(--white);
  border: none;
  border-radius: 16px;
  box-shadow: var(--card-box-shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
  position: absolute;
  top: 2px;
  width: 100%;
  z-index: 9;
}

.hs-search-field__suggestions li {
  display: block;
  padding: 0;
  margin: 0;
}

.hs-search-field__suggestions .results-for {
  color: var(--accent-color-1);
  margin-bottom: 16px;
}

.hs-search-field__suggestions a,
.hs-search-field__suggestions .results-for {
  display: block;
  padding: 0 10px;
  line-height: 1.7rem;
}

.hs-search-field__suggestions a:hover,
.hs-search-field__suggestions a:focus {
  background-color: transparent;
  color: var(--accent-color-2);
  outline: none;
}

.hs-search-field__input:focus {
  outline-style: none !important;
}

.hs-search-field__suggestions-container {
  position: relative;
  flex-basis: 100%;
}

.hs-search-field__form {
  display: flex;
  flex-wrap: wrap;
}

.hs-search-field__label {
  flex-basis: 100%;
}

.hs-search-field__bar--button-beneath .hs-search-field__input {
  flex-basis: 100%;
}

.hs-search-field__bar--button-beneath .hs-search-field__button {
  margin-top: 0.725rem;
  margin-right: 0.725rem;
}

.hs-search-field__bar--button-align-right .hs-search-field__button {
  margin-right: 0;
  margin-left: 0.725rem;
  order: 2;
}

.hs-search-field__bar--button-beneath .hs-search-field__suggestions-container {
  min-width: 75%;
  flex-basis: auto;
  flex-grow: 1;
}

.hs-search-field__button--labelled .hs_cos_wrapper_type_icon {
  margin-right: 0.5rem;
}

@media (max-width: 992px) {
    .search--dark {
        margin: 0;
        width: 100%;
    }
}
    .textarea {
    appearance: none;
    background: var(--white);
    border: 2px solid var(--black);
    border-radius: var(--input-border-radius);
    color: var(--base-text-color);
    display: block;
    font-family: var(--base-font-family);
    font-size: var(--base-font-size);
    line-height: var(--base-line-height);
    min-height: 100px;
    padding: 10px;
    resize: vertical;
    transition: border-color var(--speed) ease;
    width: 100%;
}

.textarea::-webkit-input-placeholder {
    color: rgba(51, 51, 51, 0.6);
}

.textarea:-ms-input-placeholder {
    color: rgba(51, 51, 51, 0.6);
}

.textarea::placeholder {
    color: rgba(51, 51, 51, 0.6);
}

.textarea:active,
.textarea:focus {
    border-color: var(--black);
    box-shadow: none;
    outline: none;
}

.form__success .textarea {
    border-bottom-color: var(--success);
}

.form__error .textarea {
    border-bottom-color: var(--error);
}
    .toggle {
    --border-radius: 23px;
    display: inline-block;
    position: relative;
}

.toggle__input {
    opacity: 0;
    position: absolute;
}

.toggle__input:hover + .toggle__label::after {
    box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.2);
}

.toggle__input[disabled] + .toggle__label {
    filter: grayscale(1);
    opacity: 0.7;
    pointer-events: none;
}

.toggle__input:checked + .toggle__label::before {
    background: var(--outline);
    opacity: 1;
}

.toggle__input:checked + .toggle__label::after {
    transform: translateX(0);
}

.toggle__label {
    align-items: center;
    color: var(--base-text-color);
    cursor: pointer;
    display: flex;
    font-size: var(--base-font-size);
    height: 32px;
    padding-right: calc(51px + 10px);
    position: relative;
    user-select: none;
}

.toggle__label::before {
    background: var(--outline);
    border-radius: var(--border-radius);
    content: '';
    height: 32px;
    opacity: 0.1;
    position: absolute;
    right: 0;
    top: 0;
    transition: opacity var(--speed);
    width: 51px;
}

.toggle__label::after {
    background: var(--white);
    border-radius: 50%;
    content: '';
    height: 26px;
    position: absolute;
    right:  calc((32px - 26px) / 2);
    top:  calc((32px - 26px) / 2);
    transform: translateX(-18px);
    transition: box-shadow var(--speed), transform var(--speed);
    width: 26px;
}