/* 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-05x: 2px;
  --spacing-1x: 4px;
  --spacing-2x: 8px;
  --spacing-3x: 12px;
  --spacing-4x: 12px;
  --spacing-5x: 16px;
  --spacing-6x: 20px;
  --spacing-8x: 24px;
  --spacing-10x: 32px;
  --spacing-12x: 40px;
  --spacing-14x: 56px;
  --spacing-16x: 56px;
  --spacing-20x: 56px;
  --spacing-24x: 56px;
  --spacing-30x: 56px;

  /* Dnd Spacing */
  --container-padding: 20px;
  --dnd-row-gap: var(--spacing-8x);
  --first-section-padding-top: 64px; 
  --dnd-section-bottom-margin: var(--spacing-20x); 
  --dnd-section-bg-padding: var(--spacing-16x) var(--spacing-16x); 
  
  /* Misc */
  --scroll-margin-top: 90px;
}

@media (min-width: 640px) {
  :root {
    /* Dnd Spacing */
    /* --first-section-padding-top: 120px; */
    --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-20x: 80px;
    --spacing-24x: 96px;
    --spacing-30x: 120px;

    /* Dnd Spacing */
    --dnd-row-gap: var(--spacing-8x);
  }
}

@media (min-width: 1024px) {
  :root {
    /* Dnd Spacing */
    /* --first-section-padding-top: 160px; */
    --dnd-section-bottom-margin: 120px;
    /* --dnd-section-bg-padding: 120px;  */
    
    /* Misc */
    --scroll-margin-top: 160px;
  }
}

/* ========================================================================== */
/*  2. COLORS                                                #clrs            */
/* ========================================================================== */     

:root,
:host {
  /*** Import color properties from figma ***/
  --blue-base: #3675BD;
  --blue-50: #EBF1F9;
  --blue-100: #BCD1E9;
  --blue-200: #87ADD9;
  --blue-400: #5E91CB;
  --blue-600: #2B5D97;

  --red-base: #FC535A;
  --red-50: #FEDDDE;
  --red-100: #FEC6C8;
  --red-400: #F3767A;
  --red-600: #CB4448;
  --red-700: #A8373C;

  --teal-base: #3AC1D0;
  --teal-50: #D8F3F6;
  --teal-400: #61CDD9;
  --teal-600: #2E9AA6;
  --teal-700: #27818B;
  --teal-800: #164E54;

  --yellow-base: #FCAF3E;
  --yellow-100: #FFF3E3;
  --yellow-700: #B47E2F;
  
  --gray-100: #F9F9FB;
  --gray-200: #DEDFED;

  --text-base: #121212;
  --text-light: #666681;

  --white-base: #FFFFFF;

  --form-error: #A8373C;
  
  --background-blue: var(--blue-50);
  --background-red: var(--red-50);
  --background-gray: var(--gray-100);
  --background-teal: var(--teal-50);
  --background-yellow: var(--yellow-100);
  
  --border: #DCDFEF;
}

/* ========================================================================== */
/*  3. TYPOGRAPHY                                            #typo            */
/*=========================================================================== */
/*** Custom Fonts (uncomment for manual font-face properties) ***/
/* @font-face {
  font-family: ;
  font-weight:  ;
  font-style: ;
  src: url('') format(''),
       url('') format(''),
       url('') format('');
} */



/*  */

:root {
  /* ========================================================================== */
  /*  base                                                                      */
  --body-font: "Karla", sans-serif;
  --heading-font: "Barlow Semi Condensed", sans-serif;

  /* ========================================================================== */
  /*  Font Sizing                                                               */
  --rem-base-px: 18px;
  --base-line-height: 1.4;

  --h1-font-size:         3rem;
  --h2-font-size:         2.5rem;
  --h3-font-size:         2.0556rem;
  --h4-font-size:         1.7222rem;
  --h5-font-size:         1.4444rem;
  --h6-font-size:         1.2222rem;
  --preheader-font-size:  0.7778rem;
  --text-sm:              0.8333rem;
  --text-xs:              0.6667rem;

  /* ========================================================================== */
  /*  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-sm-line-height:    1.2;
  --text-xs-line-height:    1.2;
}

/*** Mobile Multiplier ***/
@media (max-width: 820px) {
  :root {
    --h1-font-size:         2rem;
    --h2-font-size:         1.7778rem;
    --h3-font-size:         1.6111rem;
    --h4-font-size:         1.4444rem;
    --h5-font-size:         1.2778rem;
    --h6-font-size:         1.1111rem;
  }
}

/* ========================================================================== */
/*  4. Global Styles                                              #styles            */
/*=========================================================================== */

:root {
  /* General */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 150px;
  --box-shadow-md: 0px 4px 20px 0px rgba(0, 0, 0, 0.06);
  --box-shadow-lg: 0px 10px 50px 0px rgba(0, 0, 0, 0.10);
  --transition: all 150ms cubic-bezier(.4,0,.2,1);
}

/* ========================================================================== */
/*  5. FORMS                                                #form             */
/* ========================================================================== */  

.hsfc-FormWrapper, .form, form, form :before, form :after {
  /* ========================================================================== */
  /*  Labels                                                                    */
  --legend-font-size:   0.9375rem;

  --label-font-family:  var(--body-font);
  --label-font-size:    0.7778rem;
  --label-font-weight:  700;
  --label-line-height:  1;
  --label-color:        var(--text-base);
  --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);
  --label-error-image:              url('');
  --label-error-margin-top:         var(--spacing-1x);

  /* ========================================================================== */
  /*  Text Input                                                                */
  --input-font-size:                0.8889rem;
  --input-font-weight:              400;
  --input-line-height:              1;
  --input-color-text:               var(--text-base);
  --input-color-text-placeholder:   var(--text-light);
  --input-color-required:           var(--form-error);
  --input-color-bg:                 var(--white-base);
  --input-border:                   1px solid var(--text-base);
  --input-border-radius:            var(--radius-md);
  --input-padding:                  16px;
  --input-spacing-y:                var(--spacing-6x);
  --input-spacing-x:                var(--spacing-4x);
  --input-transition:               var(--transition);
  --input-color-outline:            transparent;

  /* States */
  --input-error-color-border:       var(--form-error);
  --input-error-color-outline:      transparent;
  --input-focus-color-border:       var(--blue-base);
  --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:       1.2;
  --checkbox-color-text:        var(--text-light);
  --checkbox-dimensions:        20px; 
  --checkbox-image-dimensions:  18px;
  --checkbox-border:            1px solid var(--text-base);
  --checkbox-border-radius:     var(--radius-xs);
  --checkbox-color-bg:          var(--white-base);


  /* States */
  --checkbox-hover-image:                 url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCIgaGVpZ2h0PSIxOCIgd2lkdGg9IjE4Ij48cGF0aCBkPSJNMTMuODQyNyA1LjY1NzNDMTQuMDUyNCA1Ljg2NzEgMTQuMDUyNCA2LjIwNjMgMTMuODQyNyA2LjQxMzlMNy45NTExIDEyLjMwNzZDNy43NDE0IDEyLjUxNzQgNy40MDIxIDEyLjUxNzQgNy4xOTQ2IDEyLjMwNzZMNC4xNTczIDkuMjcyNkMzLjk0NzYgOS4wNjI4IDMuOTQ3NiA4LjcyMzYgNC4xNTczIDguNTE2MSA0LjM2NzEgOC4zMDg1IDQuNzA2MyA4LjMwNjMgNC45MTM5IDguNTE2MUw3LjU2OTUgMTEuMTcxNyAxMy4wODM5IDUuNjU3M0MxMy4yOTM3IDUuNDQ3NiAxMy42MzI5IDUuNDQ3NiAxMy44NDA0IDUuNjU3M0gxMy44NDI3WiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==");
  --checkbox-hover-color-border:          var(--blue-base);
  --checkbox-checked-image:               url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxOCAxOCIgaGVpZ2h0PSIxOCIgd2lkdGg9IjE4Ij48cGF0aCBkPSJNMTMuODQyNyA1LjY1NzNDMTQuMDUyNCA1Ljg2NzEgMTQuMDUyNCA2LjIwNjMgMTMuODQyNyA2LjQxMzlMNy45NTExIDEyLjMwNzZDNy43NDE0IDEyLjUxNzQgNy40MDIxIDEyLjUxNzQgNy4xOTQ2IDEyLjMwNzZMNC4xNTczIDkuMjcyNkMzLjk0NzYgOS4wNjI4IDMuOTQ3NiA4LjcyMzYgNC4xNTczIDguNTE2MSA0LjM2NzEgOC4zMDg1IDQuNzA2MyA4LjMwNjMgNC45MTM5IDguNTE2MUw3LjU2OTUgMTEuMTcxNyAxMy4wODM5IDUuNjU3M0MxMy4yOTM3IDUuNDQ3NiAxMy42MzI5IDUuNDQ3NiAxMy44NDA0IDUuNjU3M0gxMy44NDI3WiIgZmlsbD0iI2ZmZiIvPjwvc3ZnPg==");
  --checkbox-checked-color-bg:            var(--blue-base);
  --checkbox-checked-color-border:        var(--blue-base);
  --checkbox-checked-hover-color-bg:      var(--blue-base);
  --checkbox-checked-hover-color-border:  var(--blue-base);
  --checkbox-error-color-border:          var(--form-error);
  --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                                                                     */
  --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(--white-base);
  --radio-border:             1px solid var(--gray-200);
  --radio-border-radius:      var(--radius-xl);

  /* States */
  --radio-hover-color-inner:              var(--white-base);
  --radio-hover-border:                   1px solid var(--blue-base);
  --radio-checked-color-inner:            var(--blue-base);
  --radio-checked-color-bg:               var(--white-base);
  --radio-checked-color-border:           1px solid var(--blue-base);
  --radio-checked-hover-color-border:     1px solid var(--blue-base);
  --radio-error-color-border:             var(--form-error);
  --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://www.branchingminds.com/hubfs/theme-2025-assets/icons/form-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();
}

