/* Theme base styles */

/* 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
*/

/* Generic
  This is where reset, normalize & box-sizing styles go.
*/








/* ========================================================================== */
/*  1. LAYOUT                                                #layout          */
/* ========================================================================== */
:root {
  --container-width: 1280px;

  /* Spacing */
  --spacing-0x: 0px;
  --spacing-05x: 0px;
  --spacing-1x: 0px;
  --spacing-2x: 4px;
  --spacing-3x: 8px;
  --spacing-4x: 12px;
  --spacing-5x: 16px;
  --spacing-6x: 20px;
  --spacing-8x: 24px;
  --spacing-10x: 32px;
  --spacing-12x: 32px;
  --spacing-14x: 32px;
  --spacing-16x: 32px;
  --spacing-18x: 32px;
  --spacing-20x: 32px;
  --spacing-24x: 32px;
  --spacing-30x: 32px;

  /* Dnd Spacing */
  --container-padding: 20px;
  --dnd-row-gap: var(--spacing-8x);
  --first-section-padding-top: 32px; 
  --dnd-section-bottom-margin: var(--spacing-20x); 
  --dnd-section-bg-padding: var(--spacing-20x); 
  
  /* Misc */
  --scroll-margin-top: 90px;
}

@media (min-width: 640px) {
  :root {
    /* Dnd Spacing */
    --first-section-padding-top: 64px;
    --dnd-section-bottom-margin: 80px;
    --dnd-section-bg-padding: 80px; 
    
    /* Misc */
    --scroll-margin-top: 120px;
  }
}

@media (min-width: 820px) {
  :root {
    /* Spacing */
    --spacing-05x: 2px;
    --spacing-1x: 4px;
    --spacing-2x: 8px;
    --spacing-3x: 12px;
    --spacing-4x: 16px;
    --spacing-5x: 20px;
    --spacing-6x: 24px;
    --spacing-8x: 32px;
    --spacing-10x: 40px;
    --spacing-12x: 48px;
    --spacing-14x: 56px;
    --spacing-16x: 64px;
    --spacing-18x: 72px;
    --spacing-20x: 80px;
    --spacing-24x: 96px;
    --spacing-30x: 120px;

    /* Dnd Spacing */
    --dnd-row-gap: var(--spacing-14x);
  }
}

@media (min-width: 1024px) {
  :root {
    /* Dnd Spacing */
    --first-section-padding-top: 90px;
    --dnd-section-bottom-margin: 120px;
    
    /* Misc */
    --scroll-margin-top: 160px;
  }
}

/* ========================================================================== */
/*  2. COLORS                                                #clrs            */
/* ========================================================================== */     

:root,
:host {
  /*** Import color properties from figma ***/
  --primary-base:     #5d2bff;
  --primary-50:       #F6F3FF;
  --primary-100:      #DFD5FF;
  --primary-400:      #784eff;
  --primary-600:      #4e24d5;
  --secondary-base:   #ff2b63;
  --secondary-50:     #FF4E7D;
  --secondary-400:    #ff4e7d;
  --secondary-600:    #d42453;
  --gray-base:        #f2f5ff;
  --gray-200:         #DFE5F5;
  --gray-300:         #CACCD5;
  --gray-400:         #A8AAB2;
  --black-base:       #111111;
  --black-600:        #313131;
  --black-100:        #D1D1D1;
  --black-400:        #606060; 
  --white:            #ffffff;
  --background-gray:  #f9faff;

  /*** Temporary ***/
  --primary-900: #1f0e55;
  --primary-950: #130933;
  
  /*** Components ***/
  --text-base:      var(--black-base);
  --text-light:     var(--black-400);
  --text-white:     var(--white);
  --text-muted:     var(--black-600);
  --border-light:   var(--gray-200);

  /*** HubSpot Colors ***/
  --hs-orange: #FEA58E;
  --hs-accent: #CBD6E2;
  --hs-text: #33475B;
  --hs-placeholder: #E4EAF0;
  --hs-gray: #F5F8FA;
  --hs-table-border: #EAF0F6;
}

/* ========================================================================== */
/*  3. TYPOGRAPHY                                            #typo            */
/*=========================================================================== */


:root {
  /* ========================================================================== */
  /*  base                                                                      */
  --body-font: 'Roobert', sans-serif;
  --heading-font: 'Roobert', sans-serif;
  /* --body-font: 'Roobert Trial', sans-serif;
  --heading-font: 'Roobert Trial', sans-serif; */

  /* ========================================================================== */
  /*  Font Sizing                                                               */
  --rem-base-px: 18px;
  --base-line-height: 1.4;

  /* update multiplier to change responsive sizing, unless design has specific sizing */
  --text-multiplier:      .7;
  --h1-font-size:         calc(3.5556rem * var(--text-multiplier, 1));
  --h2-font-size:         calc(3rem * var(--text-multiplier, 1));
  --h3-font-size:         calc(2.5rem * var(--text-multiplier, 1));
  --h4-font-size:         calc(2.0556rem * var(--text-multiplier, 1));
  --h5-font-size:         calc(1.7222rem * var(--text-multiplier, 1));
  --h6-font-size:         calc(1.4444rem * var(--text-multiplier, 1));
  --preheader-font-size:  16.0002px;
  --text-font-size:       1rem;
  --text-sm:              0.8333rem;
  --text-xs:              0.6667rem;
  --text-lg:              1.1111rem;


  /* ========================================================================== */
  /*  Line Heights                                                              */
  --h1-line-height:         1.2;
  --h2-line-height:         1.2;
  --h3-line-height:         1.2;
  --h4-line-height:         1.2;
  --h5-line-height:         1.2;
  --h6-line-height:         1.2;
  --preheader-line-height:  1.4;
  --text-line-height:       1.4;
  --text-sm-line-height:    1.2;
}

/*** Tablet Multiplier ***/
@media (min-width: 640px) {
  :root {
    --text-multiplier:      1;

    /* Typography if no multiplier is used for responsive */
    /* --h1-font-size:         4.5rem;
    --h2-font-size:         3rem;
    --h3-font-size:         2rem;
    --h4-font-size:         1.5rem;
    --h5-font-size:         1.25rem;
    --h6-font-size:         1.125rem;
    --preheader-font-size:  0.8889rem; */
  }
}

/*** Destktop Multiplier ***/
@media (min-width: 1050px) {
  :root {
    --text-multiplier:      1;

    /* Typography if no multiplier is used for responsive */
    /* --h1-font-size:         4.5rem;
    --h2-font-size:         3rem;
    --h3-font-size:         2rem;
    --h4-font-size:         1.5rem;
    --h5-font-size:         1.25rem;
    --h6-font-size:         1.125rem;
    --preheader-font-size:  0.8889rem; */
  }
}


/* ========================================================================== */
/*  4. Global Styles                                              #styles            */
/*=========================================================================== */

:root {
  /* General */
  --radius-sm: 4px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 150px;
  --box-shadow-primary: 0px 4px 14px 0px rgba(93, 43, 255, 0.12);
  --box-shadow-gray: 0px 4px 14px rgba(17, 17, 17, 0.07);
  --box-shadow-black: 0px 4px 14px rgba(0, 0, 0, 0.07);
  --transition: all 200ms ease-in-out;
}

/* ========================================================================== */
/*  5. FORMS                                                #form             */
/* ========================================================================== */  

