/* Theme base styles */

/* ========================================================================== */
/*  1. LAYOUT                                                #layout          */
/* ========================================================================== */
:root {
  --container-width: 71rem;
  --column-gap: 2.13%;

  /* ========================================================================== */
  /*  Spacing                                                 #spacing          */
  --spacer-sm: 16px;
  --spacer-md: 32px;
  --spacer-lg: 48px;
  --spacer-xl: 64px;
  --spacer-xxl: 80px;

  /* adjust this margin to update spacing between dnd sections */ 
  --vertical-section-spacer: 32px;
}

@media (min-width: 768px) {
  :root {
    --vertical-section-spacer: 80px;
  }
}

@media (min-width: 1024px) {
  :root {
    --vertical-section-spacer: 120px;
  }
}

/* ========================================================================== */
/*  Breakpoints                                             #brk              */
  






/* ========================================================================== */
/*  2. COLORS                                                #clrs            */
/* ========================================================================== */     

:root,
:before,
:after {
  /* primary */
  /* --primary-50: #f1e7ff; */
  --primary-300:  #6AC3FB;
  /* --primary-400:  #446CA7; */
  --primary-base: #079BF8;
  --primary-600:  #045D95;

  /* secondary */
  /* --secondary-400:  #9cffe0;
  --secondary-base: #12FFCA; 
  --secondary-600:  #00f4a7; */

  /* text */
  --gray-300:  #E4E4E4;
  --gray-base:  #CDCCCE;
  --gray-500:  #B4B4B4;
  --text-base: #001624;
  --white:     #fff;
  --off-white:  #CBCBCB;

  /* error state */
  --error-state: #f1604c;

  /* elements */
  --background-base: #F6F6F6;
  --background-600: #161616;
  --border-color:   #deebef;
  --cs-box-shadow:      0 0px 10px 1px rgb(0, 0, 0, .09);
  --cs-box-shadow-dark: 0 0px 14px 3px rgb(0, 0, 0, .12);
  --box-shadow:         0 0 6px 0 rgba(51,51,51,0.14);
  --box-shadow-dark:    0 0 6px 0 rgba(51,51,51,0.14);
  --border-radius:    8px;
}

/* ========================================================================== */
/*  3. BUTTONS                                               #btn             */
/*=========================================================================== */

.btn, form {
  /* global settings */
  --btn-transition: all 250ms ease;
  /* primary */
  --btn-primary-bg:     var(--primary-base);
  --btn-primary-hover:  var(--primary-600);
  --btn-primary-text:   var(--white);
  --btn-primary-border: var(--primary-base);
  /* secondary */
  --btn-white-bg:          var(--white);
  --btn-white-text:        var(--primary-base);
  --btn-white-text-hover:  var(--white);
  --btn-white-hover:       var(--primary-600);
  /* clear */
  --btn-clear-text:         var(--primary-base);
  --btn-clear-border:       var(--primary-base);
  --btn-clear-hover:        var(--primary-600);
  --btn-clear-text-hover:   var(--white);
  /* ghost */
  --btn-ghost-border:       var(--white);
  --btn-ghost-text:         var(--white);
  --btn-ghost-hover:        var(--primary-600);
  --btn-ghost-border-hover: var(--white);
  --btn-ghost-bg-hover:     var(--white);
}

/* ========================================================================== */
/*  4. TYPOGRAPHY                                            #typo            */
/*=========================================================================== */

:root {
  /* ========================================================================== */
  /*  base                                                                      */

  /* rem base font size, define in px */
  --rem-base-px: 18px;
  --base-font-size: 1rem;
  --sm-font-size: .8rem;
  --smallest-font-size: 0.512rem;
  --base-nav-size: 0.64rem;
  --heading-line-height: 1.3;
  --body-line-height: 1.6;

  /* ========================================================================== */
  /* font family                                                                */
  --primary-font-family: 'Roboto', sans-serif;
  --secondary-font-family: 'Inter', sans-serif;

  /* ========================================================================== */
  /*  headings                                                                  */

  /* update multiplier to change responsive sizing */
  --text-multiplier: 1;
  --heading-one: calc(2.888rem * var(--text-multiplier, 1));
  --heading-two: calc(2.222rem * var(--text-multiplier, 1)) ;
  --heading-three: calc(1.667rem * var(--text-multiplier, 1));
  --heading-four: calc(1.333rem * var(--text-multiplier, 1));
  --heading-five: calc(1.111rem * var(--text-multiplier, 1));
  --heading-six: calc(1.1111rem * var(--text-multiplier, 1));
  --paragraph: calc(1rem * var(--text-multiplier, 1));
}

@media (max-width: 640px) {
  :root {
    --text-multiplier: .7;
  }
}

/* ========================================================================== */
/*  4. FORMS                                                #form             */
/* ========================================================================== */  

