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

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



.container {
  max-width: 1344px;
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (min-width:991px) {
  .container {
    padding: 0 24px;
  }
}
.container--fluid {
  max-width: 100%;
}
.container--max {
  max-width: 1440px;
  padding: 0;
}
.container--lg {
  max-width: 84.125rem;
}


/* desing rebuild  */
section.sec__f-resources {
  padding: 3rem 0;
}
section.sec__about {
  padding: 3.75rem 0;
  background: linear-gradient(180deg, rgba(228, 228, 228, 0) 0%, #f5f5f5 100%);
}
@media screen and (min-width:991px) {
  section.sec__about {
    padding: 6.25rem 0;
  }
}
@media screen and (min-width:1199px) {
  section.sec__about {
    padding: 9.8125rem 0 8.5rem;
  }
}
section.sec__mission {
  padding-bottom: 3.75rem;
  background-color: #f5f5f5;
}
@media screen and (min-width:991px) {
  section.sec__mission {
    padding-bottom: 5rem;
  }
}
section.related-blogs {
  padding: 3.75rem 0;
  background-color: #f5f5f5;
}
@media screen and (min-width:991px) {
  section.related-blogs {
    padding: 5rem 0;
  }
}
section.sec__what-is {
  padding: 3.75rem 0;
}
@media screen and (min-width:991px) {
  section.sec__what-is {
    padding: 5rem 0;
  }
}
section.sec__hero {
  padding-bottom: 12px;
}
@media screen and (min-width:767px){
section.sec__hero {
  padding-bottom: 1.5rem;
}
}
section.sec__reg-banner, section.sec__conference-topic {
  padding-bottom: 1.25rem;
}
@media screen and (min-width:991px) {
  section.sec__reg-banner, section.sec__conference-topic {
    padding-bottom: 5rem;
  }
}
section.sec__content-panel, section.sec__explore {
  padding: 1.25rem 0;
}
@media screen and (min-width:991px) {
  section.sec__content-panel, section.sec__explore {
    padding: 5rem 0;
  }
}
.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 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 1.4rem;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

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


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

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

.fi.header {
  position: fixed;
  z-index: 99;
  left: 0;
  width: 100%;
  top: 0;
  transition: all 0.3s ease-in-out;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 100%);
}
.fi.header .header__wrapper {
  padding: 0.8625rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (min-width:1199px) {
  .fi.header .header__wrapper {
    padding: 0.8625rem 2.5rem;
  }
}
.fi.header .header__wrapper .header__logo {
  max-width: 5.466875rem;
  display: block;
  margin: 0;
}
.fi.header .header__wrapper .header__logo svg path {
  fill: #fff;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width:480px) {
  .menu__open .fi.header .header__wrapper .header__logo svg path {
    fill: #000;
  }
}
@media screen and (max-width:1198px) {
  .fi.header .header__wrapper nav.fi__mian-nav {
    position: absolute;
    top: 0;
    right: -20rem;
    width: 20rem;
    height: 100vh;
    overflow: hidden;
    overflow-y: auto;
    background-color: #fff;
    padding: 6.25rem 2.5rem;
    z-index: -1;
    transition: all 0.3s ease-in-out;
  }
  .menu__open .fi.header .header__wrapper nav.fi__mian-nav {
    right: 0;
  }
}
/* @media screen and (max-width:1198px) and (max-height: 500px) {
  .fi.header .header__wrapper nav.fi__mian-nav {
    padding-bottom: 100px;
  }
} */
@media screen and (max-width:480px) {
  .fi.header .header__wrapper nav.fi__mian-nav {
    width: 100%;
    right: -100%;
  }
}
@media screen and (min-width:1199px) {
  .fi.header .header__wrapper nav.fi__mian-nav {
    display: block;
  }
}
.fi.header .header__wrapper nav.fi__mian-nav .header__navigation {
  display: block !important;
}
.fi.header .header__wrapper nav.fi__mian-nav.menu--desktop {
  display: none !important;
}
@media screen and (min-width:1199px) {
  .fi.header .header__wrapper nav.fi__mian-nav.menu--desktop {
    display: block !important;
  }
}
.fi.header .header__wrapper nav.fi__mian-nav.menu--mobile {
  display: block !important;
}
@media screen and (min-width:1199px) {
  .fi.header .header__wrapper nav.fi__mian-nav.menu--mobile {
    display: none !important;
  }
}
.fi.header .header__wrapper nav.fi__mian-nav ul {
  display: block;
  width: 100%;
}
@media screen and (min-width:1199px) {
  .fi.header .header__wrapper nav.fi__mian-nav ul {
    display: flex;
    align-items: center;
    column-gap: 2rem;
    width: auto;
  }
}
.fi.header .header__wrapper nav.fi__mian-nav ul > li {
  padding: 0.75rem 0 !important;
  display: block;
}
@media screen and (max-width:1198px) {
  .fi.header .header__wrapper nav.fi__mian-nav ul > li {
    border: none;
  }
}
.fi.header .header__wrapper nav.fi__mian-nav ul > li > a {
  color: #000;
  font-size: 0.875em;
  line-height: 160%;
  font-weight: 700;
  transition: all 0.3s ease-in-out;
  position: relative;
  text-transform: uppercase;
}
@media screen and (max-width:1198px) {
  .fi.header .header__wrapper nav.fi__mian-nav ul > li > a {
    padding: 0 !important;
  }
}
@media screen and (min-width:1199px) {
  .fi.header .header__wrapper nav.fi__mian-nav ul > li > a {
    color: #fff;
    text-transform: capitalize;
  }
}
.fi.header .header__wrapper nav.fi__mian-nav ul > li > a::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 0;
  height: 0.0625rem;
  background-color: #fff;
  transition: all 0.3s ease-in-out;
}
.fi.header .header__wrapper nav.fi__mian-nav ul > li:hover a::after {
  width: 100%;
}
.fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu {
  position: relative;
}
.fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children > a, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu > a {
  padding-right: 1.5rem;
}
.fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children > button.menu__child-toggle, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu > button.menu__child-toggle {
  position: absolute;
  top: 1.0625rem;
  right: 0;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width:1198px) {
  .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children > button.menu__child-toggle, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu > button.menu__child-toggle {
    width: auto;
    height: auto;
    transform: rotate(0);
  }
}
.fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children > button.menu__child-toggle .menu__child-toggle-icon, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu > button.menu__child-toggle .menu__child-toggle-icon {
  border: unset;
  background-image: url("https://1616664.fs1.hubspotusercontent-na1.net/hubfs/1616664/site-rebuild/images/icon-down.svg");
/*   background-size: contain; */
  width: 0.875rem;
  height: 0.875rem;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
  transition: all 0.3s ease-in-out;
  transform: none;
  margin: 0;
}
@media screen and (min-width:1199px) {
  .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children > button.menu__child-toggle .menu__child-toggle-icon, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu > button.menu__child-toggle .menu__child-toggle-icon {
    background-image: url("https://1616664.fs1.hubspotusercontent-na1.net/hubfs/1616664/site-rebuild/images/icon-down--white.svg");
  }
}
.fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.hs-menu-children-wrapper, .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.menu__submenu, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.hs-menu-children-wrapper, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.menu__submenu {
  display: none;
}
@media screen and (max-width:1198px) {
  .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.hs-menu-children-wrapper, .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.menu__submenu, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.hs-menu-children-wrapper, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.menu__submenu {
    opacity: 1 !important;
    width: 100%;
    position: static;
    border: none;
    overflow: unset;
    border-radius: unset;
    box-shadow: unset;
  }
}
@media screen and (min-width:1199px) {
  .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.hs-menu-children-wrapper, .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.menu__submenu, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.hs-menu-children-wrapper, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.menu__submenu {
    display: block;
    min-width: 11.875rem;
    max-width: max-content;
    background-color: #fff;
    border-radius: 0.3125rem;
    overflow: hidden;
    position: absolute;
    top: 80%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s ease-in-out;
    box-shadow: 0px 25px 19px -21px rgba(0, 0, 0, 0.3);
  }
}
.fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.hs-menu-children-wrapper li, .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.menu__submenu li, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.hs-menu-children-wrapper li, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.menu__submenu li {
  padding: 0 !important;
}
@media screen and (max-width:1198px) {
  .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.hs-menu-children-wrapper li, .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.menu__submenu li, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.hs-menu-children-wrapper li, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.menu__submenu li {
    border: none;
  }
}
.fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.hs-menu-children-wrapper li a, .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.menu__submenu li a, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.hs-menu-children-wrapper li a, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.menu__submenu li a {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.875em;
  line-height: 160%;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  display: block;
  text-transform: uppercase;
  background-color: transparent;
}
@media screen and (max-width:1198px) {
  .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.hs-menu-children-wrapper li a, .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.menu__submenu li a, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.hs-menu-children-wrapper li a, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.menu__submenu li a {
    padding: 0.625rem 0rem !important;
  }
}
@media screen and (min-width:1199px) {
  .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.hs-menu-children-wrapper li a, .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.menu__submenu li a, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.hs-menu-children-wrapper li a, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.menu__submenu li a {
    color: #000;
    border-bottom: 0.0625rem solid rgba(0, 0, 0, 0.2);
    padding: 0.625rem 1.25rem;
  }
}
.fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.hs-menu-children-wrapper li a::after, .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.menu__submenu li a::after, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.hs-menu-children-wrapper li a::after, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.menu__submenu li a::after {
  display: none;
}
@media screen and (min-width:1199px) {
  .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.hs-menu-children-wrapper li a:hover, .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.menu__submenu li a:hover, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.hs-menu-children-wrapper li a:hover, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.menu__submenu li a:hover {
    background-color: #e8e8e8;
  }
}
.fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.hs-menu-children-wrapper li:last-child a, .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children ul.menu__submenu li:last-child a, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.hs-menu-children-wrapper li:last-child a, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu ul.menu__submenu li:last-child a {
  border: none;
}
.fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children .menu__submenu--level-2 > .menu__item:first-child:before, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu .menu__submenu--level-2 > .menu__item:first-child:before {
  display: none;
}
.fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children:hover ul.hs-menu-children-wrapper, .fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children:hover ul.menu__submenu, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu:hover ul.hs-menu-children-wrapper, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu:hover ul.menu__submenu {
  top: 100% !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
}
.fi.header .header__wrapper nav.fi__mian-nav ul > li.hs-item-has-children.is-open > button.menu__child-toggle, .fi.header .header__wrapper nav.fi__mian-nav ul > li.menu__item--has-submenu.is-open > button.menu__child-toggle {
  transform: rotate(-180deg);
}
.fi.header .header__wrapper nav.fi__mian-nav .l-btn {
  display: inline-block;
  margin-top: 1.875rem;
}
@media screen and (min-width:1199px) {
  .fi.header .header__wrapper nav.fi__mian-nav .l-btn {
    display: none;
  }
}
.fi.header .header__wrapper aside {
  display: flex;
  align-items: center;
  column-gap: 1.25rem;
}
@media screen and (min-width:1199px) {
  .fi.header .header__wrapper aside {
    column-gap: 1.5rem;
  }
}
.fi.header .header__wrapper aside .l-btn {
  display: none;
}
@media screen and (min-width:1199px) {
  .fi.header .header__wrapper aside .l-btn {
    display: block;
  }
}
.fi.header .header__wrapper aside .search__btn-wrap {
  position: relative;
}
.menu__open .fi.header .header__wrapper aside .search__btn-wrap {
  display: none;
}
.fi.header .header__wrapper aside .search__btn-wrap .search__btn {
  display: flex;
}
.fi.header .header__wrapper aside .search__btn-wrap .search__btn svg {
  width: 1.5rem;
  height: 1.5rem;
}
.fi.header .header__wrapper aside .search__btn-wrap .search__btn svg path {
  stroke: #fff;
  transition: all 0.3s ease-in-out;
}
.menu__open .fi.header .header__wrapper aside .search__btn-wrap .search__btn svg path {
  stroke: #000;
}
.fi.header .header__wrapper aside .search__btn-wrap .search__btn svg.close path {
  fill: #fff;
}
.menu__open .fi.header .header__wrapper aside .search__btn-wrap .search__btn svg.close path {
  fill: #000;
}
.fi.header .header__wrapper aside .search__btn-wrap .fair-search {
  right: 100%;
  position: fixed;
  top: 50%;
  left: 1.5rem;
  top: 3.75rem;
  background-color: #fff;
  margin-right: 0.3125rem;
  width: 0;
  border-radius: 0.3125rem;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  border-radius: 0.25rem;
  border: 0.0625rem solid #000;
  overflow: hidden;
}
@media screen and (min-width:768px) {
  .fi.header .header__wrapper aside .search__btn-wrap .fair-search {
    position: absolute;
    top: -0.25rem;
    left: auto;
    width: 0;
  }
}
.fi.header .header__wrapper aside .search__btn-wrap .fair-search .gsc-control-cse {
  padding: 0;
  background-color: unset;
  border: none;
}
.fi.header .header__wrapper aside .search__btn-wrap .fair-search form.gsc-search-box {
  margin-bottom: 0;
}
.fi.header .header__wrapper aside .search__btn-wrap .fair-search .gsc-search-button {
  display: none;
}
.fi.header .header__wrapper aside .search__btn-wrap .fair-search .gsc-input-box {
  border: none;
}
.fi.header .header__wrapper aside .search__btn-wrap .fair-search .gsc-input-box .gsc-input {
  background: unset !important;
  padding: 0;
  padding-left: 0.625rem;
}
.fi.header .header__wrapper aside .search__btn-wrap .fair-search table {
  padding: 0;
  margin: 0;
}
.fi.header .header__wrapper aside .search__btn-wrap .fair-search table tr {
  padding: 0;
  margin: 0;
}
.fi.header .header__wrapper aside .search__btn-wrap .fair-search table tr td {
  padding: 0;
  margin: 0;
}
.fi.header .header__wrapper aside .search__btn-wrap .fair-search input {
  border: none;
  width: 100%;
  height: 100%;
  font-family: "DM Sans", sans-serif;
  font-size: 0.875em;
  line-height: 1.3571428571;
  outline: none;
  padding: 0;
  padding-left: 0.375rem !important;
  min-height: 1.875rem;
}
@media screen and (max-width:768px) {
  .fi.header .header__wrapper aside .search__btn-wrap .fair-search input {
    min-height: 2.25rem;
  }
}
@media screen and (max-width:768px) {
  .fi.header .header__wrapper aside .search__btn-wrap .fair-search .gsc-results-wrapper-overlay {
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
  }
}
.fi.header .header__wrapper aside .search__btn-wrap .close {
  display: none;
}
.fi.header .header__wrapper aside .search__btn-wrap.show .fair-search {
  width: calc(100% - 48px);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
@media screen and (min-width:768px) {
  .fi.header .header__wrapper aside .search__btn-wrap.show .fair-search {
    width: 12.5rem;
  }
}
.fi.header .header__wrapper aside .search__btn-wrap.show .close {
  display: block;
}
.fi.header .header__wrapper aside .search__btn-wrap.show .open {
  display: none;
}
.fi.header .header__wrapper aside .fi_hamburger {
  display: block;
  width: 1.875rem;
  height: 1.875rem;
}
@media screen and (min-width:1199px) {
  .fi.header .header__wrapper aside .fi_hamburger {
    display: none;
  }
}
.fi.header .header__wrapper aside .fi_hamburger .svg path {
  fill: #fff;
  transition: all 0.3s ease-in-out;
}
.menu__open .fi.header .header__wrapper aside .fi_hamburger .svg path {
  fill: #000;
}
.fi.header .header__wrapper aside .fi_hamburger .svg.for-open {
  display: block;
}
.menu__open .fi.header .header__wrapper aside .fi_hamburger .svg.for-open {
  display: none;
}
.fi.header .header__wrapper aside .fi_hamburger .svg.for-close {
  display: none;
}
.menu__open .fi.header .header__wrapper aside .fi_hamburger .svg.for-close {
  display: block;
}
.fi.header.is-sticky {
  background: none;
  background-color: #fff;
  top: 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1098039216);
}
.fi.header.is-sticky .header__wrapper .header__logo svg path {
  fill: #000;
}
.fi.header .header__wrapper .header__logo svg path {
  stroke: none;
}
.fi.header.is-sticky .header__wrapper nav ul li a {
  color: #000;
}
.fi.header.is-sticky .header__wrapper nav ul li a::after {
  background-color: #000;
}
.fi.header.is-sticky .header__wrapper nav ul li.hs-item-has-children button.menu__child-toggle .menu__child-toggle-icon, .fi.header.is-sticky .header__wrapper nav ul li.menu__item--has-submenu button.menu__child-toggle .menu__child-toggle-icon {
  background-image: url("https://1616664.fs1.hubspotusercontent-na1.net/hubfs/1616664/site-rebuild/images/icon-down.svg");
}
.fi.header.is-sticky .header__wrapper aside .search__btn-wrap .search__btn svg path {
  stroke: #000;
}
.fi.header.is-sticky .header__wrapper aside .search__btn-wrap .search__btn svg.close path {
  fill: #000;
}
.fi.header.is-sticky .header__wrapper aside .fi_hamburger .svg path {
  fill: #000;
}

body.menu__open {
  overflow: hidden;
}

.inner__page .fi.header {
  background: none;
  background-color: #fff;
  top: 0;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.1098039216);
}
.inner__page .fi.header .header__wrapper .header__logo svg path {
  fill: #000;
}
.inner__page .fi.header .header__wrapper nav ul li a {
  color: #000;
}
.inner__page .fi.header .header__wrapper nav ul li a::after {
  background-color: #000;
}
.inner__page .fi.header .header__wrapper nav ul li.menu__item--has-submenu > button.menu__child-toggle .menu__child-toggle-icon {
  background-image: url("https://1616664.fs1.hubspotusercontent-na1.net/hubfs/1616664/site-rebuild/images/icon-down.svg");
}
.inner__page .fi.header .header__wrapper nav ul li.hs-item-has-children > button.menu__child-toggle .menu__child-toggle-icon {
  background-image: url("https://1616664.fs1.hubspotusercontent-na1.net/hubfs/1616664/site-rebuild/images/icon-down.svg");
}
.inner__page .fi.header .header__wrapper aside .search__btn-wrap .search__btn svg path {
  stroke: #000;
}
.inner__page .fi.header .header__wrapper aside .search__btn-wrap.show form {
  border: 1px solid #000;
}
.inner__page .fi.header .header__wrapper aside .fi_hamburger .svg path {
  fill: #000;
}
body.menu__open .header__wrapper.container.container--max {
  background-color:#fff;
}
.fi.footer {
  background-color: #000;
  padding: 3.125rem 0 0.9375rem;
}
@media screen and (min-width:768px) {
  .fi.footer {
    padding: 4.9375rem 0 3rem;
  }
}
.fi.footer hr {
  border: 0;
  border-top: 0.0625rem solid rgba(255, 255, 255, 0.4);
}
@media screen and (min-width:1199px) {
  .fi.footer .footer__wrap {
    display: flex;
  }
}
.fi.footer .footer__wrap .footer__logo {
  margin-bottom: 2.5rem;
}
@media screen and (min-width:768px) {
  .fi.footer .footer__wrap .footer__logo {
    margin-bottom: 4rem;
  }
}
@media screen and (min-width:1199px) {
  .fi.footer .footer__wrap .footer__logo {
    margin: 0;
  }
}
@media screen and (min-width:1199px) {
  .fi.footer .footer__wrap .footer__logo {
    margin-bottom: 0rem;
    width: 16.9%;
    flex: 0 0 16.9%;
    text-align: left;
  }
}
.fi.footer .footer__row {
  margin-bottom: 1.875rem;
  width: 100%;
}
@media screen and (min-width:991px) {
  .fi.footer .footer__row {
    margin-bottom: 3.125rem;
  }
}
.fi.footer .footer__row .fi-footer--nav {
  width: 100%;
}
@media screen and (min-width:768px) {
  .fi.footer .footer__row .fi-footer--nav .hs-menu-wrapper > ul {
    display: flex;
    margin: 0 -0.625rem;
    flex: 1;
    flex-wrap: wrap;
  }
}
@media screen and (min-width:991px) {
  .fi.footer .footer__row .fi-footer--nav .hs-menu-wrapper > ul {
    margin: 0 -0.78125rem;
  }
}
.fi.footer .footer__row .fi-footer--nav .hs-menu-wrapper > ul li.hs-item-has-children {
  margin-bottom: 1.625rem;
}
@media screen and (min-width:768px) {
  .fi.footer .footer__row .fi-footer--nav .hs-menu-wrapper > ul li.hs-item-has-children {
    padding: 0 0.625rem;
    width: 33.3333333333%;
    flex: 0 0 33.3333333333%;
  }
}
@media screen and (min-width:991px) {
  .fi.footer .footer__row .fi-footer--nav .hs-menu-wrapper > ul li.hs-item-has-children {
    width: 20%;
    flex: 0 0 20%;
    margin-bottom: 0rem;
    padding: 0 0.78125rem;
  }
}
.fi.footer .footer__row .fi-footer--nav .hs-menu-wrapper > ul li.hs-item-has-children a {
  font-size: 0.875em;
  line-height: 1.3571428571;
  letter-spacing: 0.035rem;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-family: "DM Mono", monospace;
  font-weight: 400;
}
.fi.footer .footer__row .fi-footer--nav .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper {
  position: static;
  opacity: 1;
  visibility: visible;
}
.fi.footer .footer__row .fi-footer--nav .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li {
  padding: 0;
  min-height: 33.19px;
}
.fi.footer .footer__row .fi-footer--nav .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
  font-size: 0.875em;
  line-height: 1.4;
  letter-spacing: 0.035rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  font-family: "DM Mono", monospace;
  font-weight: 400;
  white-space: unset;
}
@media screen and (min-width:1199px) {
  .fi.footer .footer__row .fi-footer--nav .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
    margin-bottom: 0.85rem;
  }
}
.fi.footer .footer__row .fi-footer--nav .hs-menu-wrapper > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a:hover {
  color: #fff;
}
.fi.footer .footer_links {
  padding-top: 0.9375rem;
  text-align: center;
  display: block;
  align-items: center;
}
@media screen and (min-width:640px) {
  .fi.footer .footer_links {
    display: flex;
  }
}
@media screen and (min-width:1199px) {
  .fi.footer .footer_links {
    text-align: left;
  }
}
.fi.footer .footer_links .copyrigt_fi {
  font-size: 0.875em;
  line-height: 1.4;
  letter-spacing: 0.035rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-family: "DM Mono", monospace;
  font-weight: 400;
  padding: 0 0.825rem 0 0.5rem;
  position: relative;
}
.fi.footer .footer_links ul li {
  display: inline-block;
  position: relative;
}
@media screen and (min-width:640px) {
  .fi.footer .footer_links ul li::after {
    content: "|";
    position: absolute;
    left: -0.375rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.6);
    font-family: "DM Mono", monospace;
    font-weight: 400;
  }
}
.fi.footer .footer_links ul li a {
  font-size: 0.875em;
  line-height: 1.4;
  letter-spacing: 0.035rem;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  font-family: "DM Mono", monospace;
  font-weight: 400;
  padding: 0 0.825rem 0 0.5rem;
}
.fi.footer .footer_links ul li a:hover {
  color: #fff;
}
@media (min-width: 1024px){
.fi.footer .footer_links ul{
  display: flex;
  align-items: center;
}
}
.content-wrapper{
  min-height: 40vh;
}
/* Menu and simple menu */