:root,
.form :before,
form :before,
.form :after,
form :after {
  --form-text-color:        var(--text-base);
  --form-placeholder-color: var(--text-light);
  --form-active-color:      var(--primary-base);
  --form-error-color:       var(--secondary-400);
  --form-border-color:      var(--gray-300);
  --form-radius:            var(--radius-md);

  /* ========================================================================== */
  /*  Labels                                                                    */
  --legend-font-size:   0.9375rem;

  --label-font-family:  var(--body-font);
  --label-font-size:    var(--text-sm);
  --label-font-weight:  650;
  --label-line-height:  1;
  --label-color:        var(--form-text-color);
  --label-margin-b:     var(--spacing-2x);

  --label-error-font-size:          var(--text-xs);
  --label-error-font-weight:        400;
  --label-error-line-height:        1;
  --label-error-color:              var(--form-error-color);
  --label-error-image:              none;


  /* ========================================================================== */
  /*  Text Input                                                                */
  --input-font-size:                0.7778rem;
  --input-font-weight:              400;
  --input-line-height:              1;
  --input-color-text:               var(--form-text-color);
  --input-color-text-placeholder:   var(--form-placeholder-color);
  --input-color-required:           var(--form-error-color);
  --input-color-bg:                 var(--surface-white);
  --input-border:                   1px solid var(--form-border-color);
  --input-border-radius:            var(--form-radius);
  --input-padding:                  var(--spacing-4x);
  --input-spacing-y:                var(--spacing-4x);
  --input-transition:               var(--transition);
  --input-color-outline:            none;

  /* States */
  --input-error-color-border:       var(--form-error-color);
  --input-error-color-outline:      none;
  --input-focus-color-border:       var(--form-active-color);
  --input-disabled-color-text:      var();
  --input-disabled-color-border:    var();
  --input-disabled-color-bg:        var();

  --textarea-height:                139px; 

  /* ========================================================================== */
  /*  Checkbox                                                                  */
  --checkbox-font-family:       var(--body-font);
  --checkbox-font-size:         var(--text-sm);
  --checkbox-font-weight:       400;
  --checkbox-line-height:       normal;
  --checkbox-color-text:        var(form-text-color);
  --checkbox-dimensions:        20px;
  --checkbox-image-dimensions:  18px;
  --checkbox-border:            1px solid var(--form-text-color);
  --checkbox-border-radius:     var(--radius-xl);
  --checkbox-color-bg:          var(--surface-white);

  /* States */
  --checkbox-hover-image:                 url('https://pixllabs.io/hubfs/assets/icons/form-checkmark-white-18x18.svg');
  --checkbox-hover-color-border:          var(--form-active-color);
  --checkbox-checked-image:               var(--checkbox-hover-image);
  --checkbox-checked-color-bg:            var(--form-active-color);
  --checkbox-checked-color-border:        var(--form-active-color);
  --checkbox-checked-hover-color-bg:      var(--form-active-color);
  --checkbox-checked-hover-color-border:  var(--form-active-color); 
  --checkbox-error-color-border:          var(--form-error-color);
  /* --checkbox-disabled-color-text:         var();
  --checkbox-disabled-color-bg:           var();
  --checkbox-disabled-color-border:       var();
  --checkbox-disabled-checked-image:      var(--checkbox-hover-image);
  --checkbox-disabled-checked-color-bg:   var(); */
  
  
  /* ========================================================================== */
  /*  Radio                                                                     */
  --radio-font-family:        var(--body-font);
  --radio-font-size:          var(--checkbox-font-size);
  --radio-font-weight:        var(--checkbox-font-weight);
  --radio-color-text:         var(--checkbox-color-text);
  --radio-line-height:        var(--checkbox-line-height);
  --radio-dimensions:         20px;
  --radio-inner-dimensions:   14px;
  --radio-color-bg:           var(--surface-white);
  --radio-border:             1px solid var(--form-text-color);
  --radio-border-radius:      var(--radius-xl);

  /* States */
  --radio-hover-color-inner:              var(--surface-white);
  --radio-hover-border:                   1px solid var(--form-active-color);
  --radio-checked-color-inner:            var(--form-active-color);
  --radio-checked-color-bg:               var(--surface-white);
  --radio-checked-color-border:           1px solid var(--form-active-color);
  --radio-checked-hover-color-border:     1px solid var(--form-active-color);
  --radio-error-color-border:             var(--form-error-color);
  /* --radio-disabled-color-text:            var();
  --radio-disabled-color-bg:              var();
  --radio-disabled-color-border:          1px solid var();
  --radio-disabled-color-inner:           var();
  --radio-disabled-checked-color-bg:      var();
  --radio-disabled-checked-color-border:  1px solid var();
  --radio-disabled-checked-color-inner:   var(); */

  /* ========================================================================== */
  /*  Select                                                                    */
  --select-icon:          url('https://pixllabs.io/hubfs/assets/icons/select-chevron.svg');

  /* ========================================================================== */
  /*  datepicker                                                                */
  /* --date-input-icon:                    url();
  --date-input-icon-height:             24px;
  --date-input-icon-width:              20px;
  --date-input-margin-right:            20px; match this to x-padding on input fields */

  /* --date-picker-font:                   var(--body-font);
  --date-picker-color:                  var();
  --date-picker-border:                 none;
  --date-picker-border-radius:          var(--radius-md); */

  /* --date-picker-number-hover-color:     var();
  --date-picker-number-hover-bg:        var();
  --date-picker-number-today-color:     var();
  --date-picker-number-selected-color:  var();
  --date-picker-number-selected-bg:     var(); */
}

/* ========================================================================== */
/*  Form Color Variants                                                       */
/* .form--style-light form, .form--style-light form :before, .form--style-light form :after {
  --input-color-bg:     var();
  --checkbox-color-bg:  transparent;
  --radio-color-bg:     transparent;
}

.form--style-dark form, .form--style-dark form :before, .form--style-dark form :after {
  --label-color:                    var();
  --label-error-color:              var();
  --label-error-image:              url();

  --input-color-text:               var();
  --input-color-text-placeholder:   var();
  --input-color-required:           var();
  --input-color-bg:                 transparent;
  --input-color-outline:            rgb();
  --input-border:                   1px solid var();
  --input-disabled-color-text:      var();
  --input-disabled-color-border:    var();
  --input-disabled-color-bg:        var();
  --input-error-color-border:       var();
  --input-error-color-outline:      0px 0px 0px 3px rgba(222, 28, 34, 0.70);

  --checkbox-color-text:                  var();
  --checkbox-border:                      1px solid var();
  --checkbox-color-bg:                    var();
  --checkbox-hover-color-border:          var();
  --checkbox-checked-image:               url();
  --checkbox-checked-color-bg:            var();
  --checkbox-checked-color-border:        var();
  --checkbox-checked-hover-color-bg:      var();
  --checkbox-checked-hover-color-border:  var();
  --checkbox-disabled-color-text:         var();
  --checkbox-disabled-color-bg:           var();
  --checkbox-disabled-color-border:       var();
  --checkbox-disabled-checked-image:      url();
  --checkbox-disabled-checked-color-bg:   var();

  --radio-color-bg:                       var();
  --radio-border:                         1px solid var();
  --radio-hover-color-inner:              var();
  --radio-hover-border:                   1px solid var();
  --radio-checked-color-inner:            var();
  --radio-checked-color-bg:               var();
  --radio-checked-color-border:           2px solid var();
  --radio-checked-hover-color-border:     2px solid var();
  --radio-disabled-color-text:            var();
  --radio-disabled-color-bg:              var();
  --radio-disabled-color-border:          1px solid var();
  --radio-disabled-color-inner:           var();
  --radio-disabled-checked-color-bg:      var();
  --radio-disabled-checked-color-border:  2px solid var();
  --radio-disabled-checked-color-inner:   var();
} */
*, *:before, *:after {
  box-sizing: border-box;
}
/*! 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.67em 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: bold;
}

/**
 * 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;
}

/* Objects
  Non-cosmetic design patterns including grid and layout classes)
*/



/* CSS variables */
:root {
  --column-gap: 0%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */
.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  gap: var(--dnd-row-gap);
}


  .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: 820px) {
  .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));
    }
  
}
/* container */
.dnd-section {
  overflow-x: clip;
  margin: 0 0 var(--dnd-section-bottom-margin);
}

.content-wrapper,
.dnd-section > .row-fluid {
  margin: 0 auto;
  padding: 0 var(--container-padding);
  max-width: calc(var(--container-width) + (var(--container-padding) * 2));
}

.body-wrapper {
  width: 100%;
}

