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

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

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

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

body {
  line-height: 1.4;
  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;
}

/* Paragraphs */

p {
  font-size: 1rem;
  margin: 0 0 1rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 1rem;
}

/* Lists */

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

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

/* Horizontal rules */

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

/* Image alt text */

img {
  font-size: 0.583rem;
  word-break: normal;
}
button,
.button,
.hs-button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.3s 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;
}
/* Form Display */


/* Form Display */
form .form-columns-2 {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 991px) {
  form .form-columns-2 {
    gap: 1rem;
  }
}

@media (max-width: 743px) {
  form .form-columns-2 {
    flex-direction: column;
    gap: 0;
  }
}

/* Fields */
form fieldset, .hs_recaptcha, .hs-recaptcha {
  max-width: none !important;
  margin-bottom: 1rem !important;
}

/* Inputs */
form .input {
  margin: 0 !important;
}

form textarea {
  min-height: 120px;
}

form label {
  margin-right: 0.75rem;
  margin-bottom: 0.5rem;
}

form legend {
  display: contents;
}

form input:not([type="radio"]):not([type="checkbox"]):not([type="submit"]),
form textarea,
form select {
  width: 100% !important;
}

form .hs-form-radio-display,
form .hs-form-booleancheckbox-display,
form input[type="radio"], form input[type="checkbox"],
form select {
  cursor: pointer;
}

/* Inputs - checkbox/radio */
form .inputs-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hs-form-radio label,
.hs-form-booleancheckbox label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.legal-consent-container .hs-form-booleancheckbox-display>span {
  margin: 0 !important;
}
/* Table */

