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

*, *: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: 2.13%;
  --column-width-multiplier: 8.333;
}

/* Mobile layout */

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


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

/* Desktop layout */

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

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

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

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

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

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

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

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


html{
  overflow-x: hidden;
  font-size: 1.1111111vw !important;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: 0;
}
@media (max-width: 1280px) and (min-width:601px) {
    html {
        font-size: 1.4vw !important;
    }
}
@media (max-width: 600px) {
  html {
    font-size: 4.26666666vw !important;
  }
}

body{
  overflow-x: hidden;
  font-size: 1rem;
  overflow-wrap: break-word;
}

footer.footer{
  overflow-x: hidden;
  position: relative;
  z-index: 2;
}

/* .custom-cursor2{
  display: none;
}
 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}


/* 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;
}


a {
  cursor: pointer;
}

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;
}

/*    Typography   */

.color_box {
  padding: 20px;
  text-align: center;
  width: 100%;
}

.border_box{
  border: 1px solid var(--tertiary_color);
}

.custom_box {
  background: var(--quaternary_color);
  color: #000;
  margin-bottom: 16px;
  max-width: 100%;
  padding: 0.75rem 0.5rem;
  width: max-content;
}

@media(min-width: 768px){
  .desk_hide{
    display: none !important;
  }
}

@media(max-width: 767px){
  .mob_hide{
    display: none !important;
  }
}

 

.align-left{
  text-align: left;
  margin-right: auto;
}

.align-center{
  text-align: center;
  margin: 0 auto;
}

.align-right{
  text-align: right;
  margin-left: auto;
}

 

.text-margin-zero,
.text-margin-zero h1,
.text-margin-zero h2,
.text-margin-zero h3,
.text-margin-zero h4,
.text-margin-zero h5,
.text-margin-zero h6,
.text-margin-zero p,
.text-margin-zero a,
.text-margin-zero span,
.text-margin-zero ul,
.text-margin-zero ol,
.text-margin-zero li,
.text-margin-zero label,
.text-margin-zero blockquote{
  margin-bottom: 0 !important; 
}

 

.all-text-white,
.all-text-white h1,
.all-text-white h2,
.all-text-white h3,
.all-text-white h4,
.all-text-white h5,
.all-text-white h6,
.all-text-white p,
.all-text-white a:not(.cta_button),
.all-text-white span,
.all-text-white ul,
.all-text-white ol,
.all-text-white li,
.all-text-white label,
.all-text-white blockquote{
  color: var(--white_color) !important; 
}



.primary_text,
.primary_text h1,
.primary_text h2,
.primary_text h3,
.primary_text h4,
.primary_text h5,
.primary_text h6,
.primary_text p,
.primary_text a,
.primary_text span,
.primary_text ul,
.primary_text ol,
.primary_text li,
.primary_text label,
.primary_text blockquote{
  color: var(--primary_color) !important;
}

.secondary_text,
.secondary_text h1,
.secondary_text h2,
.secondary_text h3,
.secondary_text h4,
.secondary_text h5,
.secondary_text h6,
.secondary_text p,
.secondary_text a,
.secondary_text span,
.secondary_text ul,
.secondary_text ol,
.secondary_text li,
.secondary_text label,
.secondary_text blockquote{
  color: var(--secondary_color) !important;
}

.tertiary_text,
.tertiary_text h1,
.tertiary_text h2,
.tertiary_text h3,
.tertiary_text h4,
.tertiary_text h5,
.tertiary_text h6,
.tertiary_text p,
.tertiary_text a:not(:hover),
.tertiary_text span,
.tertiary_text ul,
.tertiary_text ol,
.tertiary_text li,
.tertiary_text label,
.tertiary_text blockquote{
  color: var(--tertiary_color) !important;
}

.quaternary_text,
.quaternary_text h1,
.quaternary_text h2,
.quaternary_text h3,
.quaternary_text h4,
.quaternary_text h5,
.quaternary_text h6,
.quaternary_text p,
.quaternary_text a,
.quaternary_text span,
.quaternary_text ul,
.quaternary_text ol,
.quaternary_text li,
.quaternary_text label,
.quaternary_text blockquote{
  color: var(--quaternary_color) !important;
}

