/* 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.
*/
:root {
    --transition-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Theme base styles */
:root {
    --primary: #0f3358;
    --secondary: #6799a4;
    --accent1: #eea742;
    --accent2: #2D3B45;
    --accent3: #E8EDEF;
    --white: #ffffff;
    --black: #000000;
    --grey-medium:#6c757d;
    --grey-light:#f1f3f6;
    --grey: #dee2e6;
    --khaki: #faf5ec;
    --section-width: 1200px ;
    --font-heading: Libre Caslon Text;
    --font-body: Work Sans;
    --xs: ;
    --sm: ;
    --md: ;
    --lg: ;
    --xl: ;
    --xxl: ;
 


}
html { font-size:16px !important; scroll-behavior: smooth; scroll-padding-top: 100px; background:var(--khaki); letter-spacing: .5px; }
body { position:relative; } 
/* main { overflow-x:hidden; } */

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

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

.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }

.d-block { display:block !important;}
.d-inline { display:inline !important;}
.d-inline-block { display:inline-block !important;}
.d-flex { display:flex !important;}
.d-inline-flex { display:inline-flex !important;}
.d-grid { display:grid !important;}
.d-inline-grid { display:inline-grid !important;}

.text-white { color: var(--white) !important;}
.text-black { color: var(--black) !important;}
.text-primary { color: var(--primary) !important;}
.text-secondary { color: var(--secondary) !important;}
.text-accent1 { color: var(--accent1) !important;}
.text-accent2 { color: var(--accent2) !important;}
.text-accent3 { color: var(--accent3) !important;}
.text-grey-medium { color: var(--grey-medium) !important;}
.text-grey-light { color: var(--grey-light) !important;}



.fw500 { font-weight:500 !important;}
.fw600 { font-weight:600 !important;}
.fw700 { font-weight:700 !important;}
.fw800 { font-weight:800 !important;}
.fw900 { font-weight:900 !important;} 

.italic { font-style:italic !important;}
.uppercase { text-transform:uppercase !important;}
.lowercase { text-transform:lowercase !important;}
.capitalize { text-transform:capitalize !important;}

.bg-white { background: var(--white) !important;}
.bg-black { background: var(--black) !important;}
.bg-primary { background: var(--primary) !important;}
.bg-secondary { background: var(--secondary) !important;}
.bg-accent1 { background: var(--accent1) !important;}
.bg-accent2 { background: var(--accent2) !important;}
.bg-accent3 { background: var(--accent3) !important;}
.bg-grey-medium { background: var(--grey-medium) !important;}
.bg-grey-light { background: var(--grey-light) !important;}



.justify-content-start { justify-content:start !important;}
.justify-content-center { justify-content:center !important;}
.justify-content-end { justify-content:end !important;}

.align-items-start { align-items:start !important;}
.align-items-center { align-items:center !important;}
.align-items-end { align-items:end !important;}

.mb-0 { margin-bottom:0 !important; }
.mb-1 { margin-bottom:.25rem !important; }
.mb-2 { margin-bottom:.5rem !important; }
.mb-3 { margin-bottom:.75rem !important; }
.mb-4 { margin-bottom:1rem !important; }
.mb-5 { margin-bottom:1.5rem !important; }

.margin-inline-auto { margin-inline:auto !important; }

.border-1-blue { border:1px solid var(--blue) }

.invisible { visibility:hidden !important; }