table {
  width: 100%;
  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
*/

/* Header DND sections */


/* Navigation skipper */

.header__skip {
  height: 1px;
  left: -1000px;
  overflow: hidden;
  position: absolute;
  text-align: left;
  top: -1000px;
  width: 1px;
}

.header__skip:hover,
.header__skip:focus,
.header__skip:active {
  height: auto;
  left: 0;
  overflow: visible;
  top: 0;
  width: auto;
}





/* Small devices (landscape phones, 767px and down) */


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

/* Values from the Global Settings */


/*
 * 
 * Global Colors
 * 
 * /






/*
 * 
 * Space
 * 
 * /
 /**********  Container  **********/








/********** Eyebrow **********/



/********** Title **********/



/********** Text Area **********/



/*
 * 
 * Breakpoints
 * 
 * /




/*
 * 
 * Header
 * 
 * /

/**********  Desktop  **********/
/* Boolean */


/* If True */










/* Boolean */

/* If True */










/**********  Drop Downs  **********/















/* If "icon" */










/*
 * 
 * Footer
 * 
 * /

/* Boolean */

/* If True */













/*
 * 
 *  Typography
 * 
 */

/* Primary Font */










/* Mobile */





/* Secondary Font */










/* Mobile */






/* H1 Standard */
/* Boolean */

/* If True */









/* Mobile */





/* H1 Large */
/* Boolean */

/* If True */









/* Mobile */





/* H1 Small */
/* Boolean */

/* If True */









/* Mobile */





/* H2 Standard */
/* Boolean */

/* If True */









/* Mobile */





/* H2 Large */
/* Boolean */

/* If True */









/* Mobile */





/* H2 Small */
/* Boolean */

/* If True */









/* Mobile */





/* H3 Standard */
/* Boolean */

/* If True */









/* Mobile */





/* H3 Large */
/* Boolean */

/* If True */









/* Mobile */





/* H3 Small */
/* Boolean */

/* If True */









/* Mobile */





/* H4 */
/* Boolean */

/* If True */









/* Mobile */





/* H5 */
/* Boolean */

/* If True */









/* Mobile */





/* H6 */
/* Boolean */

/* If True */









/* Mobile */





/* Paragraph */
/* Boolean */

/* If True */









/* Mobile */





/* List */
/* Boolean */

/* If True */











If image




/* Mobile */





/* Links */
/* Boolean */

/* If True */










/* Mobile */





/*
 * 
 *  Button
 * 
 */
/* Primary Button */















/* If "solid" */


/* Else if "gradient" */




/* Else if "outline" */



/* Boolean */

/* If True */






/* Boolean */

/* If True */







/* If "shadow" */



/* Else if "expand" */


/* Else if "float" */








/* Secondary Button */















/* If "solid" */


/* Else if "gradient" */




/* Else if "outline" */



/* Boolean */

/* If True */






/* Boolean */

/* If True */







/* If "shadow" */



/* Else if "expand" */


/* Else if "float" */








/* Tertiary Button */















/* If "solid" */


/* Else if "gradient" */




/* Else if "outline" */



/* Boolean */

/* If True */






/* Boolean */

/* If True */







/* If "shadow" */



/* Else if "expand" */


/* Else if "float" */








/*
 * 
 *  Media
 * 
 */










/*
 * 
 *  Card
 * 
 */








/* If "solid" */

/* Else if "gradient" */



/* Else if "outline" */



/*
 * 
 *  CTA Banner
 * 
 */







/* BG style */

/* If "solid" */

/* Else if "gradient" */



/* Else if "outline" */



/*
 * 
 *  Forms
 * 
 */











/* Input Field Fonts */









/* Input Field Placeholder */






























































/*
 * 
 *  Blog
 * 
 */










/********** Post Content **********/






/*
 * 
 *  System Pages
 * 
 */
















/*
 * 
 *  Tables
 * 
 */
















html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

html,
body {
  width: 100%;
  min-height: 100%;
}

html.scroll-lock,
body.scroll-lock {
  overflow: hidden;
  height: 100%;
}

a {
  transition: all 0.3s;
}

.text-area p:last-child, .text-area ul:last-child, .text-area ol:last-child {
  margin-bottom: 0;
}

button {
  outline: none;
  border: 0;
}

figure {
  margin: 0;
  display: flex;
}

img, video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

main {
  background-color: rgba(250, 250, 250, 1);
}




.container {
  margin: 0 auto;
  max-width: 1440px;
  padding-top: 5rem;
padding-right: 2.5rem;
padding-bottom: 5rem;
padding-left: 2.5rem;
margin-top: 0rem;
margin-bottom: 0rem;

}

.flex-container {
  display: flex;
}

.grid-container {
  display: grid;
}




.eyebrow {
  margin-bottom: 0.5rem;
}

.title {
  margin-bottom: 1rem;
}

.text-area {
  margin-bottom: 1rem;
}




header {
  background-color: rgba(255, 255, 255, 1);
}


.body-wrapper > div:first-of-type {
  position: sticky;
  top: 0;
  z-index: 1000;
}

  

header {
  transition: all .5s;
}
header.transparent {
  background-color: rgba(255, 255, 255, 60%);
}


.header-container {
  padding-top: 1rem;
padding-right: 2.5rem;
padding-bottom: 1rem;
padding-left: 2.5rem;
margin-top: 0rem;
margin-bottom: 0rem;

}

.header-wrapper {
  align-items: center;
}

/*** Logo ***/
.header-logo-link {
  display: flex;
  width: 200px;
  height: 22px;
}

.menu-wrapper {
  display: flex;
  width: 100%;
  justify-content: end;
  align-items: center;
  gap: 1rem;
}

/*** Nav ***/
nav ul, nav ul.main-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  margin: 0;
}

nav .has-submenu {
  position: relative;
}

/* Menu link underline */

nav .menu-item {
  position: relative;
}

nav .main-menu > .menu-item:before {
  transition: all .3s;
  height: 2px;
  content: "";
  position: absolute;
  width: 0;
  bottom: 0;
  left: 0;
  border-radius: 5px;
  background-color: rgba(224, 224, 224, 1);
}
  
