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

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

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

/* Paragraphs */
*+p{
  padding-top: 20px;
}

p {
  margin: 0;
}

/* Anchors */

a {
  cursor: pointer;
}

/* Headings */

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

/* Lists */

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

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

ul.no-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

/* Code blocks */

pre {
  overflow: auto;
}

code {
  vertical-align: bottom;
}

/* Blockquotes */

blockquote {
  border-left: 2px solid;
  margin: 0 0 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;
  max-width: 100%;
  display: inline-block;
  height: auto;
  line-height: 0;
}
.button a, a.button, .v2 a, a.v2,
.button.v3, .v3 a, a.v3, .v5 { 
	padding: 14px 20px; 
	text-align: center; 
	border-radius: 4px; 
	display: inline-block;  
	vertical-align: middle;  
	transition: all ease 0.3s;  
	border: 1px solid var(--primary-navy);  
	font-weight: 500;
  font-size: 14px; 
	font-family: Roboto Mono; 
	line-height: 1.15; 
	background-color: transparent;
	cursor: pointer;
}

.button a:hover, a.button:hover, .v2 a:hover, a.v2:hover, .v5:hover { 
	color: var(--white); 
	background-color: var(--primary-navy);
}

.button.v2 a, a.button.v2  {
	border-color: var(--dark-gray); 
	color: var(--dark-gray);
}

.button.v2 a:hover, a.button.v2:hover, .button.v4:hover{ 
	background-color: var(--dark-gray); 
	color: var(--white); 
}

.button.v3, .v3 a, a.v3 {
	color: var(--white); 
	background-color: var(--primary-navy);
}

.button.wh {
	border: 1px solid var(--white);
	background: transparent;
}

.button.v3:hover, .v3 a:hover, a.v3:hover { 
	color: var(--primary-navy);
	background-color: var(--white); 
}
/* Form Css  */


/*---------------------    chdeckbox  setup ---------------*/