.quinary_text,
.quinary_text h1,
.quinary_text h2,
.quinary_text h3,
.quinary_text h4,
.quinary_text h5,
.quinary_text h6,
.quinary_text p,
.quinary_text a,
.quinary_text span,
.quinary_text ul,
.quinary_text ol,
.quinary_text li,
.quinary_text label,
.quinary_text blockquote{
  color: var(--quinary_color) !important;
}

.black_text,
.black_text h1,
.black_text h2,
.black_text h3,
.black_text h4,
.black_text h5,
.black_text h6,
.black_text p,
.black_text a,
.black_text span,
.black_text ul,
.black_text ol,
.black_text li,
.black_text label,
.black_text blockquote{
  color: var(--black_color) !important;
}



.fw_100,
.fw_100 h1,
.fw_100 h2,
.fw_100 h3,
.fw_100 h4,
.fw_100 h5,
.fw_100 h6,
.fw_100 p,
.fw_100 a,
.fw_100 span,
.fw_100 li,
.fw_100 label,
.fw_100 blockquote{
  font-weight: 100 !important; 
}

.fw_200,
.fw_200 h1,
.fw_200 h2,
.fw_200 h3,
.fw_200 h4,
.fw_200 h5,
.fw_200 h6,
.fw_200 p,
.fw_200 a,
.fw_200 span,
.fw_200 li,
.fw_200 label,
.fw_200 blockquote{
  font-weight: 200 !important; 
}

.fw_300,
.fw_300 h1,
.fw_300 h2,
.fw_300 h3,
.fw_300 h4,
.fw_300 h5,
.fw_300 h6,
.fw_300 p,
.fw_300 a,
.fw_300 span,
.fw_300 li,
.fw_300 label,
.fw_300 blockquote{
  font-weight: 300 !important; 
}

.fw_400,
.fw_400 h1,
.fw_400 h2,
.fw_400 h3,
.fw_400 h4,
.fw_400 h5,
.fw_400 h6,
.fw_400 p,
.fw_400 a,
.fw_400 span,
.fw_400 li,
.fw_400 label,
.fw_400 blockquote{
  font-weight: 400 !important; 
}

.fw_500,
.fw_500 h1,
.fw_500 h2,
.fw_500 h3,
.fw_500 h4,
.fw_500 h5,
.fw_500 h6,
.fw_500 p,
.fw_500 a,
.fw_500 span,
.fw_500 li,
.fw_500 label,
.fw_500 blockquote{
  font-weight: 500 !important; 
}

.fw_500,
.fw_500 h1,
.fw_500 h2,
.fw_500 h3,
.fw_500 h4,
.fw_500 h5,
.fw_500 h6,
.fw_500 p,
.fw_500 a,
.fw_500 span,
.fw_500 li,
.fw_500 label,
.fw_500 blockquote{
  font-weight: 500 !important; 
}

.fw_600,
.fw_600 h1,
.fw_600 h2,
.fw_600 h3,
.fw_600 h4,
.fw_600 h5,
.fw_600 h6,
.fw_600 p,
.fw_600 a,
.fw_600 span,
.fw_600 li,
.fw_600 label,
.fw_600 blockquote{
  font-weight: 600 !important; 
}

.fw_700,
.fw_700 h1,
.fw_700 h2,
.fw_700 h3,
.fw_700 h4,
.fw_700 h5,
.fw_700 h6,
.fw_700 p,
.fw_700 a,
.fw_700 span,
.fw_700 li,
.fw_700 label,
.fw_700 blockquote{
  font-weight: 700 !important; 
}

.fw_800,
.fw_800 h1,
.fw_800 h2,
.fw_800 h3,
.fw_800 h4,
.fw_800 h5,
.fw_800 h6,
.fw_800 p,
.fw_800 a,
.fw_800 span,
.fw_800 li,
.fw_800 label,
.fw_800 blockquote{
  font-weight: 800 !important; 
}

.fw_900,
.fw_900 h1,
.fw_900 h2,
.fw_900 h3,
.fw_900 h4,
.fw_900 h5,
.fw_900 h6,
.fw_900 p,
.fw_900 a,
.fw_900 span,
.fw_900 li,
.fw_900 label,
.fw_900 blockquote{
  font-weight: 900 !important; 
}