nav .main-menu > .menu-item.show:before {
  width: 100%;
}


/* Menu link color */
nav a, nav .menu-item {
  color: rgba(30, 30, 30, 1);
}

nav a:hover:not(.level-1 .no-hover),
nav .menu-item:hover,
nav .has-submenu.active .menu-item {
  color: rgba(224, 224, 224, 1);
}

/* Menu link arrow */
nav .has-submenu .menu-arrow {
  transition: all 0.3s;
}

nav .has-submenu.active .menu-arrow {
  transform: rotate(180deg);
}

/* Dropdown Menu */
nav .submenu.level-1 {
  position: absolute;
  top: 2.5rem;
  visibility: hidden;
  opacity: 0;
  gap: 2.5rem;
  width: max-content;
  transition: all 0.3s;
  
    padding: 1rem;
    border-radius: 4px;
  
  background-color: rgba(255, 255, 255, 1);
  
}

nav .has-submenu.active .submenu.level-1 {
  visibility: visible;
  opacity: 1;
}

/* Dropdown Menu link color */
nav .submenu.level-1 a, nav .submenu.level-1 .menu-item {
  color: rgba(30, 30, 30, 1);
}

nav .submenu.level-1 a:hover:not(.level-1 .no-hover),
nav .submenu.level-1 .menu-item:hover,
nav .submenu.level-1 .has-submenu.active .menu-item {
  
}

nav .menu-item a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

nav .level-1 .no-hover {
  font-weight: bolder;
}

/*** Hamburger Menu ***/
.hamburger-menu {
  width: 36px;
  height: 24px;
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}

.hamburger-menu span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background-color: rgba(30, 30, 30, 1);
  border-radius: 100px;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

.hamburger-menu span {
  -webkit-transform-origin: left center;
  -moz-transform-origin: left center;
  -o-transform-origin: left center;
  transform-origin: left center;
}
.hamburger-menu span:nth-child(1) {
  top: 0;
}

.hamburger-menu span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.hamburger-menu span:nth-child(3) {
  bottom: 0;
}

.hamburger-menu.open span:nth-child(1) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  top: -3px;
  left: 8px;
}

.hamburger-menu.open span:nth-child(2) {
  width: 0%;
  opacity: 0;
}

.hamburger-menu.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 22px;
  left: 8px;
}

.hamburger-menu {
  display: none;
}

/*** Language Switcher ***/
.lang-switcher a {
  color: rgba(30, 30, 30, 1);
}

.lang-switcher a:hover {
  
}





footer {
  background-color: rgba(255, 255, 255, 1);
}

footer .footer-logo-link {
  display: flex;
}

footer .social-icons {
  display: flex;
  gap: 1rem;
}

footer .menu-wrapper {
  align-items: start;
  gap: 5rem;
}

