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

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

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

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

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

/* Paragraphs */

p {
  font-size: 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: #CACACB !important;
  background: #CACACB!important;
  border-color: #CACACB !important;
  color: #1a1c1e61 !important;
  cursor:default;
}

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

.btn {
  display: inline-flex;
  cursor:pointer;
  width: auto;
  height: auto;
  padding: var(--padding-btn);
  font-size: var(--font-size-btn);
  border-radius: 45px;
  -webkit-border-radius: 45px;
  -moz-border-radius: 45px;
  -ms-border-radius: 45px;
  -o-border-radius: 45px;
  transition: all 0.35s ease-in-out 0s;
  -webkit-transition: all 0.35s ease-in-out 0s;
  -moz-transition: all 0.35s ease-in-out 0s;
  -ms-transition: all 0.35s ease-in-out 0s;
  -o-transition: all 0.35s ease-in-out 0s;
  align-items:center;
  justify-content:center;
}
.btn.disabled {
  background-color: #CACACB !important;
  background: #CACACB !important;
  border-color: #CACACB !important;
  color: #1a1c1e61 !important;
  cursor:default;
}

.btn.btn-primary {
  font-family: var(--font-medium);
  color: var(--white-color);
  background: var(--primary-color);
  border: 1px solid var(--primary-color);
}
.btn.btn-primary:hover {
  color: var(--white-color);
  background: #FF5540;
  border-color:  #FF5540;
}
.btn.btn-primary.active {
  color: var(--white-color);
  background: var(--primary-color);
}
.btn.btn-primary.active:hover {
  color: var(--white-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}

.btn.btn-primary-outline {
  background: transparent;
  border: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-family: var(--font-medium);
}
.btn.btn-primary-outline:hover {
  background: #C0010014;
  border-color: #ff5540;
  color: var(--primary-color);
}
.btn.btn-primary-outline.active {
  color: var(--white-color);
background: var(--primary-color);
  border-color: var(--primary-color);
}
.btn.btn-primary-outline.active:hover {
  color: var(--white-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.btn.btn-primary-outline:disabled {
  border: 1px solid #1A1C1E1F !important;
  background: transparent !important;
}
.btn.btn-primary-outline.disabled {
  border: 1px solid #1A1C1E1F !important;
  background: transparent !important;
}

.btn.btn-blue {
  background: #10B9F2;
  border: 1px solid #10B9F2;
  color: var(--white-color);
  font-family: var(--font-medium);
}
.btn.btn-blue:hover {
  background: #9FE3FA;
  border-color: #9FE3FA;
}
.btn.btn-blue.active {
  background: #10B9F2;
  border-color: #10B9F2;
}
.btn.btn-blue.active:hover {
  background: #10B9F2;
  border-color: #10B9F2;
}

.btn.btn-blue-gradient {
  background: var(--blue-gradient-color);
  border: none;
  color: var(--white-color);
  font-family: var(--font-medium);
}
.btn.btn-blue-gradient:hover {
  background: var(--blue-gradient-color);
  filter: opacity(0.8);
}
.btn.btn-blue-gradient.active {
  background: var(--blue-gradient-color);
}
.btn.btn-blue-gradient.active:hover {
  background: var(--blue-gradient-color);
  filter: unset;
}
.btn.btn-blue-gradient:disabled:hover, .btn.btn-blue-gradient.disabled:hover {
  filter: unset;
}

.btn-text-link {
  background: transparent;
  border: 1px solid transparent;
  color: var(--tertiary-color);
  font-family: var(--font-medium);
  padding: 10px 12px;
  border-radius: 30px;
  font-size: var(--font-size-btn);
  cursor: pointer;
}
.btn-text-link:hover {
  background: #00668414;
  color: var(--tertiary-color);
}
.btn-text-link.active {
  background: #00668414;
  color: var(--tertiary-color);
}
.btn-text-link.active:hover {
  background: #00668414;
  color: var(--tertiary-color);
}
.btn-text-link:disabled, .btn-text-link.disabled {
  background: transparent !important;
  border-color: transparent !important;
  color: #1a1c1e61 !important;
  cursor: default;
}


.btn.btn-nav-tab {
  font-family: var(--font-medium);
  color: rgba(48, 60, 70, 0.8);
  background: var(--white-color);
  border: 1px solid rgba(48, 60, 70, 0.38);
}
.btn.btn-nav-tab:hover {
  color: var(--white-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.btn.btn-nav-tab.active {
  color: var(--white-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.btn.btn-text {
  padding: 0;
  font-size: var(--font-size-btn-text);
  background: none;
  color: var(--tertiary-color);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  font-family: var(--font-bold);
}
.btn.btn-text:hover {
  text-decoration: underline;
}
.btn.btn-text-white {
  padding: 0;
  font-size: var(--font-size-btn-text);
  background: none;
  color: var(--white-color);
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  font-family: var(--font-bold);
}
.btn.btn-text-white:hover {
  text-decoration: underline;
}
.btn.btn-citrin-gradient {
  font-family: var(--font-medium);
  color: var(--white-color);
  background: var(--citrin-gradient-color);
}
.btn.btn-citrin-gradient:hover {
  color: var(--white-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.btn.btn-citrin-gradient.active {
  color: var(--white-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.btn.btn-banner-gradient {
  font-size: var(--font-size-btn-banner);
  padding: var(--padding-btn-banner);
  font-family: var(--font-bold);
  color: var(--white-color);
  background: var(--citrin-gradient-color);
}
.btn.btn-banner-gradient:hover {
  color: var(--white-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.btn.btn-banner-gradient.active {
  color: var(--white-color);
  background: var(--primary-color);
  border-color: var(--primary-color);
}
.btn.btn-primary-outline {
  font-family: var(--font-medium);
  color: var(--primary-color);
  background: var(--white-color);
  border: 1px solid var(--primary-color);
}
.btn.btn-primary-outline:hover {
  color: var(--primary-color);
  background: #C0010014;;
  border-color: #FF5540;
}

.btn.btn-white {
    background: var(--white-color) !important;
    border: 1px solid var(--white-color);
    font-family: var(--font-medium);
    color: var(--primary-color);
}



.-link {
  color: var(--tertiary-color);
  text-decoration: underline;
  font-family: var(--font-medium);
}
.-link:hover {
  color: var(--tertiary-color);
  text-decoration: underline;
}
.-link.c-primary {
  color: var(--primary-color);
}
.-link.c-white {
  color: var(--white-color);
}
/* 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
*/

/* #h_menu_desktop {
  display: block;
}
#h_menu_mobile {
  display: none;
}
.header {
  background: #fff;
}
.header .nav-main-top .inner-wrap {
  display: flex;
  justify-content: space-between;
  height: 60px;
  align-items: center;
}
.header .nav-main-top .nav-item {
  display: flex;
  gap: 24px;
  align-items: center;
}
.header .nav-main-top .nav-item .-menu {
  display: flex;
  gap: 24px;
  list-style: none;
  padding-inline-start: 0;
  margin-bottom: 0;
}
.header .nav-main-top .nav-item .-menu a {
  color: #303c46;
  font-weight: 500;
  text-decoration: none;
}
.header .nav-main-top .nav-item .-menu a.active {
  color: #e00000;
}
.header .nav-main-top .nav-item .-search .input-group {
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid #303c4661;
  max-width: 300px;
  min-width: 300px;
}
.header .nav-main-top .nav-item .-search .input-group .input-group-text {
  background: #fff;
  border: none;
}
.header .nav-main-top .nav-item .input-search {
  border: none;
  padding: 10px 10px 10px 0;
}
.header .nav-main-top .nav-item .-lang {
  display: flex;
  list-style: none;
  padding-inline-start: 0;
  margin-bottom: 0;
  border: 1px solid #303c46;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  height: 28px;
  align-items: center;
  width: 80px;
}
.header .nav-main-top .nav-item .-lang li {
  width: calc(100% / 2);
  text-align: center;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.header .nav-main-top .nav-item .-lang li.active {
  background: #303c46;
}
.header .nav-main-top .nav-item .-lang li a {
  text-decoration: none;
  color: #303c46;
}
.header .nav-main-top .nav-item .-lang li.active a {
  color: #fff;
}
.header .nav-main-menu {
  box-shadow: 0px 1px 2px 0px #0000004d;
}
.header .nav-main-menu .inner-wrap {
  display: flex;
  justify-content: space-between;
  height: 60px;
  align-items: center;
}
.header .nav-main-menu .-menu-list {
  display: flex;
  gap: 32px;
  list-style: none;
  padding-inline-start: 0;
  margin-bottom: 0;
}
.header .nav-main-menu .-menu-list .main-menu-item {
  color: #303c46;
  font-family: "better_togethermedium" !important;
  text-decoration: none;
}
.header .nav-main-menu .-menu-list .main-menu-item.active {
  color: #e00000;
}
.header .menu-mobile {
  height: 64px;
  width: 100%;
  display: flex;
  align-items: center;
  box-shadow: 0px 1px 2px 0px #0000004d;
}
.header .menu-mobile .inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .menu-mobile .ham {
  cursor: pointer;
}
.header .menu-mobile .ham span {
  background: #303c46;
  border-radius: 3px;
  display: block;
  height: 3px;
  transition: margin 0.25s 0.25s, transform 0.25s;
  width: 25px;
}
.menu-mobile .ham .bar1 {
  margin-bottom: 5px;
}
.menu-mobile .ham .bar3 {
  margin-top: 5px;
}
@media screen and (max-width: 991px) {
  #h_menu_desktop {
    display: none;
  }
  #h_menu_mobile {
    display: flex;
  }
} */


.hs-search-field__bar>form>.hs-search-field__input{
  padding-left:30px;
  outline: none;
}

.hs-search-field__button{
  position: absolute;
  background: none;
  padding: 7px;
  color: #ccc;
  left: 0;
  top: 0;
}

.hs-search-field__bar button svg{
  height: 15px!important;
  margin-left: 4px;
  fill: #666;
}

.hs-search-field__suggestions-container {
  font-size:14px;
  position: absolute!important;
  top: 40px;
  width:100%;
  min-width: 300px;
  /* left: -15px; */
  right:0;
  /* padding:15px; */
  
}

.category-menu:hover .hs-search-field--open{
  .hs-search-field__suggestions-container{

    &:hover,a,a:hover,span{
      font-size:14px;
      color:#666!important; 
      }
  }
}
.hs-search-field--open .hs-search-field__suggestions {
  padding:5px 5px;
  a{
    font-size:14px;
    .hs-search-highlight.hs-highlight-title{
      font-size:14px;
    }
  
}
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
footer {
  background: #000000;
  color: #fff;
}
.main-footer {
  padding-top: 24px;
  padding-bottom: 32px;
}
.main-footer .footer-nav-wrapper {
  display: flex;
  justify-content: space-between;
}
.main-footer .footer-nav-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main-footer a {
  color: #fff;
  text-decoration: none;
}
.main-footer .nav-item-title {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
}
.main-footer .nav-menu-head {
  font-size: 12px;
}
.main-footer .nav-menu {
  font-size: 11px;
}
.main-footer .nav-menu-list {
    display: block;
}
.main-footer .nav-menu-list .item {
  margin-bottom: 16px;
}
.main-footer .nav-menu-list ul {
  margin-top: 16px;
  margin-bottom: 0px;
  margin-left: 25px;
}

.main-footer .nav-menu-list ul li {
  margin-bottom: 6px;
  &::marker{
    font-size: 10px;
  }
}

.main-footer .nav-menu-list ul li:last-child {
  margin-bottom: 0px;
}
.main-footer .social-list {
  display: flex;
  column-gap: 16px;
  row-gap: 10px;
  flex-wrap: wrap;
}

.sub-footer {
  padding-top: 24px;
  padding-bottom: 32px;
  border-top: 0.5px solid rgba(255, 255, 255, 0.3);
}
.sub-footer .copyright {
  font-size: 12px;
}
#footer_mobile {
    display: none;
  }

@media screen and (max-width: 991px) {
  .main-footer .footer-nav-wrapper {
    flex-wrap: wrap;
    justify-content: flex-start;
    flex-wrap: wrap;
    row-gap: 32px;
  }
  .main-footer .footer-nav-item {
    width: calc(100% / 3);
  }
  .social-box {
    margin-top: 16px;
  }
      
}
@media screen and (max-width: 767px) {
  #footer_desktop {
    display: none;
  }
  #footer_mobile {
    display: block;
  }
  .main-footer {
    padding-bottom: 21px;
  }
  .main-footer .footer-nav-wrapper {
    row-gap: 0;
  }
  .main-footer .footer-nav-item {
    width: 100%;
  }
  .main-footer .nav-item-title {
    margin-bottom: 0;
    padding: 8px 0;
    position: relative;
  }
  .main-footer .nav-item-title:after {
    content: url('//45457732.fs1.hubspotusercontent-na1.net/hubfs/45457732/raw_assets/public/TrueTHDev-Test/images/icon-expand-more.png');
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    transition: all .3s ease-in-out 0s;
    transform: translateY(-50%) rotate(0deg);
  }
  .main-footer .nav-item-title.active:after {
    transform: translateY(-50%) rotate(-180deg);
  }
  
  .main-footer .nav-menu-list {
    display: none;
    padding-top: 8px;
  }
  .main-footer .social-box {
    border-top: 0.5px solid rgba(255, 255, 255, 0.3);
    padding-top: 21px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
  }
  .main-footer .social-box .nav-item-title {
    margin-bottom: 0;
  }
  .main-footer .social-box .nav-item-title:after {
    content: '';
  }
  .sub-footer {
    border-top: none;
    padding-top: 16px;
  }
}
/*****************************************/
/* 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%;
}
/* CTA Popup
popup in compact size use for:
 - Select Network
 - select Link
 */
 body.has-overlay{
  overflow:hidden;
 }

 #cta-popup{
  position:fixed;
  width:100%;
  height:100%;
  left:0;
  top:0;
  z-index: 1000;
 }
 #cta-popup .overlay{
  width:100%;
  height:100%;
  background-color:rgba(0,0,0,0.8);
 }
 .cta-popup {
    padding: 24px;
    border-radius: 28px;
    background: #FAFAFA;
    width: 100%;
    min-width: 312px;
    max-width: 350px;
    text-align: center;
    
    /* position:absolute;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%); */
  }
  .cta-popup .popup-img {
    margin-bottom: 16px;
    min-height:150px;
  }
  .cta-popup .txt-title {
    font-size: 24px;
    font-family: "better_togetherregular" !important;;
    margin-bottom: 16px;
  }
  .cta-popup .txt-desc {
    margin-bottom: 24px;
  }
  .cta-popup .button-control {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }

  .popup-network .btn {
    width: 100%;
    justify-content: center;
  }
  /* .cta-popup .btn-red {
    background: #E00000;
    color: #fff;
    font-family: "better_togethermedium";
  }
  .cta-popup .btn-blue {
    background: linear-gradient(309.52deg, #00C8FF -13.26%, #07C0F8 -7.38%, #1DACE8 70.94%);
    color: #fff;
    font-family: "better_togethermedium";
  } */
  /* .cta-popup .btn-outline {
    background: #fff;
    border: 1px solid #E00000;
    color: #E00000;
  } */
  .fancybox__backdrop{
    background: rgba(0,0,0,0.85) !important;
  }
.content-popup {
  min-width: 300px;
  max-width: 800px;
  /* max-height: 900px; */
  width: 100%;
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  background: #fff;
}
.content-popup .popup-head {
  background: linear-gradient(
    314.87deg,
    #00a5ff -3.01%,
    #1c8be5 -0.11%,
    #4d5db7 4.52%,
    #713b95 9.16%,
    #872781 13.21%,
    #90207a 15.53%,
    #a31a64 18.42%,
    #c41040 25.37%,
    #de0924 31.74%,
    #f00410 38.69%,
    #fb0104 45.06%,
    #ff0000 52.01%
  );
  padding: 30px 24px 24px 24px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.content-popup .popup-head:after {
  content: "";
  background-image: url(/hubfs/45457732/assets_global/images/bg-popup-head.png);
  position: absolute;
  bottom: 0;
  max-width: 391px;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center 30%;
}
.content-popup .popup-head .txt-title {
  font-size: 20px;
}
.content-popup .popup-detail {
  padding: 16px 36px 24px;
  overflow-y: auto;
  max-height: 500px;
}
.content-popup .popup-detail .nav-tabs-traveling {
  margin-bottom: 24px;
}
.content-popup .popup-footer {
  padding: 24px 36px 16px;
  border-top: 1px solid #f0f0f3;
  text-align: center;
}
.content-popup .popup-footer .btn {
  min-width: 100px;
  justify-content: center;
}
._popupContent {
  display: none;
}


@media screen and (max-width:1440px) {
.content-popup .popup-detail {
  /* padding: 16px 36px 24px; */
  /* overflow-y: auto; */
  max-height: 400px;
}
}

@media screen and (max-width:991px) {
  .content-popup {
    max-height:90vh;
  }
  .content-popup .popup-detail {
  max-height: 55vh;
}
}
/* .loading-wrapper {
    background-color: rgba(255, 255, 255, 0.7);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.loading-wrapper.open {
    display: flex;
}

.circle-border {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 4px solid transparent;
    background: linear-gradient(309.52deg, #00C8FF -13.26%, #07C0F8 -7.38%, #1DACE8 0.45%, #408BCC 9.26%, #6F60A9 20.03%, #B3207A 31.78%, #CC1550 40.59%, #E20B2D 49.4%, #F20514 57.23%, #FB0105 65.06%, #FF0000 70.94%) border-box, linear-gradient(153deg, #EE0979 0%, #FF6A00 126.08%) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: spin .8s linear 0s infinite;
}

@keyframes spin {
    from {
        transform: rotate(0);
    }

    to {
        transform: rotate(359deg);
    }
} */

.sc-glob-loading {
    display: none;
    position: fixed;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    z-index: 1030;
    background: rgba(180, 0, 0, 0.93);
}
.sc-glob-loading.open {
    display: block;
}
.sc-glob-loading .inner-warp {
    position: relative;
    height: 100vh;
}
.sc-glob-loading .inner-warp .loading-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.loading-box .bars {
    width: fit-content;
    height: 100px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.loading-box .bars .bar {
    background: #fff;
    height: 3px;
    margin: 0 10px;
    width: 12px;
    animation: equalizer 0ms -900ms linear infinite alternate;
}

.loading-box .bars .bar:nth-child(1) {
  animation-duration: 474ms;
}
.loading-box .bars .bar:nth-child(2) {
  animation-duration: 433ms;
}
.loading-box .bars .bar:nth-child(3) {
  animation-duration: 407ms;
}
.loading-box .bars .bar:nth-child(4) {
  animation-duration: 458ms;
}
.loading-box .bars .bar:nth-child(5) {
  animation-duration: 400ms;
}
  
@keyframes equalizer {
  0% {
    height: 30px;
  }
  100% {
    height: 90px;
  }
}



/* 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;
  }
}
/* @import url('http://example.com/example_style.css'); */

/***********************************************/
/* CSS @imports must be at the top of the file */
/* Add them above this section                 */
/***********************************************/

/*****************************************/
@font-face {
  font-family: "better_togetherbold";
  src: url("")
   
      format("woff2"),
    url("")
      format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "better_togetherlight";
  src: url("")
      format("woff2"),
    url("")
      format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "better_togethermedium";
  src: url("")
      format("woff2"),
    url("")
      format("woff");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "better_togetherregular";
  src: url("")
      format("woff2"),
    url("")
      format("woff");
  font-weight: normal;
  font-style: normal;
}

body,
p,
span,
a,
td,
th {
  font-family: "better_togetherregular";
  font-weight: normal;
  font-style: normal;
}

.fBetterReg,
.-normal {
  font-family: "better_togetherregular" !important;
}

.fBetterB,
.-bold {
  font-family: "better_togetherbold" !important;
}

.fBetterLi,
.-light {
  font-family: "better_togetherlight" !important;
}

.fBetterMed,
.-medium {
  font-family: "better_togethermedium" !important;
}
/*****************************************/


:root {
  /* Font family */
  --font-regular: "better_togetherregular";
  --font-primary: "better_togetherregular";
  --font-medium: "better_togethermedium";
  --font-bold: "better_togetherbold";
  /* Extended colors */
  /* Key colors */
  --primary-color: #e00000;
  --primary-text-color: #303c46;
  --secondary-color: #b3207a;
  --error-color: #ff0000;
  --tertiary-color: #007ad0;
  --orange-color: #ff530d;
  --pink-color: #e80c7a;
  --blue-color: #00c8ff;
  --process-blue-color: #19aaf8;
  --charcoal-grey-color: #303c46;
  --complementary-green-color: #00b333;
  --bright-green-color: #12b39a;
  --yellow-color: #fec900;
  --white-color: #ffffff;
  --black-color: #000000;
  --charcoal80-grey-color: rgba(48, 60, 70, 0.8);
  /* Gradients colors */
  --citrin-gradient-color: linear-gradient(
    336deg,
    #00a5ff -3.01%,
    #1c8be5 -0.11%,
    #4d5db7 4.52%,
    #713b95 9.16%,
    #872781 13.21%,
    #90207a 15.53%,
    #a31a64 18.42%,
    #c41040 25.37%,
    #de0924 31.74%,
    #f00410 38.69%,
    #fb0104 45.06%,
    #ff0000 52.01%
  );
  --blue-gradient-color:linear-gradient(
    325deg,#cd00ff -4.23%,
    #c307ff -2.85%,
    #9a27ff 4.77%,
    #7742ff 12.38%,
    #5b58ff 20.68%,
    #4569ff 28.98%,
    #3675ff 38.67%,
    #2c7cff 49.74%,
    #2a7fff 64.96%
    );

    --font-line-height:1.2;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  color: var(--primary-text-color);
  font-family: var(--font-primary);
  line-height: 1.4;
  font-size: 16px;
  font-weight: 400;
  -moz-osx-font-smoothing: grayscale;
  word-break: break-word;
  -webkit-font-smoothing: antialiased;
  padding: 0;
  margin: 0;
  overflow-x: hidden;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6,
p,
ul,
ol,
li {
  padding: 0;
  margin: 0;
}

a,
a:hover {
  text-decoration: none;
  color: inherit;
}

button {
  padding: 0;
  border: none;
  outline: 0;
  box-shadow: none;
}
button:fucus {
  outline: 0;
}

.container {
  max-width: 1160px;
  padding-left: 16px;
  padding-right: 16px;
}

.row {
  margin: 0 -16px;
}

[class=col-] {
  padding: 0 16px;
}

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

.bg-cover {
  background-size: cover;
  background-position: center center;
}

.section {
  display: flex;
  width: 100%;
}

.head-section {
  flex-direction: column;
}
.head-section .inner-row-wrapper {
  align-items: center;
  justify-content: space-between;
}
.head-section.with-button .head-text {
  width: calc(100% - 120px);
}
.head-section.with-button .btn {
  max-width: 120px;
  text-align: right;
}

[class*=-row-wrapper] {
  display: flex;
  width: 100%;
  flex-direction: row;
}

[class*=-col-wrapper] {
  display: flex;
  width: 100%;
  flex-direction: column;
}

[class^=head-] {
  display: flex;
  width: 100%;
}

.hero-banner {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.container-1440 {
  max-width: 1472px;
}

/* Spacing*/
/* Margin spacing*/
.my-4 {
  margin-top: 4px;
  margin-bottom: 4px;
}

.mx-4 {
  margin-left: 4px;
  margin-right: 4px;
}

.mt-4 {
  margin-top: 4px;
}

.mr-4 {
  margin-right: 4px;
}

.mb-4 {
  margin-bottom: 4px;
}

.ml-4 {
  margin-left: 4px;
}

.my-8 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.mx-8 {
  margin-left: 8px;
  margin-right: 8px;
}

.mt-8 {
  margin-top: 8px;
}

.mr-8 {
  margin-right: 8px;
}

.mb-8 {
  margin-bottom: 8px;
}

.ml-8 {
  margin-left: 8px;
}

.my-12 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.mx-12 {
  margin-left: 12px;
  margin-right: 12px;
}

.mt-12 {
  margin-top: 12px;
}

.mr-12 {
  margin-right: 12px;
}

.mb-12 {
  margin-bottom: 12px;
}

.ml-12 {
  margin-left: 12px;
}

.my-16 {
  margin-top: 16px;
  margin-bottom: 16px;
}

.mx-16 {
  margin-left: 16px;
  margin-right: 16px;
}

.mt-16 {
  margin-top: 16px;
}

.mr-16 {
  margin-right: 16px;
}

.mb-16 {
  margin-bottom: 16px;
}

.ml-16 {
  margin-left: 16px;
}

.my-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mx-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.mt-20 {
  margin-top: 20px;
}

.mr-20 {
  margin-right: 20px;
}

.mb-20 {
  margin-bottom: 20px;
}

.ml-20 {
  margin-left: 20px;
}

.my-24 {
  margin-top: 24px;
  margin-bottom: 24px;
}

.mx-24 {
  margin-left: 24px;
  margin-right: 24px;
}

.mt-24 {
  margin-top: 24px;
}

.mr-24 {
  margin-right: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

.ml-24 {
  margin-left: 24px;
}

.my-28 {
  margin-top: 28px;
  margin-bottom: 28px;
}

.mx-28 {
  margin-left: 28px;
  margin-right: 28px;
}

.mt-28 {
  margin-top: 28px;
}

.mr-28 {
  margin-right: 28px;
}

.mb-28 {
  margin-bottom: 28px;
}

.ml-28 {
  margin-left: 28px;
}

.my-32 {
  margin-top: 32px;
  margin-bottom: 32px;
}

.mx-32 {
  margin-left: 32px;
  margin-right: 32px;
}

.mt-32 {
  margin-top: 32px;
}

.mr-32 {
  margin-right: 32px;
}

.mb-32 {
  margin-bottom: 32px;
}

.ml-32 {
  margin-left: 32px;
}

.my-36 {
  margin-top: 36px;
  margin-bottom: 36px;
}

.mx-36 {
  margin-left: 36px;
  margin-right: 36px;
}

.mt-36 {
  margin-top: 36px;
}

.mr-36 {
  margin-right: 36px;
}

.mb-36 {
  margin-bottom: 36px;
}

.ml-36 {
  margin-left: 36px;
}

.my-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.mx-40 {
  margin-left: 40px;
  margin-right: 40px;
}

.mt-40 {
  margin-top: 40px;
}

.mr-40 {
  margin-right: 40px;
}

.mb-40 {
  margin-bottom: 40px;
}

.ml-40 {
  margin-left: 40px;
}

.my-44 {
  margin-top: 44px;
  margin-bottom: 44px;
}

.mx-44 {
  margin-left: 44px;
  margin-right: 44px;
}

.mt-44 {
  margin-top: 44px;
}

.mr-44 {
  margin-right: 44px;
}

.mb-44 {
  margin-bottom: 44px;
}

.ml-44 {
  margin-left: 44px;
}

.my-48 {
  margin-top: 48px;
  margin-bottom: 48px;
}

.mx-48 {
  margin-left: 48px;
  margin-right: 48px;
}

.mt-48 {
  margin-top: 48px;
}

.mr-48 {
  margin-right: 48px;
}

.mb-48 {
  margin-bottom: 48px;
}

.ml-48 {
  margin-left: 48px;
}

.my-52 {
  margin-top: 52px;
  margin-bottom: 52px;
}

.mx-52 {
  margin-left: 52px;
  margin-right: 52px;
}

.mt-52 {
  margin-top: 52px;
}

.mr-52 {
  margin-right: 52px;
}

.mb-52 {
  margin-bottom: 52px;
}

.ml-52 {
  margin-left: 52px;
}

.my-56 {
  margin-top: 56px;
  margin-bottom: 56px;
}

.mx-56 {
  margin-left: 56px;
  margin-right: 56px;
}

.mt-56 {
  margin-top: 56px;
}

.mr-56 {
  margin-right: 56px;
}

.mb-56 {
  margin-bottom: 56px;
}

.ml-56 {
  margin-left: 56px;
}

.my-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.mx-60 {
  margin-left: 60px;
  margin-right: 60px;
}

.mt-60 {
  margin-top: 60px;
}

.mr-60 {
  margin-right: 60px;
}

.mb-60 {
  margin-bottom: 60px;
}

.ml-60 {
  margin-left: 60px;
}

/* Padding spacing*/
.py-4 {
  padding-top: 4px;
  padding-bottom: 4px;
}

.px-4 {
  padding-left: 4px;
  padding-right: 4px;
}

.pt-4 {
  padding-top: 4px;
}

.pr-4 {
  padding-right: 4px;
}

.pb-4 {
  padding-bottom: 4px;
}

.pl-4 {
  padding-left: 4px;
}

.py-8 {
  padding-top: 8px;
  padding-bottom: 8px;
}

.px-8 {
  padding-left: 8px;
  padding-right: 8px;
}

.pt-8 {
  padding-top: 8px;
}

.pr-8 {
  padding-right: 8px;
}

.pb-8 {
  padding-bottom: 8px;
}

.pl-8 {
  padding-left: 8px;
}

.py-12 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.px-12 {
  padding-left: 12px;
  padding-right: 12px;
}

.pt-12 {
  padding-top: 12px;
}

.pr-12 {
  padding-right: 12px;
}

.pb-12 {
  padding-bottom: 12px;
}

.pl-12 {
  padding-left: 12px;
}

.py-16 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.px-16 {
  padding-left: 16px;
  padding-right: 16px;
}

.pt-16 {
  padding-top: 16px;
}

.pr-16 {
  padding-right: 16px;
}

.pb-16 {
  padding-bottom: 16px;
}

.pl-16 {
  padding-left: 16px;
}

.py-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.px-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.pt-20 {
  padding-top: 20px;
}

.pr-20 {
  padding-right: 20px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pl-20 {
  padding-left: 20px;
}

.py-24 {
  padding-top: 24px;
  padding-bottom: 24px;
}

.px-24 {
  padding-left: 24px;
  padding-right: 24px;
}

.pt-24 {
  padding-top: 24px;
}

.pr-24 {
  padding-right: 24px;
}

.pb-24 {
  padding-bottom: 24px;
}

.pl-24 {
  padding-left: 24px;
}

.py-28 {
  padding-top: 28px;
  padding-bottom: 28px;
}

.px-28 {
  padding-left: 28px;
  padding-right: 28px;
}

.pt-28 {
  padding-top: 28px;
}

.pr-28 {
  padding-right: 28px;
}

.pb-28 {
  padding-bottom: 28px;
}

.pl-28 {
  padding-left: 28px;
}

.py-32 {
  padding-top: 32px;
  padding-bottom: 32px;
}

.px-32 {
  padding-left: 32px;
  padding-right: 32px;
}

.pt-32 {
  padding-top: 32px;
}

.pr-32 {
  padding-right: 32px;
}

.pb-32 {
  padding-bottom: 32px;
}

.pl-32 {
  padding-left: 32px;
}

.py-36 {
  padding-top: 36px;
  padding-bottom: 36px;
}

.px-36 {
  padding-left: 36px;
  padding-right: 36px;
}

.pt-36 {
  padding-top: 36px;
}

.pr-36 {
  padding-right: 36px;
}

.pb-36 {
  padding-bottom: 36px;
}

.pl-36 {
  padding-left: 36px;
}

.py-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.px-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.pt-40 {
  padding-top: 40px;
}

.pr-40 {
  padding-right: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pl-40 {
  padding-left: 40px;
}

.py-44 {
  padding-top: 44px;
  padding-bottom: 44px;
}

.px-44 {
  padding-left: 44px;
  padding-right: 44px;
}

.pt-44 {
  padding-top: 44px;
}

.pr-44 {
  padding-right: 44px;
}

.pb-44 {
  padding-bottom: 44px;
}

.pl-44 {
  padding-left: 44px;
}

.py-48 {
  padding-top: 48px;
  padding-bottom: 48px;
}

.px-48 {
  padding-left: 48px;
  padding-right: 48px;
}

.pt-48 {
  padding-top: 48px;
}

.pr-48 {
  padding-right: 48px;
}

.pb-48 {
  padding-bottom: 48px;
}

.pl-48 {
  padding-left: 48px;
}

.py-52 {
  padding-top: 52px;
  padding-bottom: 52px;
}

.px-52 {
  padding-left: 52px;
  padding-right: 52px;
}

.pt-52 {
  padding-top: 52px;
}

.pr-52 {
  padding-right: 52px;
}

.pb-52 {
  padding-bottom: 52px;
}

.pl-52 {
  padding-left: 52px;
}

.py-56 {
  padding-top: 56px;
  padding-bottom: 56px;
}

.px-56 {
  padding-left: 56px;
  padding-right: 56px;
}

.pt-56 {
  padding-top: 56px;
}

.pr-56 {
  padding-right: 56px;
}

.pb-56 {
  padding-bottom: 56px;
}

.pl-56 {
  padding-left: 56px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.px-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.pt-60 {
  padding-top: 60px;
}

.pr-60 {
  padding-right: 60px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pl-60 {
  padding-left: 60px;
}

/* Spacing auto */
.mx-auto {
  margin: 0 auto;
}

.my-auto {
  margin: auto 0;
}

/* Spacing zero */
.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mt-0 {
  margin-top: 0;
}

.mr-0 {
  margin-right: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.ml-0 {
  margin-left: 0;
}

.m-0 {
  margin: 0;
}

.px-0 {
  padding-left: 0;
  padding-right: 0;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.pt-0 {
  padding-top: 0;
}

.pr-0 {
  padding-right: 0;
}

.pb-0 {
  padding-bottom: 0;
}

.pl-0 {
  padding-left: 0;
}

.p-0 {
  padding: 0;
}

.c-primary {
  color: var(--primary-color);
}

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

.c-secondary {
  color: var(--secondary-color);
}

.c-error {
  color: var(--error-color);
}

.c-tertiary {
  color: var(--tertiary-color);
}

.c-orange {
  color: var(--orange-color);
}

.c-pink {
  color: var(--pink-color);
}

.c-blue {
  color: var(--blue-color);
}

.c-process-blue {
  color: var(--process-blue-color);
}

.c-charcoal-grey {
  color: var(--charcoal-grey-color);
}

.c-complementary-green {
  color: var(--complementary-green-color);
}

.c-bright-green {
  color: var(--bright-green-color);
}

.c-yellow {
  color: var(--yellow-color);
}

.c-white {
  color: var(--white-color);
}

.c-black {
  color: var(--black-color);
}

.bg-primary {
  background: var(--primary-color) !important;
}

.bg-primary-text {
  background: var(--primary-text-color);
}

.bg-secondary {
  background: var(--secondary-color);
}

.bg-error {
  background: var(--error-color);
}

.bg-tertiary {
  background: var(--tertiary-color);
}

.bg-orange {
  background: var(--orange-color);
}

.bg-pink {
  background: var(--pink-color);
}

.bg-blue {
  background: var(--blue-color);
}

.bg-process-blue {
  background: var(--process-blue-color);
}

.bg-charcoal-grey {
  background: var(--charcoal-grey-color);
}

.bg-complementary-green {
  background: var(--complementary-green-color);
}

.bg-bright-green {
  background: var(--bright-green-color);
}

.bg-yellow {
  background: var(--yellow-color);
}

.bg-black {
  background: var(--black-color);
}

.bg-citrin-gradient {
  background: var(--citrin-gradient-color);
}

.f-primary {
  font-family: var(--font-primary);
}

.f-regular {
  font-family: var(--font-regular);
}

.f-medium {
  font-family: var(--font-medium);
}

.f-bold {
  font-family: var(--font-bold);
}

/* Font size */
.fz-57 {
  font-size: 57px;
  line-height: var(--font-line-height);
  letter-spacing: -0.0025em;
}

.fz-45 {
  font-size: 45px;
  line-height: var(--font-line-height);
}

.fz-36 {
  font-size: 36px;
  line-height: var(--font-line-height);
}

.fz-32 {
  font-size: 32px;
  line-height: var(--font-line-height);
}

.fz-28 {
  font-size: 28px;
  line-height: var(--font-line-height);
}

.fz-24 {
  font-size: 24px;
  line-height: var(--font-line-height);
}

.fz-20 {
  font-size: 20px;
  line-height: var(--font-line-height);
}

.fz-18 {
  font-size: 18px;
  line-height: var(--font-line-height);
  letter-spacing: 0.05em;
}

.fz-16 {
  font-size: 16px;
  line-height: var(--font-line-height);
  letter-spacing: 0.0015em;
}

.fz-14 {
  font-size: 14px;
  line-height: var(--font-line-height);
  letter-spacing: 0.001em;
}

.fz-12 {
  font-size: 12px;
  line-height: var(--font-line-height);
  letter-spacing: 0.004em;
}

.fz-11 {
  font-size: 11px;
  line-height: var(--font-line-height);
  letter-spacing: 0.005em;
}

.fz-10 {
  font-size: 10px;
  line-height: var(--font-line-height);
  letter-spacing: 0.015em;
}

@media screen and (max-width: 700px) {
  .fz-m-57 {
    font-size: 57px;
    line-height: var(--font-line-height);
    letter-spacing: -0.0025em;
  }
  .fz-m-45 {
    font-size: 45px;
    line-height: var(--font-line-height);
  }
  .fz-m-36 {
    font-size: 36px;
    line-height: var(--font-line-height);
  }
  .fz-m-32 {
    font-size: 32px;
    line-height: var(--font-line-height);
  }
  .fz-m-28 {
    font-size: 28px;
    line-height: var(--font-line-height);
  }
  .fz-m-24 {
    font-size: 24px;
    line-height: var(--font-line-height);
  }
  .fz-m-20 {
    font-size: 20px;
    line-height: var(--font-line-height);
  }
  .fz-m-18 {
    font-size: 18px;
    line-height: var(--font-line-height);
    letter-spacing: 0.05em;
  }
  .fz-m-16 {
    font-size: 16px;
    line-height: var(--font-line-height);
    letter-spacing: 0.0015em;
  }
  .fz-m-14 {
    font-size: 14px;
    line-height: var(--font-line-height);
    letter-spacing: 0.001em;
  }
  .fz-m-12 {
    font-size: 12px;
    line-height: var(--font-line-height);
    letter-spacing: 0.005em;
  }
  .fz-m-11 {
    font-size: 11px;
    line-height: var(--font-line-height);
    letter-spacing: 0.005em;
  }
  .fz-m-10 {
    font-size: 10px;
    line-height: var(--font-line-height);
    letter-spacing: 0.015em;
  }
}
:root {
  --font-size-btn: 14px;
  --font-size-btn-banner: 21px;
  --font-size-btn-text: 20px;
  --padding-btn: 10px 24px;
  --padding-btn-primary: 11px 44px;
  --padding-btn-banner: 14px 44px;
}

.nav-container {
  display: flex;
  align-items: center;
  width: 100%;
  margin: 0;
  list-style: none;
}
.nav-container .nav-button {
  display: flex;
  margin-right: 16px;
}
.nav-container .nav-button:last-child {
  margin-right: 0;
}/*# sourceMappingURL=design-system.css.map */

main{
  padding-top:120px;
}
.main-header {
  border-bottom: 1px solid #d9dadd;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 500;
  transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
  -moz-transition: all 0.35s ease 0s;
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
}
.main-header.on-scroll {
  transform: translateY(-60px);
  -webkit-transform: translateY(-60px);
  -moz-transform: translateY(-60px);
  position: fixed;
}

.nav-main-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.nav-main-top a {
  transition: all 0.3s ease;
}

.nav-main-top a:hover,
.nav-main-top a .active {
  color: #e00000;
}

.nav-main-top .nav-menu-left {
  width: 50%;
}
.nav-main-top .nav-menu-left ul {
  padding: 0;
  margin: 0;
}

.nav-main-top .nav-menu-left ul li {
  list-style: none;
  display: inline-block;
}
.nav-main-top .nav-menu-left ul li a {
  font-family: var(--font-medium);
}

.nav-main-top .nav-menu-left ul li:nth-child(n+2) {
  margin-left: 24px;
}

.nav-main-top .nav-menu-right {
  display: flex;
  align-items: center;
}
.nav-main-top .nav-menu-right .nav-store {
  display: flex;
  width: 48px;
  margin-right: 4px;
  justify-content: center;
}
.nav-main-top .nav-menu-right .nav-store img {
  height: 22px;
  width: auto;
}
.nav-main-top .nav-menu-right .nav-search {
  display: flex;
  width: 48px;
  margin-right: 4px;
  justify-content: center;
}
.nav-main-top .nav-menu-right .nav-search img {
  height: 22px;
  width: auto;
}
.nav-main-top .nav-menu-right .nav-cart {
  display: flex;
  width: 48px;
  margin-right: 4px;
  justify-content: center;
}
.nav-main-top .nav-menu-right .nav-cart img {
  height: 22px;
  width: auto;
}

.nav-main-top .nav-menu-right .nav-user {
  display: flex;
  align-items: center;
}

.nav-main-top .nav-menu-right .nav-user a {
  display: flex;
  width: 18px;
  height: 18px;
}

.nav-main-top .nav-menu-right .nav-lang {
  border: 1px solid #303c46;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  margin-left: 24px;
}

.nav-main-top .nav-menu-right .nav-lang span {
  height: 28px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size:12px;
}

.nav-main-top .nav-menu-right .nav-lang span.active {
  color: #ffffff;
  background-color: #303c46;
}

.nav-main-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.nav-main-bottom .nav-menu-right {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-main-bottom .nav-menu-right > div:nth-child(n+2) {
  margin-left: 32px;
}

.nav-main-bottom .nav-menu-right .category-menu {
  display: flex;
  align-items: center;
  height: 100%;
  cursor: pointer;
}

.nav-main-bottom .nav-menu-right .category-menu span {
  cursor: pointer;
  font-family: var(--font-bold);
  font-size: 16px;
}

.category-menu:hover {
  color: #e00000;
}

.category-menu .sub-menu {
  display: flex;
  visibility: hidden;
  position: absolute;
  overflow: hidden;
  top: 120px;
  left: 0;
  right: 0;
  padding: 8px 0 20px;
  background-color: #ffffff;
  z-index: 2;
  transition: all 0.15s ease 0s;
  -webkit-transition: all 0.15s ease 0s;
  -moz-transition: all 0.15s ease 0s;
  opacity: 0;
  border-top: 1px solid #d9dadd;
  cursor: default;
  max-height:70vh;
  overflow-y:scroll;
}
.category-menu .sub-menu .container{
 
}
.category-menu .sub-menu a{
  text-wrap:wrap;
}
.category-menu .sub-menu .col-menu {
  color: var(--primary-text-color);
  transform: translateY(-60px);
  -webkit-transform: translateY(-60px);
  -moz-transform: translateY(-60px);
  transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
  opacity: 0;

}
.category-menu .sub-menu .col-menu h2,.category-menu .sub-menu .col-menu h2 a{
  font-size: 18px;
  line-height: 24px;
  font-family: var(--font-bold);
  letter-spacing: 0.05em;
}
.category-menu .sub-menu .nav-submenu {
  padding-bottom: 10px;
}
.category-menu .sub-menu .col-menu .nav-submenu > li > h3 {
  font-size: 18px;
  line-height: 24px;
  /* font-family: var(--font-bold); */
  font-family: var(--font-regular);
  letter-spacing: 0.05em;
}

.category-menu .sub-menu.one-column {
  position: relative;
}
.category-menu .sub-menu .container {
  max-width: 1440px;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.category-menu .sub-menu .container > div {
  white-space: nowrap;
  min-width: 204px;
}

.category-menu .sub-menu .container > div > ul li {
  list-style: none;
  margin-top: 8px;
}

.category-menu .sub-menu .container > div > ul li > ul {
  padding-left: 16px;
}

.category-menu:hover .sub-menu {
  visibility: visible;
  opacity: 1;
  transition: all 0.25s ease 0s;
  -webkit-transition: all 0.25s ease 0s;
  -moz-transition: all 0.25s ease 0s;
}
.category-menu:hover .sub-menu .col-menu {
  transform: translateY(0);
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  opacity: 1;
}

.category-menu a:hover {
  color: #e00000;
}

.category-menu.one-column .sub-menu {
  top: 121px;
  left: auto;
  right: auto;
  z-index: 5;
  overflow: visible;
}

.category-menu.one-column .sub-menu::after {
  content: "";
  position: absolute;
  background-color: #ffffff;
  left: -2000px;
  right: -2000px;
  top: -1px;
  bottom: 0;
  color: #ffffff;
  z-index: -1;
}

.category-menu.one-column .sub-menu .container {
  padding: 0;
  position: relative;
  z-index: 3;
}

/* .searchWithIcon {
  position: relative;
}

.searchWithIcon input {
  height: 32px;
  border: 1px solid rgba(48, 60, 70, 0.38);
  border-radius: 16px;
  padding-left: 52px;
  max-width: 203px;
}

.searchWithIcon input::placeholder {
  color: rgba(48, 60, 70, 0.38);
}

.searchWithIcon i {
  position: absolute;
  top: 4px;
  left: 20px;
} */


.hs-search-field {
  position: relative;
}

.hs-search-field input.hs-search-field__input {
  height: 32px;
  border: 1px solid rgba(48, 60, 70, 0.38);
  border-radius: 16px;
  padding-left: 35px !important;
  max-width: 203px;
}

.hs-search-field input.hs-search-field__input::placeholder {
  color: rgba(48, 60, 70, 0.38);
}

.hs-search-field i {
  position: absolute;
  top: 4px;
  left: 20px;
}

.acc-container,
.acc-inner-head,
.header-mobile {
  width: 100%;
  position: relative;
  display: flex;
}

.header-mobile {
  flex-direction: column;
  background: #fff;
}

.acc-container {
  flex-direction: column;
  padding: 16px 0;
}

.acc-inner-head {
  padding: 8px 36px;
  color: #e00000;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  font-family: var(--font-bold);
}

.acc-inner-head::before {
  content: "";
  display: flex;
  width: 10px;
  height: 16px;
  position: absolute;
  left: 16px;
  top: 10px;
  transition: all 0.35s ease-in-out 0s;
  -webkit-transition: all 0.35s ease-in-out 0s;
  -moz-transition: all 0.35s ease-in-out 0s;
  background: url(//45457732.fs1.hubspotusercontent-na1.net/hubfs/45457732/raw_assets/public/TrueTHDev-Test/images/icons/ico-caret-left.png) center center/100% auto no-repeat;
}

.acc-list-wrap {
  display: flex;
  flex-direction: column;
  width: 100%;
  color: rgba(48, 60, 70, 0.8);
  position: relative;
}

.acc-list-wrap:last-child::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  border-bottom: 1px solid rgba(48, 60, 70, 0.25);
}

.acc-list-wrap > a {
  display: flex;
  padding: 8px 28px 8px 16px;
  width: 100%;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  font-family: var(--font-bold);
}

.acc-list-wrap .acc-head {
  display: flex;
  width: 100%;
  padding: 8px 28px 8px 16px;
  position: relative;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  font-family: var(--font-bold);
}

.acc-list-wrap .acc-head::after {
  content: "";
  display: flex;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 16px;
  top: 8px;
  transition: all 0.35s ease-in-out 0s;
  -webkit-transition: all 0.35s ease-in-out 0s;
  -moz-transition: all 0.35s ease-in-out 0s;
  transform: rotate(0);
  background: url(//45457732.fs1.hubspotusercontent-na1.net/hubfs/45457732/raw_assets/public/TrueTHDev-Test/images/icons/ico-caret.png) center center/100% auto no-repeat;
}

.acc-list-wrap .acc-head.active::after {
  transform: rotate(-180deg);
}

.acc-list-wrap .acc-menu {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 0 32px 0 48px;
  margin: 0 0 8px;
  list-style: none;
  cursor: pointer;
  background: #f9f9fc;
}

.acc-list-wrap .acc-menu > li {
  display: flex;
  width: 100%;
  flex-direction: column;
  padding: 8px 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  font-family: var(--font-bold);
}
.acc-list-wrap .acc-menu > li a {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  font-family: var(--font-regular);
  position: relative;
}
.acc-list-wrap .acc-menu > li a::before {
  content: "-";
  position: absolute;
  top: 0;
  left: -10px;
  display: flex;
}

.acc-list-wrap .acc-menu > li > h3 {
  padding: 8px 0;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  font-family: var(--font-bold);
}

.acc-list-wrap .acc-menu .list-nested-menu {
  padding-left: 16px;
}

.acc-list-wrap .acc-menu .list-nested-menu li {
  display: flex;
  padding: 8px 0;
}
.acc-list-wrap .acc-menu .list-nested-menu li a {
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.0025em;
  font-family: var(--font-regular);
}

.header-search {
  display: flex;
  width: 100%;
  background: var(--white-color);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
  transition: all 0.35s ease 0s;
  -moz-transition: all 0.35s ease 0s;
  -webkit-transition: all 0.35s ease 0s;
}
.header-search.active {
  top: 64px;
}
.header-search.active ~ .main-header {
  border-bottom: none;
}
.header-search .box-search {
  display: flex;
  width: 100%;
  padding: 12px 34px;
  justify-content: center;
}
.header-search .box-search .search {
  /* border: 1px solid rgba(48, 60, 70, 0.3803921569); */
  height: 40px;
  /* border-radius: 20px; */
  display: flex;
  align-items: center;
  max-width: 100%;
  width: 100%;
}
.header-search .box-search .form-control {
  border: none;
  background: none;
  font-size: 16px;
  line-height: 24px;
  height: 40px;
  padding: 0 16px 0 0;
  width: calc(100% - 52px);
}
.header-search .box-search .form-control:focus {
  box-shadow: none;
  outline: 0;
}
.header-search .box-search .input-group-text {
  display: flex;
  border: none;
  background: none;
  padding: 0;
  width: 52px;
  height: auto;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
}

.sub-wrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 80px 0 16px;
  transform: translateX(100%);
  transition: all 0.4s ease-in-out 0s;
  z-index: 555;
}
.sub-wrapper.active {
  transform: translateX(0%);
}
.sub-wrapper .nav-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.sub-wrapper .nav-group li {
  display: flex;
  width: 100%;
}
.sub-wrapper .nav-group li a {
  font-family: var(--font-regular);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  text-align: left;
  position: relative;
  padding: 8px 28px 8px 48px;
}
.sub-wrapper .nav-group li a::before {
  content: "-";
  position: absolute;
  top: 0;
  left: -10px;
  display: flex;
}
.sub-wrapper .nav-group li .nav-link {
  font-family: var(--font-bold);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  text-align: left;
  padding: 8px 28px 8px 16px;
  position: relative;
  margin-bottom: 8px;
  color: var(--charcoal80-grey-color);
}
.sub-wrapper .nav-group li .nav-link::before {
  display: none;
}
.sub-wrapper .head-group {
  display: flex;
  width: 100%;
  padding: 8px 28px 8px 16px;
  position: relative;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--font-bold);
  color: var(--charcoal80-grey-color);
}
.sub-wrapper .list-nested-menu {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #f9f9fc;
  margin-bottom: 8px;
}
.sub-wrapper .list-nested-menu li {
  display: flex;
  width: 100%;
  padding: 8px 28px 8px 48px;
}
.sub-wrapper .list-nested-menu li a {
  font-family: var(--font-regular);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  text-align: left;
  position: relative;
}
.sub-wrapper .list-nested-menu li a::before {
  content: "-";
  position: absolute;
  top: 0;
  left: -10px;
  display: flex;
}
.sub-wrapper .acc-list-wrap .acc-menu {
  padding-left: 0;
}
.sub-wrapper .acc-list-wrap .acc-menu li {
  display: flex;
  width: 100%;
  padding: 8px 28px 8px 48px;
}
.sub-wrapper .acc-list-wrap .acc-menu li a {
  font-family: var(--font-regular);
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0.005em;
  text-align: left;
  position: relative;
}
.sub-wrapper .acc-list-wrap .acc-menu li a::before {
  content: "-";
  position: absolute;
  top: 0;
  left: -10px;
  display: flex;
}

.submenu-group {
  display: flex;
  width: 100%;
  flex-direction: column;
  border-bottom: 1px solid rgba(48, 60, 70, 0.35);
  transition: all 0.4s ease-in-out 0s;
}
.submenu-group .nav-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.submenu-group .nav-group .nav-link {
  display: flex;
  width: 100%;
  padding: 8px 28px 8px 16px;
  position: relative;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 24px;
  font-family: var(--font-bold);
  color: var(--charcoal80-grey-color);
}
.submenu-group .nav-group .nav-link.nav-lv2 {
  position: relative;
}
.submenu-group .nav-group .nav-link.nav-lv2::after {
  content: "";
  display: flex;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 16px;
  top: 8px;
  transition: all 0.35s ease-in-out 0s;
  -webkit-transition: all 0.35s ease-in-out 0s;
  -moz-transition: all 0.35s ease-in-out 0s;
  transform: rotate(-90deg);
  background: url(//45457732.fs1.hubspotusercontent-na1.net/hubfs/45457732/raw_assets/public/TrueTHDev-Test/images/icons/ico-caret.png) center center/100% auto no-repeat;
}

@media (max-width: 991px) {


  .sub-wrapper{
    position:absolute;
  }


  .headerMain {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 12;
  }
  .menu-desktop {
    position: relative;
    background-color: #fff;
    z-index: 10;
    height: 64px;
  }
  .nav-main-top {
    display: none;
  }
  .nav-menu-right {
    display: none;
  }
  .header .nav-main-menu .site-menu {
    display: none;
  }
  .nav-main-bottom .nav-menu-right {
    display: none;
  }
  .nav-main-menu .main-menu,
  .nav-main-menu .search {
    display: none;
  }
  .header .nav-main-menu .inner-wrap {
    height: 64px;
  }
  .logo-true {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    max-width: max-content;
  }
  .logo-true a {
    display: inline-block;
    max-width: 67px;
  }
  .btn-trud-id-m {
    display: flex;
    align-items: center;
  }
  .btn-trud-id-m .nav-store {
    display: flex;
    width: 28px;
    margin-right: 4px;
    justify-content: center;
  }
  .btn-trud-id-m .nav-store img {
    height: 16px;
    width: auto;
  }
  .btn-trud-id-m .nav-search {
    display: flex;
    width: 28px;
    height: 48px;
    margin-right: 4px;
    align-items: center;
    justify-content: center;
  }
  .btn-trud-id-m .nav-search img {
    height: 20px;
    width: auto;
  }
  .btn-trud-id-m .nav-cart {
    display: flex;
    width: 28px;
    height: 48px;
    margin-right: 4px;
    justify-content: center;
  }
  .btn-trud-id-m .nav-cart img {
    height: 20px;
    width: auto;
  }
  .btn-trud-id-m .nav-true-id img {
    height: 20px;
    width: auto;
  }
  .btn-trud-id-m a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
  }
  .btn-menu-m {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }
  .btn-menu-m a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 18px;
    height: 14px;
  }
  .btn-menu-m span {
    display: inline-block;
    width: 18px;
    background-color: #303c46;
    height: 2px;
    text-indent: -9999px;
    border-radius: 2px;
    transition: opacity 0.3s ease-in-out;
  }
  .btn-menu-m a::before,
  .btn-menu-m a::after {
    content: "";
    display: inline-block;
    background-color: #303c46;
    position: absolute;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    left: 0;
  }
  .btn-menu-m a::before {
    top: 0;
  }
  .btn-menu-m a::after {
    bottom: 0;
  }
  .btn-menu-m .active span {
    opacity: 0;
  }
  .btn-menu-m .active::before {
    transition: transform 0.2s ease-in-out 0s;
    transform-origin: left center;
    transform: rotate(45deg);
    top: -1px;
  }
  .btn-menu-m .active::after {
    transition: transform 0.2s ease-in-out 0s;
    transform-origin: left center;
    transform: rotate(-45deg);
  }
  .menu-mobile-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
    background-color: #fff;
    transition: all 0.4s ease-in-out 0s;
    transform: translateY(-100%);
  }

  .menu-sub {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 80px 16px 16px;
    transition: all 0.4s ease-in-out 0s;
    overflow-y: auto;
     
  }
  .menu-mobile-wrapper.show {
    transform: translateY(0);
  }
  .menu-sub-lv1 {
    transform: translateX(0);
  }
  .menu-sub-lv2 {
    transform: translateX(100%);
    padding: 80px 0 16px;
    overflow-x: hidden;
  }
  .menu-sub-lv2.left-show {
    transform: translateX(100%);
  }
  .menu-sub-lv2.left-hide .submenu-group {
    transform: translateX(-100%);
  }
  .m-hide {
    transform: translateX(-100%);
  }
  .m-show {
    transform: translateX(0);
  }
  .menu-sub-lv2.m-hide {
    transform: translateX(100%) !important;
  }
  .lang-sw {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
  }
  .lang-sw h3 {
    font-size: 14px;
    line-height: 20px;
    color: #303c46;
    font-family: var(--font-bold);
  }
  .lang-sw .-lang {
    align-items: center;
    background: #fff;
    border: 1px solid #303c46;
    border-radius: 24px;
    display: flex;
    height: 28px;
    list-style: none;
    margin-bottom: 0;
    overflow: hidden;
    padding-inline-start: 0;
    width: 80px;
  }
  .lang-sw .-lang li {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 12px;
    height: 100%;
    justify-content: center;
    text-align: center;
    width: 50%;
  }
  .lang-sw .-lang li.active {
    background: #303c46;
    color:#fff;
  }
  .lang-sw .-lang li a {
    color: #303c46;
    text-decoration: none;
  }
  .lang-sw .-lang li.active a {
    color: #fff;
  }
  .box-search {
    padding: 8px 20px;
  }
  .box-search .search .hs_cos_wrapper_type_module .hs-search-field__bar button svg{
    height:18px!important;
    margin-top:5px;
  }
  .box-search .search .hs_cos_wrapper_type_module {
    width:100%;
  }
  .box-search .search .hs-search-field__input {
    border: 1px solid rgba(48, 60, 70, 0.3803921569);
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    width:100%;
    max-width:100%;
  }
  .box-search .form-control {
    border: none;
    background: none;
    font-size: 16px;
    line-height: 24px;
    padding: 0;
  }
  .box-search .input-group-text {
    border: none;
    background: none;
  }
  .main-nav {
    padding: 8px 0;
  }
  .main-nav ul {
    display: flex;
  }
  .main-nav li {
    list-style: none;
    margin-right: 30px;
  }
  .main-nav li a {
    color: #303c46;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.0015em;
    font-family: var(--font-medium);
  }
  .main-nav li a:hover {
    color: #e00000;
  }
  .main-nav li a.active {
    color: #e00000;
  }
  .list-main-sub {
    border-bottom: 1px solid rgba(48, 60, 70, 0.35);
  }
  .list-main-sub li {
    position: relative;
    list-style: none;
    margin: 8px 0;
  }
  .list-main-sub li a {
    display: flex;
    align-items: center;
    height: 40px;
    padding: 2px 0;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0.005em;
    font-family: var(--font-bold);
  }
  .list-main-sub li a::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -8px;
    width: 16px;
    height: 16px;
    background: url(//45457732.fs1.hubspotusercontent-na1.net/hubfs/45457732/raw_assets/public/TrueTHDev-Test/images/icons/arrw-r.png) 0 0 no-repeat;
    background-size: contain;
  }
  main {
    padding-top: 64px;
  }
}
@media (max-width: 370px) {
  .main-nav li {
    margin-right: 25px;
  }
}/*# sourceMappingURL=header.css.map */

/* Override */
.hs-search-field__suggestions-container {
  background:#fff;
}



:root {
  --font-reg : "better_togetherregular";
  --font-li : "better_togetherlight";
  --font-med : "better_togethermedium";
  --font-bold : "better_togetherbold";
}




/* 1a. Containers */







.body-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  overflow: hidden;
}
.main-header {
  max-width: 1920px;
  left: unset;
}
.content-wrapper {
  max-width: 1440px;
}

#main-content > .container-fluid{
  padding-left: 0;
  padding-right: 0;
}

/* Typography Override and helper class*/

h1,.h1,.txt-h1{
  font-family: var(--font-med);
  font-size: 40px;

}
h2,.h2,.txt-h2{
  font-family: var(--font-med);
  font-size: 32px;
}
h3,.h3,.txt-h3{
  font-family: var(--font-med);
  font-size: 24px;
}
h4,.h4,.txt-h4{
  font-family: var(--font-med);
  font-size: 24px;
}
h5,.h5,.txt-h5{
  font-family: var(--font-med);
  font-size: 16px;
}
h6,.h6,.txt-h6{
  font-family: var(--font-med);
  font-size: 14px;
}
p{
  font-family: var(--font-reg);
  font-size: 16px;
}
.txt-remark{
    font-family: var(--font-reg);
  font-size: 12px;
}

.disable-scroll {
    overflow: hidden;
  }

.sc-prepaid-hand-slide {
  position: relative;
  
}
  
@media (max-width:767px) {
  body,p{
    font-family: var(--font-reg);
    font-size: 14px;
  }
  h1,.h1,.txt-h1{
  font-family: var(--font-med);
  font-size: 30px;
  }
  h2,.h2,.txt-h2{
    font-family: var(--font-med);
    font-size: 24px;
  }
  h3,.h3,.txt-h3{
    font-family: var(--font-med);
    font-size: 20px;
  }
  h4,.h4,.txt-h4{
    font-family: var(--font-med);
    font-size: 20px;
  }
  
}
    
/* Missing Template at Path: \'TrueTHDev-Test\/css\/sections\/_helper.css\' */