.dnd-section .dnd-column,
.dnd-section .content-wrapper,
.dnd-section[class*="body_dnd_area-row"] {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

.dnd-section > .row-fluid:has(.module-wrapper--full-width) {
  max-width: 100%;
  padding-inline: 0;
}

/* set custom padding for fixed header */
.dnd-section:has([class*="section-background"]) {
  padding-block: var(--dnd-section-bg-padding);
}

.dnd-section:first-child {
  padding-top: var(--first-section-padding-top);
}

/* .dnd-section:last-child {
  margin-bottom: var(--spacing-8x);
} */

.dnd-section:last-child:has([class*="section-background"]) {
  margin-bottom: 0;
}

@media (max-width: 820px) {
  /* .dnd-section .row-fluid > .dnd-column:has(+ .dnd-column) {
    margin-bottom: var(--dnd-section-bottom-margin);
  } */

  .dnd-column:has(.hs-horizontal-spacer) {
    margin-bottom: 0 !important;
  }
}


@media (min-width: 640px) {
  .dnd-section[class*="force-full-width-section"] .dnd-column {
    padding: 0;
  }
}

/* Elements
  Base HMTL elements are styled in this section (<body>, <h1>, <a>, <p>, <button> etc.)
*/

.module-wrapper {
  display: flex;
  max-width: 100%;
}

.module-wrapper--center {
  margin: 0 auto;
}

.module-wrapper--right {
  margin: 0;
}

.module-wrapper > div {
  width: 100%;
}

.module-wrapper--col {
  flex-direction: column;
}

@media (min-width: 1050px) {
  .module-wrapper--right {
    margin: 0 0 0 auto;
  }
}

.icon-wrapper {
  display: block;
  height: fit-content;
  width: fit-content;
}

.icon-wrapper svg {
  display: block;
}
@font-face {
  font-family: 'Roobert';
  font-weight:  400;
  font-style: normal;
  src: url('https://8119038.fs1.hubspotusercontent-na1.net/hubfs/8119038/font-family/Roobert-Regular.woff2') format('woff2'),
       url('https://8119038.fs1.hubspotusercontent-na1.net/hubfs/8119038/font-family/Roobert-Regular.woff') format('woff'),
} 

@font-face {
  font-family: 'Roobert';
  font-weight:  400;
  font-style: italic;
  src: url('https://8119038.fs1.hubspotusercontent-na1.net/hubfs/8119038/font-family/Roobert-RegularItalic.woff') format('woff'),
       url('https://8119038.fs1.hubspotusercontent-na1.net/hubfs/8119038/font-family/Roobert-RegularItalic.woff2') format('woff2'),
} 

@font-face {
  font-family: 'Roobert';
  font-weight:  650;
  font-style: normal;
  src: url('https://8119038.fs1.hubspotusercontent-na1.net/hubfs/8119038/font-family/Roobert-SemiBold.woff2') format('woff2'),
       url('https://8119038.fs1.hubspotusercontent-na1.net/hubfs/8119038/font-family/Roobert-SemiBold.woff2') format('woff2'),
} 

@font-face {
  font-family: 'Roobert';
  font-weight:  650;
  font-style: italic;
  src: url('https://8119038.fs1.hubspotusercontent-na1.net/hubfs/8119038/font-family/Roobert-SemiBoldItalic.woff') format('woff'),
       url('https://8119038.fs1.hubspotusercontent-na1.net/hubfs/8119038/font-family/Roobert-SemiBoldItalic.woff2') format('woff2'),
}

html {
  font-family: var(--body-font);
  font-size: var(--rem-base-px);
  font-weight: 400;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  color: var(--text-base);
  line-height: var(--base-line-height);
  overflow-wrap: break-word;
}

/* Headings */
h1, h2, h3, h4, h5, h6,
.heading-display-1,
.heading-display-2,
.heading-display-3,
.heading-display-4,
.heading-display-5,
.heading-display-6 {
  font-family: var(--heading-font);
  font-size: var(--font-size);
  font-weight: 650;
  text-wrap: balance;
  letter-spacing: calc((var(--font-size) / -100) * 4);
  margin: 0;
}

h1, .heading-display-1 {
  --font-size: var(--h1-font-size);
  line-height: var(--h1-line-height);
}

h2, .heading-display-2 {
  --font-size: var(--h2-font-size);
  line-height: var(--h2-line-height);
}

h3, .heading-display-3 {
  --font-size: var(--h3-font-size);
  line-height: var(--h3-line-height);
}

h4, .heading-display-4 {
  --font-size: var(--h4-font-size);
  line-height: var(--h4-line-height);
}

h5, .heading-display-5 {
  --font-size: var(--h5-font-size);
  line-height: var(--h5-line-height);
}

h6, .heading-display-6 {
  --font-size: var(--h6-font-size);
  line-height: var(--h6-line-height);
}

/* Paragraphs */
p {
  font-size: var(--rem-base-px);
  line-height: var(--text-line-height);
  margin: 0;
}

.text-sm {
  font-size: var(--text-sm);
  line-height: var(--text-sm-line-height);
}

.text-xs {
  font-size: var(--text-xs);
  line-height: var(--text-sm-line-height);
}

/* Anchors */
a {
  cursor: pointer;
  font-size: var(--rem-base-px);
  color: var(--primary-base);
  text-decoration: underline;
  text-underline-position: from-font;
  text-decoration-thickness: 1px;
  text-decoration-color: transparent;
  transition: var(--transition);
}

:where(h1, h2, h3, h4, h5, h6, p, span, li) a {
  font-size: inherit;
}

@media (hover: hover) {
  a:hover {
    color: var(--primary-600);
    text-decoration-color: var(--primary-600);
  }
}

/* Preheaders */
.preheader {
  display: block;
  font-size: var(--preheader-font-size);
  font-weight: 650;
  line-height: var(--preheader-line-height);
  text-transform: uppercase;
  color: var(--primary-base);
  letter-spacing: -0.56px;
}

/* Lists */
ul {
  list-style-type: none;
}

ul, ol {
  margin: 0 0 24px;
  padding: 0;
  text-align: start;
}

:is(ul, ol, li) :is(ul, ol) {
  margin: 0;
  padding: 0;
}

li :is(ul, ol) {
  margin-top: 8px;
}

li {
  --font-size: var(--rem-base-px);
  --line-height: 1.4;
  position: relative;
  font-size: var(--font-size);
  font-weight: 400;
  line-height: var(--line-height);
  margin-bottom: var(--spacing-3x);
  padding-left: 28px;
}

li:last-child {
  margin-bottom: 0;
}

li:before {
  content: url('https://pixllabs.io/hubfs/icon-checkmark.svg');
  position: absolute;
  inset: 2px auto auto 0;
  height: 9px;
  width: 12px;
}

/*** Blog List Items ***/
:is(.header, .footer, .post-body, .pillar-page-body, .hs-dropdown, form, .form) li {
  position: static;
  padding: 0;

  &:before {
    display: none;
  }
}

.header li {
  margin: 0;
}

.post-body ul {
  list-style-type: disc;
}

.post-body ul > li {
  margin-left: 20px;
}
 
/*** List Reset ***/
ul.list-reset {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

ul.list-reset li {
  margin: 0;
  padding: 0;
}

ul.list-reset li:before {
  display: none;
}

ol {
  list-style: none;
  counter-reset: orderedlist;
}

ol > li {
  position: relative;
  padding-left: 20px;
}

ol > li:before {
  counter-increment: orderedlist;
  content: counter(orderedlist) '.';
  position: absolute;
  inset: 0 auto auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--body-font);
  height: fit-content;
  width: fit-content;
}

@media (min-width: 799px) {
  .post-body ul > li {
    margin-left: 22px;
  }
  
  ul > li::marker {
    font-size: 18px;
    line-height: calc(var(--font-size) * var(--line-height))
  }

  ol > li {
    padding-left: 22px;
  }

  ol > li:before {
    font-size: inherit;
  }
}

/* Code blocks */
pre {
  overflow: auto;
  margin: 0;
}

code {
  vertical-align: bottom;
}

/* Horizontal rules */
hr {
  border: none;
  border-bottom: 1px solid #CCC;
}

/* Image alt text */
img {
  font-size: 0.583rem;
  word-break: normal;
}

/* ========================================================================== */
/*  RICH TEXT STYLING                                                         */
.custom-text-wrapper,
.custom-text-wrapper__rich-text {
  display: flex;
  flex-direction: column;
}

:is(.hs_cos_wrapper_type_rich_text, .custom-text-wrapper, .custom-text-wrapper__rich-text) :is(h1, h2, h3, h4, h5, h6):has(+ *) {
  text-wrap: wrap;
  margin-bottom: var(--spacing-4x);
}

:is(.hs_cos_wrapper_type_rich_text, .custom-text-wrapper, .custom-text-wrapper__rich-text) :is(.preheader, p):has(+ *) {
  text-wrap: wrap;
  margin-bottom: var(--spacing-6x);
}


/* :is(.hs_cos_wrapper_type_rich_text, .custom-text-wrapper, .custom-text-wrapper__rich-text) *:last-child {
  margin-bottom: 0;
} */

/* ========================================================================== */
/*  Blog Typography                                                           */
:is(.post-body__content-wrapper, .pillar-page-body) h2 {
  --font-size: var(--h3-font-size);
}

:is(.post-body__content-wrapper, .pillar-page-body) h3 {
  --font-size: var(--h4-font-size);
}

:is(.post-body__content-wrapper, .pillar-page-body) h4 {
  --font-size: var(--h5-font-size);
}

:is(.post-body__content-wrapper, .pillar-page-body) h5 {
  --font-size: var(--h6-font-size);
}

:is(.post-body__content-wrapper, .pillar-page-body) h6 {
  --font-size: var(--text-lg);
}

:is(.post-body__content-wrapper, .pillar-page-body) :is(h2, h3, h4, h5, h6) {
  margin-block: var(--spacing-10x) var(--spacing-5x);
}

:is(.post-body__content-wrapper, .pillar-page-body) #section-0 h2 {
  margin-top: 0;
}