footer .menu-col {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

footer ul {
  padding: 0;
  margin: 0;
}

footer ul li {
  list-style: none;
}

footer .menu-title {
  color: rgba(30, 30, 30, 1);
  font-weight: bolder;
  margin-bottom: 0.5rem;
}

footer .menu-link a {
  color: rgba(30, 30, 30, 1);
}

footer .menu-link a:hover {
  color: rgba(224, 224, 224, 1);
}






h1, h2, h3, h4, h5, h6 {
  font-family: Poppins;
  font-size: 1rem;
  color: #1E1E1E;
  text-transform: uppercase;
  letter-spacing: 0px;
  line-height: 1.5;
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
}

p, li, a {
  font-family: Poppins;
  font-size: 1rem;
  color: #4A4A4A;
  text-transform: none;
  letter-spacing: 0px;
  line-height: 1.5;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
}

a {
  transition: all 0.3s;
}

/******************************** Headings *********************************/


h1, .h1-standard {
  font-family: Poppins;
  font-size: 3rem;
  color: #1E1E1E;
  text-transform: normal;
  letter-spacing: 0px;
  line-height: 1.5;
  font-style: normal;
  font-weight: 700;
  text-decoration: none;
}








h2, .h2-standard {
  font-family: Inter;
  font-size: 2rem;
  color: #1E1E1E;
  text-transform: normal;
  letter-spacing: 0px;
  line-height: 1.5;
  font-style: normal;
  font-weight: 600;
  text-decoration: none;
}








h3, .h3-standard {
  font-family: Poppins;
  font-size: 1.5rem;
  color: #1E1E1E;
  text-transform: normal;
  letter-spacing: 0px;
  line-height: 1.5;
  font-style: normal;
  font-weight: 500;
  text-decoration: none;
}















/******************************** Paragraph *********************************/

p, .p-style {
  font-family: Inter;
  font-size: 1rem;
  color: #666666;
  text-transform: normal;
  letter-spacing: 0px;
  line-height: 1.37;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
}


/******************************** List *********************************/



ul {
  list-style-image: disc;
}

/******************************** Link *********************************/


a:hover, .a-style:hover {
  color: color: rgba(0, 123, 255, 1);;
}










.button-area {
  display: flex;
  gap: 1rem;
}

button, form input[type="submit"], .submit-alt .hs-button,
.hs-button, .button--primary,
.cta-primary, .cta-secondary, .cta-tertiary,
.btn-primary, .btn-secondary, .btn-tertiary {
  -moz-box-sizing: content-box !important;
  -webkit-box-sizing: content-box !important;
  box-sizing: content-box !important;
  vertical-align: middle;
  display: inline-flex;
  align-items: center;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  will-change: transform;
}

.hs-button:hover, .button--primary:hover,
.hs-button:active, .button--primary:active,
.hs-button:focus, .button--primary:focus,
.cta-primary:hover, .cta-secondary:hover, .cta-tertiary:hover,
.cta-primary:active, .cta-secondary:active, .cta-tertiary:active,
.cta-primary:focus, .cta-secondary:focus, .cta-tertiary:focus,
.btn-primary:hover, .btn-secondary:hover, .btn-tertiary:hover,
.btn-primary:active, .btn-secondary:active, .btn-tertiary:active,
.btn-primary:focus, .btn-secondary:focus, .btn-tertiary:focus {
  text-decoration: none;
}

.button.has-icon {
  display: inline-flex;
  gap: 0.4rem;
}

.button .btn-icon {
  display: flex;
}


.cta-primary, .cta-primary:active,
.btn-primary, .btn-primary:active {
  font-family: Inter;
  font-size: 1rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0px;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  -webkit-border-radius: 6px;
  border-radius: 6px;


  
  background-color: rgba(255, 122, 89, 1);
  


  


  
}


.cta-primary:hover, .cta-primary:focus,
.btn-primary:hover, .btn-primary:focus {
  color: rgba(255, 255, 255, 1);
  background-color: rgba(232, 106, 74, 1);


  


  
  

  


  
  

  
}




.cta-secondary, .cta-secondary:active,
.btn-secondary, .btn-secondary:active {
  font-family: Inter;
  font-size: 1rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0px;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  padding: 1rem 1.5rem;
  -webkit-border-radius: 5px;
  border-radius: 5px;


  
  background-color: rgba(76, 182, 232, 1);
  


  


  
}


.cta-secondary:hover, .cta-secondary:focus,
.btn-secondary:hover, .btn-secondary:focus {
  color: rgba(255, 255, 255, 1);
  background-color: rgba(58, 164, 212, 1);


  


  
  

  


  
  

  
}




.cta-tertiary, .cta-tertiary:active,
.btn-tertiary, .btn-tertiary:active {
  font-family: Inter;
  font-size: 1rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0px;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  padding: 1rem 1.5rem;
  -webkit-border-radius: 5px;
  border-radius: 5px;


  
  background-color: rgba(255, 209, 102, 1);
  


  


  
}


.cta-tertiary:hover, .cta-tertiary:focus,
.btn-tertiary:hover, .btn-tertiary:focus {
  color: ;
  background-color: rgba(230, 188, 89, 1);


  


  
  

  


  
  

  
}





.img-container img,
.video-container video,
.video-overlay .popup-video,
.bg-video-overlay {
  border-radius: 6px;
}

.video-container > video {
  min-height: -webkit-fill-available;
}

.video-container {
  display: grid;
  position: relative;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  width: 100%;
  max-width: 120px;
  opacity: 0.65;
  transition: all .3s;
  cursor: pointer;
}

.play-btn:hover {
  opacity: 1;
}


.video-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1001;
  background-color: rgba(0, 0, 0, 0.9);
  opacity: 0;
  visibility: hidden;
  transition: all .25s;
  display: grid;
  place-items: center;
  transform: translateY(100%);
  cursor: pointer;
}