.hs-menu-wrapper ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Horizontal menu */

.hs-menu-wrapper.hs-menu-flow-horizontal .hs-menu-children-wrapper {
  flex-direction: column;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-horizontal ul {
    flex-direction: column;
  }
}

/* Vertical menu */

.hs-menu-wrapper.hs-menu-flow-vertical ul {
  flex-direction: column;
}

/* Flyouts */

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts ul {
  display: inline-flex;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.hs-menu-flow-vertical ul {
    display: flex;
  }
}

.hs-menu-wrapper.flyouts .hs-item-has-children {
  position: relative;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper {
  left: -9999px;
  opacity: 0;
  position: absolute;
}

.hs-menu-wrapper.flyouts .hs-menu-children-wrapper a {
  display: block;
  white-space: nowrap;
}

.hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 0;
  opacity: 1;
  top: 100%;
}

.hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
  left: 100%;
  opacity: 1;
  top: 0;
}

@media (max-width: 767px) {
  .hs-menu-wrapper.flyouts .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-horizontal.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper,
  .hs-menu-wrapper.hs-menu-flow-vertical.flyouts .hs-item-has-children:hover > .hs-menu-children-wrapper {
    left: 0;
    opacity: 1;
    position: relative;
    top: auto;
  }
}

/* CTA, logo, and rich text images */