@media(min-width:550px){
  .desktop-widget {
    display:block;
  }
  .mobile-widget {
    display:none;
  }
}
@media(max-width:449px){
  .desktop-widget {
    display:none;
  }
  .mobile-widget {
    display:block;
  }
}
*, *: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;
}
:root {
    --transition-smooth: cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Theme base styles */
:root {
    --primary: #0f3358;
    --secondary: #6799a4;
    --accent1: #eea742;
    --accent2: #2D3B45;
    --accent3: #E8EDEF;
    --white: #ffffff;
    --black: #000000;
    --grey-medium:#6c757d;
    --grey-light:#f1f3f6;
    --grey: #dee2e6;
    --khaki: #faf5ec;
    --section-width: 1200px ;
    --font-heading: Libre Caslon Text;
    --font-body: Work Sans;
    --xs: ;
    --sm: ;
    --md: ;
    --lg: ;
    --xl: ;
    --xxl: ;
 


}
html { font-size:16px !important; scroll-behavior: smooth; scroll-padding-top: 100px; background:var(--khaki); letter-spacing: .5px; }
body { position:relative; } 
/* main { overflow-x:hidden; } */

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

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

.text-uppercase { text-transform: uppercase; }
.text-lowercase { text-transform: lowercase; }
.text-capitalize { text-transform: capitalize; }

.d-block { display:block !important;}
.d-inline { display:inline !important;}
.d-inline-block { display:inline-block !important;}
.d-flex { display:flex !important;}
.d-inline-flex { display:inline-flex !important;}
.d-grid { display:grid !important;}
.d-inline-grid { display:inline-grid !important;}

.text-white { color: var(--white) !important;}
.text-black { color: var(--black) !important;}
.text-primary { color: var(--primary) !important;}
.text-secondary { color: var(--secondary) !important;}
.text-accent1 { color: var(--accent1) !important;}
.text-accent2 { color: var(--accent2) !important;}
.text-accent3 { color: var(--accent3) !important;}
.text-grey-medium { color: var(--grey-medium) !important;}
.text-grey-light { color: var(--grey-light) !important;}



.fw500 { font-weight:500 !important;}
.fw600 { font-weight:600 !important;}
.fw700 { font-weight:700 !important;}
.fw800 { font-weight:800 !important;}
.fw900 { font-weight:900 !important;} 

.italic { font-style:italic !important;}
.uppercase { text-transform:uppercase !important;}
.lowercase { text-transform:lowercase !important;}
.capitalize { text-transform:capitalize !important;}

.bg-white { background: var(--white) !important;}
.bg-black { background: var(--black) !important;}
.bg-primary { background: var(--primary) !important;}
.bg-secondary { background: var(--secondary) !important;}
.bg-accent1 { background: var(--accent1) !important;}
.bg-accent2 { background: var(--accent2) !important;}
.bg-accent3 { background: var(--accent3) !important;}
.bg-grey-medium { background: var(--grey-medium) !important;}
.bg-grey-light { background: var(--grey-light) !important;}



.justify-content-start { justify-content:start !important;}
.justify-content-center { justify-content:center !important;}
.justify-content-end { justify-content:end !important;}

.align-items-start { align-items:start !important;}
.align-items-center { align-items:center !important;}
.align-items-end { align-items:end !important;}

.mb-0 { margin-bottom:0 !important; }
.mb-1 { margin-bottom:.25rem !important; }
.mb-2 { margin-bottom:.5rem !important; }
.mb-3 { margin-bottom:.75rem !important; }
.mb-4 { margin-bottom:1rem !important; }
.mb-5 { margin-bottom:1.5rem !important; }

.margin-inline-auto { margin-inline:auto !important; }

.border-1-blue { border:1px solid var(--blue) }

.invisible { visibility:hidden !important; }




@media(min-width:550px){
  .desktop-widget {
    display:block;
  }
  .mobile-widget {
    display:none;
  }
}
@media(max-width:449px){
  .desktop-widget {
    display:none;
  }
  .mobile-widget {
    display:block;
  }
}


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



/* CSS variables */

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

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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

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

/* The overflow-wrap is meant to prevent long/large words from breaking the mobile responsiveness of a page (e.g. horizontal scrolling). It is preferred to reduce font sizes on mobile to address this, with this CSS specifically helping with extreme scenarios where a reduction in font size is not possible. */

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

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

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

/* Paragraphs */

p {
  font-size: clamp(1rem, 2vw, 1.25rem);
  margin: 0 0 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6,.h1,.h2,.h3,.h4,.h5,.h6 {
  margin: 0 0 1.4rem;
  line-height: 1;
}

/* Lists */

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

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

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

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
.btn-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  z-index:3;
  position:relative;
}

.btn,
.button,
.hs-button {
  padding: 1.125rem 1.75rem;
  background: var(--accent1);
  border: 1px solid var(--accent1);
  color: var(--primaru);
  text-decoration: none;
  font-size: .875rem;
  white-space: nowrap;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap:.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  /* border-radius: .375rem; */
  /* font-weight:500; */
}
:is(.btn, .button, .hs-button) svg {
  fill:var(--white);
}
:is(.btn, .button, .hs-button):hover svg {
  fill:var(--primary);
}
.btn:hover,
.button:hover,
.hs-button:hover {
  background: var(--accent2);
  border: 1px solid var(--accent2);
  color: var(--primary);
  text-decoration: none;
}
.btn.btn-primary, button.btn-primary,
.button.btn-primary,
.hs-button.btn-primary, .hs-button.primary {
  background: var(--accent1);
  border: 1px solid var(--accent1);
  color: var(--primary);
}
.btn.btn-primary:hover, button.btn-primary:hover,
.button.btn-primary:hover,
.hs-button.btn-primary:hover, .hs-button.primary:hover {
  background: var(--accent2);
  border: 1px solid var(--accent2);
  color: var(--white);
}

.btn.btn-secondary, button.btn-secondary,
.button.btn-secondary,
.hs-button.btn-secondary {
  background: var(--primary);
  border: 1px solid var(--primary);
  color: var(--white);
}
.btn.btn-secondary:hover, button.btn-secondary:hover,
.button.btn-secondary:hover,
.hs-button.btn-secondary:hover {
  background: var(--accent1);
  border: 1px solid var(--accent1);
  color: var(--primary);
}
.btn.btn-supplemental, button.btn-supplemental,
.button.btn-supplemental,
.hs-button.btn-supplemental {
  box-shadow: inset 1px 1px rgba(255 255 255 / 0.5);
  background: linear-gradient(to bottom, #fcbe78, var(--orange)) !important;
  border: 1px solid var(--primary);
  color: var(--primary);
}
.btn.btn-supplemental:hover, button.btn-supplemental:hover,
.button.btn-supplemental:hover,
.hs-button.btn-supplemental:hover {
  background: linear-gradient(to bottom, var(--orange), #fcbe78) !important;
  border: 1px solid var(--primary);
  color: var(--primary);
}


.btn.btn-transitional, button.btn-transitional,
.button.btn-transitional,
.hs-button.btn-transitional {
  background: var(--white);
  border: 1px solid var(--grey-light);
  color: var(--blue-dark);
}
.btn.btn-transitional:hover, button.btn-transitional:hover,
.button.btn-transitional:hover,
.hs-button.btn-transitional:hover {
  background: var(--blue-dark);
  border: 1px solid var(--blue-dark);
  color: var(--white);
}
.btn.btn-reverse, button.btn-reverse,
.button.btn-reverse,
.hs-button.btn-reverse {
  background: var(--primary);
  border: 5px solid var(--secondary);
  color: var(--white);

}
.btn.btn-reverse:hover, button.btn-reverse:hover,
.button.btn-reverse:hover,
.hs-button.btn-reverse:hover {
  background: var(--secondary);
  border: 5px solid var(--secondary);
  color: var(--white);

}
.btn.btn-transparent, button.btn-transparent,
.button.btn-transparent,
.hs-button.btn-transparent {
  background: transparent;
  border: 1px solid transparent;
  padding: 1.125rem .5rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap:.75rem;
}
.btn.btn-transparent:hover, button.btn-transparent:hover,
.button.btn-transparent:hover,
.hs-button.btn-transparent:hover {
  background: transparent;
  border: 1px solid transparent;
  padding: 1.125rem .5rem;
  color: var(--accent1);
}
:is(.btn.btn-transparent, button.btn-transparent, .button.btn-transparent, .hs-button.btn-transparent) svg{
  height:16px;
  transform:translateY(1px);
}
:is(.btn.btn-transparent, button.btn-transparent, .button.btn-transparent, .hs-button.btn-transparent) svg path {
  fill:var(--primary);
}
:is(.btn.btn-transparent:hover, button.btn-transparent:hover, .button.btn-transparent:hover, .hs-button.btn-transparent:hover) svg path {
  fill:var(--blue);
}

.btn.btn-transparent.arrow:after, button.btn-transparent.arrow:after,
.button.btn-transparent.arrow:after,
.hs-button.btn-transparent.arrow:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2IiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTEgOEgxNU0xNSA4TDggMU0xNSA4TDggMTUiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMS42NjY2NyIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIi8+Cjwvc3ZnPg==");
  width:16px;
  height:16px;
}

.btn.btn-transparent.arrow:hover:after, button.btn-transparent.arrow:hover:after,
.button.btn-transparent.arrow:hover:after,
.hs-button.btn-transparent.arrow:hover:after {
  content: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld0JveD0iMCAwIDE2IDE2IiBmaWxsPSJub25lIj4KPHBhdGggZD0iTTEgOEgxNU0xNSA4TDggMU0xNSA4TDggMTUiIHN0cm9rZT0iIzg2QzFFOSIgc3Ryb2tlLXdpZHRoPSIxLjY2NjY3IiBzdHJva2UtbGluZWNhcD0icm91bmQiIHN0cm9rZS1saW5lam9pbj0icm91bmQiLz4KPC9zdmc+");
}

.btn.btn-transparent.login, button.btn-transparent.login,
.button.btn-transparent.login, .hs-button.btn-transparent.login {
  gap:.5rem;
}

.btn.btn-transparent.login:before, button.btn-transparent.login:before,
.button.btn-transparent.login:before,
.hs-button.btn-transparent.login:before {
  content: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none'><path d='M5.3163 19.4384C5.92462 18.0052 7.34492 17 9 17H15C16.6551 17 18.0754 18.0052 18.6837 19.4384M16 9.5C16 11.7091 14.2091 13.5 12 13.5C9.79086 13.5 8 11.7091 8 9.5C8 7.29086 9.79086 5.5 12 5.5C14.2091 5.5 16 7.29086 16 9.5ZM22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z' stroke='%230075EB' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'></path></svg>");
  width:16px;
  height:16px;
} 

.btn.btn-transparent.login:active, button.btn-transparent.login:active,
.button.btn-transparent.login:active, .hs-button.btn-transparent.login:active, .btn.btn-transparent.login:focus, button.btn-transparent.login:focus,
.button.btn-transparent.login:focus, .hs-button.btn-transparent.login:focus {
  padding: calc(0.75rem + 5px) calc(1.5rem + 5px);
  border:0;
  background: transparent;
}

.remove-btn-style {
  background: none !important;
  border: none !important;
  color: var(--primary) !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  font-family: "Open Sans" !important;
  text-transform: none !important;
  padding: 0 !important;
}

/* ============================================================
   HubSpot form submit button color overrides
   HubSpot hard-codes <input class="hs-button primary large">
   on every form submit. The shared .btn/.button/.hs-button
   rules above handle layout, padding, font, etc. — edit color
   values here to style form buttons independently of CTAs.
   ============================================================ */

.hs-button,
.hs-button.primary {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  font-weight:400;
}

.hs-button:hover,
.hs-button.primary:hover,
.hs-button:focus,
.hs-button.primary:focus {
  background: var(--accent1);
  border-color: var(--accent1);
  color: var(--primary);
}
/* Fields */

.hs-form-field {
  margin-bottom: 1.4rem;
}

/* Labels */

form label {
  display: block;
  font-size: 0.875rem;
  margin-bottom: 0.35rem;
}

/* Form Title */
.form-title {
  margin-bottom: 0;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

form input[type=text],
form input[type=search],
form input[type=email],
form input[type=password],
form input[type=tel],
form input[type=number],
form input[type=file],
form select,
form textarea {
  display: inline-block;
  font-size: 0.875rem;
  padding: 0.7rem;
  width: 100%;
}

form textarea {
  resize: vertical;
}

form select,
form select.hs-input {
  width: 100% !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2.2rem;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='none' stroke='%23494A52' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1 1.5l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 0.7rem;
}

form select[multiple],
form select[size]:not([size="1"]) {
  background-image: none;
  padding-right: 0.7rem;
}

form fieldset {
  max-width: 100% !important;
}

/* Inputs - checkbox/radio */

form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

form .inputs-list > li {
  display: block;
  margin: 0.7rem 0;
}

form .inputs-list input,
form .inputs-list span {
  vertical-align: middle;
}

form input[type=checkbox],
form input[type=radio] {
  cursor: pointer;
  margin-right: 0.35rem;
}

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

.hs-dateinput:before {
  content:'\01F4C5';
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
}

.fn-date-picker .pika-table thead th {
  color: #FFF;
}

.fn-date-picker td.is-selected .pika-button {
  border-radius: 0;
  box-shadow: none;
}

.fn-date-picker td .pika-button:hover,
.fn-date-picker td .pika-button:focus {
  border-radius: 0 !important;
  color: #FFF;
}

/* Inputs - file picker */

form input[type=file] {
  background-color: transparent;
  border: initial;
  padding: initial;
}

/* Headings and text */

form .hs-richtext,
form .hs-richtext p {
  font-size: 0.875rem;
  margin: 0 0 1.4rem;
}

form .hs-richtext img {
  max-width: 100% !important;
}

/* GDPR */

.legal-consent-container .hs-form-booleancheckbox-display > span,
.legal-consent-container .hs-form-booleancheckbox-display > span p {
  margin-left: 1rem !important;
}

/* Validation */

.hs-form-required {
  color: #EF6B51;
}

.hs-input.invalid.error {
  border-color: #EF6B51;
}

.hs-error-msg {
  color: #EF6B51;
  margin-top: 0.35rem;
}

/* Submit button */

form input[type=submit],
form .hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


  /* Search button input field and suggestions */
  .body-container-wrapper .hs-search-field__button {
    padding: 15px;
  }

  .body-container-wrapper .hs-search-field__bar--button-inline .hs-search-field__button {
    margin-left: 6px;
    margin-bottom: 0;
  }

  .body-container-wrapper .hs-search-field__button svg {
    height: 15px;
    fill: #fff;
  }

  .body-container-wrapper .hs-search-field__bar > form > .hs-search-field__input {
    padding: 10px;
  }

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


form fieldset h4 {
  margin: 1rem 0 1.25rem;
  padding-top:1.5rem;
  border-top: 1px solid rgba(15,46,79,.12);
}
form fieldset:first-of-type h4 {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
form fieldset:last-of-type {
  border-bottom: 1px solid rgba(15,46,79,.12);
  padding-bottom:1rem;
  margin-bottom:2.5rem;
}
/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

div:has(.header-primary:first-child) {
  position:sticky;
  top:0;
  width:100%;
  z-index: 100;
  overflow: visible;
}
.header-primary {
  /* position: sticky;
  top: 0; */
  position: relative;
  width: 100%;
  background: var(--khaki);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding-block: 1rem;
}
.header-primary .navbar {
  width: 100%;
}
.header-primary .navbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* max-width: var(--container-width); */
  width: 100%;
  margin: 0 auto;
  padding-block: .25rem;

}

/* ===== Mobile Bottom CTA Bar ===== */
.mobile-bottom-bar {
  display: none;
}

@media (max-width: 950px) {
  /* Slim mobile header */
  .header-primary {
    display: flex;
    align-items: center;
  }

  /* Hide CTA buttons from header on mobile */
  .header-primary .nav-btn-wrap {
    display: none;
  }

  /* Body padding so bottom bar doesn't overlap content */
  body {
    padding-bottom: 68px;
  }

  /* Sticky bottom CTA bar */
  .mobile-bottom-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 51, 88, 0.95);
    padding:1rem 1.5rem;
    /* box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.1); */
    z-index: 1000;
  }

  .mobile-bottom-bar .btn-wrap {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 8px;
  }

  /* Bottom bar lives below the IntersectionObserver's -50px rootMargin,
     so .fade-in spans never receive .visible. Show them unconditionally. */
  .mobile-bottom-bar .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mobile-bottom-bar .btn-wrap > span {
    flex: 1;
    display: flex;
  }

  .mobile-bottom-bar .btn-wrap > span .btn {
    width: 100%;
    min-height: 44px;
    padding: 12px 8px;
    font-size: 0.75rem;
    font-weight: 400;
    text-align: center;
    justify-content: center;
  }

  /* "Apply Now" button — navy (btn-secondary uses --primary which is navy) */
  .mobile-bottom-bar .btn-wrap > span:first-child .btn {
    background: var(--accent1);
    border-color: var(--accent1);
    color: var(--primary);
  }

  .mobile-bottom-bar .btn-wrap > span:first-child .btn:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
  }

  /* "Get Started" button — gold/orange */
  .mobile-bottom-bar .btn-wrap > span:nth-child(2) .btn {
    background: var(--primary);
    border-color: var(--white);
    color: var(--white);
  }

  .mobile-bottom-bar .btn-wrap > span:nth-child(2) .btn:hover {
    background: var(--white);
    border-color: var(--white);
    color: var(--primary);
  }
}