.video-overlay.active {
  opacity: 1;
  visibility: visible;
}

.video-overlay.active {
  transform: translateY(0);
}

.video-overlay .popup-video {
  width: 80%;
  height: auto;
}

.bg-video-overlay, .bg-video-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.bg-video-overlay {
  z-index: 1;
}

.bg-video-container {
  z-index: 0;
}
  
.bg-video-container video {
  border-radius: 0;
}





.cards-container {
  display: grid;
  grid-auto-rows: minmax(300px, 1fr);
}

.card {
  position: relative;
}

.card,
.card .img-container img,
.card .video-container video,
.card .bg-overlay {
  border-radius: 6px;
}

a.card:hover {
  transform: translateY(-10px);
}

.card .text-area,
.card .media-content,
.card .bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.card .bg-overlay {
  z-index: 1;
  background-color: rgba(252, 126, 0, 0.6);
  
  
}

.card .text-area {
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: start;
  text-align: start;
  padding: 1.5rem 1.5rem;
  margin: 0;
}

.card .play-btn {
  z-index: 3;
}





.cta-banner {
  padding: 3rem 2rem;
  border-radius: 6px;
  
  
  border: 3px solid #fc7e00;
;
  background-blend-mode: overlay;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  justify-content: space-between;
  align-items: start;
}





form input[type="submit"], .hs-button {
  border: none;
}



  
  form input[type="submit"], form input[type="submit"]:active,
  .hs-button, .hs-button:active {
    font-family: Inter;
    font-size: 1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0px;
    font-style: normal;
    font-weight: normal;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    -webkit-border-radius: 6px;
    border-radius: 6px;

  
    
    background-color: rgba(255, 122, 89, 1);
    

  
    

  
    
  }

  
  form input[type="submit"]:hover, form input[type="submit"]:focus,
  .hs-button:hover, .hs-button:focus {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(232, 106, 74, 1);

  
    

  
    

  
    

  
    

  
    
  }
  





form input, form textarea, form select {
  outline: none;
  border-style: solid;
  font-family: Inter;
  font-size: 1rem;
  color: #1E1E1E;
  text-transform: none;
  letter-spacing: 0px;
  line-height: 1.37;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 1);
  border-width: 1px;
  border-color: rgba(204, 204, 204, 1);
  border-radius: 6px;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

form input:focus, form textarea:focus, form select:focus {
  border-color: rgba(204, 204, 204, 1);
}

::-webkit-input-placeholder { /* Chrome */
  color: rgba(187, 187, 187, 1);
  transition: opacity 250ms ease-in-out;
}
:focus::-webkit-input-placeholder {
  opacity: 0.5;
}
:-ms-input-placeholder { /* IE 10+ */
  color: rgba(187, 187, 187, 1);
  transition: opacity 250ms ease-in-out;
}
:focus:-ms-input-placeholder {
  opacity: 0.5;
}
::-moz-placeholder { /* Firefox 19+ */
  color: rgba(187, 187, 187, 1);
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}
:focus::-moz-placeholder {
  opacity: 0.5;
}
:-moz-placeholder { /* Firefox 4 - 18 */
  color: rgba(187, 187, 187, 1);
  opacity: 1;
  transition: opacity 250ms ease-in-out;
}
:focus:-moz-placeholder {
  opacity: 0.5;
}