.spacer_0{
  padding: 8px 0;
}
.spacer_1{
  padding: 16px 0;
}
.spacer_2{
  padding: 24px 0;
}
.spacer_3{
  padding: 32px 0;
}
.spacer_4{
  padding: 40px 0;
}
.spacer_5{
  padding: 48px 0;
}
.spacer_6{
  padding: 56px 0;
}
.spacer_7{
  padding: 64px 0;
}
.spacer_8{
  padding: 80px 0;
}
.spacer_9{
  padding: 100px 0;
}
.spacer_10{
  padding: 120px 0;
}



@media(max-width: 999px){
  .spacer_0{
    padding: 8px 0;
  }
  .spacer_1{
    padding: 16px 0;
  }
  .spacer_2{
    padding: 24px 0;
  }
  .spacer_3{
    padding: 24px 0;
  }
  .spacer_4{
    padding: 24px 0;
  }
  .spacer_5{
    padding: 24px 0;
  }
  .spacer_6{
    padding: 32px 0;
  }
  .spacer_7{
    padding: 32px 0;
  }
  .spacer_8{
    padding: 40px 0;
  }
  .spacer_9{
    padding: 50px 0;
  }
  .spacer_10{
    padding: 60px 0;
  }
}





/* Layout for Separator */

body {
  position: relative;
}

/* @media(max-width:767px){
  body main#main-content{
    margin-top:79px;
  }
} */


.body-container--blog-post ol{
  margin-left: 0px;
  list-style-type: none; 
}
.body-container--blog-post ol li{
  position: relative;
  padding-left: 60px;
}
.body-container--blog-post ol li h4{
  color: var(--tertiary_color);
}
.body-container--blog-post ol li:before{
  position: absolute;
  content: counter(list-item);
  width: 50px;
  height: 50px;
  font-size: 55px;
  line-height: 55px;
  font-weight: 700;
  text-align: center;
  color: var(--quinary_color);
  left: 0;
  top: 0;
}

@media(max-width: 767px){
  .body-container--blog-post ol li{
    padding-left: 50px;
  }
  .body-container--blog-post ol li:before{
    width: 40px;
    height: 40px;
    font-size: 40px;
    line-height: 40px; 
  }
}