/* Hide bottom bar on desktop */
@media (min-width: 951px) {
  .mobile-bottom-bar {
    display: none !important;
  }
}
/* 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%;
}

/* Tools
Any tools used throughout the project.
*/

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes float {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--transition-smooth);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}


/* 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;
  }
}
.justify-content-xs-start { justify-content:start; }
.justify-content-xs-center { justify-content:center; }
.justify-content-xs-end { justify-content:end; }

.margin-xs-left { margin-right:auto; }
.margin-xs-center { margin-inline:auto; }
.margin-xs-right { margin-left:auto; }

@media (min-width: px) {
    .justify-content-sm-start { justify-content:start; }
    .justify-content-sm-center { justify-content:center; }
    .justify-content-sm-end { justify-content:end; }
    
    .margin-sm-left { margin-right:auto; }
    .margin-sm-center { margin-inline:auto; }
    .margin-sm-right { margin-left:auto; }
}
@media (min-width: px) {    
    .justify-content-md-start { justify-content:start; }
    .justify-content-md-center { justify-content:center; }
    .justify-content-md-end { justify-content:end; }

    .margin-md-left { margin-right:auto; }
    .margin-md-center { margin-inline:auto; }
    .margin-md-right { margin-left:auto; }
}
@media (min-width: px) {
    .justify-content-lg-start { justify-content:start; }
    .justify-content-lg-center { justify-content:center; }
    .justify-content-lg-end { justify-content:end; }

    .margin-lg-left { margin-right:auto; }
    .margin-lg-center { margin-inline:auto; }
    .margin-lg-right { margin-left:auto; }
}
@media (min-width: px) {    
    .justify-content-xl-start { justify-content:start; }
    .justify-content-xl-center { justify-content:center; }
    .justify-content-xl-end { justify-content:end; }

    .margin-xl-left { margin-right:auto; }
    .margin-xl-center { margin-inline:auto; }
    .margin-xl-right { margin-left:auto; }
}
@media (min-width: px) {       
    .justify-content-xxl-start { justify-content:start; }
    .justify-content-xxl-center { justify-content:center; }
    .justify-content-xxl-end { justify-content:end; }

    .margin-xxl-left { margin-right:auto; }
    .margin-xxl-center { margin-inline:auto; }
    .margin-xxl-right { margin-left:auto; }
}
.text-xs-left { text-align: left; }
.text-xs-center { text-align: center; }
.text-xs-right { text-align: right; }

@media (min-width: px) {
    .text-sm-left { text-align: left; }
    .text-sm-center { text-align: center; }
    .text-sm-right { text-align: right; }
}
@media (min-width: px) {    
    .text-md-left { text-align: left; }
    .text-md-center { text-align: center; }
    .text-md-right { text-align: right; }
}
@media (min-width: px) {
    .text-lg-left { text-align: left; }
    .text-lg-center { text-align: center; }
    .text-lg-right { text-align: right; }
}
@media (min-width: px) {    
    .text-xl-left { text-align: left; }
    .text-xl-center { text-align: center; }
    .text-xl-right { text-align: right; }
}
@media (min-width: px) {       
    .text-xxl-left { text-align: left; }
    .text-xxl-center { text-align: center; }
    .text-xxl-right { text-align: right; }
}