.form, form, form :before, form :after {
  /* ========================================================================== */
  /*  labels                                                                    */

  --label-color: var(--text-base);
  --label-font-size: 15px;
  --label-font-weight: 700;
  --label-margin-b: 4px;

  /* ========================================================================== */
  /*  legend                                                                    */

  --legend-font-size: 15px;

  /* ========================================================================== */
  /*  inputs                                                                    */

  --input-color: var(--text-base);
  --input-bg-color: var(--white);
  --input-border: 1px solid var(--gray-base);
  --input-border-radius: 8px;
  --input-padding: 10px 20px;
  --input-font-size: 16px;
  --input-font-weight: 400;
  --input-line-height: 1.15;
  --input-placeholder-color: var(--gray-300);
  --input-focus-border-color: var(--primary-base);

  --input-spacing-y: 10px;
  
  --input-disabled: .4;
  --input-disabled-border: var(--gray-base);
  --input-required-color: var(--error-state); /* asterisk following label denoting required field */
  --input-error-color: var(--error-state); /* this is for text and border color */
  --input-error-font-size: 12px;

  /* ========================================================================== */
  /*  textarea                                                                  */

  --textarea-height: 150px;

  /* ========================================================================== */
  /*  checkboxes                                                                */

  --checkbox-color: var(--input-color);
  --checkbox-height: 18px;
  --checkbox-width: var(--checkbox-height);
  --checkbox-font-size: 16px;
  --checkbox-font-weight: var(--input-font-weight);
  --checkbox-bg-color: var(--white);
  --checkbox-border: 1px solid var(--gray-base);
  --checkbox-border-radius: 4px;
  --checkbox-transition: all 200ms ease;
  --checkbox-hover-border-color: var(--primary-base);

  --checkbox-checked-bg-color: var(--primary-base);
  --checkbox-checked-border-color: var(--primary-base);
  --checkbox-checked-image: url('https://24425556.fs1.hubspotusercontent-na2.net/hubfs/24425556/raw_assets/public/spring-valley-theme-2023/assets/checkmark-white-16x16.svg');
  --checkbox-checked-hover-bg-color: var(--primary-600);
  --checkbox-checked-hover-border-color: var(--primary-600);
  
  /* ========================================================================== */
  /*  radio                                                                     */

  --radio-color: var(--input-color);
  --radio-height: 18px;
  --radio-width: var(--checkbox-height);
  --radio-font-size: 16px;
  --radio-font-weight: var(--input-font-weight);
  --radio-bg-color: var(--white);
  --radio-border: 1px solid var(--text-400);
  --radio-border-radius: 50px;
  --radio-transition: all 200ms ease;
  --radio-hover-border-color: var(--primary-base);

  --radio-checked-bg-color: var(--primary-base);
  --radio-checked-border-color: var(--primary-base);
  --radio-checked-hover-border-color: var(--primary-600);

  --radio-inner-height: 10px;
  --radio-inner-width: var(--radio-inner-height);
  --radio-inner-color: var(--primary-base);
  --radio-inner-hover-color: var(--primary-600);

  /* ========================================================================== */
  /*  select                                                                    */

  --select-icon: url('');
  --select-icon-height: 10px;
  --select-icon-width: 17px;
  --select-icon-margin-right: 20px; /* match this to x-padding on input fields */

  /* ========================================================================== */
  /*  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(--purple-base);
  --date-picker-border: none;
  --date-picker-border-radius: var(--border-radius);

  --date-picker-number-hover-color: var(--white);
  --date-picker-number-hover-bg: var(--secondary-600);
  --date-picker-number-today-color: var(--primary-base);
  --date-picker-number-selected-color: var(--white);
  --date-picker-number-selected-bg: var(--primary-base);

  /* ========================================================================== */
  /*  light style                                                               */

  --label-light-color: var(--white);
}

/* 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.
*/

*, *: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)
*/

/* This is active only on the page editor. Purpose is to lower the header to allow DnD */
/* hover and dragging to the top of the page, behind where the header normally sits */


/* container */
.content-wrapper,
.dnd-section > .row-fluid {
  margin: 0 auto;
  padding: 0 21px;
  max-width: var(--container-width);
  box-sizing: border-box;
}

.dnd-section[class*="force-full-width-section"] {
  position: relative;
}

.dnd-section[class*="force-full-width-section"] > .row-fluid {
  padding: 0;
}

.dnd-section[class*="force-full-width-section"] .row-fluid > div {
  padding: 0 21px;
}

.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 {
  margin: 0 0 var(--vertical-section-spacer);
}

/* set custom padding for fixed header */
.row-number-1.dnd-section {
  margin-top: 66px;
  padding-top: 32px;
}

@media (min-width: 640px) {
  .row-number-1.dnd-section {
    margin-top: 77px;
    padding-top: 64px;
  }
}