:is(.post-body__content-wrapper, .pillar-page-body) :is(p, li) {
  font-size: 1.1111rem;
}

:is(.post-body__content-wrapper, .pillar-page-body) p:has(+ *) {
  margin-bottom: var(--spacing-5x);
}

:is(.post-body__content-wrapper, .pillar-page-body) hr {
  font-size: 0;
}

/*** List Items -- Blog ***/
:is(.post-body__content-wrapper, .pillar-page-body) ul {
  list-style: inherit;
  margin: 0 0 var(--spacing-10x) 7px;
}

:is(.post-body__content-wrapper, .pillar-page-body) ul li {
  margin: 0 0 var(--spacing-3x) var(--spacing-3x);
}

:is(.post-body__content-wrapper, .pillar-page-body) ul li:before {
  display: none;
}

:is(.post-body__content-wrapper, .pillar-page-body) ul li::marker {
  color: var(--primary-base);
}

:is(.post-body__content-wrapper, .pillar-page-body) ol {
  list-style: none;
  counter-reset: orderedlist;
}

:is(.post-body__content-wrapper, .pillar-page-body) ol > li {
  position: relative;
  padding-left: 22px;
}

:is(.post-body__content-wrapper, .pillar-page-body) ol > li:before {
  counter-increment: orderedlist;
  content: counter(orderedlist) '.';
  position: absolute;
  inset: 0 auto auto 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--body-font);
  height: fit-content;
  width: fit-content;
}

/*** Figure/Img/Figcaption ***/
:is(.post-body__content-wrapper, .pillar-page-body) img {
  display: block;
}

:is(.post-body__content-wrapper, .pillar-page-body) 
  :is(img, figure, .hs_cos_wrapper_type_module:has(> img)) {
    margin-block: var(--spacing-8x);
}

:is(.post-body__content-wrapper, .pillar-page-body) :is(.hs_cos_wrapper_type_module > img, .hs_cos_wrapper_type_module > figure, figure > img) {
  margin: 0;
}

:is(.post-body__content-wrapper, .pillar-page-body) .hs_cos_wrapper_type_module > figure {
  margin-block: var(--spacing-8x);
}

:is(.post-body__content-wrapper, .pillar-page-body) figcaption {
  font-size: var(--text-sm);
  color: var(--text-light);
  margin-top: var(--spacing-3x);
}

@media (max-width: 640px) {
  :is(.post-body__content-wrapper,.pillar-page-body) ul {
    margin: 0 0 var(--spacing-10x) 11px;
  }
}
.reset-button {
  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;
}

/* ========================================================================== */
/*  Button Group                                                              */
.btn-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.btn-group--center {
  justify-content: center;
}

.btn-group--right {
  justify-content: flex-end;
}

@media (min-width: 820px) {
  .btn-group {
    flex-direction: row;
    align-items: center;
  }
}

/* ========================================================================== */
/*  Button Styles                                                             */
a.btn,
.btn,
.form input[type="submit"],
.systems-page .email-prefs input[type="submit"],
.post-body__clipboard-btn .btn {
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2x);
  font-size: var(--rem-base-px);
  font-weight: 650;
  line-height: 1.2;
  color: var(--text-white);
  text-decoration: none;
  text-align: center;
  width: 100%;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 150px;
  transition: var(--transition);
}

.btn--primary,
a.btn--primary,
.post-body__clipboard-btn .btn--primary,
.systems-page .email-prefs input[type=submit],
  :is(form, .form) input[type="submit"],
  :is(.header--light, 
    .header--transparent-dark, 
    .header[data-state="opened"], 
    .header[data-scrolled="true"]) a.btn--header
  {
  background: var(--primary-base);
  border-color: var(--primary-base);
}

.btn--primary-clear,
a.btn--primary-clear {
  color: var(--primary-base);
  border-color: var(--primary-base);
}

.btn--secondary,
a.btn--secondary {
  background: var(--secondary-base);
  border-color: var(--secondary-base);
}

.btn--secondary-clear,
a.btn--secondary-clear {
  color: var(--secondary-base);
  border-color: var(--secondary-base);
}

.btn--ghost,
a.btn--ghost,
.header--transparent-light a.btn--header,
.form-btn--ghost input[type="submit"] {
  color: var(--white);
  border-color: var(--white);
}

.btn--link,
a.btn--link,
.btn--link-white,
a.btn--link-white {
  color: var(--primary-base);
  text-decoration: none;
  padding: 0;
  width: fit-content;
}

:is(.btn--link, a.btn--link, .btn--link-white, a.btn--link-white):after {
  content: '';
  position: absolute;
  inset: auto auto 0 0;
  height: 2px;
  width: 0;
  transition: var(--transition);
}

.btn--link:after,
a.btn--link:after {
  background: var(--primary-base);
}

.btn--link-white:after,
a.btn--link-white:after {
  background: var(--white);
}

.btn--link-white,
a.btn--link-white {
  color: var(--white);
}

:is(.btn--link, a.btn--link, .btn--link-white, a.btn--link-white) svg {
  height: 10px;
  transition: var(--transition);
}

.btn--link svg path,
a.btn--link svg path {
  fill: var(--primary-base);
}

.post-body__clipboard-btn .btn svg path {
  fill: var(--white);
}

.btn--link-white svg path,
a.btn--link-white svg path {
  fill: var(--white);
}

@media (hover: hover) {
  .btn--primary:hover,
  a.btn--primary:hover,
  :is(form, .form) input[type="submit"]:hover,
  .systems-page .email-prefs input[type=submit]:hover,
  :is(.header--light, 
    .header--transparent-dark, 
    .header[data-state="opened"], 
    .header[data-scrolled="true"]) a.btn--header:hover 
  {
      background: var(--primary-600);
      border-color: var(--primary-600);
      color: var(--white);
  }

  .btn--primary-clear:hover,
  a.btn--primary-clear:hover {
    color: var(--primary-600);
    border-color: var(--primary-600);
  }

  .btn--secondary:hover,
  a.btn--secondary:hover {
    background: var(--secondary-600);
    border-color: var(--secondary-600);
    color: var(--white);
  }

  .btn--secondary-clear:hover,
  a.btn--secondary-clear:hover {
    color: var(--secondary-600);
    border-color: var(--secondary-600);
  }

  .btn--ghost:hover,
  a.btn--ghost:hover,
  .header--transparent-light .btn--header:hover,
  .form-btn--ghost input[type="submit"]:hover {
    color: var(--white);
    border-color: var(--white);
  }

  .btn--link:hover,
  a.btn--link:hover {
    color: var(--primary-600);
  }

  .btn--link-white:hover,
  a.btn--link-white:hover {
    color: var(--white);
  }

  :is(.btn--link, a.btn--link, .btn--link-white, a.btn--link-white):hover:after {
    width: 100%;
  }

  .btn--link:hover:after,
  a.btn--link:hover:after {
    background: var(--primary-600);
  }
  
  .btn--link-white:hover:after,
  a.btn--link-white:hover:after {
    background: var(--white);
  }

  :is(.btn--link, a.btn--link, .btn--link-white, a.btn--link-white):hover svg {
    transform: translateX(5px);
  }
  
  .btn--link:hover svg path,
  a.btn--link:hover svg path {
    fill: var(--primary-600);
  }

  .btn--link-white:hover svg path,
  a.btn--link-white:hover svg path {
    fill: var(--white);
  }
}

@media (min-width: 640px) {
  .btn,
  a.btn,
  .form input[type="submit"],
  .systems-page .email-prefs input[type="submit"] {
    width: fit-content;
  }
}

.btn--primary svg,
a.btn--primary svg {
  fill: var(--white);
}
[data-accordion] {
  --panel-visibility: hidden;
  --panel-height: 0px;
}

[data-accordion-panel-wrapper] {
  height: var(--panel-height);
  overflow: hidden;
}

[data-accordion-panel] {
  visibility: var(--panel-visibility);
}
.form--bg {
  --form-bg: transparent;
  --form-shadow: var(--box-shadow-primary);
  padding: var(--spacing-12x);
  border-radius: var(--radius-lg);
  box-shadow: var(--form-shadow);
  background: var(--form-bg);
}

.form--bg-white {
  --form-bg: var(--white);
}

.form__heading {
  margin-bottom: var(--spacing-3x);
}