/* ========================================================================== */
/*  NEW FORM VARIABLES                                                        */

.hsfc-FormWrapper {
  /* To see all available properties, check: https://developers.hubspot.com/docs/reference/cms/forms/forms */
  --hsf-row__horizontal-spacing: var(--input-spacing-x);
  --hsf-row__vertical-spacing: var(--input-spacing-y);
  --hsf-module__vertical-spacing: var(--spacing-2x);
  
  --hsf-button__font-family: var(--body-font);
  --hsf-button__font-size: var(--rem-base-px);
  --hsf-button__color: var(--white-base);
  --hsf-button__background-color: var(--blue-base);
  --hsf-button__background-image: none;
  --hsf-button__border-radius: var(--radius-xl);
  --hsf-button__padding: var(--spacing-3x) var(--spacing-6x);
  --hsf-button__box-shadow: none;

  --hsf-erroralert__font-size: var(--label-error-font-size);
  --hsf-erroralert__color: var(--label-error-color);

  --hsf-background__background-color: none;
  --hsf-background__background-image: none;
  --hsf-background__background-size: none;
  --hsf-background__background-position: none;
  --hsf-background__background-repeat: none;
  --hsf-background__border-style: none;
  --hsf-background__border-color: transparent;
  --hsf-background__border-radius: 0;
  --hsf-background__border-width: 0;
  --hsf-background__padding: 0;

  --hsf-field-label__font-family: var(--label-font-family);
  --hsf-field-label__font-size: var(--label-font-size);
  --hsf-field-label__color: var(--label-color);
  --hsf-field-label-requiredindicator__color: var(--input-color-required);
  --hsf-field-input__font-family: var(--label-font-family);
  --hsf-field-input__color: var(--input-color-text);
  --hsf-field-input__background-color: var(--input-color-bg);
  --hsf-field-input__placeholder-color: var(--input-color-text-placeholder);
  --hsf-field-input__border-color: var(--text-base);
  --hsf-field-input__border-width: 1px;
  --hsf-field-input__border-style: solid;
  --hsf-field-input__border-radius: var(--input-border-radius);
  --hsf-field-input__padding: var(--input-padding);
}
*, *: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: 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;
}

/* 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: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%;

  & > div {
    width: 100%;
  }
}

.module-wrapper--center {
  margin: 0 auto;
}

.module-wrapper--right {
  margin: 0;

  @media (min-width: 1050px) {
    margin: 0 0 0 auto;
  }
}

.module-wrapper--col {
  flex-direction: column;
}

.icon-wrapper {
  display: block;
  height: fit-content;
  width: fit-content;

  & svg {
    display: block;
  }

  & svg path {
    transition: var(--transition);
  }
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}
html {
  font-family: var(--body-font);
  font-size: var(--rem-base-px);
  font-weight: 400;
  line-height: var(--base-line-height);
  color: var(--text-base);
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

/* 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-weight: 600;
  color: var(--text-base);
  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);
  margin: 0;
}

/* Anchors */
a {
  --anchor-color: var(--blue-base);
  --underline-color: transparent;
  --font-size: var(--rem-base-px);
  cursor: pointer;
  font-size: var(--font-size);
  font-weight: 600;
  color: var(--anchor-color);
  letter-spacing: -.54px;
  text-decoration: underline;
  text-decoration-color: var(--underline-color);
  text-underline-position: from-font;
  transition: var(--transition);
  
  &:hover {
    --anchor-color: var(--blue-600);
    --underline-color: var(--anchor-color);
  }

  :is(p, span, li) & {
    --font-size: inherit;
  }
}


/* Preheaders */
.preheader {
  display: block;
  font-size: var(--preheader-font-size);
  font-weight: 600;
  line-height: var(--preheader-line-height);
  color: var(--blue-base);
  text-transform: uppercase;
}

/* Lists */
ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
  text-align: start;

  &.no-list-styling {
    margin: 0;
  }

  li & {
    margin: 0;
    padding: 0;
    margin-top: 8px;
  }

  :is(&.list-reset, .list-reset &) {
    list-style: disc !important;
  }
}

ol {
  list-style: none !important;
  counter-reset: orderedlist;
  margin: 0 0 24px;
  padding: 0;
  text-align: start;

  li & {
    margin: 0;
    padding: 0;
    margin-top: 8px;
  }

  :is(&.list-reset, .list-reset &) {
    counter-reset: none;
    list-style: auto !important;
  }
}

li {
  --font-size: var(--rem-base-px);
  --line-height: 1.4;
  font-size: var(--font-size);
  font-weight: 400;
  line-height: var(--line-height);
  margin-bottom: var(--spacing-2x);

  &:last-child {
    margin-bottom: 0;
  }
  
  ul > & {
    position: relative;
    padding-left: 30px;

    &:before {
      content: url('https://www.branchingminds.com/hubfs/theme-2025-assets/icons/list-checkmark-blue.svg');
      position: absolute;
      inset: 2px auto auto 0;
      height: 20px;
      width: 20px;
    }
  }

  ul.no-list-styling & {
    margin-left: 0;
    padding-left: 0;

    &:before {
      display: none;
    }
  }

  ol > & {
    position: relative;
    padding-left: 30px;
  }

  ol > &:before {
    counter-increment: orderedlist;
    content: counter(orderedlist);
    position: absolute;
    inset: 2px auto auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: var(--body-font);
    font-size: var(--text-sm);
    line-height: 1;
    color: var(--text-base);
    height: 20px;
    width: 20px;
    background: var(--blue-200);
    border-radius: var(--radius-xl);
  }

  :is(.list-reset) & {
    margin-left: 20px;
    padding: 0;

    &::marker {
      font-size: 20px;
      line-height: calc(var(--font-size) * var(--line-height));
      color: var(--blue-base);
    }
    
    &:before {
      display: none;
    }
  }


  :is(.list-reset ol, ol.list-reset) > &::marker {
    font-family: var(--body-font);
    font-size: 18px;
    font-weight: 600;
    line-height: calc(var(--font-size) * var(--line-height));
  }
}

:is(.hs-tools-actions, .hubspot-disable-focus-styles) li {
  &:before {
    display: none;
  }
}

/* Code blocks */
pre {
  overflow: auto;
  margin: 0;
}

code {
  vertical-align: bottom;
}

/* Horizontal rules */
hr {
  width: 100%;
  margin-block: var(--spacing-8x) var(--spacing-4x);
  border: none;
  border-bottom: 1px solid var(--border);
}

/* Image alt text */
img {
  font-size: 0.583rem;
  word-break: normal;
}

/* Figcaptions */
figcaption {
  font-size: 0.875rem;
}

/* ========================================================================== */
/*  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, ul):has(+ *) {
  text-wrap: wrap;
  margin-bottom: var(--spacing-4x);
}


/*** Blog Post Body ***/
.post-body__content-wrapper .hs_cos_wrapper_type_rich_text {
  display: block;
  margin-bottom: var(--spacing-12x);

  & h2 {
    font-size: var(--h3-font-size);
  }

  & h3 {
    font-size: var(--h4-font-size);
  }

  & h4 {
    font-size: var(--h5-font-size);
  }

  & h5 {
    font-size: var(--h6-font-size);
  }

  & h6 {
    font-size: 1.1111rem;
  }

  & :is(h2, h3, h4, h5, h6) {
    margin-block: var(--spacing-10x) var(--spacing-5x);
    color: var(--text-base) !important;

    & > span {
      color: var(--text-base) !important;
    }
  }

  & > *:first-child,
  & #section-0 h2 {
    margin-top: 0;
  }

  & p {
    line-height: 1.58;
    color: var(--text-base) !important;

    & > span {
      color: var(--text-base) !important;
    }
  }

  & p:has(+ *) {
    margin-bottom: var(--spacing-5x);
  }

  & a {
    --underline-color: var(--anchor-color);
  }

  & .hs_cos_wrapper_type_module {
    margin-block: var(--spacing-10x);
  }

  /*** List Items -- Blog ***/
  & ul:not(.takeaways-wrapper ul) {
    list-style: initial !important;
    margin: 0 0 var(--spacing-5x) 7px;

    & li {
      padding-left: 0;
      margin: 0 0 var(--spacing-3x) var(--spacing-3x);

      &:last-of-type {
        margin-bottom: 0;
      }
    }
  
    & li:before {
      display: none;
    }
  
    & li::marker {
      color: var(--blue-base);
    }
  }


  & ol {
    list-style: none;
    counter-reset: orderedlist;
    margin-bottom: var(--spacing-5x);
  }

  & ol > li {
    position: relative;
    padding-left: 22px;
    margin-bottom: var(--spacing-3x);

    &:last-of-type {
      margin-bottom: 0;
    }
  }

  & ol > li:before {
    counter-increment: orderedlist;
    content: counter(orderedlist) '.';
    position: absolute;
    inset: 3px auto auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    font-family: var(--body-font);
    height: fit-content;
    width: fit-content;
    background: transparent;
  }

  /*** Figure/Img/Figcaption ***/
  & :is(img, figure, .hs_cos_wrapper_type_module:has(> img)) {
    margin-block: var(--spacing-8x);
  }

  & :is(.hs_cos_wrapper_type_module > img, .hs_cos_wrapper_type_module > figure, figure > img) {
    margin: 0 !important;
  }

  & .hs_cos_wrapper_type_module > figure {
    margin-block: var(--spacing-8x);
  }

  & figcaption {
    font-size: var(--text-sm);
    color: var(--text-light);
    margin-top: var(--spacing-3x);
  }

  @media (max-width: 640px) {
    & 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: row;
  align-items: center;
  gap: var(--spacing-4x);
  width: 100%;

  @media (max-width: 820px) {
    flex-direction: column;
  }

  @media (max-width: 640px) {
    gap: var(--spacing-8x);
  }

  &.btn-group--center {
    justify-content: center;
  }

  &.btn-group--right {
    justify-content: flex-end;
  }
}