@media (min-width: 1409px) {
  .content-wrapper,
  .dnd-section > .row-fluid {
    padding: 0;
  }

  .dnd-section {
    margin: 0 0 var(--vertical-section-spacer);
  }
}


/* ========================================================================== */
/*  2. ROWS                                              #row                 */
/* ========================================================================== */

/* Mobile layout */

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

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

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

  .row-fluid .span11 {
    width: calc(91.66% - var(--column-gap) * 0.0833);
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--column-gap) * 0.166);
  }

  .row-fluid .span9 {
    width: calc(75% - (var(--column-gap) * 0.25));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--column-gap) * 0.333);
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--column-gap) * 0.4166);
  }

  .row-fluid .span6 {
    width: calc(50% - var(--column-gap) * 0.5);
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--column-gap) * 0.5833);
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--column-gap) * 0.6668);
  }

  .row-fluid .span3 {
    width: calc(25% - var(--column-gap) * 0.75);
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--column-gap) * 0.8333);
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--column-gap) * 0.9166);
  }
}

/* Elements
Base HMTL elements are styled in this section (<body<, <h1>, <a>, <p>, <button> etc.)
*/

/* 
* Font Family import is in base.html 
*/

/* html {
  font-size: 62.5%;
} */

html {
  font-size: var(--rem-base-px);
}

 body {
  line-height: var(--body-line-height);
  color: var(--text-base);
  font-family: var(--primary-font-family);
  font-weight: 400;
  overflow-wrap: break-word;
}

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

/* ========================================================================== */
/*  Rich Text Settings                                                        */

/***** margins for inside rich text modules ****/
.hs_cos_wrapper_type_rich_text h1,
.rich-text-field h1,
.hs_cos_wrapper_type_rich_text h2,
.rich-text-field h2,
.hs_cos_wrapper_type_rich_text h3,
.rich-text-field h3,
.hs_cos_wrapper_type_rich_text h4,
.rich-text-field h4,
.hs_cos_wrapper_type_rich_text h5,
.rich-text-field h5,
.hs_cos_wrapper_type_rich_text h6,
.rich-text-field h6 {
  margin: 0 0 1.1rem;
}

.hs_cos_wrapper_type_rich_text p,
.rich-text-field p {
  margin: 0 0 1.1rem;
}

.hs_cos_wrapper_type_rich_text ul,
.meetings-container ul,
.hs_cos_wrapper_type_rich_text ol,
.rich-text-field ol {
  margin: 0 0 1.1rem;
}

.hs_cos_wrapper_type_rich_text ul li,
.meetings-container ul li,
.hs_cos_wrapper_type_rich_text ol li,
.rich-text-field ol li {
  margin-bottom: 15px;
}

.hs_cos_wrapper_type_rich_text p + h2, 
.rich-text-field p + h2, 
.hs_cos_wrapper_type_rich_text p + h3, 
.rich-text-field p + h3, 
.hs_cos_wrapper_type_rich_text p + h4, 
.rich-text-field p + h4, 
.hs_cos_wrapper_type_rich_text p + h5, 
.rich-text-field p + h5, 
.hs_cos_wrapper_type_rich_text p + h6,
.rich-text-field p + h6 {
  margin-top: var(--spacer-md);
} 

.hs_cos_wrapper_type_rich_text p, 
.rich-text-field p {
  margin-bottom: var(--spacer-sm);
  line-height: 1.6em;
}

.hs_cos_wrapper_type_rich_text ul,
.meetings-container ul,
ul.has-icons {
  list-style: none;
  margin-bottom: var(--spacer-sm);
  padding-left: 0;
}
  
.hs_cos_wrapper_type_rich_text ol,
.rich-text-field ol {
  margin-bottom: var(--spacer-sm);
  padding-left: 0;
}

.hs_cos_wrapper_type_rich_text ul li,
.meetings-container ul li,
ul.has-icons li {
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 0;
  padding-left: 24px;
}

/* ========================================================================== */
/*  headings                                                                  */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--secondary-font-family);
  margin: 0 0 1.4rem;
  letter-spacing: -1px;
}

h1,
.heading-display-1 {
  font-size: var(--heading-one);
  line-height: 1.2;
  font-weight: bold;
}

h2,
.heading-display-2 {
  font-size: var(--heading-two);
  line-height: 1.3;
  font-weight: bold;
}

h3,
.heading-display-3 {
  font-size: var(--heading-three);
  line-height: 1.3;
  font-weight: bold;
}

h4,
.heading-display-4 {
  font-size: var(--heading-four);
  line-height: 1.3;
  font-weight: bold;
}

h5,
.heading-display-5 {
  font-size: var(--heading-five);
  line-height: 1.3;
  font-weight: 500;
}

h6,
.heading-display-6 {
  font-family: var(--primary-font-family);
  font-size: var(--heading-six);
  line-height: 1.3;
  font-weight: bold;
}