.form__description {
  color: var(--text-light);
  margin-bottom: var(--spacing-8x);
}
/* ========================================================================== */
/*  Fields                                                                    */
.hs-form-field {
  margin-bottom: var(--spacing-6x);
}

/* ========================================================================== */
/*  Labels                                                                    */
:is(form, .form) label {
  margin-bottom: var(--label-margin-b);
}

:is(form, .form) label, :is(form, .form) label span {
  display: inline-block;
  font-family: var(--label-font-family);
  font-size: var(--label-font-size);
  font-weight: var(--label-font-weight);
  line-height: var(--label-line-height);
  color: var(--label-color);
}

/* ========================================================================== */
/*  Help Text                                                                 */
:is(form, .form) legend {
  font-size: var(--legend-font-size);
}

/* ========================================================================== */
/*  Fieldsets                                                                 */
:is(form, .form) fieldset {
  max-width: 100% !important;
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

:is(form, .form) fieldset.form-columns-2 {
  display: grid;
  grid-template-columns: 1fr;
}

:is(form, .form) fieldset:is(.form-columns-1, .form-columns-2) .hs-form-field {
  width: 100% !important;
  float: none !important;
}

:is(form, .form) fieldset:is(.form-columns-1, .form-columns-2) .input {
  margin-right: 0 !important;
}

@media (min-width: 480px) {
  :is(form, .form) fieldset.form-columns-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-4x);
  }
}

/* ========================================================================== */
/*  Inputs                                                                    */
:is(form, .form) :is(
  select, 
  select option, 
  textarea, 
  input:is(
    [type=radio], 
    [type=text], 
    [type=checkbox], 
    [type=search], 
    [type=email],
    [type=number],
    [type=tel])) 
  {
  display: inline-block;
  font-size: var(--input-font-size);
  font-weight: var(--input-font-weight);
  line-height: var(--input-line-height);
  color: var(--input-color-text);
  padding: var(--input-padding);
  width: 100% !important;
  border: var(--input-border);
  border-radius: var(--input-border-radius);
  background-color: var(--input-color-bg);
  outline: 3px solid transparent;
  outline-offset: 0;
  transition: var(--transition);
}

:is(form, .form) :is(input, textarea, select):is(:focus) {
  border-color: var(--input-focus-color-border);
  outline-color: transparent;
}

/* :is(form, .form) :is(input, textarea, select):disabled {
  cursor: not-allowed;
  color: var(--input-disabled-color-text);
  background: var(--input-disabled-color-bg);
  border-color: var(--input-disabled-color-border);
} */

:is(form, .form) textarea {
  height: var(--textarea-height);
}

:is(form, .form) .hs_submit input[type=submit] {
  display: block;
}

/* :is(form, .form) select option:disabled, */
:is(form, .form) :is(input:placeholder, select.is-placeholder) {
  font-family: var(--body-font);
  font-weight: 450;
  line-height: 1;
  color: var(--input-color-text-placeholder);
}

/* :is(form, .form) input:placeholder:disabled {
  color: var(--input-disabled-color-text); 
} */

/* ========================================================================== */
/*  :is(form, .form) List Items                                                           */  
:is(form, .form) .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 12px;
}

:is(form, .form) .inputs-list > li {
  display: block;
  margin: 0 0 12px;
}

:is(form, .form) .inputs-list :is(input, span) {
  vertical-align: middle;
}

/* ========================================================================== */
/*  Inputs - Checkbox                                                         */
:is(form, .form) :is(.hs-form-checkbox-display, .hs-form-booleancheckbox-display) {
  cursor: pointer;
  display: flex;
  gap: 12px;
  width: fit-content;
}

:is(form, .form) :is(.hs-form-checkbox-display, .hs-form-booleancheckbox-display) span {
  font-family: var(--checkbox-font-family);
  font-size: var(--checkbox-font-size);
  font-weight: var(--checkbox-font-weight);
  line-height: var(--checkbox-line-height);
  color: var(--checkbox-color-text);
  transition: var(--input-transition);
  margin: 0;
}

/* :is(form, .form) .hs-form-checkbox-display:has(input[type=checkbox]:disabled) span {
  color: var(--checkbox-disabled-color-text);
} */

:is(form, .form) input[type=checkbox] {
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  display: block;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  height: var(--checkbox-dimensions);
  width: var(--checkbox-dimensions) !important;
  background-color: var(--checkbox-color-bg);
  border-radius: var(--checkbox-border-radius);
  border: var(--checkbox-border);
  transition: var(--input-transition);
  outline-offset: 3px;
}

:is(form, .form) .inputs-list.error input[type="checkbox"] {
  border-color: var(--checkbox-error-color-border);
}

:is(form, .form) input[type="checkbox"]:checked {
  background-color: var(--checkbox-checked-color-bg);
  border-color: var(--checkbox-checked-color-border);
}

/* :is(form, .form) input[type="checkbox"]:disabled,
:is(form, .form) input[type="checkbox"]:disabled:hover {
  background-color: var(--checkbox-disabled-color-bg);
  border-color: var(--checkbox-disabled-color-border);
}
:is(form, .form) input[type="checkbox"]:disabled:checked,
:is(form, .form) input[type="checkbox"]:disabled:checked:hover {
  background-color: var(--checkbox-disabled-checked-color-bg);
  border-color: var(--checkbox-disabled-color-border);
} */

:is(form, .form) input[type="checkbox"]:before {
  --checkbox-content: var(--checkbox-checked-image);
  content: var(--checkbox-content);
  position: absolute;
  inset: 0;
  height: var(--checkbox-image-dimensions);
  width: var(--checkbox-image-dimensions);
  transition: var(--input-transition);
  opacity: 0;
}

:is(form, .form) input[type="checkbox"]:checked:before {
  opacity: 1;
}

/* :is(form, .form) input[type="checkbox"]:disabled:checked:before {
  --checkbox-content: var(--checkbox-disabled-checked-image);
} */

:is(form, .form) input[type="checkbox"]:after {
  content: var(--checkbox-hover-image);
  position: absolute;
  inset: 0;
  height: var(--checkbox-image-dimensions);
  width: var(--checkbox-image-dimensions);
  transition: var(--input-transition);
  opacity: 0;
}

/* :is(form, .form) input[type="checkbox"]:disabled:after {
  opacity: 0;
} */

/* Hover States */
@media (hover: hover) {
  :is(form, .form) input[type="checkbox"]:hover:not(input[type="checkbox"]:disabled) {
    border-color: var(--checkbox-hover-color-border);
  }

  :is(form, .form) input[type="checkbox"]:checked:hover:not(input[type="checkbox"]:disabled) {
    background-color: var(--checkbox-checked-hover-color-bg);
    border-color: var(--checkbox-checked-hover-color-border);
  }

  :is(form, .form) input[type="checkbox"]:hover:not(input[type="checkbox"]:disabled):after {
    opacity: 1;
  }

  :is(form, .form) input[type="checkbox"]:checked:hover:not(input[type="checkbox"]:disabled):after {
    opacity: 0;
  }
}

/* ========================================================================== */
/*  Inputs - Radio                                                            */
:is(form, .form) .hs-form-radio-display {
  cursor: pointer;
  display: flex;
  gap: 12px;
  width: fit-content;
}

:is(form, .form) .hs-form-radio-display span {
  font-family: var(--radio-font-family);
  font-size: var(--radio-font-size);
  font-weight: var(--radio-font-weight);
  line-height: var(--radio-line-height);
  color: var(--radio-color-text);
  transition: var(--input-transition);
  margin: 0;
}

/* :is(form, .form) .hs-form-radio-display:has(input[type=radio]:disabled) span {
  color: var(--radio-disabled-color-text);
} */

:is(form, .form) input[type=radio] {
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  height: var(--radio-dimensions);
  width: var(--radio-dimensions) !important;
  background-color: var(--radio-color-bg);
  border-radius: var(--radio-border-radius);
  border: var(--radio-border);
  transition: var(--input-transition), border-width 0ms linear;
  outline-offset: 3px;
}

:is(form, .form) .inputs-list.error input[type="radio"] {
  border-color: var(--radio-error-color-border);
}

:is(form, .form) input[type="radio"]:checked {
  border: var(--radio-checked-color-border);
  background: var(--radio-checked-color-bg);
}

/* :is(form, .form) input[type="radio"]:disabled,
:is(form, .form) input[type="radio"]:disabled:hover {
  background-color: var(--radio-disabled-color-bg);
  border: var(--radio-disabled-color-border);
}

:is(form, .form) input[type="radio"]:disabled:checked,
:is(form, .form) input[type="radio"]:disabled:checked:hover {
  background-color: var(--radio-disabled-checked-color-bg);
  border: var(--radio-disabled-checked-color-border);
}  */