/* ========================================================================== */
/*  Button Styles                                                             */
.btn,
a.btn,
.btn-cta-wrapper a.btn--cta,
:is(.form, form) input[type="submit"],
.systems-page .email-prefs input[type="submit"] {
  --text-color: var(--white-base);
  --bg-color: transparent;
  --border-color: transparent;
  --hover-text-color: var(--white-base);
  --hover-bg-color: transparent;
  --hover-border-color: transparent;
  --padding: var(--spacing-3x) var(--spacing-6x);
  --border-radius: var(--radius-xl);
  --btn-transition: var(--transition);
  color: var(--text-color);
  padding: var(--padding);
  background: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  transition: var(--btn-transition);
  font-size: var(--rem-base-px);
  font-weight: 600;
  cursor: pointer;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2x);
  line-height: 1;
  text-decoration: none;
  width: fit-content;

  @media (max-width: 820px) {
    width: 100%;
  }

  & svg {
    transition: var(--btn-transition);
  }

  & svg path {
    fill: var(--text-color);
    transition: var(--btn-transition);
  }

  @media (hover: hover) {
    &:hover {
      color: var(--hover-text-color);
      background: var(--hover-bg-color);
      border-color: var(--hover-border-color);

      & svg path {
        fill: var(--hover-text-color);
      }
    } 
  }
}

.btn-cta-wrapper--link,
.btn-cta-wrapper--link-white {
  --text-color: var(--white-base);
  --hover-text-color: var(--white-base);
  --btn-transition: var(--transition);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-2x);

  & svg {
    transition: var(--btn-transition);
  }

  & svg path {
    fill: var(--text-color);
    transition: var(--btn-transition);
  }

  @media (hover: hover) {
    &:hover svg path {
      fill: var(--hover-text-color);
    } 
  }
}

.btn--primary,
a.btn--primary,
.btn-cta-wrapper--primary,
.btn-cta-wrapper--primary a.btn--cta,
:is(.form, form) input[type="submit"],
.systems-page .email-prefs input[type="submit"] {
  --bg-color: var(--blue-base);
  --border-color: var(--blue-base);
  --hover-bg-color: var(--blue-600);
  --hover-border-color: var(--blue-600);
  --hover-shadow-color: var(--blue-100);
}

.btn--primary-clear,
a.btn--primary-clear,
.btn-cta-wrapper--primary-clear,
.btn-cta-wrapper--primary-clear a.btn--cta {
  --text-color: var(--blue-base);
  --border-color: var(--blue-base);
  --hover-text-color: var(--blue-600);
  --hover-border-color: var(--blue-600);
  --hover-shadow-color: var(--blue-base);
}

.btn--primary,
a.btn--primary,
.btn--primary-clear,
a.btn--primary-clear,
.btn-cta-wrapper--primary a.btn--cta,
.btn-cta-wrapper--primary-clear a.btn--cta,
.systems-page .email-prefs input[type="submit"] {
  transition: transform 200ms cubic-bezier(.5,2.5,.7,.7), background-color 200ms ease-in-out, color 200ms ease-in-out;

  @media (hover: hover) {  
    &:hover {
      box-shadow: rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgba(0, 0, 0, 0) 0px 0px 0px 0px, rgb(from var(--hover-shadow-color) r g b / 1) 0px 5px 0px 0px;
      transform: matrix(1, 0, 0, 1, 0, -5);
    }
  }
}

.btn--ghost,
a.btn--ghost,
.btn-cta-wrapper--ghost,
.btn-cta-wrapper--ghost a.btn--cta {
  --text-color: var(--white-base);
  --border-color: var(--white-base);
  --hover-text-color: var(--gray-100);
  --hover-border-color: var(--gray-200);
}

.btn--link,
a.btn--link,
.btn-cta-wrapper--link,
.btn-cta-wrapper--link a.btn--cta {
  --text-color: var(--blue-base);
  --hover-text-color: var(--blue-600);
  --underline-color: var(--gray-200);
  --hover-underline-color: var(--hover-text-color);
  --padding: 0;
  border: none;
}

.btn--link-white,
a.btn--link-white,
.btn-cta-wrapper--link-white,
.btn-cta-wrapper--link-white a.btn--cta {
  --text-color: var(--white-base);
  --hover-text-color: var(--gray-200);
  --underline-color: var(--white-base);
  --hover-underline-color: var(--hover-text-color);
  --padding: 0;
  border: none;
}

.btn--link,
.btn--link-white,
.btn-cta-wrapper--link,
.btn-cta-wrapper--link-white,
a:is(.btn--link, 
  .btn--link-white) {

  justify-content: flex-start;

  & :is(.btn__text, a.btn--cta) {
    position: relative;
    z-index: 0;
    color: var(--text-color) !important;
    transition: var(--btn-transition);
  }

  & :is(.btn__text, a.btn--cta):before {
    content: '';
    position: absolute;
    inset: calc(100% + 3px) auto auto 0;
    height: 2px;
    width: 100%;
    background: var(--underline-color);
    z-index: -2;
  }

  & :is(.btn__text, a.btn--cta):after {
    content: '';
    position: absolute;
    inset: calc(100% + 3px) auto auto 0;
    height: 2px;
    width: 0%;
    background: var(--hover-underline-color);
    transition: var(--btn-transition);
    z-index: -1;
  }

  & .icon-wrapper {
    transform: translateY(3px); 
  }

  @media (hover: hover) {
    &:hover :is(.btn__text, a.btn--cta) {
      color: var(--hover-text-color) !important;
    }

    &:hover :is(.btn__text, a.btn--cta):after {
      width: 100%;
    }
  }

  @media (max-width: 820px) {
    width: fit-content !important; 
  }
}

.btn--card-link,
a.btn--card-link {
  --text-color: var(--blue-base);
  --hover-text-color: var(--blue-600);
  --padding: 0;
  justify-content: flex-start;

  .card:hover & {
    color: var(--hover-text-color);

    & svg {
      transform: translateX(4px);
    }
  
    & svg path {
      fill: var(--hover-text-color) !important;
    }
  }
}

a.btn--card-link:hover {
  color: var(--hover-text-color);

  & svg {
    transform: translateX(4px);
  }

  & svg path {
    fill: var(--hover-text-color) !important;
  }
}
.form {
  padding: var(--spacing-12x);
  border-radius: var(--radius-lg);
  background: var(--white-base);

  @media (max-width: 640px) {
    padding: var(--spacing-6x);
  }
}

.form--light-blue {
  background: var(--blue-50);
}

.form__heading {
  margin-bottom: var(--spacing-8x);

  &:has(+ .form__description) {
    margin-bottom: var(--spacing-3x);
  }
}

.form__description {
  color: var(--text-light);
  margin-bottom: var(--spacing-8x);
}

.form li {
  padding: 0;

  &:before {
    display: none;
  }
}

.form input[type="submit"] {
  width: 100%;
}

/* ========================================================================== */
/*  Fields                                                                    */
.hs-form-field {
  margin-bottom: var(--input-spacing-y);
  
  fieldset:last-of-type &:last-child {
    margin-bottom: var(--spacing-8x);
  }
}
  

/* ========================================================================== */
/*  Labels                                                                    */
:is(.hsfc-FormWrapper form, form, .form) label {
  margin-bottom: var(--label-margin-b);
}