.preheader {
  display: block;
  font-weight: 600;
  color: var(--primary-base);
  font-size: 0.8889rem;
  margin-bottom: 0.75em;
  text-transform: uppercase;
}

.preheader--light {
  color: var(--white);
}

.preheader--dark {
  color: var(--text-base);
}


/* ========================================================================== */
/*  paragraphs                                                                */

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

strong {
  font-weight: 600;
}

/* ========================================================================== */
/*  anchors                                                                   */

a {
  cursor: pointer;
  color: var(--primary-base);
  text-decoration: none;
  transition: all 250ms ease;
}

a:hover {
  color: var(--primary-600);
}

/* ========================================================================== */
/*  lists                                                                     */

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

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

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

ul {
  list-style: none;
  /* border-top: 1px solid var(--border-color); */
  /* padding-top: 20px; */
  margin-top: 32px;
}

ul li {
  position: relative;
  padding-left: 24px;
  color: var(--text-base);
}

ul li:before {
  content: '';
  position: absolute;
  top: 12px;
  left: 0;
  height: 3px;
  width: 10px;
  background-color: var(--primary-base);
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}

/* ========================================================================== */
/*  utilities                                                                 */
.text-primary {
  color: var(--primary-base);
}

.text-primary--dark {
  color: var(--primary-600);
}

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

.text-sm {
  font-size: 0.8889rem;
}

.text-xs {
  font-size: 0.7778rem;
}

.text-bold {
  font-weight: 700;
}
.btn,
button,
.button,
form .hs_submit input[type=submit] {
  display: inline-block;
  cursor: pointer;
  padding: 10px 20px;
  border-radius: 8px;
  transition: var(--btn-transition);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.15;
  text-decoration: none;
  border: 1px solid transparent;
  box-sizing: border-box;
}

.btn:focus {
  outline: none;
}

@media (max-width: 767px) {
  .btn,
  input[type=submit].btn {
    width: 100%;
    display: block;
    text-align: center;
  }
}

/* ========================================================================== */
/*  VARIANTS                                                                  */
/*=========================================================================== */

/* primary */
.btn--primary,
.form-btn--primary form .hs_submit input[type=submit] {
  background: var(--btn-primary-bg);
  border-color: var(--btn-primary-border);
  color: #fff;
}

.form-btn--primary form .hs_submit input[type=submit]:active {
  background: var(--btn-primary-hover);
  border-color: var(--btn-primary-hover);
  color: #fff;
}

/* white */
.btn--white,
.form-btn--white form .hs_submit input[type=submit] {
  background: var(--btn-white-bg);
  border-color: var(--btn-white-bg);
  color: var(--primary-base);
}

.form-btn--white form .hs_submit input[type=submit]:active {
  background: var(--btn-white-hover);
  border-color: var(--btn-white-hover);
  color: var(--priamry-600);
}

/* clear */
.btn--clear,
.form-btn--clear form .hs_submit input[type=submit] {
  background: transparent;
  border-color: var(--btn-clear-border);
  color: var(--btn-clear-text);
}

.form-btn--clear form .hs_submit input[type=submit]:active {
  border-color: var(--btn-clear-hover);
  color: var(--btn-clear-hover);
}

/* ghost */
.btn--ghost,
.form-btn--ghost form .hs_submit input[type=submit],
form .hs_submit input[type=submit] {
  background: transparent;
  border-color: var(--btn-ghost-border);
  color: var(--btn-ghost-text);
}

.form-btn--ghost form .hs_submit input[type=submit]:active,
form .hs_submit input[type=submit]:active {
  color: var(--btn-ghost-hover);
  border-color: var(--btn-ghost-border-hover);
}

/* link only */
.btn--link {
  padding: 0;
  border: none;
}

@media (hover: hover) {
  .btn--primary:hover,
  .form-btn--primary form .hs_submit input[type=submit]:hover {
    background: var(--btn-primary-hover);
    border-color: var(--btn-primary-hover);
    color: #fff;
  }

  .btn--white:hover,
  .form-btn--white form .hs_submit input[type=submit]:hover {
    background: var(--btn-white-hover);
    border-color: var(--btn-white-hover);
    color: var(--btn-white-text-hover);
  }

  .btn--clear:hover,
  .form-btn--clear form .hs_submit input[type=submit]:hover {
    background-color: var(--btn-clear-hover);
    border-color: var(--btn-clear-hover);
    color: var(--btn-clear-text-hover);
  }

  .btn--ghost:hover,
  .form-btn--ghost form .hs_submit input[type=submit]:hover,
  form .hs_submit input[type=submit]:hover {
    color: var(--btn-ghost-hover);
    background-color: var(--btn-ghost-bg-hover);
    border-color: var(--btn-ghost-border-hover);
  }
}

/* ========================================================================== */
/*  LAYOUT                                                                    */
/*=========================================================================== */

.btn-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

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

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