.hs_cos_wrapper_type_cta img,
.hs_cos_wrapper_type_logo img,
.hs_cos_wrapper_type_rich_text img {
  height: auto;
  max-width: 100%;
}

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

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

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

@media (max-width: 767px) {
  .show-for-sr--mobile {
    border: 0 !important;
    clip: rect(0, 0, 0, 0) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
  }
}
*, *:before, *:after {
  box-sizing: border-box;
}
html, body {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  scroll-behavior: smooth;
  color: #00002B;
}

body {
  display: none;
}
body.is-loaded {
  display: block;
}
.inner__page {
  padding-top: 3.7rem;
} 
@media screen and (min-width:1199px){
  .inner__page {
    padding-top: 4.6rem;
  }
}

* {
  -webkit-tap-highlight-color: transparent;
  -webkit-font-smoothing: antialiased;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-size-adjust: none;
}

ul, ol {
  margin: 0;
  padding: 0;
}
ul li, ol li {
  list-style: none;
}

p {
  font-size: 1.375em;
  line-height: 130%;
  margin: 0 0 1.25rem;
}
p:last-of-type {
  margin: 0;
}
p:empty {
  display: none;
}

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

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}
.fi sub, .fi sup{
  font-size: 35%;
  vertical-align: revert;
}
.fi button {
  background-color: transparent;
  border: none;
  box-shadow: none;
  display: inline-block;
  font-weight: 500;
  font-size: 0.875em;
  padding: 0;
  line-height: 100%;
  cursor: pointer;
  transition: none;
  font-family: "DM Sans", sans-serif;
  @media screen and (min-width:768px){
    transition: all 0.3s ease-in-out;
  }
}