form .input { margin-right:0 !important; }
form fieldset { max-width:inherit !important; margin:0 -10px !important;  }
form fieldset.form-columns-1 .field { width:100% !important; }
form fieldset.form-columns-2 .field { width:50% !important; }
form fieldset.form-columns-3 .field { width:33.33% !important; }
form .field { padding:0 0 32px; }
form fieldset .field { padding-left:10px; padding-right:10px; }
form ul.multi-container { padding-top:10px; }
form ul.multi-container li { margin:5px 0; }  
textarea, input[type="text"], input[type="search"], input[type="number"], input[type="email"], input[type="tel"], select { display:block; border:1px solid #5670A7; outline:none; background:#fff; font-size:16px; line-height:1.28;
  font-family: inherit;
  font-weight:500; color:#5670A7; margin:0; padding:14px 20px; width:100% !important; border-radius:4px; }
textarea { min-height:160px; }
input[type="submit"] { outline: none; font-family: inherit; padding:16px 20px;  background-color: transparent; color: #333333;  border: 1px solid #333333;  font-size:14px;  line-height:18px;
  text-transform:inherit; font-weight:700; border-radius:4px;  cursor:pointer;  -webkit-transition:all ease 0.3s;  -moz-transition:all ease 0.3s; transition:all ease 0.3s;}
form input[type="radio"]+span,form input[type="checkbox"]+span { position: relative; display:block;  padding-left: 40px;  cursor:pointer;}
form input[type="radio"]+span:before,form input[type="checkbox"]+span:before { content: '';  color:#5670A7;  position:absolute;  left:4px;  top: 0;  font-size:0; width: 23px;  height: 23px;
  display:block; border:1px solid #5670A7;  transition:all ease .3s;  -webkit-transition:all ease .3s;  text-align:center;  line-height:14px;  border-radius: 50%;background-position: center center;
  background-repeat: no-repeat;
  background-size: auto; }
form input[type="radio"]:checked+span:before { background: #5670A7; border-color:#5670A7;}
form input[type="checkbox"]:checked+span:before { border-color: #5670A7; font-size:12px;  background-color: #5670A7;  color:#fff;  letter-spacing: inherit;  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24'%3E%3Cpath fill='%23FFF' d='M0 11.522l1.578-1.626 7.734 4.619 13.335-12.526 1.353 1.354-14 18.646z'/%3E%3C/svg%3E");
}
input[type="checkbox"] { display: none;}
input[type="submit"]:hover {background-color: var(--primary-navy);border-color: var(--primary-navy); color: var(--white)}
.hs_error_rollup {display: none;}

.hs-form-field > label {display: flex;flex-wrap: nowrap;}
label > span {   margin-bottom: 10px;display: block;}
.submitted-message {font-size: 22px;color: var(--primary-navy);font-weight: 500;}

@media(max-width:767px){
  form input[type=checkbox]+span:before, form input[type=radio]+span:before {height: 18px;width: 18px;top: 2px;}
  form .field {padding: 0 0 15px;}
  input[type=email], input[type=number], input[type=tel], input[type=text], select, textarea {padding: 10px;}
  form fieldset.form-columns-2 .field {width: 100% !important;}
  label>span {margin-bottom: 5px;}
  textarea {min-height: 100px;}
}
/* 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
*/

.hs-search-results__listing li {
	margin-top: 30px !important;
}

/* Header Css */

.header-section {padding-top: 17px;transition: all ease 0.3s;}
/* .Fixed .header-section {background-color: #F8F3E9;} */
.header-two-col {position: relative;}
.header-first-col {position: absolute;width: 136px;left: 50%;transform: translateX(-50%);z-index: 1;max-width: 100%;}
.header-three-col {display: flex;flex-wrap: wrap;align-items: flex-end;padding-top: 100px;}
.header-sec-col {  width: 1129px;}
.header-third-col {width: calc(100% - 1129px);padding-bottom: 7px;    padding-left: 37px}
.search-two-col {display: flex; flex-wrap: nowrap;}
.header-navigation .hs-menu-wrapper > ul {display: flex;flex-wrap: wrap;}
.header-navigation .hs-menu-wrapper > ul > li > a {font-size: 12px;display: block;line-height: 1.5;font-weight: 400;padding-top: 17px;padding-bottom: 17px;position: relative;}
.header-navigation .hs-menu-wrapper > ul > li + li {margin-left: 50px;}
.header-navigation .hs-menu-wrapper > ul > li:nth-child(4) {margin-left: 505px;}
.header-navigation .hs-menu-wrapper > ul > li:before { content: '';position: absolute;width: 0px;height: 3px;left: 50%;bottom: 0;background-color: #D17251;transition: all ease 0.4s;}
.header-navigation .hs-menu-wrapper > ul > li.active-branch:before { width: 100%; left: 0; }
.header-navigation .hs-menu-wrapper>ul>li:hover:before {width: 100%;left: 0;}
.search-s {width: 37px;height: 37px;line-height: 0;display: flex;flex-wrap: nowrap;justify-content: center;align-items: center;cursor: pointer;transition: all ease 0.3s;}
.bookmark-svg {width: 37px;height: 37px;display: flex;flex-wrap: nowrap;justify-content: center;align-items: center;line-height: 0;cursor: pointer;transition: all ease 0.3s;}
.search-right {padding-left: 43px;}
.search-s:hover svg path , .search-s:hover svg circle {stroke: #D17251;}
.bookmark-svg:hover svg path {stroke: #D17251;}
.bookmark-svg:hover svg path:first-child {fill: #D17251;}
/* .header-navigation .hs-menu-wrapper > ul > li > a:hover {color: #D17251;} */
.header-navigation .hs-menu-wrapper>ul>li { cursor: pointer;display: flex;flex-wrap: nowrap;align-items: center;position:relative}

.header-navigation .hs-menu-wrapper>ul>li .svg-s {position: relative;left: 9px;line-height: 0;top: 2px;}

.Headercolorchange .header-section{background-color: #f8f3e9;}

.header-navigation .hs-menu-wrapper>ul>li>ul {position: absolute;left: 0;top: 100%;width: 280px;height: auto;z-index: 98;background-color: var(--white);display: block;transition: all ease .3s;opacity: 0;visibility: hidden;}
.header-navigation .hs-menu-wrapper>ul>li>ul>li>a {padding: 9px 17px;display: block;font-size: 12px;font-weight: 400;line-height: 1.5;transition: all ease .3s;}
.header-navigation .hs-menu-wrapper>ul>li>ul>li>a:hover {color: #d17251;}
.header-navigation .hs-menu-wrapper>ul>li:hover>ul {opacity: 1;visibility: visible;}

.searchBar { display: none;height: 100vh;left: 0;position: fixed;top: 0;width: 100%;z-index: 99;}
.searchBarInr {align-items: center;background-color: rgba(0,0,0,.7);display: flex;flex-wrap: nowrap;height: 100%;justify-content: center;padding: 0 15px;position: relative;width: 100%;}
.searchBarInr form {max-width: 660px;position: relative;width: 100%}
.searchBarInr form input[type=submit] {background-color: transparent;background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20'%3E%3Cpath fill-rule='evenodd' d='M14 15c-1.5 1.3-3.4 2-5.5 2C3.8 17 0 13.2 0 8.5S3.8 0 8.5 0 17 3.8 17 8.5c0 2.1-.7 4-2 5.5l4.8 4.7q.2.2.2.5c0 .6-.5.8-.7.8q-.3 0-.6-.2zM8.6 1.5c-3.9 0-7 3.1-7 7 0 3.8 3.1 7 7 7 3.8 0 7-3.2 7-7 0-3.9-3.2-7-7-7z'/%3E%3C/svg%3E");
  background-position: 50%;background-repeat: no-repeat;background-size: auto;border: none;height: 100%;padding: 0;position: absolute;right: 0;top: 0;width: 45px}

.header-navigation .hs-menu-wrapper>ul>li.hs-item-has-children:first-child > ul { display: flex;}
  .header-navigation .hs-menu-wrapper>ul>li:nth-child(1)>ul,
  .header-navigation .hs-menu-wrapper>ul>li:nth-child(2)>ul { display: flex; flex-wrap: wrap;  flex-direction: row;  min-width: 431px;  left: 0;  transform: none;  }
  .header-navigation .hs-menu-wrapper>ul>li:nth-child(1)>ul>li,
  .header-navigation .hs-menu-wrapper>ul>li:nth-child(2)>ul>li { width: 50%;  }
  .header-navigation .hs-menu-wrapper>ul>li>ul { padding: 25px 10px 30px; }
.header-m-top, .m-close, .mob-logo {display:none;}


@media (min-width: 1081px) {

  a.expandMenu { display: none; }
  .header-navigation { display: block !important; }



}


@media (max-width: 1330px) {

  .header-sec-col {width: 1110px;}
  .header-third-col {padding-left: 10px;width: calc(100% - 1110px);}
  .header-navigation .hs-menu-wrapper>ul>li+li {margin-left: 40px;}

}

@media (max-width: 1280px) {

  .header-navigation .hs-menu-wrapper>ul>li:nth-child(4) {margin-left: 470px;}
  .header-sec-col {width: 1080px;}
  .header-third-col {width: calc(100% - 1080px);padding-left: 0;}
  .header-navigation .hs-menu-wrapper>ul>li+li {margin-left: 26px;}
  .search-right {padding-left: 25px;}

}

@media (max-width: 1230px) {

  .header-navigation .hs-menu-wrapper>ul>li:nth-child(4) {margin-left: 294px;}
  .header-sec-col {width: 880px;}
  .header-third-col {width: calc(100% - 880px);}

}


@media (max-width: 1080px) {
	.header-navigation .hs-menu-wrapper>ul>li:first-child>ul {
		min-width: 0;
		display: block !important;
	}

  /*-=-=-=-= Mobile menu JS USE  MENU ICON as '<a class="expandMenu"><i></i><i></i><i></i></a>' -=-=-=*/

  a.expandMenu { cursor: pointer;display: block;height: auto;position: absolute;left: 15px;top: 45%;width: 26px; z-index:9}
  a.expandMenu i { background: #011b4b;display: block;height: 2px;left: 0;margin: 5px 0;opacity: 1;position: relative;transition: all .3s ease;-webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;width: 26px;border-radius: 50px; }
  a.expandMenu i:first-child {  margin-top: 0;}
  a.expandMenu.active i:first-child { transform: rotate(135deg); -webkit-transform: rotate(135deg); top: 10px; position: relative; }
  a.expandMenu.active i:nth-child(2) { position:relative; left:-46px; opacity:0; }
  a.expandMenu.active i:last-child { transform: rotate(-135deg); -webkit-transform: rotate(-135deg); top: -4px; position: relative; }
  /*-=-=-=-= Mobile Submenu JS USE  SUBMENU ICON as '<a class="childExpand"><i></i><i></i></a>' -=-=-=*/
  .childExpand { position: absolute; top: 10px; right: 10px; width: 24px; text-align: center; height: 24px; margin: 0; padding:5px; cursor:pointer; }
  .childExpand i { position:relative; width: 15px; left:0; height: 1px; opacity:1; display: block; background:#fff; margin: 6px 0; transition:all ease 0.3s; -webkit-transition:all ease 0.3s; -moz-transition:all ease 0.3s; }
  .childExpand i + i { position: relative; transform: rotate(90deg); -moz-transform: rotate(90deg); -webkit-transform: rotate(90deg); top:-7px; }
  .childExpand.open i { transform: rotate(180deg); -moz-transform: rotate(180deg); -webkit-transform: rotate(180deg); }
  .childExpand.open i+i { transform: rotate(360deg); -moz-transform: rotate(360deg); -webkit-transform: rotate(360deg); }

  .header-section .content-wrapper {max-width: 100%;}
  .header-navigation .hs-menu-wrapper>ul>li:nth-child(4) {margin: 0;}   
  .header-section {padding-top: 10px;height: 104px;position: relative}
  .header-navigation {position: fixed;top: 0;left: 0%;width: 100%;z-index: 9;height:100%;transition:all ease .3s;transform: translateX(-100%); background-color: rgb(0 0 0 / 44%);}
  .header-navigation.active{transform: translateX(0);}
  .header-navigation .hs-menu-wrapper>ul {display: block;}
  .search-left {display: none; }

  /*   .bookmark-svg {width: 100%;padding: 0;position: absolute;left: -15px;top: 50%;transform: translateY(-50%);margin: 0;justify-content: flex-end;} */
  .bookmark-svg {justify-content: flex-end;margin: 0;padding: 0;width: auto;display: inline-block;vertical-align: top;  position: relative;
    top: -5px;}

  .header-navigation .hs-menu-wrapper>ul>li>a {position: static;}
  .header-navigation .hs-menu-wrapper>ul>li>a:before { display: none;}
  .header-navigation .hs-menu-wrapper>ul>li>a {color: var(--primary-navy);padding:24px 0;font-size:18px;}
  .header-navigation .hs-menu-wrapper>ul>li+li {border-bottom: 1px solid #E2E2E2;margin: 0;}
  .header-navigation .hs-menu-wrapper>ul>li:first-child{ border-top: 1px solid #E2E2E2;border-bottom: 1px solid #E2E2E2;}
  .header-navigation .hs-menu-wrapper>ul>li  {position: relative;display: flex;flex-direction: row;flex-wrap: wrap;justify-content: center;align-items: center;}
  
  .search-two-col {justify-content: flex-end;display: block;text-align: right;}
  .header-first-col {width: 85px;max-width: 100%;}
  .header-three-col {padding: 0;display: block;}
  .search-right {padding: 0;text-align: right;}
  .header-two-col {position: static;}
  .header-third-col {width: auto;padding: 0;}
  

  
  .header-navigation .hs-menu-wrapper>ul>li:before {display: none;}



  .header-navigation .hs-menu-wrapper>ul>li:nth-child(2)>ul { display: inherit; flex-direction: inherit;  flex-wrap: inherit; left: 0; min-width: auto;  }

  .header-min {max-width: calc(100% - 90px);background-color: var(--white);height:100vh; overflow:auto;padding:28px 12px;}
  .header-m-top, .m-close{display:block;}

  .header-m-top ul {margin: 0;padding: 0;list-style: none;display: flex;flex-wrap: wrap;align-items: center;}
  span.m-search {display: inline-block;line-height: 0;}
  .header-m-top ul li+li {margin-left: 30px;}
  .m-close {position: absolute;top: 30px;background-color: var(--white);height: 52px;width: 52px;border-radius: 50%;display: flex;justify-content: center;align-items: center;right: 20px;cursor: pointer;}
  .header-m-top ul li{line-height: 1;cursor:pointer;}
  .header-menu {padding-top: 15px;}
  .header-navigation .hs-menu-wrapper>ul>li .svg-s svg path {stroke: var(--primary-navy);}

  .mob-logo {display: block;width: calc(100% - 46px);padding: 0 15px;}
  .header-three-col {display: flex;flex-wrap: wrap;justify-content: space-around;align-items: center;}
  .header-first-col {display: none;}
  .bookmark-svg {padding: 0;top: 0;height: auto;}
  a.expandMenu {position: static;}
  .header-third-col {width: 20px;text-align: center;}
  .header-logo {max-width: 85px;margin: 0 auto;line-height:0;}
  .header-sec-col{ width:auto;}


  .header-navigation .hs-menu-wrapper>ul>li>ul {opacity: 1;visibility: visible;padding:0 0 24px;position: static;width: 100%;transition: none;height: auto;display: none;}  
  .header-navigation .hs-menu-wrapper>ul>li>ul>li>a {padding: 0;border: none;font-size: 14px;color: #333;display: inline-block;}
  .header-navigation .hs-menu-wrapper>ul>li>ul>li+li {margin-top: 24px;}
  .header-min {padding: 28px 20px;}
  .header-navigation .hs-menu-wrapper>ul>li .svg-s {width: 40px;height: 40px;display: flex;justify-content: center;flex-wrap: nowrap;
    align-items: center;position: static;}
  .header-navigation .hs-menu-wrapper>ul>li> a {width: calc(100% - 40px);}
.header-navigation .hs-menu-wrapper>ul>li:nth-child(2)>ul>li { width: 100%;  }

}

.bookmark-svg {
	position: relative;
}

.bookmark-svg.active::after {
	content: "0";
	display: block;
	font-size: 10px;
	background: #A21600;
	color: white;
	border-radius: 50%;
	width: 15px;
	height: 15px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	right: 0;
}

@media (max-width: 1080px) {
	.bookmark-svg.active::after {
		top: -8px;
	  right: -8px;
	}
}


/* Additional code */

@media (min-width: 1081px) {
	.body-wrapper {
		overflow-x: hidden;
	}
	
	.global .header-sec-col {
		width: calc(100% - 73px) !important;
	}	
	
	.global .header-navigation .hs-menu-wrapper>ul>li:nth-child(4) {
		margin-left: auto !important;
	}
	
	.global .header-third-col {
		position: absolute;
		top: 0;
		right: -10px;
		width: auto;
	}
	
	.global .search-right {
		padding-left: 15px;
	}
}
/* Menu and simple menu */

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

/* Horizontal menu */

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

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

/* Vertical menu */

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

/* Flyouts */

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

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

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

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

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

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

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

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

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

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

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

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

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

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