:is(.hsfc-FormWrapper form, form, .form) label, :is(.hsfc-FormWrapper form, form, .form) label span {
  display: flex;
  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(.hsfc-FormWrapper form, form, .form) legend {
  font-size: var(--legend-font-size);
}

/* ========================================================================== */
/*  Fieldsets                                                                 */
:is(.hsfc-FormWrapper form, form, .form) fieldset {
  max-width: 100% !important;
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

:is(.hsfc-FormWrapper form, form, .form) fieldset.form-columns-2 {
  display: grid;
  grid-template-columns: 1fr;
}

:is(.hsfc-FormWrapper form, form, .form) fieldset:is(.form-columns-1, .form-columns-2) .hs-form-field {
  width: 100% !important;
  float: none !important;
}

:is(.hsfc-FormWrapper form, form, .form) fieldset:is(.form-columns-1, .form-columns-2) .input {
  margin-right: 0 !important;
}

@media (min-width: 480px) {
  :is(.hsfc-FormWrapper form, form, .form) fieldset.form-columns-2 {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--input-spacing-x);
  }
}

/* ========================================================================== */
/*  Inputs                                                                    */
:is(.hsfc-FormWrapper form, form, .form) :is(
  select, 
  select option, 
  textarea, 
  input:is(
    [type=radio], 
    [type=text], 
    [type=checkbox], 
    [type=search], 
    [type=email],
    [type=password],
    [type=tel])) 
  {
  display: 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) !important;
  outline: none;
  outline-offset: 0;
  transition: var(--input-transition);
}

:is(.hsfc-FormWrapper form, form, .form) :is(input, textarea, select):is(:focus, :active, :focus-visible, :hover) {
  box-shadow: none !important;
}

:is(.hsfc-FormWrapper form, form, .form) :is(input:-webkit-autofill, input:-webkit-autofill:is(:hover, :focus, :focus-visible, :active)) {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
  box-shadow: 0 0 0 30px white inset !important;
}

:is(.hsfc-FormWrapper form, form, .form) :is(input, textarea, select):is(:focus) {
  border-color: var(--input-focus-color-border);
  outline-color: var(--input-color-outline);
}

:is(.hsfc-FormWrapper form, 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(.hsfc-FormWrapper form, form, .form) textarea {
  height: var(--textarea-height);
}

:is(.hsfc-FormWrapper form, form, .form) .hs_submit input[type=submit] {
  display: block;
}

:is(.hsfc-FormWrapper form, form, .form) :is(input:placeholder, select.is-placeholder, select option:disabled) {
  font-family: var(--body-font);
  color: var(--input-color-text-placeholder);
}

:is(.hsfc-FormWrapper form, form, .form) input:placeholder:disabled {
  color: var(--input-disabled-color-text); 
}

:is(.hsfc-FormWrapper form, form, .form) .hsfc-PhoneInput__FlagAndCaret__Flag {
  font-size: 0.8889rem;
  line-height: 1;
}

:is(.hsfc-FormWrapper form, form, .form) .hsfc-NavigationRow {
  margin-top: 0;
}

:is(.hsfc-FormWrapper form, form, .form) .hsfc-Button:not([disabled]) {
  width: 100%;
  transition: var(--transition);

  &:hover {
    background: var(--blue-600);
    transform: none;
    filter: none;
  }
}

/* ========================================================================== */
/*  :is(.hsfc-FormWrapper form, Form, .form) List Items                                                           */  
:is(.hsfc-FormWrapper form, form, .form) .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 12px;
}

:is(.hsfc-FormWrapper form, form, .form) .inputs-list > li {
  display: block;
  margin-bottom: var(--spacing-3x);
}

:is(.hsfc-FormWrapper form, form, .form) .inputs-list > li:last-child {
  margin-bottom: 0;

  & label {
    margin: 0;
  }
}

:is(.hsfc-FormWrapper form, form, .form) .inputs-list :is(input, span) {
  vertical-align: middle;
}

/* ========================================================================== */
/*  Inputs - Checkbox                                                         */
:is(.hsfc-FormWrapper form, form, .form) :is(.hs-form-checkbox-display, .hs-form-booleancheckbox-display) {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--spacing-2x);
}

:is(.hsfc-FormWrapper form, form, .form) .hsfc-CheckboxFieldGroup__Options {
  margin-top: var(--spacing-3x);
}

:is(.hsfc-FormWrapper form, form, .form) .hsfc-CheckboxFieldGroup__Options > *:not(:last-child) {
  margin-bottom: var(--spacing-3x);
}

:is(.hsfc-FormWrapper form, form, .form) :is(.hs-form-checkbox-display, .hs-form-booleancheckbox-display) span,
:is(.hsfc-FormWrapper form, form, .form) .hsfc-CheckboxInput + span > 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(.hsfc-FormWrapper form, form, .form) .hs-form-checkbox-display:has(input[type=checkbox]:disabled) span,
:is(.hsfc-FormWrapper form, form, .form) input[type=radio].hsfc-CheckboxInput:disabled + span > span {
  color: var(--checkbox-disabled-color-text);
}

:is(.hsfc-FormWrapper form, form, .form) input[type=checkbox] {
  --bg-color: var(--checkbox-color-bg);
  --border-color: var(--text-base);
  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(--bg-color) !important;
  border-radius: var(--checkbox-border-radius);
  border: var(--checkbox-border);
  border-color: var(--border-color);
  transition: var(--input-transition);
  outline-offset: 3px;
}

:is(.hsfc-FormWrapper form, form, .form) .inputs-list.error input[type="checkbox"] {
  --border-color: var(--checkbox-error-color-border);
}

:is(.hsfc-FormWrapper form, form, .form) input[type="checkbox"]:checked {
  --bg-color: var(--checkbox-checked-color-bg);
  --border-color: var(--checkbox-checked-color-border);
}

:is(.hsfc-FormWrapper form, form, .form) input[type="checkbox"]:disabled,
:is(.hsfc-FormWrapper form, form, .form) input[type="checkbox"]:disabled:hover {
  --bg-color: var(--checkbox-disabled-color-bg);
  --border-color: var(--checkbox-disabled-color-border);
}
:is(.hsfc-FormWrapper form, form, .form) input[type="checkbox"]:disabled:checked,
:is(.hsfc-FormWrapper form, form, .form) input[type="checkbox"]:disabled:checked:hover {
  --bg-color: var(--checkbox-disabled-checked-color-bg);
  --border-color: var(--checkbox-disabled-color-border);
}