.fi a {
  display: inline-block;
  cursor: pointer;
  font-weight: 500;
  font-size: 1.125em;
  line-height: 100%;
  text-decoration: none;
  color: #fff;
  transition: none;
  @media screen and (min-width:768px){
    transition: all 0.3s ease-in-out;
  }
}
.fi a:hover {
  color: #fff;
}

.fi .l-btn {
  background-color: #fff;
  color: #000;
  padding: 0.4375rem 1rem;
  font-family: "DM Mono", monospace;
  font-size: 0.875em;
  line-height: 160%;
  letter-spacing: 0.035rem;
  font-weight: 500;
  border-radius: 0.25rem;
  text-transform: uppercase;
  border: 0.0625rem solid #676464;
}
.fi .l-btn:hover {
  background-color: #676464;
  color: #fff;
}
.fi .l-btn--outline-blue {
  padding: 0.625rem 0.875rem;
  color: #000;
  font-size: 1em;
  letter-spacing: 0.04375rem;
  border: 0.0625rem solid #0022ff;
  line-height: 160%;
}
@media screen and (min-width:991px) {
  .fi .l-btn--outline-blue {
    font-size: 1.25em;
    padding: 0.6875rem 1.4375rem;
  }
}

/* @media screen and (min-width:640px){ */
  .fi .l-btn.l-btn--outline-blue:focus,
  .fi .l-btn.l-btn--outline-blue:hover,
  .fi .l-btn.l-btn--outline-blue:active {
    color: #fff;
    background-color: #0022ff;
  }