.dottedBg{
  position: relative;
}
.dottedBg::before {
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  content: '';
  top: 0;
  z-index: 1;
  opacity: 0.1;
  mix-blend-mode: overlay;
  background-image: url('https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/banner-bg.jpg');
  pointer-events: none;
}
.animate-heading span {
    line-height: normal;
}
.caption {
    color: #0f2643;
    font-family: Inter;
    font-size: clamp(12px, .75rem, .75rem);
    font-weight: 500;
    letter-spacing: .08rem;
    line-height: 1.2;
}
.calendly-inline-widget iframe {
    width: 100%;
    height: 100%;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

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

/* No button */

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


/* Table */

table {
  border-collapse: collapse;
  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
*/

/* Header Section Styling */

header.header{
  padding: 2rem 2rem 0;
  position: fixed;
  top:0;
  transition: all .4s ease-in-out;
  width: 100%;
  z-index: 1000;
}
header.header.nav-up {
  transform: translateY(-100%);
}
header.header.nav-down{
  background-color: #0f2643;
  padding: 1.5rem 2rem;
  transform: translateY(0);
}
header.header .customization_popup {
  background: #fff;
  background-image: url(../../assets/img/bg/form-bg.jpg);
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 2.5vw 2.78vw;
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  transition: transform .3s ease;
  width: 41.67vw;
  z-index: 1010;
}
header.header.nav-up .customization_popup{
  top:100%;
}
header.header .customization_popup.is-visible {
  transform: translateX(0);
}
header.header form h3.form-title{
  display:none;
}
header.header .content_container{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  width:100%;
}
header.header.nav-down .content_container{
  align-items:center;
}
body header.header .menu{
  overflow:hidden;
}
header.header .menu-icon-wrapper{
  align-items: center;
  border: .1rem solid hsla(0, 0%, 100%, .149);
  border-radius: .25rem;
  cursor: pointer;
  display: flex;
  margin-right: .5rem;
  padding: 0 1rem;
}
header.header .menu-icon-wrapper .icon-box{
  height: 2rem;
  position: relative;
  width: 2rem;
}
header.header .menu-icon-wrapper .icon-box .icon {
  background-color: hsla(0, 0%, 100%, .8);
  height: .1rem;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
  width: 100%;
}
header.header .menu-icon-wrapper .icon-box .icon:after,
header.header .menu-icon-wrapper .icon-box .icon:before {
  background-color: hsla(0, 0%, 100%, .8);
  content: "";
  height: .1rem;
  position: absolute;
  transition: all .3s ease-in-out;
  width: 100%;
}
header.header .menu-icon-wrapper .icon-box .icon:before {
  top: -.5rem;
}
header.header .menu-icon-wrapper .icon-box .icon:after {
  top: .5rem;
}
header.header .menu {
  background: #fff;
  border-radius: .375rem;
  bottom: 1.125rem;
  opacity: 0;
  padding: 2rem 1.375rem 2rem 2.5rem;
  pointer-events: none;
  position: absolute;
  right: 1rem;
  transform: translateY(80%);
  transition: all .3s ease-in-out;
  z-index: 100;
}
header.header .menu.active {
  opacity: 1;
  pointer-events: all;
  transform: translateY(100%);
}
header.header .menu ul{
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 23rem;
}
header.header .menu ul li{
  margin-bottom:0px;
}
header.header .menu ul li a:not(.cta_button){
  align-items: center;
  color: #0f2643;
  display: flex;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: -.02rem;
  line-height: 1.2;
  width: 100%;
  text-decoration:none;
  transition: all .35s ease;
}
header.header .menu ul li a:not(.cta_button)::after{
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'><path d='M18.3839 9.99993L11.6667 16.7171L10.7828 15.8333L15.9911 10.6249H1.875V9.37492H15.9911L10.7828 4.1666L11.6667 3.28271L18.3839 9.99993Z' fill='%23ED6A50'/></svg>");
  content:'';
  height: 1.25rem;
  margin-left: 1.25rem;
  opacity: 0;
  transform: translateX(-50%);
  transition: opacity .2s ease, transform .2s ease;
  width: 1.25rem;
}
header.header .menu ul li.active a::after{
  display:none;
}
header.header .menu ul li.active > a::before{
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='100%' height='100%' viewBox='0 0 10 10' fill='none'><path d='M5.16243 0H4.84463C4.52684 2.37994 2.38701 4.51977 0 4.84463V5.16243C2.37994 5.48023 4.52684 7.62006 4.84463 10H5.16243C5.48023 7.62006 7.62006 5.47316 10 5.16243V4.84463C7.62006 4.52684 5.47316 2.38701 5.16243 0Z' fill='%23ED6A50'/></svg>");
  height: .75rem;
  margin-right: .75rem;
  width: .75rem;
  content:'';
}
header.header .menu ul li a:not(.cta_button):hover::after{
  opacity: 1;
  transform: translateX(0);
}
html.popup-open{
  overflow:hidden;
}
header.header .popup-blur-boundary{
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  background: rgba(0, 0, 0, .4);
  height: 100vh;
  cursor:auto;
  left: 0;
  position: fixed;
  opacity:0;
  top: 0;
  z-index: -99999;
  transition: opacity .3s ease, visibility 0s linear;
  overflow:hidden;
}
html.popup-open .popup-blur-boundary{
  transition: opacity .3s ease, visibility 0s linear;
  opacity:1;
  cursor:none;
  z-index: 99999;
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 1;
  width: 58.33vw;
}


header.header .popup-overlay-close {
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(15, 38, 67, .18);
  border: 1px solid hsla(0, 0%, 100%, .15);
  border-radius: 9999px;
  border-radius: 100px;
  color: #fff;
  display: flex;
  display: none;
  font-weight: 500;
  height: 6.94vw;
  justify-content: center;
  line-height: 1.2;
  pointer-events: none;
  position: fixed;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%) translateZ(0);
  transition: transform .1s ease, opacity .1s ease;
  width: 6.94vw;
  z-index: 999999;
  cursor:none;
  font-family: Inter;
  font-size: .75rem;
}

header.header .popup-open .popup-overlay-close {
  display: flex;
  pointer-events: auto;
}

header.header .button_menu_container{
  display:flex;
  gap: 1rem;
}
header.header .button_container {
  align-items: center;
  display: flex;
  gap: 1rem;
}
header.header .toggle_bottom {
  display: flex;
  height: 100%;
}

.overlay-container{
  -webkit-backdrop-filter: blur(0);
  backdrop-filter: blur(0);
  background: rgba(0, 0, 0, .4);
  cursor: auto;
  height: 100vh;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: all .3s ease;
  width: 100vw;
  z-index: 99999;
  pointer-events:none;
  overflow:hidden;
}
html.popup-open .overlay-container{
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  opacity: 1;
  width: 58.33vw;
  cursor:none;
  pointer-events:auto;
}
button.follow-cursor-btn {
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: hsla(0, 0%, 100%, .2);
  border: 1px solid hsla(0, 0%, 100%, .15);
  border-radius: 9999px;
  color: #fff;
  display: flex;
  justify-content:center;
  font-weight: 500;
  height: 6.94vw;
  line-height: 1.2;
  pointer-events: none;
  position: fixed;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%) translateZ(0);
  transition: transform .1s ease, opacity .1s ease;
  width: 6.94vw;
  z-index: 999999;
  cursor:none;
  font-family: Inter;
  font-size: .75rem;
}