:is(form, .form) input[type="radio"]:after {
  content: '';
  height: var(--radio-inner-dimensions);
  width: var(--radio-inner-dimensions);
  border-radius: var(--radio-border-radius);
  transition: var(--input-transition);
}

:is(form, .form) input[type="radio"]:checked:after {
  background-color: var(--radio-checked-color-inner);
}

/* :is(form, .form) input[type="radio"]:disabled:after {
  background-color: var(--radio-disabled-color-inner);
}

:is(form, .form) input[type="radio"]:disabled:checked:after {
  background-color: var(--radio-disabled-checked-color-inner);
} */

/* Hover States */
@media (hover: hover) {
  :is(form, .form) input[type="radio"]:hover:not(input[type="radio"]:disabled) {
    border: var(--radio-hover-border);
  }

  :is(form, .form) input[type="radio"]:checked:hover:not(input[type="radio"]:disabled) {
    border: var(--radio-checked-hover-color-border);
  }

  :is(form, .form) input[type="radio"]:hover:not(input[type="radio"]:disabled):after {
    background-color: var(--radio-hover-color-inner);
  }

  :is(form, .form) input[type="radio"]:checked:hover:not(input[type="radio"]:disabled):after {
    background-color: var(--radio-checked-color-inner);
  }
}

/* ========================================================================== */
/*  Inputs - Select                                                           */
:is(form, .form) .input:has(select) {
  position: relative;
}

:is(form, .form) select {
  appearance: none;
  line-height: 17px !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: var(--spacing-10x) !important;
}

:is(form, .form) .input:has(select):after {
  content: var(--select-icon);
  pointer-events: none;
  position: absolute;
  inset: 50% 16px auto auto;
  font-size: 11px;
  line-height: 1;
  transform: translateY(-50%);
  transition: all 300ms ease-in-out;
  z-index: 1;
}

:is(form, .form) .input:has(select:focus):after {
  transform: translateY(-50%) rotate(-180deg);
}

/* ========================================================================== */
/*  Inputs - Date Picker                                                      */
/* .hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content: '';
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  margin-right: var(--date-input-margin-right);
  height: var(--date-input-icon-height);
  width: var(--date-input-icon-width);
  background-image: var(--date-input-icon);
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

.hs-datepicker {
  width: 100%;
  max-width: 400px;
}

.fn-date-picker.pika-single.is-bound {
  width: 100%;
  border-radius: var(--date-picker-border-radius);
  border: var(--date-picker-border);
}

.fn-date-picker .pika-lendar {
  height: 100%;
  width: 100% !important;
  margin: 0 !important;
  padding: 12px;
  float: none !important;
}

.fn-date-picker .pika-table {
  margin-bottom: 0;
}

.fn-date-picker .pika-label,
.fn-date-picker .pika-table thead th,
.fn-date-picker .pika-button {
  font-family: var(--body-font);
  color: var(--date-picker-color) !important;
}

.fn-date-picker .pika-table thead th abbr {
  text-decoration: none;
}

.fn-date-picker .pika-button {
  font-family: var(--body-font);
  font-weight: 400;
  text-align: center !important;
  background: transparent !important;
  transition: var(--transition);
  border-radius: var(--border-radius);
}

.fn-date-picker td.is-today .pika-button {
  font-weight: 700;
  color: var(--date-picker-number-today-color) !important;
}

.fn-date-picker td.is-selected .pika-button {
  background-color: var(--date-picker-number-selected-bg) !important;
  color: var(--date-picker-number-selected-color) !important;
  border-radius: var(--border-radius) !important;
  box-shadow: none;
}

@media (hover: hover) {
  :is(form, .form) .fn-date-picker .pika-button:hover {
    background: var(--date-picker-number-hover-bg) !important;
    border-radius: var(--border-radius) !important;
    color: var(--date-picker-number-hover-color) !important;
  }
} */

/* ========================================================================== */
/*  Inputs - File Picker                                                      */
:is(form, .form) input[type=file] {
  background-color: transparent;
  border-radius: 0;
  border: initial;
  padding-left: 0;
}

/* ========================================================================== */
/*  GDPR                                                                      */
.legal-consent-container {
  margin-bottom: var(--spacing-8x);
}

.legal-consent-container .hs-richtext,
.legal-consent-container .hs-richtext p {
  font-size: var(--text-xs);
  color: var(--text-light);
  line-height: 1.4;
  margin-bottom: 8px;
}

.form--style-dark .legal-consent-container .hs-richtext,
.form--style-dark .legal-consent-container .hs-richtext p {
  color: var(--text-light);
}

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 0 !important;
}

/* ========================================================================== */
/*  Validation                                                                */
:is(form, .form) label span.hs-form-required {
  color: var(--input-color-required);
}

.hs-input.invalid.error {
  border-color: var(--input-error-color-border);
  box-shadow: var(--input-error-color-outline);
}

:is(form, .form) .inputs-list.hs-error-msgs {
  margin: 0;
}

:is(form, .form) .hs-error-msgs li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: var(--spacing-1x) 0 0;
}

:is(form, .form) .hs-error-msgs li:before {
  content: var(--label-error-image);
  display: block;
  line-height: 1;
  height: 16px;
  width: 16px;
}

:is(form, .form) .hs-error-msgs label {
  --font-size: var(--label-error-font-size);
  display: inline-block;
  font-size: var(--font-size);
  font-weight: var(--label-error-font-weight);
  line-height: var(--label-error-line-height);
  color: var(--label-error-color);
  margin-bottom: 0;
}

/* ========================================================================== */
/*  Captcha                                                                   */
.grecaptcha-badge {
  margin: 0 auto;
}

/* ========================================================================== */
/*  Submit Message                                                            */
.submitted-message {
  text-align: center;
  font-weight: 700;
  color: var(--text-base);
}
/* 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;
}
/* ========================================================================== */
/*  BACKGROUNDS                                                               */
/* ========================================================================== */
.dnd-section:has(.section-background--gray) {
  background: var(--gray-base);
}

.dnd-section:has(.section-background--primary-50) {
  background: var(--primary-50);
}

.dnd-section:has(.section-background--primary-base) {
  background: var(--primary-base);
}

.section-background-hidden-element {
  display: none;
}

/* ========================================================================== */
/*  Typography                                                                */
/* ========================================================================== */
.is-anchor {
  scroll-margin-top: var(--scroll-margin-top);
}

.text-white,
.text-white :where(*:not(.btn)) {
  color: var(--text-white);
}

.text-highlight {
  color: var(--primary-base);
}

:has(> .masked-link) {
  position: relative;
}

.masked-link {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

code.code-highlight {
  font-size: 15px;
  display: inline-block;
  background: var(--gray-base);
  padding: 0 4px 1px;
  border-radius: 4px;
}
.post-inline-cta {
  display: flex;
  align-items: center;
  gap: var(--spacing-12x);
  padding: var(--spacing-8x);
  background: var(--primary-600);
  border-radius: var(--radius-md);

  & .btn {
    font-size: var(--text-sm);
  }

  a:has(> &) {
    color: var(--text-base);
  }

  a:has(> &):hover {
    text-decoration-color: transparent;
    color: var(--text-base);
  }
}

.post-inline-cta__body {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

:is(.hs_cos_wrapper_type_rich_text, .custom-text-wrapper, .custom-text-wrapper__rich-text, .post-body__content-wrapper, .pillar-page-body) {
  & .post-inline-cta__title {
    margin: 0 0 var(--spacing-4x);
  }
  
  & .post-inline-cta__description {
    font-size: 1rem;
    margin: 0 0 var(--spacing-5x);
  }

  & img.post-inline-cta__image {
    margin: 0;
  }
}
/* ========================================================================== */
/*  Case Study Cards                                                          */
.cs-card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.cs-card {
  --img-height: 223px;
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: var(--cs-box-shadow);
  transition: all 250ms ease;
  overflow: hidden;
}

.cs-card__img-wrapper {
  height: var(--img-height);
  width: 100%;
  overflow: hidden;
}

.cs-card__img-wrapper img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.cs-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  height: calc(100% - var(--img-height));
  padding: 24px;
}

.cs-card__title {
  margin-bottom: 8px;
}

.cs-card__desc {
  margin-bottom: 16px;
}

.cs-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cs-card__logo {
  max-height: 30px;
  width: auto;
}

.cs-card__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-base);
  font-weight: 700;
}

.cs-card__link svg {
  fill: var(--primary-base);
}