form label {
  font-family: Inter;
  font-size: 1rem;
  color: #1E1E1E;
  text-transform: none;
  letter-spacing: 0px;
  line-height: 1.37;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
}


.hs_radio label, .hs-radio label,
.hs-form-radio label,
.hs_check_box label, .hs-check_box label,
.hs-form-booleancheckbox {
  font-family: Inter;
  font-size: 1rem;
  color: #1E1E1E;
  text-transform: none;
  letter-spacing: 0px;
  line-height: 1.37;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
}

form input[type="radio"], form input[type="checkbox"] {
  width: 1.25rem !important;
  height: 1.25rem;
}


form legend {
  font-family: Inter;
  font-size: 1rem;
  color: #1E1E1E;
  text-transform: none;
  letter-spacing: 0px;
  line-height: 1.37;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
}


.legal-consent-container,
.legal-consent-container p {
  font-family: Inter;
  font-size: 1rem;
  color: #1E1E1E;
  text-transform: none;
  letter-spacing: 0px;
  line-height: 1.37;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
}

.legal-consent-container input {
  width: 1.25rem !important;
  height: 1.25rem;
}


.hs-error-msg {
  font-family: Inter;
  font-size: 1rem;
  color: #f44336;
  text-transform: none;
  letter-spacing: 0px;
  line-height: 1.37;
  font-style: normal;
  font-weight: 400;
  text-decoration: none;
}

input.error,
textarea.error,
select.error {
  border-color: rgba(244, 67, 54, 1);
}





.blog-listing {
  
}

/*** POST PAGE STYLE ***/
.blog-post-wrapper {
  
}

.blog-post-content {
  max-width: 990px;
}






.error-page-full {
  background-color: rgba(255, 255, 255, 1);
}

.error-page h1,
.error-page h2,
.error-page h3,
.error-page h4,
.error-page h5,
.error-page h6,
.error-page p,
.error-page li {
  color: rgba(255, 2, 1, 1);
}

.error-page:before {
  color: rgba(255, 2, 1, 1);
  opacity: 0.1;
}

.membership-full {
  background-color: rgba(255, 255, 255, 1);
}

.membership-section {
  max-width: 990px;
}

.membership-page h1,
.membership-page h2,
.membership-page h3,
.membership-page h4,
.membership-page h5,
.membership-page h6,
.membership-page p,
.membership-page label,
.membership-page a:not(.hs-button) {
  color: rgba(255, 153, 2, 1);
}

.results-hero-banner {
  background-color: rgba(204, 204, 204, 1);
}

.results-hero-banner h1, .results-hero-banner h2, .results-pre-banner h3,
.results-hero-banner h4, .results-hero-banner h5, .results-hero-banner h6 {
  color: rgba(248, 123, 134, 1);
}

.results-full {
  background-color: rgba(255, 255, 255, 1);
}

.results-page h1,
.results-page h2,
.results-page h3,
.results-page h4,
.results-page h5,
.results-page h6,
.results-page p,
.results-page li {
  color: rgba(105, 168, 79, 1);
}





table th, table td {
  font-family: Inter;
  font-size: 1rem;
  color: #1F2A44;
  
  letter-spacing: 0px;
  line-height: 1.6;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
}


table th, table td {
  padding-top: 1rem;
  padding-bottom: 1rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}





@media (min-width: 1440px) {
}

/***** Small Desktop Size *****/
@media (max-width: 1200px) {
}