button.follow-cursor-btn::before{
  background-image: url('https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/cursor-icon.svg');
  background-size: contain;
  content: "";
  height: 16px;
  left: 0;
  right:0;
  position: absolute;
  top: 1.5rem;
  width: 16px;
  text-align:center;
  margin:0 auto;
}

header.header .logo_container{
  height: 5rem;
  transition: all .5s ease 0s;
  width: 12.75rem;
}
header.header.nav-down .logo_container{
  height: auto;
  width: 10.25rem;
}
header.header .menu .top_container{
  display:none;
}

@media(min-width:601px){
  .header .menu-icon-wrapper.active .icon-box .icon {
    background-color: transparent;
  }
  .header .menu-icon-wrapper.active .icon-box .icon:before {
    top: 0;
    transform: rotate(-45deg);
  }
  .header .menu-icon-wrapper.active .icon-box .icon:after {
    top: 0;
    transform: rotate(45deg);
  }
  .header .menu ul li:not(.active) a:not(.cta_button):hover{
    color:#ed6a50;
  }
/*   body .popup-close-button{
    display:none;
  } */
  body header.header button.popup-close-button{
    display:none;
  }
}


@media(max-width:1300px){
  body button.follow-cursor-btn{
    top:1rem;
  }
}

@media(max-width:600px){
  body header.header,
  body header.header.nav-down{
    padding:1rem;
  }
  body header.header .button_container .button:not(:first-child){
    display:none;
  }
  body header.header .logo_container{
    height: 2.75rem;
    width: 7.375rem;
  }
  body header.header .menu{
    background-color: #0f2643;
    inset: 0;
    width: 100%;
    height: 100vh;
    border-radius:0px;
    top:0;
    transform: translateX(100%) !important;
    padding:0px;
  }
  body header.header .menu::before{
    background:url(https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/Header%20Menu%20Background.jpg);
    content: "";
    height: 100%;
    pointer-events: none;
    position: absolute;
    left: 0;
    mix-blend-mode: overlay;
    opacity: .1;
    top: 0;
    width: 100%;
    z-index: 0;
  }
  body header.header .menu.active{
    transform: translateX(0%) !important;
  }
  body header.header .menu-icon-wrapper{
    margin-right: 0;
    padding: 0 .75rem;
  }
  body header.header .menu .top_container .menu-icon-wrapper{
    border:none;
    padding:0;
  }
  body header.header .menu ul{
    width:100%;
  }
  body header.header .menu ul li a:not(.cta_button){
    color: #e5e6e6;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -.015rem;
    line-height: 1.2;
  }
  body header.header .menu .top_container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
  }
  body header.header.nav-down .logo_container,
  body header.header .logo_container{
    height: 2.75rem;
    width: 7.125rem;
  }
  body header.header .menu ul{
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 0 1rem 0 1.25rem;
  }
  html.active {
    overflow: hidden;
  }
  /*   body .header .menu ul li a::after{
  display:none;
} */
  header.header .menu_container {
    display: flex;
    flex-direction: column;
    height: -webkit-fill-available;
    justify-content: space-between;
  }
  body header.header .button_menu_container{
    align-items:center;
  }
  body header.header .customization_popup{
    width:100%;
    display:flex;
    flex-direction:column;
    background:#e5e6e6;
  }
  body .overlay-container{
    display:none;
  }
  body header.header .menu ul.cloned-buttons{
    flex-direction:row;
    align-items: center;
    display: flex;
    gap: 1rem;
    margin-top: auto;
    padding: 1.5rem 1rem;
    z-index: 2;
    justify-content:center;
    position:absolute;
    bottom:0;
  }
  body header.header .menu ul.cloned-buttons::before{
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 375 2" fill="none"><path opacity="0.6" d="M0 1L375 1" stroke="white" stroke-dasharray="1 4"/></svg>');
    background-repeat: no-repeat;
    background-size: cover;
    position:absolute;
    top:0;
  }
  body header.header .menu_container > .hs_cos_wrapper{
    max-height: 72vh;
    overflow: auto;
  }  

  body header.header .top_container .menu-icon-wrapper.active .icon-box .icon {
    background-color: transparent;
  }
  body header.header .top_container .menu-icon-wrapper.active .icon-box .icon:before {
    top: 0;
    transform: rotate(-45deg);
  }
  body header.header .top_container .menu-icon-wrapper.active .icon-box .icon:after {
    top: 0;
    transform: rotate(45deg);
  }
  body header.header .menu ul li a:not(.cta_button)::after{
    display:none;
  }
  body header.header .popup-close-button {
    background: transparent;
    border: 0 !important;
    background:none !important;
    cursor: pointer;
    height: 36px;
    margin-bottom: 16px;
    padding: 0 !important;
    position: relative;
    width: 36px;
    text-align: left;
    float: left;
  }
  body header.header button.popup-close-button svg path{
    stroke: var(--accent_primary_color);
  }
}



