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

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

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

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

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

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

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

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


/* Anchors */

a {
  cursor: pointer;
}





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;
}
button,
.button {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  transition: all 0.15s linear;
  white-space: normal;
}

button:disabled,
.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;
}

/* Help text */

form legend {
  font-size: 0.875rem;
}

/* Inputs */

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

form textarea {
  resize: vertical;
}

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

/* Inputs - checkbox/radio */

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

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

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

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

/* Inputs - date picker */

.hs-dateinput {
  position: relative;
}

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

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

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

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

/* Inputs - file picker */

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

/* Headings and text */

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

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

/* GDPR */

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

/* Validation */

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

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

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

/* Submit button */

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

/* Captcha */

.grecaptcha-badge {
  margin: 0 auto;
}


/* Table */

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

/* Table cells */

td,
th {
  vertical-align: top;
}

/* Table header */

thead th {
  vertical-align: bottom;
}

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

.header-sec { padding: 21px 0 24px; position: relative; z-index: 99; }
.header-outer { display: grid; align-items: center; gap: 20px 37px; grid-template-columns: 1fr auto; }
.header-logo a img { max-width: 418px !important; }
.header-rightouter { display: flex; display: -webkit-flex; -webkit-flex-wrap: wrap; align-items: center; -webkit-align-items: center; }
.header-contact ul li a img{ margin-right: 10px; max-height: 28px !important; }
.header-contact ul li a { font-weight: 600; }
.header-contact ul li a{ position: relative; }
.header-contact .hs-menu-wrapper > ul > li { margin-left: 30px; }
.header-search img { max-width: 26px !important; }
.header-search { cursor: pointer; display: flex; display: -webkit-flex; -webkit-flex-wrap: wrap; margin-left: 30px; }
.header-discover { margin-left: 30px; position: relative; }
.discover-icon { -webkit-transition: .25s all ease-in-out; -o-transition: .25s all ease-in-out; transition: .25s all ease-in-out; cursor: pointer; display: flex; flex-wrap: wrap; align-items: center; padding: 5px; }
.discover-icon i { display: flex; position: relative; width: 38px; height: 4px; top: 0; }
.discover-icon i , .discover-icon i:before , .discover-icon i:after { height: 4px; background-color: #EE263E; border-radius: 5px;  }
.discover-icon i:after , .discover-icon i:before { position: absolute; content: ''; width: 100%; }
.discover-icon i:before { top: -10px; }
.discover-icon i:after { top: 10px; width: 19px; right: 0; }
.discover-icon span { font-weight: 600; margin-right: 10px; text-transform: uppercase; position: relative; }
/* .discover-icon span:after { content: ''; display: block; margin-bottom: 0.2em; width: 100%; max-width: 0; height: 3px; background: #191919; -webkit-transition: .25s max-width ease-in-out; -o-transition: .25s max-width ease-in-out; transition: .25s max-width ease-in-out; pointer-events: none; } */
/* .discover-menuopen .discover-icon span:after { max-width: 100%; } */
.header-contact .hs-menu-wrapper > ul > li { position: relative; }
.header-contact .hs-menu-wrapper > ul > li > ul { box-shadow: 1px 1px 6px rgb(102 102 102 / 32%); display: none; opacity: 0; visibility: hidden; z-index: 99; width: 300px; background-color: #ffffff; padding: 25px; position: absolute; top: calc(100% + 3px); left: 0; transition: 0.5s; }
.header-contact .hs-menu-wrapper > ul > li > ul li a { color: #191919; font-size: 12pt; line-height: 1.5; display: block; }
.header-contact .hs-menu-wrapper > ul > li:hover > ul { display: block; opacity: 1; visibility: visible; }
.header-contact .hs-menu-wrapper ul ul li a span { display: block; width: 50%; float: left; }
.header-contact .hs-menu-wrapper ul ul li a span + span { color: #EE263E; }
.header-contact .hs-menu-wrapper > ul > li > a span { position: relative; display: inline-block; }
.header-contact .hs-menu-wrapper > ul > li > a span:after { -webkit-transition: .25s max-width ease-in-out; -o-transition: .25s max-width ease-in-out; transition: .25s max-width ease-in-out; display: block; content: ""; width: 100%; max-width: 0; height: 3px; background: #EE263E; }
.header-contact .hs-menu-wrapper > ul > li > a:hover span:after { max-width: 100%; }

.header-megamnu .hs-menu-wrapper > ul > li > ul { width: 100%; left: 0; padding: 30px; box-shadow: 0px 8px 6px hsl(0deg 0% 40% / 32%); background-color: #fff; border-top: 2px solid #ee263e; /*display: none;*/ opacity: 0; visibility: hidden; z-index: 999; position: absolute; top: 100%; transition: all 0.3s ease; }
.header-megamnu .hs-menu-wrapper > ul > li.hs-item-has-children a { position: relative; }
.header-megamnu .hs-menu-wrapper > ul > li.hs-item-has-children > a:before { /*display: none;*/ position: absolute; content: ''; background-color: #fff; border: 0; bottom: -7px; left: -10px; transform: none; width: calc(100% + 20px); height: 2px; z-index: 9999; opacity: 0; visibility: hidden; }
.header-megamnu .hs-menu-wrapper > ul > li.hs-item-has-children:hover > a:before  { /*display: block; */ opacity: 1; visibility: visible; }
.header-megamnu .hs-menu-wrapper > ul > li:hover > a { color: #ee263e; }
.header-megamnu .hs-menu-wrapper > ul > li:hover > ul { /*display: block;*/ opacity: 1; visibility: visible; }
.header-megamnu .hs-menu-wrapper ul li a{ font-weight: 600; font-size: 13pt; text-transform: uppercase; }
.header-megamnu .hs-menu-wrapper > ul > li { cursor: pointer; padding-bottom: 20px; margin-right: 15px; }
.header-megamnu .hs-menu-wrapper.flyouts > ul > li.hs-item-has-children { position: static; }
.header-megamenusec { padding-top: 10px; position: relative; z-index: 1; }
.header-megamnu .hs-menu-wrapper > ul > li > ul > li > ul > li { width: 33.33%; float: left; margin-bottom: 30px; line-height: 0; }
.header-megamnu .hs-menu-wrapper > ul > li > ul > li { width: 75%; float: left; border-right: 1px solid rgb(25 25 25 / 20%); }
.header-megamnu .hs-menu-wrapper > ul ul ul  { display: block; }
.header-megamnu .hs-menu-wrapper > ul > li > ul > li > a { font-weight: 300; font-size: 16pt; line-height: 16px; }
.header-megamnu .hs-menu-wrapper > ul > li > ul > li > ul > li a { font-weight: 300; font-size: 13pt; line-height: 14pt; }
.mobile-show { display: none; }
.discover-menu { /* max-height: 80vh; */ visibility: hidden; max-height: 0; -webkit-transition: .25s all ease-in-out; -o-transition: .25s all ease-in-out; transition: .25s all ease-in-out; min-width: 300px; opacity: 0; z-index: 99; position: absolute; top: 100%; right: 0; width: 100%; background-color: #ee263e; }
.discover-menu .hs-menu-wrapper > ul { padding: 25px; display: block; }
.discover-menu .hs-menu-wrapper ul li a { color: #fff; font-weight: 600; display: block; }
.discover-menu .hs-menu-wrapper > ul li a { font-size: 16pt; }
.discover-menuopen .discover-menu { visibility: visible; max-height: 50em; opacity: 1; }
.discover-menu .hs-menu-wrapper > ul ul ul { background-color: #191919; padding: 10px; } 
.discover-menu .hs-menu-wrapper > ul ul ul li { margin-left: 20px; position: relative; margin-bottom: 10px; }
.discover-menu .hs-menu-wrapper > ul ul ul li a{ font-size: 13pt; }
.discover-menu .hs-menu-wrapper > ul ul ul li:before { position: absolute; top: 50%; left: -20px; width: 10px; height: 10px; content: ''; border-top: 2px solid #ffb92a; border-right: 2px solid #ffb92a; transform: translateY(-50%) rotate(45deg); }
.discover-menu .hs-menu-wrapper > ul li:nth-child(2) ul li a { font-size: 13pt; line-height: 14pt; text-transform: uppercase; }
.discover-menu .hs-menu-wrapper > ul li:nth-child(2) ul { padding-top: 20px; border-top: 1px solid #fff; }
/* .discover-menu .hs-menu-wrapper > ul li:nth-child(2) ul li { margin: 5px 0; } */
.discover-menuopen .discover-icon { background-color: #EE263E; color: #fff; }
.discover-menuopen .discover-icon i , .discover-menuopen .discover-icon i:before , .discover-menuopen .discover-icon i:after { background-color: #FFFFFF; }
.discover-menu .hs-menu-wrapper ul li > a:hover { color: #191919; }
.discover-menu .hs-menu-wrapper > ul ul ul li > a:hover { color: #ffb92a; }
.header-megamnu .hs-menu-wrapper > ul > li > ul > li > ul > li ul li { margin-bottom: 15px; line-height: 1.2; }



.search-headersec { padding: 15px 0; display: none; background: #fff; border-top: 1px solid #e1e1e1; position: absolute; top: 100%; left: 0; width: 100%; z-index: 99; }
.search-headersec form input[type=email], 
.search-headersec form input[type=file], 
.search-headersec form input[type=number],
.search-headersec form input[type=password],
.search-headersec form input[type=search], 
.search-headersec form input[type=tel], 
.search-headersec form input[type=text] { background: transparent; outline: 0; border-radius: 0; font-family: 'BasicSans'; border: 0; border-bottom: 1px solid #191919; font-weight: 600; font-size: 14pt; color: #191919; }
.search-headersec form { position: relative; }
.search-headersec button { position: absolute; top: 50%; transform: translateY(-50%); right: 0; background: transparent; border: 0;  padding: 0; margin: 0; border-radius: 0; font-family: 'BasicSans'; }
.search-headersec .hs-search-field__bar button svg { height: 20px; }
.search-headersec form input[type=text] { padding-left: 0; padding-right: 40px; }
.search-headersec form ::-webkit-input-placeholder { color: #191919; }
.search-headersec form ::-moz-placeholder { color: #191919; }
.search-headersec form :-ms-input-placeholder { color: #191919; }
.search-headersec form ::placeholder { color: #191919; }
.header-megamnu .hs-menu-wrapper > ul > li > ul > li.mTitle { display: none; }

/* Change Menu */
.header-megamnu .hs-menu-wrapper > ul > li { border: 2px solid transparent; border-bottom: 0; padding: 5px 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; transition: all .3s ease; }
.header-megamnu .hs-menu-wrapper > ul > li.hs-item-has-children:hover { border-color: #ee263e; }
/*.header-megamnu .hs-menu-wrapper > ul > li.hs-item-has-children > a:before { border: 0; background-color: #fff; bottom: -15px; left: 0; transform: none; }
  .header-megamnu .hs-menu-wrapper > ul > li.hs-item-has-children > a:before { background-color: #fff; border: 0; bottom: -7px; left: -10px; transform: none; width: calc(100% + 20px); height: 2px; z-index: 9999; } */
.header-megamnu .hs-menu-wrapper.hs-menu-flow-horizontal>ul li.hs-item-has-children ul.hs-menu-children-wrapper li.hs-menu-depth-3 a { text-transform: none; }




/* Responsive */

@media (max-width: 1280px){
	.header-megamnu .hs-menu-wrapper > ul > li > ul > li { border-right: 0; width: 100%; }

}

 /* Set ul background color */
 /* Set li background Color */
 /* Set link Color */
 /* Set link Hover Color */

/* Parent List */
.custom-menu-primary .hs-menu-wrapper > ul{ 
  background:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li{
  background:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a{
  color:;
}
.custom-menu-primary .hs-menu-wrapper > ul > li > a:hover{
  color:;
}

/* Child List */
.custom-menu-primary .hs-menu-wrapper > ul ul{}
.custom-menu-primary .hs-menu-wrapper > ul ul li{
  background:;
}
.custom-menu-primary .hs-menu-wrapper > ul ul li a{
  color:;
}
.custom-menu-primary .hs-menu-wrapper > ul ul li a:hover{
  color:;
}

/* Override max width on menu links */
.custom-menu-primary .hs-menu-wrapper > ul li a, 
.hs-menu-wrapper.hs-menu-flow-horizontal > ul li.hs-item-has-children ul.hs-menu-children-wrapper li a {
  overflow: visible !important;
  max-width: none !important;

}

/* Fix menu disappearing on desktop after toggling mobile menu */
@media screen and (min-width: 992px) {
      .custom-menu-primary .hs-menu-wrapper { 
          display:block !important;
      }
  }


/* ==========================================================================
   Mobile Menu - Hubspot Standard Toggle Menu
   ========================================================================== */

.mobile-trigger, .child-trigger{
    display: none; /* Hide button on Desktop */
}

@media (max-width: 991px){


  /* Variables
     ========================================================================== */

     /* Set Mobile Menu Background Color */
        /* Set Link Color */
   /* Set Link Hover Color */

  /* 
    * Menu Reset
    *
    * Remove styling from desktop version of custom-menu-primary. Place any 
    * additional CSS you want removed from the mobile menu in this reset 
    */

  .custom-menu-primary,
  .custom-menu-primary .hs-menu-wrapper > ul,
  .custom-menu-primary .hs-menu-wrapper > ul li,
  .custom-menu-primary .hs-menu-wrapper > ul li a{ display: block; float: none; position: static; top: auto; right: auto; left: auto; bottom: auto; padding: 0px; margin: 0px; background-image: none; background-color: transparent; border: 0px; -webkit-border-radius: 0px; -moz-border-radius: 0px; border-radius: 0px; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; max-width: none; width: 100%; height: auto; text-decoration: none; text-indent: 0px;  }

  /* Toggle Button
     ========================================================================== */

  .mobile-trigger{ display: inline-block !important; cursor: pointer; position: absolute; top: 35px; left: 0; width: 44px; height: 34px; padding: 0; background: transparent; border: 0; font-size: 0; font-weight: normal; text-align: left; text-transform: uppercase; -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; color: ; }
  .mobile-trigger:hover{ text-decoration: none;  color:; background-color:transparent; border-color: transparent;  }

  /* Change button when menu is open */
  .mobile-open .mobile-trigger{ color:; background-color: transparent; border-color: transparent; }

  /* Toggle Button Icon
     ========================================================================== */

  .mobile-trigger i{ display: inline; position: relative; top: 15px; }
  .mobile-trigger i:before, .mobile-trigger i:after { position: absolute; content: ''; }
  .mobile-trigger i, .mobile-trigger i:before, .mobile-trigger i:after{ background-color: #191919; width: 30px; height: 3px; -webkit-border-radius: 5px; -moz-border-radius: 5px; left: 0; text-align: center; border-radius: 5px; display: inline-block;  }
  .mobile-trigger i:before{ top: -8px; }
  .mobile-trigger i:after{ top: 8px; }
  
	.mobile-trigger:hover i, .mobile-trigger:hover i:before, .mobile-trigger:hover i:after{ background-color:#191919; }  
  .mobile-open .mobile-trigger i, .mobile-open .mobile-trigger i:before, .mobile-open .mobile-trigger i:after{ background-color: #191919; }
  .mobile-open .mobile-trigger i { background: none; }
  .mobile-open .mobile-trigger i:before { top: 0; transform: rotate(45deg); }
  .mobile-open .mobile-trigger i:after { top: 0; transform: rotate(-45deg); }


  /* Child Toggle Button
     ========================================================================== */

  .child-trigger{ display: block !important; cursor: pointer; position: absolute; top: 0px; right: 0px; width: 55px !important; min-width: 37.33px !important; height: 37.33px !important; padding: 0 !important; border-left: 0; }
  .child-trigger:hover{ text-decoration: none; }
  .child-trigger i { position: relative; top: 50%; margin: 0 auto !important; -webkit-transform: rotate(0deg); -ms-transform: rotate(0deg); transform: rotate(0deg); }
  .child-trigger i:after{ position: absolute; content: ''; } 
  .child-trigger i, .child-trigger i:after{ width: 12px; height: 2px; background-color:#191919; display: block; }
  .child-trigger i:after{ -webkit-transform: rotate(-90deg); -ms-transform: rotate(-90deg); transform: rotate(-90deg); }
  .child-open .child-trigger i:after{ -webkit-transform: rotate(-180deg); -ms-transform: rotate(-180deg); transform: rotate(-180deg); background-color:#191919; }
  .child-open .child-trigger i{ }

    
  /* Menu Styles on Mobile Devices
     ========================================================================== */  

  /* Hide menu on mobile */
  .custom-menu-primary.js-enabled .hs-menu-wrapper,
  .custom-menu-primary.js-enabled .hs-menu-children-wrapper{ display: none;  }  

  /* Make child lists appear below parent items */
  .custom-menu-primary ul.hs-menu-children-wrapper{ visibility: visible !important; opacity: 1 !important; position: static !important; display: none; }

  /* Mobile Menu Styles */ 
  .custom-menu-primary.js-enabled .hs-menu-wrapper{ width: 100%; position: absolute; top: calc( 100% + 21px); left: 0; padding: 20px; background-color: #fff; box-shadow: 0 8px 6px hsl(0deg 0% 40% / 32%); }
  .custom-menu-primary .hs-menu-wrapper{ width: 100%; }  
}

@media(max-width: 991px){
	.header-megamnu.custom-menu-primary .hs-menu-wrapper { display: none; }  
	.mobile-show { display: block;}
	.desktop-show { display: none; }
	.header-logo a img { max-width: 350px!important; }
	.header-top .wrapper { max-width: 600px; } 
	.header-outer { grid-template-columns: 1fr; }
	.header-logo { text-align: center; padding-left: 50px; }
	.header-rightouter { justify-content: center; }
	.header-megamenusec { display: none; padding-top: 0; position: static; }
	.header-outer { position: relative; }
  /* 	.header-megamnu.custom-menu-primary .hs-menu-wrapper:before { position: absolute; content: ''; width: 1000%; top: 0; left: 100%; height: 100%; background-color: #fff; }
	.header-megamnu.custom-menu-primary .hs-menu-wrapper:after { position: absolute; content: ''; width: 1000%; top: 0; right: 100%; height: 100%; background-color: #fff; } 
	body.mobile-open { overflow-x: hidden; }*/
	.header-megamnu .hs-menu-wrapper.flyouts > ul > li.hs-item-has-children { position: relative; display: inline-block; }
	.header-megamnu .hs-menu-wrapper > ul > li.hs-item-has-children:hover > a:before , .header-megamnu .hs-menu-wrapper > ul > li.hs-item-has-children > a:before { display: none; }
	.header-megamnu .hs-menu-wrapper > ul > li > ul { float: left; background-color: transparent; padding: 0px; box-shadow: none; }
	.header-megamnu .hs-menu-wrapper > ul > li:hover > ul { display: none; opacity: 0; visibility: hidden; }
	.header-megamnu .hs-menu-wrapper > ul ul ul { display: block !important; }
	.header-megamnu .hs-menu-wrapper > ul > li > ul > li > a { display: none; }
	.header-megamnu .hs-menu-wrapper > ul > li > ul > li > ul > li { margin-bottom: 0px; width: 100%; }
	.header-megamnu .hs-menu-wrapper > ul > li > ul > li .child-trigger{ display: none !important; }
	.header-megamnu .hs-menu-wrapper > ul ul ul li { padding: 0px; }
	.header-megamnu .hs-menu-wrapper > ul > li > ul > li > ul > li a { font-weight: 600; }
	.header-megamnu .hs-menu-wrapper > ul ul ul ul > li { padding: 10px; }
	.header-megamnu .hs-menu-wrapper ul li a { font-size: 16pt; line-height: 32pt; }
	.header-megamnu.custom-menu-primary .hs-menu-wrapper > ul { max-height: 80vh; overflow: auto; }
	.header-megamnu .hs-menu-wrapper > ul > li > ul > li.mTitle { display: none; }
	.header-megamnu .hs-menu-wrapper > ul > li > ul > li > ul > li ul li { margin-bottom: 0; }
	
	
}

@media (max-width: 767px){
	
	.header-contact .hs-menu-wrapper > ul > li > a span { display: none; }
	.header-contact ul li a img { margin-right: 0px; max-height: 26px!important; }
	.header-contact .hs-menu-wrapper > ul > li { margin-left: 15px; line-height: 0; }
	.header-contact .hs-menu-wrapper > ul > li:first-child{ margin-left: 0; }
	.header-contact .hs-menu-wrapper > ul > li > a:hover:after{ display: none; }
	.discover-icon { font-size: 16pt; }
	.discover-icon span { margin-right: 7px; }
	.discover-icon i { width: 30px; }
	.discover-icon i, .discover-icon i:after, .discover-icon i:before { height: 3px; }
	.discover-icon i:before { top: -8px; }
	.discover-icon i:after { top: 8px; width: 16px; }   
	.header-contact .hs-menu-wrapper.hs-menu-flow-horizontal ul { flex-direction: row; }
	.header-logo a img { width: 100%; }
	.header-search img { max-width: 24px!important; }
	.discover-menu { min-width: 290px; }
	.header-contact .hs-menu-wrapper > ul > li > ul { width: 260px; }
	.header-contact .hs-menu-wrapper ul ul li a span { width: 100%; }
	.header-contact .hs-menu-wrapper ul ul li { width: 100%; float: left; margin-bottom: 10px; }
	.header-discover , .header-search { margin-left: 15px; }
	.mobile-trigger { top: 30px; }
	
	
}
/* 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) {
	
}

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

/* Custom
Custom CSS Stylesheet
 */

/* @import url('http://example.com/example_style.css'); */

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

/*****************************************/
/* Start your style declarations here    */
/*****************************************/

li {
    list-style: disc !important;
}