/***** Tablet Size *****/
@media (max-width: 991px) {
  /******************************** Global spacing *********************************/
  .container {
    padding-top: 4rem;
padding-right: 1.75rem;
padding-bottom: 4rem;
padding-left: 1.75rem;
margin-top: 0rem;
margin-bottom: 0rem;

  }

  .flex-container {
    flex-direction: column;
  }

  /************************************ Header *************************************/
  .header-container {
    padding-top: 1rem;
padding-right: 1.5rem;
padding-bottom: 1rem;
padding-left: 1.5rem;
margin-top: 0rem;
margin-bottom: 0rem;

  }

  .header-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .hamburger-menu {
    display: block;
  }
  
  header .menu-wrapper {
    flex-direction: column;
    justify-content: start;
    gap: 2.5rem;
    position: fixed;
    z-index: 1001;
    width: 100%;
    height: -webkit-fill-available;
    top: 56px;
    left: 0;
    background-color: rgba(255, 255, 255, 1);
    padding-top: 100px;
    transform: translateX(1000px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
  }
  
  header .menu-wrapper.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  
  nav .main-menu,
  nav .submenu.level-2 {
    flex-direction: column;
  }
  
  nav .main-menu > .menu-item.show:before {
    width: 0;
  }
  
  nav .menu-item a {
    justify-content: center;
  }
  
  nav .submenu.level-1 {
    position: unset;
    padding: 0;
    overflow: hidden;
    height: auto;
    max-height: 0;
    display: block; /* To make scrollHeight accurate (JS) */
    transition: all 0.3s ease;
  }
  
  nav .submenu .has-submenu,
  nav .submenu a.menu-link-wrapper {
    margin-bottom: 0.5rem;
  }

  /************************************ Footer *************************************/
  .footer-wrapper {
    gap: 3rem;
  }

  footer .menu-wrapper {
    justify-content: space-between;
  }

  .video-overlay .popup-video {
    width: 100%;
  }
  
  a.card:hover {
    transform: translateY(0);
  }
}

/***** Mobile Size *****/
@media (max-width: 743px) {
  /******************************** Global spacing *********************************/
  .container {
    padding-top: 3.5rem;
padding-right: 1.25rem;
padding-bottom: 3.5rem;
padding-left: 1.25rem;
margin-top: 0rem;
margin-bottom: 0rem;

  }

  .eyebrow {
    margin-bottom: 0.5rem;
  }

  .title {
    margin-bottom: 0.5rem;
  }

  .text-area {
    margin-bottom: 0.5rem;
  }

  /************************************ Header *************************************/
  .header-container {
    padding-top: 1rem;
padding-right: 1.5rem;
padding-bottom: 1rem;
padding-left: 1.5rem;
margin-top: 0rem;
margin-bottom: 0rem;

  }

  .menu-wrapper .button-area {
    flex-direction: column;
  }
  
  /************************************ Footer *************************************/
  footer .menu-wrapper {
    flex-direction: column;
    gap: 2rem;
  }

  /******************************** Global fonts *********************************/
  h1, h2, h3, h4, h5, h6 {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 500;
  }
  
  p, li, a {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 400;
  }

  /******************************** Headings *********************************/
  
  
  h1, .h1-standard {
    font-size: 2rem;
    line-height: 1.4;
    
  }
  

  

  

  
  
  h2, .h2-standard {
    font-size: 1.5rem;
    line-height: 1.4;
    font-weight: 500;
  }
  

  

  

  
  
  h3, .h3-standard {
    font-size: 1.25rem;
    line-height: 1.4;
    font-weight: 500;
  }
  

  

  

  
  

  
  

  
  

  /******************************** Paragraph *********************************/
  
  p, .p-style {
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 400;
  }
  

  /******************************** List *********************************/
  

  /******************************** Link *********************************/
  

  /************************** Video Play Button ***************************/
  
  .play-btn {
    max-width: 86px;
  }
  

  /******************************** Cards *********************************/
  
  .cards-container {
    grid-auto-rows: minmax(260px, 1fr);
  }
  

  
  .cta-banner {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
  
}