:is(.hsfc-FormWrapper form, 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(.hsfc-FormWrapper form, form, .form) input[type="checkbox"]:checked:before {
  opacity: 1;
}

:is(.hsfc-FormWrapper form, form, .form) input[type="checkbox"]:disabled:checked:before {
  --checkbox-content: var(--checkbox-disabled-checked-image);
}

:is(.hsfc-FormWrapper form, 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(.hsfc-FormWrapper form, form, .form) input[type="checkbox"]:disabled:after {
  opacity: 0;
}

/* Hover States */
@media (hover: hover) {
  :is(.hsfc-FormWrapper form, form, .form) input[type="checkbox"]:hover:not(input[type="checkbox"]:disabled) {
    --border-color: var(--checkbox-hover-color-border);
  }

  :is(.hsfc-FormWrapper form, form, .form) input[type="checkbox"]:checked:hover:not(input[type="checkbox"]:disabled) {
    --bg-color: var(--checkbox-checked-hover-color-bg);
    --border-color: var(--checkbox-checked-hover-color-border);
  }

  :is(.hsfc-FormWrapper form, form, .form) input[type="checkbox"]:hover:not(input[type="checkbox"]:disabled):after {
    opacity: 1;
  }

  :is(.hsfc-FormWrapper form, form, .form) input[type="checkbox"]:checked:hover:not(input[type="checkbox"]:disabled):after {
    opacity: 0;
  }
}

/* ========================================================================== */
/*  Inputs - Radio                                                            */
:is(.hsfc-FormWrapper form, form, .form) .hs-form-radio-display {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--spacing-2x);
}

:is(.hsfc-FormWrapper form, form, .form) .hsfc-RadioFieldGroup__Options {
  margin-top: var(--spacing-3x);
}

:is(.hsfc-FormWrapper form, form, .form) .hsfc-RadioFieldGroup__Options > *:not(:last-child) {
  margin-bottom: var(--spacing-3x);
}


:is(.hsfc-FormWrapper form, form, .form) .hs-form-radio-display span,
:is(.hsfc-FormWrapper form, form, .form) .hsfc-RadioInput + span > 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(.hsfc-FormWrapper form, form, .form) .hs-form-radio-display:has(input[type=radio]:disabled) span,
:is(.hsfc-FormWrapper form, form, .form) input[type=radio].hsfc-RadioInput:disabled + span > span {
  color: var(--radio-disabled-color-text);
}

:is(.hsfc-FormWrapper form, 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(.hsfc-FormWrapper form, form, .form) .inputs-list.error input[type="radio"] {
  border-color: var(--radio-error-color-border);
}

:is(.hsfc-FormWrapper form, form, .form) input[type="radio"]:checked {
  border: var(--radio-checked-color-border);
  background: var(--radio-checked-color-bg);
}

:is(.hsfc-FormWrapper form, form, .form) input[type="radio"]:disabled,
:is(.hsfc-FormWrapper form, form, .form) input[type="radio"]:disabled:hover {
  background-color: var(--radio-disabled-color-bg);
  border: var(--radio-disabled-color-border);
}

:is(.hsfc-FormWrapper form, form, .form) input[type="radio"]:disabled:checked,
:is(.hsfc-FormWrapper form, form, .form) input[type="radio"]:disabled:checked:hover {
  background-color: var(--radio-disabled-checked-color-bg);
  border: var(--radio-disabled-checked-color-border);
} 

:is(.hsfc-FormWrapper form, form, .form) input[type="radio"]:after {
  position: static !important;
  content: '';
  height: var(--radio-inner-dimensions);
  width: var(--radio-inner-dimensions);
  border-radius: var(--radio-border-radius);
  transition: var(--input-transition);
  mask-image: none !important;
  -webkit-mask-image: none !important;
}

:is(.hsfc-FormWrapper form, form, .form) input[type="radio"]:checked:after {
  background-color: var(--radio-checked-color-inner);
}

:is(.hsfc-FormWrapper form, form, .form) input[type="radio"]:disabled:after {
  background-color: var(--radio-disabled-color-inner);
}

:is(.hsfc-FormWrapper form, form, .form) input[type="radio"]:disabled:checked:after {
  background-color: var(--radio-disabled-checked-color-inner);
}

/* Hover States */
@media (hover: hover) {
  :is(.hsfc-FormWrapper form, form, .form) input[type="radio"]:hover:not(input[type="radio"]:disabled) {
    border: var(--radio-hover-border);
  }

  :is(.hsfc-FormWrapper form, form, .form) input[type="radio"]:checked:hover:not(input[type="radio"]:disabled) {
    border: var(--radio-checked-hover-color-border);
  }

  :is(.hsfc-FormWrapper form, form, .form) input[type="radio"]:hover:not(input[type="radio"]:disabled):after {
    background-color: var(--radio-hover-color-inner);
  }

  :is(.hsfc-FormWrapper form, form, .form) input[type="radio"]:checked:hover:not(input[type="radio"]:disabled):after {
    background-color: var(--radio-checked-color-inner);
  }
}

/* ========================================================================== */
/*  Inputs - Select                                                           */
:is(.hsfc-FormWrapper form, form, .form) .hs-fieldtype-select .input {
  position: relative;
}

:is(.hsfc-FormWrapper form, form, .form) select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: calc(var(--input-padding) * 2) !important;
  text-wrap: wrap;
  line-height: 1.2 !important;
}

:is(.hsfc-FormWrapper form, form, .form) .hs-fieldtype-select .input:after, 
:is(.hsfc-FormWrapper form, form, .form) .hsfc-DropdownInput__Caret:after {
  content: var(--select-icon);
  pointer-events: none;
  position: absolute;
  inset: 50% 16px auto auto;
  line-height: 1;
  transform: translateY(-50%);
  transition: all 300ms ease-in-out;
  z-index: 1;
}

:is(.hsfc-FormWrapper form, form, .form) .hsfc-DropdownInput__Caret:after {
  position: static;
  transform: none;
}

:is(.hsfc-FormWrapper form, form, .form) .hsfc-DropdownInput__Caret span {
  display: none !important;
}

:is(.hsfc-FormWrapper form, form, .form) .hs-fieldtype-select .input:has(select:focus):after {
  transform: translateY(-50%) rotate(-180deg);
}

:is(.hsfc-FormWrapper form, form, .form) .hsfc-DropdownOptions {
  --hsf-field-input__padding: 8px;
  --hsf-field-dropdown-options__border-radius: var(--radius-md);
  margin-top: 7px;
  padding-bottom: var(--spacing-2x);

  & .hsfc-DropdownOptions__List__ListItem {
    font-size: 0.8889rem;
    margin-bottom: 0;
    padding: var(--spacing-2x) var(--spacing-6x);
    transition: var(--transition);

    @media (hover: hover) {
      &:hover {
        --hsf-field-input__background-color: var(--blue-50);
        color: var(--blue-base);
        filter: none;
      }
    }

    &.hsfc-DropdownOptions__List__ListItem--selected {
      --hsf-field-input__background-color: var(--blue-50);
      color: var(--blue-base);
      filter: none;
    }
  }
}

/* ========================================================================== */
/*  Inputs - Date Picker                                                      */
:is(.hsfc-FormWrapper form, form, .form) .hs-dateinput {
  position: relative;
}

:is(.hsfc-FormWrapper form, form, .form) .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%);
}

:is(.hsfc-FormWrapper form, form, .form) .hs-datepicker {
  width: 100%;
  max-width: 400px;
}

:is(.hsfc-FormWrapper form, form, .form) .fn-date-picker.pika-single.is-bound {
  width: 100%;
  border-radius: var(--date-picker-border-radius);
  border: var(--date-picker-border);
}

:is(.hsfc-FormWrapper form, form, .form) .fn-date-picker .pika-lendar {
  height: 100%;
  width: 100% !important;
  margin: 0 !important;
  padding: 12px;
  float: none !important;
}

:is(.hsfc-FormWrapper form, form, .form) .fn-date-picker .pika-table {
  margin-bottom: 0;
}

:is(.hsfc-FormWrapper form, form, .form) .fn-date-picker .pika-label,
:is(.hsfc-FormWrapper form, form, .form) .fn-date-picker .pika-table thead th,
:is(.hsfc-FormWrapper form, form, .form) .fn-date-picker .pika-button {
  font-family: var(--body-font);
  color: var(--date-picker-color) !important;
}

:is(.hsfc-FormWrapper form, form, .form) .fn-date-picker .pika-table thead th abbr {
  text-decoration: none;
}

:is(.hsfc-FormWrapper form, form, .form) .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);
}

:is(.hsfc-FormWrapper form, form, .form) .fn-date-picker td.is-today .pika-button {
  font-weight: 700;
  color: var(--date-picker-number-today-color) !important;
}

:is(.hsfc-FormWrapper form, form, .form) .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(.hsfc-FormWrapper form, 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(.hsfc-FormWrapper form, form, .form) input[type=file] {
  background-color: transparent;
  border-radius: 0;
  border: initial;
  padding-left: 0;
}

/* ========================================================================== */
/*  GDPR                                                                      */
:is(.hsfc-FormWrapper form, form, .form) .legal-consent-container .hs-richtext,
:is(.hsfc-FormWrapper form, form, .form) .legal-consent-container .hs-richtext p {
  font-size: 0.875rem;
  margin-bottom: 8px;
}

:is(.hsfc-FormWrapper form, form, .form) .form--style-dark .legal-consent-container .hs-richtext,
:is(.hsfc-FormWrapper form, form, .form) .form--style-dark .legal-consent-container .hs-richtext p {
  color: var(--neutral-200);
}

:is(.hsfc-FormWrapper form, form, .form) .legal-consent-container .hs-form-booleancheckbox-display > span,
:is(.hsfc-FormWrapper form, form, .form) .legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 0 !important;
}

/* ========================================================================== */
/*  Validation                                                                */
:is(.hsfc-FormWrapper form, form, .form) label span.hs-form-required {
  color: var(--input-color-required);
}

:is(.hsfc-FormWrapper form, form, .form) .hs-input.invalid.error {
  border-color: var(--input-error-color-border);
  box-shadow: var(--input-error-color-outline);
}

:is(.hsfc-FormWrapper form, form, .form) .inputs-list.hs-error-msgs {
  margin: 0;
}

:is(.hsfc-FormWrapper form, form, .form) .hs-error-msgs li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 4px;
  margin: var(--label-error-margin-top) 0 0;
  padding: 0;
}

:is(.hsfc-FormWrapper form, form, .form) .hs-error-msgs li:before {
  content: var(--label-error-image);
  display: none;
  line-height: 1;
  height: 16px;
  width: 16px;
}