/* Form Popup Styling */

header.header .customization_popup_container .form_container form .hs-form-field{
  position: relative;
  transition: all .3s ease;
  width: 100%;
  margin-bottom:1rem;
}
header.header .customization_popup_container .form_container form .hs-form-field > label{
  color: #0f2643;
  left: 1rem;
  pointer-events: none;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9;
  transition:all .3s ease;
}
header.header .customization_popup_container .form_container form .hs-form-field.is-active > label{
  font-size: .75rem !important;
  top: .75rem;
  transform: translateY(0);
  transition:all .3s ease;
}
header.header .customization_popup_container .form_container .hs-input.invalid.error{
  border-color:#ca382f;
}
header.header .customization_popup_container .form_container ul.no-list.hs-error-msgs.inputs-list {
  display:none;
}
header.header .customization_popup_container .form_container ul.no-list.hs-error-msgs.inputs-list li,
header.header .customization_popup_container .form_container ul.no-list.hs-error-msgs.inputs-list li label.hs-error-msg{
  margin:0;
}
header.header .customization_popup_container .form_container form input{
  background: transparent !important;
  border: 1px solid rgba(15, 38, 67, .12);
  border-radius: .25rem;
  max-height: 4.125rem;
  padding: 2.25rem 1rem .75rem;
  transition: all .3s ease;
  font-family: Inter;
  font-size: .875rem;
  font-weight: 400;
  letter-spacing: -.00875rem;
  line-height: 1.4;
  margin: 0;
}
header.header .customization_popup_container .form_container form input[type="email"],
header.header .customization_popup_container .form_container form textarea.hs-input,
header.header .customization_popup_container .form_container form .input > .hs-input{
  width:100%;
}
header.header .customization_popup_container .form_container form textarea.hs-input{
  resize:none;
  min-height:150.22px;
}
header.header .customization_popup_container .form_container form .hs-form-field.hs-fieldtype-phonenumber label{
  font-size: .75rem !important;
  top: .75rem;
  transform: translateY(0);
  transition:all .3s ease;
}
header.header .customization_popup_container .form_container form .hs-fieldtype-textarea label{
  background-image: url(../../assets/img/bg/form-bg.jpg);
  border-radius: .25rem;
  color: #0f2643;
  left: 1px;
  padding-left: 1rem;
  padding-top: 1rem;
  pointer-events: none;
  position: absolute;
  top: 1rem !important;
  text-align:left;
  width: calc(100% - 2px);
}
header.header .customization_popup_container .form_container form .hs-fieldtype-textarea.is-active label{
  top:0rem !important;
}
header.header .customization_popup_container .form_container form input[type="submit"]{
  background: #062d5d !important;
  color: #fff;
  align-items: center;
  border-radius: .25rem;
  cursor: pointer;
  display: flex;
  font-size: .875rem;
  font-weight: 500;
  gap: .5rem;
  height: 3rem;
  justify-content: center;
  letter-spacing: .07rem;
  line-height: 1.2;
  max-width: 100%;
  min-width: 9.1875rem;
  padding: .88rem 1.38rem;
  text-transform: uppercase;
  transition: all .4s ease-out;
  width: auto;
  float: left;
}
header.header .customization_popup_container .form_container form input[type="submit"]:hover{
  color: #062d5d;
  background: #fff !important;
  transition: all .4s ease-out;
}
header.header .customization_popup_container .form_container form .hs_error_rollup{
  display: block;
  display: inline-block;
  width: 50%;
  float: right;
}
header.header .customization_popup_container .form_container form .actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header.header .customization_popup_container .form_container form .actions label{
  margin-bottom:0px;
  text-align:right;
  color:#ca382f;
}
header.header .customization_popup_container .form_container form .hs-fieldtype-intl-phone.hs-input select{
  width:40% !important;
  max-height: 4.125rem;
}
header.header .customization_popup_container .form_container form .hs-fieldtype-intl-phone.hs-input input{
  width:58% !important;
}