@media (min-width: 768px) {
  .btn-group {
    flex-direction: row;
  }
}

/* ========================================================================== */
/*  OLD HUBSPOT CODE                                                          */
/*=========================================================================== */

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

/* No button */

.no-button,
.no-button:hover,
.no-button:focus,
.no-button:active {
  background: none;
  border: none;
  border-radius: 0;
  color: initial;
  font-family: inherit;
  font-size: inherit;
  font-style: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  margin-bottom: 0;
  padding: 0;
  text-align: left;
  text-decoration: none;
  transition: none;
}
/* ========================================================================== */
/*  Module                                                                    */
.form {
  width: 100%;
}

.form-bg {
  border-radius: var(--border-radius);
  padding: 2.5rem;
}

.form-bg--purple {
  background-color: var(--purple-base);
}

.form-bg--blue {
  background-color: var(--background-blue);
}

@media (min-width: 768px) {
  .form {
    width: auto;
  }
}
/* ========================================================================== */
/*  Fields                                                                    */
.hs-form-field {
  margin-bottom: var(--input-spacing-y);
}

/* ========================================================================== */
/*  Labels                                                                    */
form label,
.form label {
  display: block;
  font-size: var(--label-font-size);
  font-weight: var(--label-font-weight);
  line-height: 1;
  color: var(--label-color);
  margin-bottom: var(--label-margin-b);
}

.form--light form label:not(.hs-error-msgs label),
.form--light form .hs-form-booleancheckbox-display span:not(.hs-form-required),
.form--light form .hs-form-checkbox-display span,
.form--light form .hs-form-radio-display span,
.form--light form input[type=file] {
  color: var(--label-light-color);
}

/* ========================================================================== */
/*  Help Text                                                                 */
form legend {
  font-size: var(--legend-font-size);
}

/* ========================================================================== */
/*  Fieldsets                                                                 */
form fieldset,
.form fieldset {
  max-width: 100% !important;
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}

fieldset.form-columns-1 .input,
fieldset.form-columns-2 .input {
  margin-right: 0 !important;
}

@media (min-width: 480px) {
  fieldset.form-columns-2 div:first-child .input {
    margin-right: 8px !important;
  }
}

/* ========================================================================== */
/*  Inputs                                                                    */
form input,
.form input,
form select,
.form select,
form textarea {
  display: inline-block;
  font-size: var(--input-font-size);
  line-height: var(--input-line-height);
  color: var(--input-color);
  padding: var(--input-padding);
  width: 100% !important;
  border: var(--input-border);
  border-radius: var(--input-border-radius);
  background-color: var(--input-bg-color);
}

form .hs_submit input[type=submit] {
  width: auto !important;
  min-width: 130px;
  margin: 0 auto;
}

.form--light form input,
.form--light form select,
.form--light select,
.form--light form textarea {
  border: var(--label-light-color);
}

form input:focus,
form input:focus-visible, 
form input:active,
.form input:focus,
.form input:focus-visible, 
.form input:active,  
form textarea:focus,
form textarea:focus-visible, 
form textarea:active,
form select:focus,
form select:focus-visible,
form select:active,
.form select:focus,
.form select:focus-visible,
.form select:active {
  border-color: var(--input-focus-border-color);
  outline: none;
}

form input:disabled,
form textarea:disabled,
form select:disabled,
.form select:disabled {
  cursor: not-allowed;
  border-color: var(--input-disabled-border);
  opacity: var(--input-disabled);
}

form input:disabled:focus,
form input:disabled:focus-visible,
form input:disabled:active,
form textarea:disabled:focus,
form textarea:disabled:focus-visible,
form textarea:disabled:active,
form select:disabled:focus,
form select:disabled:focus-visible,
form select:disabled:active,
.form select:disabled:focus,
.form select:disabled:focus-visible,
.form select:disabled:active {
  border-color: var(--input-disabled-border);
}

form textarea {
  height: var(--textarea-height);
}

form .hs_submit input[type=submit] {
  display: block;
}

/* ========================================================================== */
/*  Form List Items                                                           */  
form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 1.4rem 0;
}