:is(.hsfc-FormWrapper form, 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                                                                   */
/* :is(.hsfc-FormWrapper form, form, .form) .grecaptcha-badge {
  margin: 0 auto;
} */

:is(.hsfc-FormWrapper form, form, .form) .hs_email_opt_in .inputs-list {
  margin-top: 0;
}

/* ========================================================================== */
/*  Submit Message                                                            */
:is(.hsfc-FormWrapper form, form, .form) .submitted-message {
  text-align: center;
  font-weight: 700;
  color: var(--primary-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;
}
.is-anchor {
  scroll-margin-top: var(--scroll-margin-top);
}

/* ========================================================================== */
/*  BACKGROUNDS                                                               */
/* ========================================================================== */
.dnd-section:has(.section-background--gray) {
  background: var(--background-gray);
}

.dnd-section:has(.section-background--blue) {
  background: var(--background-blue);
}

.section-background-hidden-element {
  display: none;
}

/* ========================================================================== */
/*  Shapes                                                                    */
.section-bg-shape {
  position: absolute;
  inset: auto auto calc(100% - 1px) 0;
  width: 100%;
  height: auto;

  .dnd-section:has(&) {
    position: relative;
  }

  &.section-bg-shape--down {
    inset: calc(100% - 1px) auto auto 0;
  }

  & .icon-wrapper {
    width: auto;
  }

  & svg {
    width: 100%;
    height: auto;
  }
}


/* ========================================================================== */
/*  Typography                                                                */
/* ========================================================================== */
.text-light,
.text-light :is(p, span, li):not(.preheader, .text-highlight) {
  color: var(--text-light);
}

.text-sm {
  font-size: var(--text-sm);
}

.text-xs {
  font-size: var(--text-xs);
}

:has(> .masked-link) {
  position: relative;
}

.masked-link {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}

.text-highlight {
  position: relative;

  & .icon-wrapper {
    position: absolute;

    & svg {
      height: 100%;
      width: 100%;
    }
  }

  &.text-highlight--teal {
    --shape-color: var(--teal-400);
  }

  &.text-highlight--red {
    --shape-color: var(--red-400);
  }

  &:is(.text-highlight--underline, .text-highlight--stroke) {
    display: inline-block;
    margin-bottom: var(--spacing-5x);
  }

  &.text-highlight--underline .icon-wrapper {
    inset: 100% auto auto 50%;
    width: 100%;
    transform: translateX(-50%);

    & svg path {
      fill: var(--shape-color);
    }
  }

  &.text-highlight--stroke .icon-wrapper {
    inset: 100% auto auto 50%;
    width: 105%;
    transform: translateX(-50%);

    & svg path {
      fill: var(--shape-color);
    }
  }

  &.text-highlight--circle .icon-wrapper {
    inset: 50% auto auto 50%;
    transform: translate(-50%, -50%);
    width: calc(100% + 10px);

    & svg path {
      stroke: var(--shape-color);
    }
  }

  @media (max-width: 820px) {
    &:is(.text-highlight--underline, .text-highlight--stroke, .text-highlight--circle) svg {
      display: none;
    }
  }
}

/* ========================================================================== */
/* Slider                                                                     */
/* ========================================================================== */
.slider-container {
  position: relative;
}

.swiper-button-wrapper {
  display: flex;
  align-items: center;
  gap: var(--spacing-3x);
}

.slider-container :is(.swiper-button-prev, .swiper-button-next) {
  flex-shrink: 0;
  position: static;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  width: 53px;
  border-radius: var(--radius-lg);
  border: 2px solid var(--border);
  background: var(--white-base);
  box-shadow: var(--box-shadow-md);
  transition: all .25s ease-out;
  margin: 0;

  &.swiper-button-disabled {
    opacity: .31;
  }

  &:after {
    display: none;
  }

  &:not(.swiper-button-disabled):hover {
    border-color: var(--blue-base);

    & svg path {
      fill: var(--blue-base);
    }
  }
}

.slider-container .swiper-button-prev {
  & svg {
    transform: rotateY(180deg);
  }
}

/* ========================================================================== */
/*  Scrollbar                                                                 */
.slider-container .swiper:has(+ .swiper-scrollbar) {
  margin-bottom: var(--spacing-8x);
}

.slider-container .swiper-scrollbar {
  --swiper-scrollbar-border-radius: 8px;
  --swiper-scrollbar-bg-color: var(--primary-100);
}

.slider-container .swiper-horizontal > .swiper-scrollbar, 
.slider-container .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: static !important;
  height: 4px;
  width: 100%;
  border-radius: var(--radius-xl);
  background: var(--border);

  @media (max-width: 640px) {
    height: 9px;
  }
}

.slider-container .swiper-scrollbar-drag {
  --swiper-scrollbar-drag-bg-color: var(--blue-base);
  --swiper-scrollbar-border-radius: var(--radius-xl);
}

/* ========================================================================== */
/*   Pagination                                                               */
.slider-container .swiper-pagination {
  display: none;
  position: static;
  justify-content: center;
  gap: var(--spacing-2x);
  margin-top: var(--spacing-6x);

  @media (max-width: 820px) {
    display: flex;
  }  
}

.slider-container :is(.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-horizontal.swiper-pagination-bullets) 
.swiper-pagination-bullet {
  --swiper-pagination-bullet-size: 12px;
  --swiper-pagination-bullet-horizontal-gap: 0px;
  --swiper-pagination-bullet-inactive-color: var(--gray-200);
  --swiper-pagination-bullet-inactive-opacity: 1;
  --swiper-pagination-color: var(--blue-base);

}
[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);
}
.video-player-wrapper {
  --media-button-touch-hover-border-radius: 8px;
  --media-button-touch-hover-bg: transparent;
  position: relative;
  width: 100%;
  height: fit-content;
  overflow: clip;
  border-radius: var(--radius-md);
}

.video-player {
  --media-button-icon-size: 42px;
  --media-button-hover-transform: none;
  --media-button-hover-bg: transparent;
  --right-btn-pos: 24px;
  position: relative;
  height: fit-content;
}

.video-player__thumbnail {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-player media-player[data-media-player] {
  cursor: pointer;
  position: static;
  display: block;
  height: 100% !important;
  width: 100% !important;
}

.video-player iframe .ytp-watermark {
  display: none;
}

.video-player .vds-poster :where(img) {
  object-fit: cover;
}


/* ========================================================================== */
/*  MODAL VARIANT                                                             */
body:has(dialog.video-player-modal-wrapper[open]) {
  overflow: clip;
}

body:has(dialog.video-player-modal-wrapper[open][data-state="closing"]) {
  overflow: auto;
}

dialog.video-player-modal-wrapper {
  cursor: default;
  display: none;
  justify-content: center;
  align-items: center;
  height: 100vh;
  max-height: 100vh;
  width: 100vw;
  max-width: 100vw;
  background: transparent;
  padding: 0 var(--container-padding);
  border: none;
  opacity: 0;
  transition: all 200ms ease-in-out;
  backdrop-filter: blur(12px);
  z-index: 0;
}

dialog.video-player-modal-wrapper[open] {
  display: flex;
  animation: openVideoModal 300ms forwards;
}

dialog.video-player-modal-wrapper[open][data-state="closing"] {
  animation: closeVideoModal 300ms forwards;
}

dialog.video-player-modal-wrapper::backdrop {
  display: none;
}

@keyframes openVideoModal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes closeVideoModal {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.video-modal__backdrop {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  height: 100%;
  width: 100%;
  background: rgb(from var(--blue-200) r g b/.5);
  z-index: -1;
}

.video-player-modal {
  --media-button-icon-size: 24px;
  max-width: 1063px;
  aspect-ratio: 16/9;
  height: auto !important;
  width: 100% !important;
  max-height: calc(100% - ((var(--container-padding) * 2)));
}

.video-player-modal media-player[data-media-player] {
  --video-border-radius: var(--radius-lg);
  height: 100% !important;
  width: 100% !important;
  background: var(--black-base);
} 

.video-player-modal [data-media-player][data-layout=video]:not([data-fullscreen]) {
  border: none;
}

/* :where(.video-player-modal .vds-video-layout .vds-controls[data-visible]) {
  background-image: linear-gradient(to top,rgb(0 0 0 / .6),10%,transparent,95%,rgb(0 0 0 / .0)) !important;
} */

.modal-close-btn {
  cursor: pointer;
  position: absolute;
  inset: 43px 51px auto auto;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 48px;
  border-radius: var(--radius-xl);
  transition: all 550ms cubic-bezier(.215,.61,.355,1);
  background: var(--blue-base);
  z-index: 10;
}

.modal-close-btn:hover {
  background: var(--blue-600);
}

.modal-close-btn svg {
  display: block;
}

.video-modal-trigger {
  cursor: pointer;
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: clip;
  z-index: 0;
}

.video-modal-trigger:before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  height: 100%;
  width: 100%;
  background: var(--blue-base);
  opacity: .2;
  z-index: -1;
}

.video-modal-trigger__icon {
  --bg-color: var(--blue-base);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 119px;
  aspect-ratio: 1;
  border-radius: var(--radius-xl);
  background: var(--bg-color);
  box-shadow: var(--box-shadow-lg);
  z-index: 0;
  transition: var(--transition);
}

.video-modal-trigger__icon:hover {
  --bg-color: var(--blue-600);
}

.video-slide:hover .video-modal-trigger__icon {
  transform: scale(1.2);
}

.video-modal-trigger__icon .icon-wrapper {
  margin-left: 8px;
}

@media (max-width: 640px) {
  .modal-close-btn {
    inset: 20px 20px auto auto;
  }
}

/* Components
  Specific pieces of UI that are stylized. Typically used for global partial styling
*/

body:has(.header[data-state="open"]) {
  overflow: clip;
}

div :has(> header.header) {
  position: sticky;
  top: 0;
  z-index: 1000;
}

header.header {
  --nav-item-color: var(--text-base);
  --nav-item-color-hover: var(--blue-base);
  --bg-color: var(--white-base);
  --border-color: var(--white-base);
  width: 100%;
  padding-block: var(--spacing-6x) calc(var(--spacing-6x) - 1px);
  background: var(--bg-color);
  transition: var(--transition);
  border-bottom: 1px solid var(--border-color);

  @media (max-width: 1050px) {
    padding-block: var(--spacing-5x);
  }

  &[data-state="open"] {
    --nav-item-color: var(--text-base);
    --bg-color: var(--white-base);
    --border-color: var(--gray-100);
  }

  .hubspot-disable-focus-styles & {
    position: relative;
  }

  &[data-scrolled="true"] {
    box-shadow: 0px 3px 3px 0px rgb(from var(--text-base) r g b / 0.05);
  }
}


.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-16x);
}