@media (hover: hover) {
  .cs-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-base);
    box-shadow: var(--cs-box-shadow-dark);
  }
}

@media (min-width: 640px) {
  .cs-card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cs-card-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

  /* Components
  Specific pieces of UI that are stylized. Typically used for global partial styling
*/

.footer {
  background: var(--black-base);
  padding-top: var(--spacing-8x);
}

.footer-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-8x);
  margin-bottom: var(--spacing-8x);
}

.footer-cta {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-6x);
}

.footer-cta__heading {
  line-height: 1.22;
}

.footer-company-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-6x);
}

.footer-company-info__title {
  font-weight: 650;
  line-height: 1.2;
  margin-bottom: var(--spacing-3x);
}

.footer-contact__links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2x);
}

.footer-contact__link a {
  font-size: 0.7778rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.footer-contact__link a:hover {
  color: var(--primary-400);
  text-decoration-color: var(--primary-400);
}

.footer-social-media__links {
  display: flex;
  align-items: center;
  gap: var(--spacing-2x);
}

.footer-social-media__link a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 26px;
  width: 26px;
  border-radius: 150px;
  border: 1px solid var(--white);
}

.footer-social-media__link a:hover {
  border-color: var(--primary-400);
}

.footer-social-media__link a svg {
  max-height: 12px;
  max-width: 12px;
}

.footer-social-media__link a svg path {
  transition: var(--transition);
}

.footer-social-media__link a:hover svg path {
  fill: var(--primary-400);
}

@media (max-width: 640px) {
  .footer-cta__heading {
    font-size: 31px;
    line-height: 1.4;
    text-align: center;
  }
}

@media (min-width: 1050px) {
  .footer {
    padding-top: 103px;
  }

  .footer-info {
    gap: var(--spacing-16x);
  }

  .footer-cta {
    flex: 1 1 590px;
  }

  .footer-company-info {
    flex: 0 0 320px;
  }

  .footer-info {
    flex-direction: row;
    gap: var(--spacing-16x);
    margin-bottom: var(--spacing-20x);
  }

  .footer-company-info {
    gap: var(--spacing-12x);
  }
}

/* ========================================================================== */
/*  Footer Nav                                                                */
.footer-nav {
  display: flex;
  gap: var(--spacing-6x);
}

.footer-nav--desktop {
  display: none;
}

.footer-nav-menu {
  min-width: 168px;
}

ul.list-reset li.footer-nav-menu__title {
  font-weight: 650;
  line-height: 1.2;
  margin-bottom: var(--spacing-3x);
}

ul.list-reset li.footer-nav-menu__item {
  margin-bottom: var(--spacing-2x);
}

ul.list-reset li.footer-nav-menu__item,
.footer-nav-menu__item a {
  font-size: 0.7778rem;
  line-height: 1.4;
}

.footer-nav-menu__item a {
  display: inline-block;
}

.footer-nav-menu__item a:hover {
  color: var(--primary-400);
  text-decoration-color: transparent;
}

/*** Mobile Variant ***/
.footer-nav--mobile {
  flex-direction: column;
}

.footer-nav--mobile li.footer-nav-menu__title {
  margin-bottom: 0;
}

li.footer-nav-menu__title button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

li.footer-nav-menu__title button svg {
  transition: all 300ms ease-in-out;
}

.footer-nav-menu[aria-expanded="true"] li.footer-nav-menu__title button svg {
  transform: rotate(-180deg);
}

.footer-nav-accordion-panel {
  padding-top: var(--spacing-4x);
}


@media (min-width: 1050px) {
  .footer-nav--desktop {
    display: flex; 
    gap: var(--spacing-12x);
  }

  .footer-nav--mobile {
    display: none;
  }
}

/* ========================================================================== */
/*  Subfooter                                                                 */
.subfooter {
  border-top: 1px solid var(--black-600);
  margin-top: 27px;
}

.subfooter-wrapper {
  position: relative;
  padding: var(--spacing-5x) 0 27px;
}

.subfooter__logo {
  margin-bottom: var(--spacing-3x);
}

.subfooter__logo svg {
  height: 60px;
}

.subfooter__links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.subfooter__copyright,
a.subfooter__link {
  font-size: 0.6667rem;
  font-weight: 650;
  line-height: 1.2;
  color: var(--black-100);
}

a.subfooter__link:hover {
  color: var(--primary-400);
  text-decoration-color: transparent;
}

@media (min-width: 1050px) {
  .subfooter {
    margin-top: 307px;
  }

  .subfooter-wrapper {
    padding: var(--spacing-8x) 0 39px;
  }

  .subfooter__logo {
    position: absolute;
    bottom: calc(100% - 46px);
    margin-bottom: 0;
  }

  .subfooter__logo svg {
    height: 258px;
  }

  .subfooter__links {
    justify-content: flex-end;
  }
}
body:has(.header[data-state="opened"]) {
  overflow: clip;
}

div:has(> .header) {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.hubspot-disable-focus-styles .header {
  position: relative;
  background: var(--black-100);
  height: 70px;
}

.header {
  --transition: all 250ms ease;
  width: 100%;
  background: var(--background);
  padding-block: var(--spacing-3x);
  z-index: 999;
  transition: var(--transition);
}

.header--transparent-dark {
  --background: transparent;
  --h-text-color: var(--text-base);
  --h-text-hover-color: var(--primary-base);
  --h-logo-px-color: var(--primary-base);
}

.header--transparent-light {
  --background: transparent;
  --h-text-color: var(--text-white);
  --h-text-hover-color: var(--gray-base);
  --h-logo-px-color: var(--white);
}

.header--light, 
.header[data-state="opened"],
.header[data-scrolled="true"] {
  --background: var(--white);
  --h-text-color: var(--text-base);
  --h-text-hover-color: var(--primary-base);
  --h-logo-px-color: var(--primary-base);
}

.header[data-scrolled="true"]:not(.header[data-state="opened"]) {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
}

.h-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.h__logo svg {
  height: 39px;
  width: auto;

  & .h__logo-path-dark path {
    fill: var(--h-text-color);
  }

  & .h__logo-path-primary path {
    fill: var(--h-logo-px-color);
  }
}

.header a {
  text-decoration: none;

  &:hover {
    text-decoration: none;
  }
}

.btn--header--desktop {
  height: fit-content;
}

@media (max-width: 1050px) {
  .h-nav--desktop,
  a.btn--header--desktop {
    display: none;
  }

  .h__logo svg {
    height: 30px;
  }
}


/* ========================================================================== */
/*  NAV                                                                       */
.h-nav-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-5x);
}

.h-nav-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-2x);
  font-size: 0.8889rem;
  font-weight: 650;
  color: var(--h-text-color);
  transition: var(--transition);
}

button.h-nav-item {
  cursor: pointer;
}

.h-nav-item:hover, 
.h-nav-item[aria-expanded="true"] {
  color: var(--h-text-hover-color);
}

.h-nav-item svg {
  height: 12px;
  width: 12px;
  transition: var(--transition);
}

.h-nav-item[aria-expanded="true"] svg {
  transform: rotate(-180deg);
}

.h-nav-item svg path {
  fill: var(--h-text-color);
  transition: var(--transition);
}

:is(.h-nav-item:hover, .h-nav-item[aria-expanded="true"]) svg path {
  fill: var(--h-text-hover-color);
} 

/* ========================================================================== */
/*  Dropdown                                                                  */
.header-dropdown-bg {
  --dropdown-bg-height: 0;
  position: absolute;
  inset: 100% auto auto 0;
  width: 100%;
  height: var(--dropdown-bg-height);
  background: var(--white);
  transition: var(--transition);
  z-index: -1;

  .header[data-state="opened"] & {
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.04);
  }
}

.header-dropdown-backdrop {
  content: '';
  pointer-events: none;
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100vh;
  transition: opacity 250ms ease;
  z-index: -2;
  background: rgb(from var(--black-base) r g b / .2);
  backdrop-filter: blur(15px);
  opacity: 0;
}

.header[data-state="opened"] .header-dropdown-backdrop {
  pointer-events: auto;
  opacity: 1;
}

.h-nav-dropdown {
  --dropdown-height: 0;
  position: absolute;
  inset: 100% auto auto 0;
  width: 100%;
  height: var(--dropdown-height);
  overflow: clip;
  transition: var(--transition);

  & .content-wrapper {
    padding-block: var(--spacing-8x) var(--spacing-16x);
    visibility: hidden;
    transition: visibility 0ms 200ms linear;
  } 
}

button[aria-expanded="true"] + .h-nav-dropdown .content-wrapper {
  visibility: visible;
  transition: visibility 0ms linear;
}