@media(max-width:600px){
  body header.header .customization_popup_container .form_container form input{
    background: #fff !important;
    max-height: 3.625rem;
    padding: 1.88rem 1rem .63rem;
    width:100% !important;
  }
  body header.header .customization_popup_container .form_container form .hs-fieldtype-intl-phone.hs-input select{
    width:100% !important;
    max-height: 3.625rem;
    margin-bottom:10px;
    background: #fff !important;
    padding-top: 1.6rem;
  }
  body header.header .customization_popup_container .form_container form .hs-submit:hover{
    background: none;
    border: none;
    border-radius: 0
  }
  body header.header .customization_popup_container .form_container form .hs_error_rollup{
    width:100%;
  }
  body header.header .customization_popup_container .form_container form .actions{
    justify-content: space-between;
    flex-direction: column-reverse;
    row-gap: 10px;
  }
  body header.header .customization_popup_container .form_container form .actions label{
    font-size:14px;
  }
}

@media(max-width:1300px){
  body button.follow-cursor-btn{
    padding:30px 12px 12px 12px !important;
  }
  body button.follow-cursor-btn::before{
    top:1rem;
  }
}

@media(max-width:1024px){
  body button.follow-cursor-btn {
    padding: 18px 12px 12px 12px !important;
  }
  body button.follow-cursor-btn::before{
    top:1.5rem !important;
    width:1rem;
    height:1rem;
  }
  body button.follow-cursor-btn{
    padding:1rem;
  }
  body button.follow-cursor-btn{
    width:9.94vw;
    height: 9.94vw;
  }
  body header.header .customization_popup_container .form_container form .hs-fieldtype-intl-phone.hs-input input{
    width:100% !important;
  }
  body header.header .customization_popup_container .form_container form .hs-fieldtype-intl-phone.hs-input select{
    width:100% !important;
    margin-bottom:10px !important;
  }
}






/* Menu Child Items */

/* .header .menu ul li.hs-item-has-children{
position:relative;
}
.header .menu ul li.hs-item-has-children::after{
position:absolute;
border: solid black;
border-width: 0 3px 3px 0;
display: inline-block;
padding: 3px;
transform: rotate(-45deg);
-webkit-transform: rotate(-45deg);
content: '';
right: 0;
top: 38%;
}
ul.hs-menu-children-wrapper{
inset:0;
background:#fff;
width:100%;
height:100%;
}
*/

body header.header .menu .hs-menu-wrapper.flyouts .hs-item-has-children{
  display:flex;
  align-items:center;
  position:initial;
}