.header-logo {
  flex: 0 0 auto;
  display: block;
}

.header-logo :is(svg, img) {
  width: 100%;
  height: auto;
}

.mobile-trigger {
  position: relative;
  display: none;
  height: 14px;
  width: 19px;

  @media (max-width: 1050px) {
    display: block;
  }
}

.mobile-trigger span {
  --translate-start: -50%;
  --translate-end: -50%;
  --rotate-start: 0;
  --rotate-end: 0;
  --inset-start: 50% auto auto 0;
  --inset-end: 50% auto auto 0;
  --opacity-end: 0;
  position: absolute;
  inset: 50% auto auto 0;
  width: 100%;
  height: 2px;
  transform: translateY(var(--translate-start));
  animation: triggerClose 400ms forwards;
  
  .header[data-state="open"] & {
    animation: triggerOpen 400ms forwards;
  }

  & svg {
    width: 100%; 
    height: 100%;
    
    & path {
      fill: var(--nav-item-color);
    }
  }


  &:first-child {
    --translate-start: 0;
    --rotate-end: 45deg;
    --inset-start: 0 auto auto 0;
    --opacity-end: 1;
  }

  &:last-child {
    --translate-start: 0;
    --rotate-end: -45deg;
    --inset-start: auto auto 0 0;
    --opacity-end: 1;
  }
}

@keyframes triggerOpen {
  0% {
    opacity: 1;
    inset: var(--inset-start);
    transform: translateY(var(--translate-start)) rotate(var(--rotate-start));
  }

  50% {
    opacity: var(--opacity-end);
    inset: var(--inset-end);
    transform: translateY(var(--translate-end)) rotate(var(--rotate-start));
  }

  100% {
    opacity: var(--opacity-end);
    inset: var(--inset-end);
    transform: translateY(var(--translate-end)) rotate(var(--rotate-end));
  }
}

@keyframes triggerClose {
  0% {
    opacity: var(--opacity-end);
    inset: var(--inset-end);
    transform: translateY(var(--translate-end)) rotate(var(--rotate-end));
  }

  50% {
    opacity: var(--opacity-end);
    inset: var(--inset-end);
    transform: translateY(var(--translate-end)) rotate(var(--rotate-start));
  }

  100% {
    opacity: 1;
    inset: var(--inset-start);
    transform: translateY(var(--translate-start)) rotate(var(--rotate-start));
  }
}

/* ========================================================================== */
/*  Buttons                                                                   */
.header .btn-group {
  width: fit-content;

  @media (max-width: 1050px) {
    width: 100%;
    padding: 0 var(--container-padding) var(--spacing-8x);
  }
}

/* ========================================================================== */
/*  Navigation                                                                */
.header-nav-wrapper {
  flex: 1 1 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-16x);

  @media (max-width: 1050px) {
    flex: none;
    position: absolute;
    inset: 100% auto auto 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    height: 0;
    width: 100vw;
    background: var(--white-base);
    transition: var(--transition);
    overflow: hidden;

    .header[data-state="open"] & {
      height: calc(100vh - 100%);
      overflow-y: auto;
    }
  }
}

.hn-list {
  display: flex;
  align-items: center;
  gap: var(--spacing-6x);

  @media (max-width: 1050px) {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}

ul.no-list-styling li.hn-item-wrapper {
  margin-bottom: 0;
  position: relative;
  padding-block: 9px;
  
  &:before {
    content: '';
    display: none;
    position: absolute;
    inset: 100% auto auto 0;
    width: 100%;
    height: 20px;
    background: transparent;
  }

  @media (min-width: 1050px) {
    --panel-visibility: hidden !important;
    --panel-height: auto !important;

    &[data-state="open"] {
      --panel-visibility: visible !important;

      &:before {
        display: block;
      }
    }
  }

  @media (max-width: 1050px) {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid var(--border);

    &:last-child {
      border-bottom: none;
      margin-bottom: var(--spacing-4x);
    }
  }
}

.hn-item {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--spacing-2x);
  font-size: 0.9444rem;
  font-weight: 600;
  color: var(--nav-item-color);
  text-decoration: none;
  transition: var(--transition);
  
  & svg {
    height: 6px;
    width: 8px;
    transition: var(--transition);
    
    & path {
      fill: var(--nav-item-color);
      transition: var(--transition);
    }

    @media (max-width: 1050px) {
      height: 14px;
      width: 16px;
    }
  }
  

  li.hn-item-wrapper[aria-expanded="true"] & {
    --nav-item-color: var(--nav-item-color-hover);
    
    & svg {
      transform: rotate(-180deg);
    }

    @media (max-width: 1050px) {
      background: var(--blue-50);
    }
  }
  
  @media (hover: hover) {
    &:hover {
      --nav-item-color: var(--nav-item-color-hover);
    }
  }

  @media (min-width: 1050px) {
    li.hn-item-wrapper[data-state="open"] & {
      --nav-item-color: var(--nav-item-color-hover);

      & svg {
        transform: rotate(-180deg);
      }
    }
  }

  @media (max-width: 1050px) {
    justify-content: space-between;
    font-size: 1.1111rem;
    line-height: normal;
    width: 100%;
    padding: var(--spacing-5x) var(--container-padding);
  }
}

@media (max-width: 1050px) {
  .header-nav {
    width: 100%;
    background: var(--background-white);
    /* padding: 0 var(--container-padding) var(--spacing-12x); */
  }
}

/* ========================================================================== */
/*  Dropdowns                                                                 */
.hn-dropdown-wrapper {
  background: var(--surface-white);
  transition: all 200ms ease-in-out;

  @media (min-width: 1050px) {
    pointer-events: none;
    position: absolute;
    inset: calc(100% + 20px) auto auto -50%;
    border-radius: var(--radius-md);
    box-shadow: var(--box-shadow-sm);
    opacity: 0;
    transition: all 200ms ease-in-out !important;

    .hn-item-wrapper[data-state="open"] & {
      pointer-events: auto;
      opacity: 1;
    }
  }
}

.hn-dropdown {
  padding: var(--spacing-5x) var(--container-padding) var(--spacing-4x);
  width: 100%;

  & li {
    margin-bottom: 0;
  }

  @media (min-width: 1050px) {
    padding: var(--spacing-8x) var(--spacing-8x) var(--spacing-10x);
    width: fit-content;
    transition: visibility .2s linear;
  }
}

/* MEGA MENU */
.hn-dropdown-wrapper--mobile {
  display: none;

  @media (max-width: 1050px) {
    display: block;
  }
}

.hn-mega-dropdown-container {
  display: none;
  position: absolute;
  inset: 100% auto auto 50%;
  width: 100vw;
  transform: translateX(-50%);
  height: 0;
  z-index: 0;
  transition: var(--transition);

  @media (min-width: 1050px) {
    display: block;
    
    .header[data-state="open"] & {
      height: calc(100vh - 100%);
    }
  }
}

.hn-mega-dropdown__overlay {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(15px);
  background: rgb(from #000 r g b/.1);
  z-index: -1;
}

.hn-mega-dropdown__groups {
  --dropdown-height: 0;
  position: relative;
  background: var(--white-base);
  width: 100%;
  height: var(--dropdown-height);
  transition: var(--transition);
  overflow: clip;
  box-shadow: 0px 6px 14px 0px rgba(0, 0, 0, 0.02);
}

@keyframes fadeIn {
  0% {
    visibility: visible;
    opacity: 0;
  }
  /* 1% {
    display: block;
    opacity: 0;
  } */
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    visibility: visible;
    opacity: 100%;
  }
  100% {
    visibility: hidden;
    opacity: 0;
  }
}

.hn-mega-dropdown__group {
  visibility: hidden;
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  opacity: 0;
  animation: fadeOut 400ms forwards;

  &[data-state="open"] {
    visibility: visible;
    opacity: 1;
    animation: fadeIn 400ms forwards;
  }
}

.hn-mega-dropdown {
  display: flex;
  justify-content: space-between;
  gap: var(--spacing-12x);
}

.hn-mega-dropdown-inner-wrapper {
  flex: 1 1 auto;
  display: flex;
  z-index: 0;
}

/*** Dropdown Items ***/
.hn-dropdown-section {
  flex: 0 0 auto;
  padding-block: var(--spacing-8x) var(--spacing-12x);
  z-index: 1;

  &:has(.hn-dropdown-section__background) {
    position: relative;
    padding-left: var(--spacing-16x);
    flex-grow: 1;
    z-index: 0;
  }

  &.hn-dropdown-featured-resources:has(.hn-dropdown-section__background) {
    padding-left: var(--spacing-16x);
    flex-grow: 0;
  }

  @media (max-width: 1050px) {
    padding: 0 0 var(--spacing-2x);
  }
}

.hn-dropdown-section--last {
  padding-left: var(--spacing-8x);
}