form .inputs-list.hs-error-msgs li {
  margin: .5rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

/* ========================================================================== */
/*  Inputs - Checkbox                                                         */
form .hs-form-booleancheckbox-display,
form .hs-form-checkbox-display {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}

form .hs-form-booleancheckbox-display span:not(.hs-form-required),
form .hs-form-checkbox-display span {
  font-size: var(--checkbox-font-size);
  font-weight: var(--checkbox-font-weight);
  color: var(--checkbox-color);
  transition: var(--checkbox-transition);
}

form input[type=checkbox] {
  position: relative;
  display: block;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding: 0;
  height: var(--checkbox-height);
  width: var(--checkbox-width) !important;
  transition: var(--checkbox-transition);
}

form input[type=checkbox],
form input[type=checkbox]:focus,
form input[type=checkbox]:focus-visible,
form input[type=checkbox]:active,
form input[type="checkbox"]:disabled,
form input[type="checkbox"]:disabled:hover {
  border: none;
}

form input[type="checkbox"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: var(--checkbox-height);
  width: var(--checkbox-width);
  background-color: var(--checkbox-bg-color);
  border: var(--checkbox-border);
}

form input[type="checkbox"]:before,
form input[type="checkbox"]:after {
  transition: var(--checkbox-transition);
}

form input[type="checkbox"]:before {
  border-radius: 3px;
}

form input[type="checkbox"]:checked:before {
  background-repeat: no-repeat;
  background-position: center;
  background-color: var(--checkbox-checked-bg-color);
  border-color: var(--checkbox-checked-border-color);
  background-image: var(--checkbox-checked-image);
}

form input[type="checkbox"]:disabled:before,
form input[type="checkbox"]:disabled:checked:before,
form input[type="checkbox"]:disabled + span,
form input[type="checkbox"]:disabled:checked + span {
  opacity: var(--input-disabled);
}

/* Hover States */
/* @media (hover: hover) {
  form input[type="checkbox"]:hover:before {
    border-color: var(--checkbox-hover-border-color);
  }

  form input[type="checkbox"]:checked:hover:before {
    background-color: var(--checkbox-checked-hover-bg-color);
    border-color: var(--checkbox-checked-hover-border-color);
  }
} */

/* ========================================================================== */
/*  Inputs - Radio                                                            */
form .hs-form-radio-display {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
}

form .hs-form-radio-display span {
  font-size: var(--radio-font-size);
  font-weight: var(--radio-font-weight);
  color: var(--radio-color);
  transition: var(--radio-transition);
}

form input[type=radio] {
  position: relative;
  display: block;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding: 0;
  height: var(--radio-height);
  width: var(--radio-width) !important;
  background: transparent;
  transition: var(--radio-transition);
}

form input[type=radio],
form input[type=radio]:focus,
form input[type=radio]:focus-visible,
form input[type=radio]:active {
  border: none;
}

form input[type="radio"]:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: var(--radio-height);
  width: var(--radio-width);
  background-color: var(--radio-bg-color);
  border: var(--radio-border);
}

form input[type="radio"]:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: var(--radio-inner-height);
  width: var(--radio-inner-width);
  border-radius: var(--radio-border-radius);
  margin: 4px;
}

form input[type="radio"]:before,
form input[type="radio"]:after {
  transition: var(--radio-transition);
}

form input[type="radio"]:before {
  border-radius: var(--radio-border-radius);
}

form input[type="radio"]:checked:before {
  border-color: var(--radio-checked-border-color);
}

form input[type="radio"]:checked:after {
  background-color: var(--radio-inner-color);
}

form input[type="radio"]:disabled:before,
form input[type="radio"]:disabled:checked:after,
form input[type="radio"]:disabled + span,
form input[type="radio"]:disabled:checked + span {
  opacity: var(--input-disabled);
}

/* Hover States */
@media (hover: hover) {
  form input[type="radio"]:hover:before {
    border-color: var(--radio-hover-border-color);
  }

  form input[type="radio"]:checked:hover:before {
    border-color: var(--radio-checked-hover-border-color);
  }

  form input[type="radio"]:checked:hover:after {
    background-color: var(--radio-inner-hover-color);
  }
}

/* ========================================================================== */
/*  Inputs - Select                                                           */
form .hs-fieldtype-select .input,
.form .hs-fieldtype-select .input,
form .select,
.form select,
.form .select {
  position: relative;
}

form select,
.form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

form .hs-fieldtype-select .input:after,
.form .hs-fieldtype-select .input:after,
/* use this class for non-hubspot forms */
form .select:after,
.form select:after,
.form .select:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  height: var(--select-icon-height);
  width: var(--select-icon-width);
  margin-right: var(--select-icon-margin-right);
  background-image: var(--select-icon);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateY(-50%);
  z-index: 1;
}

/* ========================================================================== */
/*  Inputs - Date Picker                                                      */
.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content: '';
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 50%;
  margin-right: var(--date-input-margin-right);
  height: var(--date-input-icon-height);
  width: var(--date-input-icon-width);
  background-image: var(--date-input-icon);
  background-position: center;
  background-repeat: no-repeat;
  transform: translateY(-50%);
}

.hs-datepicker {
  width: 100%;
  max-width: 400px;
}

.fn-date-picker.pika-single.is-bound {
  width: 100%;
  border-radius: var(--date-picker-border-radius);
  border: var(--date-picker-border);
}

.fn-date-picker .pika-lendar {
  height: 100%;
  width: 100% !important;
  margin: 0 !important;
  padding: 12px;
  float: none !important;
}

.fn-date-picker .pika-table {
  margin-bottom: 0;
}