.h-nav-dropdown__line {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  height: 1px;
  width: 100%;
  background: var(--gray-200);
}

.h-nav-sections {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-12x);
  margin-bottom: var(--spacing-8x);
}

.h-nav-section__preheader {
  font-size: 0.7778rem;
  font-weight: 650;
  color: #A1A3AA;
  margin-bottom: var(--spacing-4x);
}

/* ========================================================================== */
/*  Dropdown Menu                                                             */
.h-nav-menu {
  flex: 0 1 658px;
}

.h-nav-menu__title {
  margin-bottom: var(--spacing-2x);
}

.h-nav-menu__description {
  font-size: 0.8333rem;
  line-height: 1.43;
  max-width: 37ch;
  margin-bottom: var(--spacing-8x);
}

.h-nav-menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-5x) var(--spacing-10x);
}

.h-nav-menu-item {
  position: relative;
  display: flex;
  /* align-items: center; */
  gap: var(--spacing-4x);
  z-index: 0;
}

.h-nav-menu-item__bg {
  content: '';
  position: absolute;
  inset: 50% auto auto -8px;
  height: calc(100% + 16px);
  width: 304px;
  border-radius: var(--radius-md);
  background: var(--primary-50);
  opacity: 0;
  transform: translateY(-50%);
  transition: var(--transition);
  z-index: -1;

}

@media (hover: hover) {
  .h-nav-menu-item:hover .h-nav-menu-item__bg {
    opacity: 1;
  }
}

  
.h-nav-menu-item__img {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 48px;
  border-radius: var(--radius-md);
  background: var(--primary-100);

  & img {
    width: 24px;
    height: auto;
    max-height: 24px;
    object-fit: contain;
  }
}

.h-nav-menu-item__body {
  flex-grow: 1;
}
  
.h-nav-menu-item__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8889rem;
  font-weight: 650;
  line-height: normal;
  color: var(--text-base);
  max-width: 206px;
  margin-bottom: var(--spacing-1x);
  transition: var(--transition);

  & svg {
    height: 7px;
    width: 14px;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
  }

  & svg path {
    fill: var(--text-base);
    transition: var(--transition);
  }

  .h-nav-menu-item:hover & {
    color: var(--primary-base);

    & svg {
      opacity: 1;
      transform: translateX(0);
    }

    & svg path {
      fill: var(--primary-base);
    }
  }
}
  
.h-nav-menu-item__description {
  font-size: 0.7222rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-base);
  max-width: 90%;
}

/* ========================================================================== */
/*  Latest Projects                                                           */
.h-nav-projects {
  flex: 0 1 574px;
}

.h-nav-project-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-4x);
}

.h-nav-project-card {
  padding: var(--spacing-4x);
  border-radius: var(--radius-md);
  background: var(--gray-base);

  & img {
    display: block;
    object-fit: cover;
    margin-bottom: var(--spacing-3x);
  }
}

.h-nav-project-card__title {
  display: flex;
  align-items: center;
  gap: var(--spacing-3x);
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.64px;
  color: var(--text-base);
  margin-bottom: var(--spacing-1x);
  transition: var(--transition);

  & svg {
    height: 7px;
    width: 14px;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
  }

  & svg path {
    fill: var(--text-base);
    transition: var(--transition);
  }

  .h-nav-project-card:hover & {
    color: var(--primary-base);

    & svg {
      opacity: 1;
      transform: translateX(0);
    }
  
    & svg path {
      fill: var(--primary-base);
    }
  }
}

.h-nav-project-card__description {
  font-size: 0.7222rem;
  font-weight: 400;
  color: var(--text-base);
}

/* ========================================================================== */
/*  Links                                                                     */
.h-nav-dropdown-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--spacing-8x);
}

.h-nav-dropdown-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-5x);
  padding: var(--spacing-2x) var(--spacing-4x);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  transition: var(--transition);

  & svg {
    height: 7px;
    width: 14px;
    transition: var(--transition);
  }

  & svg path {
    fill: var(--text-base);
    transition: var(--transition);
  }

  &:hover {
    border-color: var(--primary-base);

    & svg path {
      fill: var(--primary-base);
    }
  }
}

.h-nav-dropdown-link__title {
  font-size: 0.8889rem;
  font-weight: 650;
  line-height: normal;
  color: var(--text-base);
  margin-bottom: var(--spacing-1x);
}

.h-nav-dropdown-link__description {
  font-size: 0.7222rem;
  font-weight: 400;
  line-height: 1.3;
  color: var(--text-base);
}

/* ========================================================================== */
/*  Mobile Variant                                                            */
.mobile-trigger {
  display: none;
}

@media (max-width: 1050px) {
  .mobile-trigger {
    display: block;
  }
}

.mobile-trigger {
  display: none;
  justify-content: center;
  align-items: center;
  width: 40px;
}

@media (max-width: 1050px) {
  .mobile-trigger {
    display: flex;
  }
}


.mobile-trigger__bar:before,
.mobile-trigger__bar-upper:before,
.mobile-trigger__bar-lower:before {
  content: '';
  display: block;
  height: 4px;
  width: 40px;
  background: var(--h-text-color);
  border-radius: var(--radius-md);
}


.mobile-trigger__bar {
  position: relative;
  transition-timing-function: cubic-bezier(.55,.055,.675,.19);
  transition-duration: .22s;

  & .mobile-trigger__bar-upper,
  & .mobile-trigger__bar-lower {
    position: absolute;
  }

  & .mobile-trigger__bar-upper {
    top: -8px;
    transition: top .1s ease-in .25s, opacity .1s ease-in;
  }

  & .mobile-trigger__bar-lower {
    bottom: -8px;
    transition: bottom .1s ease-in .25s, transform .22s cubic-bezier(.55,.055,.675,.19);
  }

  .header[data-state="opened"] & {
    transition-delay: .12s;
    transition-timing-function: cubic-bezier(.215,.61,.355,1);
    transform: rotate(225deg);
  }

  .header[data-state="opened"] & .mobile-trigger__bar-upper {
    top: 0;
    transition: top .1s ease-out, opacity .1s ease-out .12s;
    opacity: 0;
  }

  .header[data-state="opened"] & .mobile-trigger__bar-lower {
    bottom: 0;
    transition: bottom .1s ease-out, transform .22s cubic-bezier(.215,.61,.355,1) .12s;
    transform: rotate(-90deg);
  }
}

.h-nav-mobile-wrapper {
  --dropdown-height: 0;
  display: none;
  position: absolute;
  inset: 100% auto auto 0;
  width: 100%;
  height: var(--dropdown-height);
  overflow: clip;
  transition: var(--transition);

  & .content-wrapper {
    padding-block: var(--spacing-6x) 0;
  }
}

@media (max-width: 1050px) {
  .h-nav-mobile-wrapper {
    display: block;
  }
}

.h-nav--mobile {
  flex-direction: column;
  margin-bottom: var(--spacing-12x);

  & .h-nav-items {
    flex-direction: column;
    align-items: flex-start;

    & li {
      width: 100%;
    }
  }

  & .h-nav-item {
    justify-content: space-between;
    font-size: 1.4444rem;
    line-height: 1.2;
    width: 100%;

    & svg {
      height: 26px;
      width: 24px;
    }
  }

  & .h-nav-dropdown {
    position: relative;
  }

  & .h-nav-sections {
    flex-direction: column;
    gap: var(--spacing-4x);
    padding-block: var(--spacing-4x) var(--spacing-1x);
    margin-bottom: 0;
  }

  & .h-nav-menu {
    flex: none;
    padding-top: var(--spacing-4x);
    border-top: 1px solid var(--gray-200);
  }

  & :is(.h-nav-menu__title, .h-nav-menu__description) {
    display: none;
  }

  & .h-nav-menu-items {
    gap: var(--spacing-4x);
  }

  & .h-nav-item:hover, & .h-nav-item[aria-expanded=true] {
    color: var(--text-base);
  }

  & :is(.h-nav-item:hover, .h-nav-item[aria-expanded=true]) svg path {
    fill: var(--text-base);
  }

  & li[aria-expanded="true"] .h-nav-item svg {
    transform: rotate(-180deg);
  }

  & .h-nav-dropdown-links {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-4x);
    padding-bottom: var(--spacing-6x);
    border-bottom: 1px solid var(--gray-200);
  }
}

@media (max-width: 640px) {
  .h-nav--mobile :is(.h-nav-menu-items, .h-nav-dropdown-links) {
    grid-template-columns: 1fr;
  }
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  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;
  width: 100%;
}