/* } */

.fi .l-link {
  position: relative;
  color: #fff;
  font-size: 1em;
  line-height: 125%;
  font-weight: 500;
  letter-spacing: 0.04rem;
  transition: all 0.3s ease-in-out;
  font-family: "DM Mono", monospace;
  text-transform: uppercase;
  padding-right: 1.875rem;
}
.fi .l-link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.25rem;
  height: 1.25rem;
  background-image: url(https://1616664.fs1.hubspotusercontent-na1.net/hubfs/1616664/site-rebuild/images/icon-link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease-in-out;
}
.fi .l-link:hover::after {
  right: -0.1875rem;
  top: 40%;
}
.fi .l-link:hover {
  color: #fff;
  font-family: "DM Mono", monospace;
}
.fi .l-link--black {
  color: #000;
}
.fi .l-link--black::after {
  background-image: url(https://1616664.fs1.hubspotusercontent-na1.net/hubfs/1616664/site-rebuild/images/icon-link--black.svg);
}
.fi .l-link--black:hover {
  color: #000;
}

.b-line {
  position: relative;
  display: flex;
}
@media screen and (min-width:768px) {
  .b-line {
    align-items: center;
  }
}
.b-line::before {
  content: "";
  width: 3rem;
  height: 0.0625rem;
  background-color: #000;
  display: block;
  margin-right: 0.5rem;
}
@media screen and (max-width:767px) {
  .b-line::before {
    position: relative;
    top: 1.5625rem;
  }
}

.l-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.aspect-box {
  position: relative;
  width: 100%;
}
.aspect-box img, .aspect-box video, .aspect-box canvas, .aspect-box iframe, .aspect-box svg, .aspect-box .hs_cos_wrapper{
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  object-fit: cover;
}
.aspect-box:before {
  content: "";
  display: block;
  padding-top: calc(var(--aspect-ratio) * 100%);
}

/* .b-line {
  position: relative;
  display: flex;
  align-items: center;
}
.b-line::before {
  content: "";
  width: 3rem;
  height: 0.0625rem;
  background-color: #000;
  display: block;
  margin-right: 0.5rem;
} */

.l-flexbox {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.l-flexbox--v-center {
  align-items: center;
}
.l-flexbox--h-between {
  justify-content: space-between;
}
.l-flexbox--center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-flexbox + .l-flexbox {
  margin-top: 0.625rem;
}

.is-mobile {
  display: block;
}
@media screen and (min-width:991px) {
  .is-mobile {
    display: none;
  }
}

.is-desktop {
  display: none;
}
@media screen and (min-width:991px) {
  .is-desktop {
    display: block;
  }
}

.is-hide {
  display: none !important;
}

.is-show {
  display: block !important;
}



.l-title {
  font-weight: 600;
  letter-spacing: -0.12rem;
  color: rgba(0, 0, 0, 0.87);
  font-size: 1.75em;
  line-height: 1.4285714286;
  font-family: "Lora", serif;
  position: relative;
  padding-left: 1.875rem;
  margin-bottom: 0;
}
@media screen and (max-width:480px) {
  .l-title {
    letter-spacing: -0.0575rem;
  }
  .l-title br {
    display: none;
  }
}
.l-title::before {
  position: absolute;
  content: "";
  left: 0rem;
  background-color: #000;
  width: 1.5rem;
  height: 0.0625rem;
  top: 1.1875rem;
}
@media screen and (min-width:767px) {
  .l-title::before {
    top: 1.3125rem;
    width: 3rem;
  }
}
@media screen and (min-width:991px) {
  .l-title::before {
    top: 1.8125rem;
  }
}
@media screen and (min-width:1199px) {
  .l-title::before {
    width: 5.375rem;
    top: 2rem;
  }
}
@media screen and (min-width:767px) {
  .l-title {
    padding-left: 3.5rem;
  }
}
@media screen and (min-width:991px) {
  .l-title {
    font-size: 2.25em;
    line-height: 1.5;
  }
}
@media screen and (min-width:1199px) {
  .l-title {
    padding-left: 6.875rem;
    font-size: 3em;
    line-height: 1.3;
  }
}
/* @import url('http://example.com/example_style.css'); */

/* For design rebuild */
/* .fi.header{
  display: none;
} */