.fn-date-picker .pika-label,
.fn-date-picker .pika-table thead th,
.fn-date-picker .pika-button {
  font-family: var(--body-font);
  color: var(--date-picker-color) !important;
}

.fn-date-picker .pika-table thead th abbr {
  text-decoration: none;
}

.fn-date-picker .pika-button {
  font-family: var(--body-font);
  font-weight: 400;
  text-align: center !important;
  background: transparent !important;
  transition: var(--transition);
  border-radius: var(--border-radius);
}

.fn-date-picker td.is-today .pika-button {
  font-weight: 700;
  color: var(--date-picker-number-today-color) !important;
}

.fn-date-picker td.is-selected .pika-button {
  background-color: var(--date-picker-number-selected-bg) !important;
  color: var(--date-picker-number-selected-color) !important;
  border-radius: var(--border-radius) !important;
  box-shadow: none;
}

@media (hover: hover) {
  .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                                                      */
form input[type=file] {
  background-color: transparent;
  border-radius: 0;
  border: initial;
  padding-left: 0;
}

/* ========================================================================== */
/*  Headings and Text                                                         */
form .hs-richtext,
form .legal-consent-container p {
  font-size: 13px;
  color: #ebebeb;
  margin: 0 0 1.4rem;
}

form .legal-consent-container .hs-form-booleancheckbox p {
  font-weight: 600;
}

form .hs-richtext img {
  max-width: 100% !important;
} 

/* ========================================================================== */
/*  GDPR                                                                      */


/* ========================================================================== */
/*  Validation                                                                */

.hs-form-required {
  color: var(--input-required-color);
}

.hs-input.invalid.error {
  border-color: var(--input-error-color);
}

.form .hs-error-msgs li {
  position: relative;
  margin-top: 6px !important;
}

.hs-error-msgs label {
  font-size: var(--input-error-font-size);
  color: var(--input-error-color);
}

/* ========================================================================== */
/*  Captcha                                                                   */

.grecaptcha-badge {
  margin: 0 auto;
}

input::placeholder {
  font-family: var(--body-font);
  font-size: var(--input-font-size);
  line-height: var(--input-line-height) !important;
  color: var(--input-placeholder-color);
}


form li {
  padding-left: 0; 
}

form li:before {
  display: none;
}

.legal-consent-container .hs-form-booleancheckbox-display > span {
  margin-left: 10px !important;
}
/* ========================================================================== */
/*  Blog Cards                                                                */
.blog-cards {
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 32px;
}

.blog-card {
  position: relative;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 11px 21px 0 rgb(18 30 255 / 9%);
  transition: all 200ms ease;
  overflow: hidden;
}

.blog-card__img {
  height: 220px;
  width: 100%;
  overflow: hidden;
}

.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.blog-card__body {
  padding: 23px 30px 32px;
}

.blog-card__tag {
  display: inline-block;
  font-weight: 700;
  font-size: 0.6667rem;
  color: var(--text-base);
  padding: 5px 10px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: var(--primary-50);
}

.blog-card__title {
  color: var(--text-base);;
}

@media (hover: hover) {
  .blog-card:hover {
    transform: translateY(-3px);
  }
}

@media (min-width: 768px) {
  .blog-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ========================================================================== */
/*  Case Study Cards                                                          */
.cs-card-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.cs-card {
  --img-height: 223px;
  position: relative;
  border-radius: var(--border-radius);
  box-shadow: var(--cs-box-shadow);
  transition: all 250ms ease;
  overflow: hidden;
}

.cs-card__img-wrapper {
  height: var(--img-height);
  width: 100%;
  overflow: hidden;
}

.cs-card__img-wrapper img {
  height: 100% !important;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.cs-card__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  height: calc(100% - var(--img-height));
  padding: 24px;
}

.cs-card__title {
  margin-bottom: 8px;
}

.cs-card__desc {
  margin-bottom: 16px;
}

.cs-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cs-card__logo {
  max-height: 30px;
  width: auto;
}

.cs-card__link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--primary-base);
  font-weight: 700;
}

.cs-card__link svg {
  fill: var(--primary-base);
}

@media (hover: hover) {
  .cs-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-base);
    box-shadow: var(--cs-box-shadow-dark);
  }
}

@media (min-width: 640px) {
  .cs-card-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .cs-card-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Partials
Specific pieces of UI that are stylized. Typically used for global partial styling
*/
.hero-section {
  position: relative;
  z-index: 0;
}

.hero-section:before {
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background-color: rgba(30, 71, 98, .5);
  z-index: -1;
}
.header:not(.systems-page .header) {
  --header-height: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 10px 0;
  background-color: var(--white);
  transition: all 250ms ease;
  z-index: 10;
}

.header[data-has-scrolled='true'] {
  box-shadow: var(--box-shadow);
}

.hs-inline-edit .header {
  position: relative;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/***** LOGOS *****/
.header-logo {
  position: relative;
  max-width: 180px;
}

.header-logo img {
  display: block;
}

/***** NAV *****/
.nav-container-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0;
  background-color: var(--white);
  overflow: hidden;
  transition: all 250ms ease;
}

.header[data-nav='open'] .nav-container-wrapper {
  height: calc(100vh - var(--header-height));
}

.nav-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  padding: 32px 21px;
}

.nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.nav-item {
  position: relative;
  font-weight: 700;
  font-size: 0.8889rem;
  width: 100%;
  padding: 9px 0;
  border-bottom: 1px solid var(--off-white);
  transition: all 250ms ease;
}

.nav-item:last-child {
  border-bottom: none;
}

.nav-item:after {
  content: '';
  position: absolute;
  bottom: 0%;
  left: 0;
  width: 0;
  height: 2px;
  transition: all 250ms ease;
}

.header-btns {
  position: relative;
  width: 100%;
}

.mobile-trigger {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 14px;
  width: 26px;
}

.mobile-trigger span {
  content: '';
  position: absolute;
  left: 0;
  height: 2px;
  width: 100%;
  transform: translateY(-50%);
  transition: all 200ms ease;
}

.mobile-trigger span:first-child {
  top: 0;
}

.mobile-trigger span:nth-child(2) {
  top: 50%;
}

.mobile-trigger span:last-child {
  top: 100%;
}

.header[data-nav="open"] .mobile-trigger span:first-child {
  top: 50%;
  transform: rotate(45deg);
}

.header[data-nav="open"] .mobile-trigger span:nth-child(2) {
  opacity: 0;
}

.header[data-nav="open"] .mobile-trigger span:last-child {
  top: 50%;
  transform: rotate(-45deg);
}

/***** VARIANTS *****/
.nav-item {
  color: var(--text-base);
}

.nav-item:after {
  background-color: var(--text-base);
  transition: all 250ms ease;
}

.mobile-trigger span {
  background-color: var(--primary-base);
}

@media (hover: hover) {
  .nav-item:hover {
    color: var(--primary-base);
  }

  .nav-item:hover:after {
    width: 100%;
    background-color: var(--primary-base);
  }
}

@media (min-width: 1024px) {
  .header-logo {
    max-width: 220px;
  }

  .nav-container-wrapper {
    position: static;
    width: auto;
    height: auto;
    background-color: transparent;
  }

  .header[data-state="active"] .nav-container-wrapper {
    height: auto;
  }

  .nav-container {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 0;
  }

  .nav {
    flex-direction: row;
    gap: 16px;
    width: auto;
  }

  .nav-item {
    width: auto;
    padding: 0;
    border-bottom: none;
  }

  .header-btns {
    width: auto;
  }

  .mobile-trigger {
    display: none;
  }
}

@media (min-width: 1080px) {
  .nav-container {
    gap: 64px;
  }

  .nav {
    gap: 32px;
  }
}
.icon-wrapper,
.icon-wrapper svg {
  display: block;
  transition: all 250ms ease-in-out;
}

.footer a {
  color: var(--white);
}

.footer-wrapper {
  padding: 80px 0 0;
  background-color: var(--primary-600);
}

.footer__logo {
  display: block;
  max-width: 300px;
  margin-bottom: var(--spacer-md);
}

.footer-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 64px;
  width: 100%;
  margin-bottom: 64px;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__link a,
.footer__link a p {
  font-size: 0.8889rem;
  margin-bottom: 8px;
}

.footer__link a {
  display: inline-block;
}

.footer__link a.has-icon {
  display: inline-flex
}

.footer__link a.has-icon svg {
  fill: var(--white);
  transition: all 250ms ease;
}

.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background-color: var(--white);
  border-radius: 12px;
}

.footer__cta h4 {
  color: var(--primary-base);
  margin-bottom: 0;
  transition: all 250ms ease;
}

.footer__cta img {
  display: block;
}

.copyright {
  display: flex;
  justify-content: center;
  font-size: 0.7778rem;
  color: var(--white);
  padding: 32px 0;
  border-top: 1px solid var(--white);
}

@media (hover: hover) {
  .footer a:hover {
    color: var(--off-white);
  }

  .footer a.has-icon:hover svg {
    fill: var(--off-white);
  }

  .footer__cta:hover h4 {
    color: var(--primary-600);
  }
}

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

:root {
  scroll-behavior: smooth;
}

body {
  margin: 0;
}

.masked-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.has-icon {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1;
}

img.has-radius {
  border-radius: 12px;
}
/* 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%;
}

/* Utilities
Helper classes with ability to override anything that comes before it
*/

/* For content that needs to be visually hidden but stay visible for screenreaders */

.show-for-sr {
  border: 0 !important;
  clip: rect(0, 0, 0, 0) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
}

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}