body header.header .menu.active ul.hs-menu-children-wrapper{
  inset:0 !important;
  width:100%;
  height:100%;
  transform: translateX(100%);
  transition: transform .3s ease;
  pointer-events:none;
  z-index: 9999;
  width:100% !important;
  padding: 2rem 1.375rem 2rem 2.5rem !important;
}
body header.header .menu.active ul.hs-menu-children-wrapper.opened{
  transform: translateX(0);
  pointer-events:auto;
  opacity:1 !important;
  transition: transform .2s ease;
}

body header.header .menu.active::before{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  content:'';
  background:#fff;
  z-index:10;
  transform: translateX(100%);
  transition: transform .3s ease;
  opacity:0;
  pointer-events:none;
}
body.submenu-open header.header .menu.active::before{
  transform: translateX(0);
  opacity:1;
  pointer-events:auto;
  transition: transform .3s ease;
}
body header.header .menu button.submenu-toggle{
  padding:12px;
  background:none;
  border:none;
  position:relative;
}
body header.header .menu.active button.submenu-toggle::after{
  border-bottom-style: solid;
  border-bottom-width: 2px;
  border-right-style: solid;
  border-right-width: 2px;
  content: "";
  display: inline-block;
  height: 12px;
  left: 6px;
  position: absolute;
  top: 6px;
  width: 12px;
  color:#062d5d;
  transform: rotate(318deg);
}
.submenu-close{
  position: absolute;
  top: 0px;
  background: none;
  border: none;
  padding: 16px;
  right: 0;
  left: auto;
  margin-left: auto;
  width: 12px;
  height: 12px;
}
.submenu-close:before{
  position: absolute;
  left: 12px;
  top:0;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #333;
  transform: rotate(45deg);
}
.submenu-close:after{
  position: absolute;
  left: 12px;
  top:0;
  content: ' ';
  height: 33px;
  width: 2px;
  background-color: #333;
  transform: rotate(-45deg);
}

@media(min-width:601px){
  body header.header .menu.active ul.hs-menu-children-wrapper{
    display:flex !important;
  }
}
@media(max-width:600px){
  body header.header .menu.active ul.hs-menu-children-wrapper{
    padding: 0 !important;
    margin-top: 0px;
    transform: translateX(0%) !important;
  }
  /*   body .header .menu.active ul.hs-menu-children-wrapper{
  transform: translateX(0%);
  padding: 0 !important;
  margin-top: 0px;
  max-height: 0%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition: transform .3s ease;
}
  body .header .menu.active ul.hs-menu-children-wrapper.opened{
  max-height: 100%;
  overflow: hidden;
  visibility: visible;
  opacity: 1;
  transition: transform .3s ease;
} */
  body header.header .menu .hs-menu-wrapper.flyouts .hs-item-has-children{
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap:20px;
  }
  body header.header .menu ul li a:not(.cta_button){
    width:auto;
  }
  body header.header .menu.active::before{
    display:none !important;
  }
  body .submenu-close{
    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%;
}



/*   Legacy Slider   */

.body3{
  font-family: Inter;
  font-size: .75rem;
  font-weight: 300;
  line-height: 1.4;
  margin: 0;
}
.custom-cursor2{
  position: relative;
  align-items: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  background: rgba(15, 38, 67, .18);
  border: 1px solid hsla(0, 0%, 100%, .15);
  border-radius: 9999px;
  border-radius: 100px;
  color: var(--white_color);
  display: flex;
  font-weight: 500;
  height: 6.94vw;
  justify-content: center;
  line-height: 1.2;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  text-align: center;
  text-transform: uppercase;
  transform: translate(-50%, -50%) translateZ(0);
  transition: transform .1s ease, opacity .1s ease;
  width: 6.94vw;
  z-index: 1000;
}
.custom-cursor2.visible{
  opacity: 1;
}
.custom-cursor2:before{
  position: absolute;
  content: '';
  background-image: url('https://3842749.fs1.hubspotusercontent-na1.net/hubfs/3842749/Gems-SRI/cursor-icon.svg');
  background-size: contain;
  height: 16px;
  top: 1.5rem;
  width: 16px;
}

@media (max-width: 1680px) {
  .custom-cursor2:before{
    top: 1.25rem;
  }
}

@media (max-width: 1340px) {
  .custom-cursor2:before{
    top: 1.1rem;
  }
}

@media (max-width: 1280px) {
  .custom-cursor2{
    display: none;
  }
}

/* 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;
  }
}