.hn-dropdown-section__background {
  --width-offset: calc(100vw - var(--container-width));
  content: '';
  position: absolute;
  inset: 0 auto auto var(--spacing-8x);
  height: 100%;
  width: calc(100% + (var(--width-offset) / 2) - var(--spacing-4x));
  background: var(--background-gray);
  z-index: -1;

  .hn-dropdown-featured-resources & {
    inset: 0 auto auto 0;
    width: calc(100% + (var(--width-offset) / 2));

    @media (max-width: 1320px) {
      width: calc(100% + var(--container-padding));
    }
  }

  @media (max-width: 1320px) {
    width: calc(100% + var(--container-padding));
  }
}

.hn-dropdown-section__title {
  font-size: var(--text-xs);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-light);
  text-transform: uppercase;
  margin-bottom: var(--spacing-4x);

  @media (max-width: 1050px) {
    margin: var(--spacing-4x) 0 var(--spacing-5x);
  }
}

.hn-dropdown-featured-link-wrapper {
  margin-right: var(--spacing-8x);
  padding-right: var(--spacing-8x);
  border-right: 1px solid var(--border);
}

.hn-dropdown-featured-link {
  @media (max-width: 1050px) {
    padding-bottom: var(--spacing-2x);
  }
}

.hn-dropdown-featured-link__image {
  width: 222px;
  height: 133px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-3x);
}

.hn-dropdown-section__links {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-5x);

  &:has(.hn-dropdown-section__links-column) {
    flex-direction: row;
    gap: var(--spacing-12x);
  }

  @media (max-width: 1050px) {
    gap: var(--spacing-2x);
  }
}

.hn-dropdown-section__links-column {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4x);
}

.hn-dropdown-link {
  flex-shrink: 0;
  display: flex;
  gap: var(--spacing-2x);
  max-width: 222px;
  padding-right: 20px;
  z-index: 0;

  @media (max-width: 1050px) {
    padding-right: 0;
    max-width: 100%;
  }
}

.hn-dropdown-link__icon {
  height: 26px;
  width: 26px;
  object-fit: contain;
  flex-shrink: 0;

  @media (max-width: 1050px) {
    display: none;
  }
}

.hn-dropdown-link__title {
  display: flex;
  align-items: center;
  gap: var(--spacing-2x);
  font-size: var(--text-sm);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -.45px;
  transition: var(--transition);

  &:has(+ p) {
    margin-bottom: var(--spacing-1x);
  }

  & svg {
    opacity: 0;
    transform: translateX(-4px);
    transition: var(--transition);
  }

  .hn-dropdown-featured-link:hover & {
    color: var(--blue-base);

    & svg {
      opacity: 1;
      transform: translateX(0);
    }

    & path {
      fill: var(--blue-base);
    }
  }

  @media (max-width: 1050px) {
    font-size: var(--rem-base-px);
    letter-spacing: -.54px;;
  }
}

.hn-dropdown-link__description {
  font-size: var(--text-xs);
  line-height: 1.2;
  color: var(--text-light);
}

.hn-dropdown-link__hover-bg {
  position: absolute;
  inset: 50% auto auto calc(50% + 5px);
  width: calc(100% + 30px);
  height: calc(100% + 20px);
  border-radius: var(--radius-lg);
  background: var(--blue-50);
  transition: var(--transition);
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: -1;

  .hn-dropdown-link:hover & {
    opacity: 1;
  }

  @media (max-width: 1050px) {
    display: none;
  }
}

.hn-dropdown-link__hover-arrow {
  position: absolute;
  inset: 50% 18px auto auto;
  transform: translateY(-50%);
  transition: var(--transition);

  & svg path {
    fill: var(--text-base);
  }

  .hn-dropdown-link:hover & {
    transform: translate(5px, -50%);
  }
}

/*** Feature Resources ***/
.hn-dropdown-featured-resources-wrapper {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4x);
}

.hn-dropdown-fr {
  display: grid;
  grid-template-columns: 104px auto;
  gap: var(--spacing-5x);
  padding: var(--spacing-3x) var(--spacing-4x);
  max-width: 374px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white-base);
  transition: var(--transition);

  & .btn--card-link {
    font-size: 0.7222rem;
    letter-spacing: -.39px;
  }

  @media (hover: hover) {
    &:hover {
      border-color: var(--blue-base);
    }
  }
}

.hn-dropdown-fr__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--spacing-2x);
}

.hn-dropdown-fr__image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.hn-dropdown-fr__type {
  font-size: 0.6111rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -.33px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: var(--spacing-2x);
}
.footer {
  position: relative;
  border-top: 1px solid var(--border);
  z-index: 0;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--spacing-14x);
  padding-block: var(--spacing-16x) var(--spacing-14x);

  @media (max-width: 640px) {
    flex-direction: column;
    gap: var(--spacing-8x);
    padding-block: var(--spacing-8x); 
  }
}

.footer-floating-shape {
  position: absolute;
  inset: auto 0 0 auto;
  opacity: .43;
  z-index: -1;

  @media (max-width: 820px) {
    display: none;
  }
}

/* ========================================================================== */
/*  Company Info                                                              */
.footer-company-info {
  flex: 0 1 301px;

  @media (max-width: 640px) {
    flex: none;
  }
}

.footer-company-info__logo {
  height: 42px;
  width: auto;
  margin-bottom: var(--spacing-5x);
}

.footer-company-info__description {
  font-size: var(--text-sm);
  margin-bottom: var(--spacing-4x);
}

.footer-company-info a.btn {
  font-size: 0.7778rem;
  margin-bottom: var(--spacing-8x);

  @media (max-width: 640px) {
    width: fit-content !important;
    margin-bottom: var(--spacing-5x);
  }
}

.footer-company-info__email-link {
  display: flex;
  align-items: center;
  gap: var(--spacing-3x);
  font-size: 0.7778rem;
  font-weight: 400;
  text-decoration-color: var(--blue-base);

  & svg {
    height: 24px;
    width: 24px;
  }
}

/* ========================================================================== */
/*  Navigation                                                                */
.footer-nav {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-10x);
}

.footer-nav-menu {
  flex: 1 1 135px;
}

.footer-nav-menu__title {
  font-size: var(--text-sm);
  font-weight: 500;
  text-transform: uppercase;
  line-height: 1.2;
  color: var(--text-light);
  margin-bottom: var(--spacing-6x);

  @media (max-width: 640px) {
    margin-bottom: var(--spacing-5x);
  }
}

li.footer-nav-menu__item {
  font-size: var(--text-sm);
  line-height: 1.2;
  width: fit-content;
  margin-bottom: var(--spacing-3x);

  & a {
    font-size: var(--text-sm);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-base);

    &:hover {
      color: var(--blue-600);
      text-decoration-color: var(--blue-600);
    }
  }
}

/* ========================================================================== */
/*  Newsletter & Socials                                                      */
.footer-newsletter {
  flex: 0 1 292px;

  @media (max-width: 640px) {
    flex: none;
  }
}

.footer-newsletter__heading {
  margin-bottom: var(--spacing-2x);
}

.footer-newsletter__description {
  font-size: var(--text-xs);
  color: var(--text-light);
  margin-bottom: var(--spacing-4x);
}

.footer-newsletter__form form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  background: var(--white-base);
  border-radius: var(--radius-md);
  border: 1px solid var(--text-base);
  padding-right: var(--spacing-1x);
  transition: var(--transition);

  &:has(.hs-email input:is(:active, :focus, :focus-visible)) {
    border-color: var(--blue-base);
  }

  &:has(.hs-email :is(input.error, input.invalid)) {
    border-color: var(--form-error);
  }

  & .hs-email {
    flex: 1;
    position: relative;
    margin-bottom: 0;

    & input {
      font-size: 0.7778rem !important;
      border: none;
    }

    & > label {
      display: none;
    }

    & .hs-error-msgs {
      position: absolute;
      inset: 100% auto auto 0;
      margin-top: 0;
    }

    & .hs-error-msg {
      text-wrap: nowrap;
    }
  }

  & .hs-submit input {
    font-size: 15px;
    padding-block: 9px;
    padding-inline: 21px;
  }

  & .hs_error_rollup {
    position: absolute;
    inset: calc(100% + 20px) auto auto 0;
  }
}

.footer-social-links {
  display: flex;
  align-items: center;
  gap: var(--spacing-2x);
  margin-top: var(--spacing-6x);
}

.footer-social-links__link {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 32px;
  width: 32px;
  border: 1px solid var(--blue-base);
  border-radius: var(--radius-xl);
  transition: var(--transition);

  & svg path {
    fill: var(--blue-base);
    transition: var(--transition);
  }

  &:hover {
    border-color: var(--blue-600);

    & svg path {
      fill: var(--blue-600);
    }
  }
}

/* ========================================================================== */
/*  Subfooter                                                                 */
.subfooter {
  padding-block: var(--spacing-4x);
  background: var(--background-gray);
}

.subfooter-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-5x);
}

.subfooter__copyright {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--text-base);

  @media (max-width: 640px) {
    order: 2;
  }
}

.subfooter-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-3x);

  @media (max-width: 640px) {
    order: 1;
  }
}

a.subfooter-links__link {
  font-size: var(--text-xs);
  font-weight: 400;
  color: var(--text-base);
  text-decoration-color: var(--text-base);

  &:hover {
    color: var(--blue-600);
    text-decoration-color: var(--blue-600);
  }
}
/* 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;
  max-width: 100%;
}