/* 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 {
  --gap: 2.127659574%;
}

/* Mobile layout */

.row-fluid {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.row-fluid [class*='span'] {
  min-height: 1px;
  width: 100%;
}

/* Desktop layout */

@media (min-width: 768px) {
  .row-fluid {
    flex-wrap: nowrap;
    justify-content: space-between;
  }

  .row-fluid .span11 {
    width: calc(91.66% - var(--gap));
  }

  .row-fluid .span10 {
    width: calc(83.33% - var(--gap));
  }

  .row-fluid .span9 {
    width: calc(75% - var(--gap));
  }

  .row-fluid .span8 {
    width: calc(66.66% - var(--gap));
  }

  .row-fluid .span7 {
    width: calc(58.33% - var(--gap));
  }

  .row-fluid .span6 {
    width: calc(50% - var(--gap));
  }

  .row-fluid .span5 {
    width: calc(41.66% - var(--gap));
  }

  .row-fluid .span4 {
    width: calc(33.33% - var(--gap));
  }

  .row-fluid .span3 {
    width: calc(25% - var(--gap));
  }

  .row-fluid .span2 {
    width: calc(16.66% - var(--gap));
  }

  .row-fluid .span1 {
    width: calc(8.33% - var(--gap));
  }
}
.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 {
  margin:0
}

* + p {

  padding-top:15px;

}

/* 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 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;
  display: inline-block;
  vertical-align: middle;
  max-width: 100%; 
  height: auto;
}
.link a, a.link {font-size: 14px; text-transform: uppercase; font-weight: 700; display: inline-block; letter-spacing: 1.5px; line-height: 1.57;  transition: all ease 0.3s; color: var(--red); position: relative;}
.link a:hover, a.link:hover { color: var(--red80); }
.link a:before, a.link:before{content: ""; background-color: var(--red80); width: 0; height: 4px; position: absolute; bottom: -3px;  left: 0; z-index: 2; transition: all .3s ease;}
.link a:hover:before, a.link:hover:before{width: 100%;}

.button a , a.button { padding: 16px 22px; background-color: var(--red); color: var(--white); border: 1px solid var(--red); max-width: 100%; display: inline-block; ;
  border-radius: 150px;  overflow: hidden; font-family: inherit; text-align: center; vertical-align: middle; font-size: 14px;  text-transform: uppercase; font-weight: 700; 
  letter-spacing: 1.5px; line-height: 1.57; transition: all .3s ease;}
.button a:hover , a.button:hover{ background-color: var(--red80); border: 1px solid var(--red80);}


.button.secondary a , a.button.secondary { background-color: var(--red90);border-color: var(--red90); }
.button.secondary a:hover , a.button:hover.secondary { background-color: var(--red70);border-color: var(--red70) }
form .input { margin-right:0 !important; }
form fieldset { max-width:inherit !important; margin:0 -10px;  }
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 8px; }
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="number"], input[type="email"], input[type="tel"], select { display: block;border: 1px solid var(--grey20);outline: none;background-color: var(--white);
  font-size: 18px;line-height: 1.44; font-family: inherit; font-weight: 400; color: var(--gray); margin: 0; padding: 15px 16px; width: 100%!important; border-radius: 4px; }
textarea { min-height:110px; }
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:#6b1631;  position:absolute;  left:4px;  top: 0;  font-size:0; width: 24px;  height: 24px;
  display:block; border:1px solid #ccc;  transition:all ease .3s;  -webkit-transition:all ease .3s;  text-align:center;  line-height:14px;  border-radius: 4px;background-position: center center;
  background-repeat: no-repeat;
  background-size: auto; }
form input[type="radio"]:checked+span:before { background: #6b1631; border-color:#6b1631;}
form input[type="checkbox"]:checked+span:before { border-color: #6b1631; font-size:12px;  background-color: #6b1631;  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"] { outline: none;font-family: inherit;padding: 16px 22px;background-color: var(--red90);color: var(--white); font-size: 14px;  line-height: 1.57;font-weight: 700;
  border-radius: 28px;cursor: pointer;-webkit-transition: all .3s ease;-moz-transition: all ease .3s; transition: all .3s ease; text-transform: uppercase;  letter-spacing: 1.5px; border: 1px solid var(--red90);}
input[type="submit"]:hover { background-color: var(--red70);color: var(--white); border-color: var(--red70)}
.hs_error_rollup {
  display: none;
}        
ul {margin: 0;padding: 0;  list-style: none;} {margin: 0;padding: 0;  list-style: none;}
form input[type="radio"] {display: none;}
/* 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 DND sections */

.header-section .content-wrapper {max-width: 1870px; margin: 0 auto;}
.header-fst-cl { width: 180px;}
.header-end-cl { width: 101px;}    
.header-middle-cl { width: calc(100% - 281px);}
.header-three-col { display: flex; align-items: center; justify-content: center;}
.headernavigation .hs-menu-wrapper > ul > li > a { font-size: 14px; letter-spacing: 1.5px; line-height: 1.57; color: var(--black); font-weight: 700;  padding-top: 61px;
  padding-bottom: 61px; display: block;  text-transform: uppercase;}     
.headernavigation .hs-menu-wrapper > ul > li { position: relative;}
.headernavigation .hs-menu-wrapper > ul > li > ul { position: absolute; top: 100%;margin-top: 50px; width: 460px; background-color: var(--white);  z-index: 99;  padding: 15px 20px 20px;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; border-radius: 8px; opacity: 0; visibility: hidden; transition: all ease 0.3s; transform: translateX(-50%); left: 50%; }


/* 
.headernavigation .hs-menu-wrapper > ul > li > ul { position: absolute; top: 0;margin-top: 170px; left: -190px; width: 460px; background-color: var(--white);  z-index: 99;  padding: 15px 20px 20px;
box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px; border-radius: 8px; opacity: 0; visibility: hidden; transition: all ease 0.3s}
*/

.headernavigation .hs-menu-wrapper > ul > li > ul >li> a { font-size: 14px; letter-spacing: 1.5px; line-height: 1.57; color: var(--black); font-weight: 700;  text-transform: uppercase;}
.headernavigation .hs-menu-wrapper > ul > li + li { margin-left: 24px;}

.headernavigation .hs-menu-wrapper > ul > li > a:hover { color: var(--red90);}
.header-regions-l span { padding-right: 8px; line-height: 0;}
.header-regions-l span > svg { width: 20px; height: 20px;}
.header-regions-l a { display: flex; flex-wrap: nowrap; align-items: center; font-size: 14px; line-height: 1.57; color: var(--black);  text-transform: uppercase;  font-weight: 700; letter-spacing: 1.5px;}
.header-regions-l a:hover { color: var(--red90);}
/* .header-regions-l a:hover svg path { fill: var(--red90);} */
.headernavigation .hs-menu-wrapper > ul > li > ul >li +li { padding-top: 10px;}
.headernavigation .hs-menu-wrapper > ul > li:hover  ul { opacity: 1;  visibility: visible; margin-top: 0px;}
.headernavigation .hs-menu-wrapper > ul > li > ul >li> a:hover {color: var(--red90);}
.newPopupBoxSecSearch { position: fixed;top: 0; left: 0; width: 100%; height: 100%; background-color: rgb(0 0 0 / 40%); z-index: 999;display: none; }
.newPopupBoxSecSearch.open { opacity:1; visibility: visible; }
.newPopupBoxTable { display: table; width: 100%; height: 100vh;}
.newPopupBoxTableCell {display: table-cell;vertical-align: middle; padding: 40px 15px;}
.popupBoxSearchBox { max-width: 940px; margin: 0 auto;  background-color: #fff;  position: relative;  border-radius: 35px;  z-index: 2;  padding: 46px 20px;}
a.searchPopClose { position: absolute;right: 32px;top: 23px;z-index: 1;}
a.searchPopClose svg { display: block; width: 20px; height: auto;}
.region-title-s { text-align: center;}
.region-group-s { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; max-width: 680px; margin: 0 auto; padding-top: 40px;}
.region-grp-ss { padding: 10px; }
.region-title-s h4 { margin-bottom: 0;}
.region-link-s a { position: relative; padding-left: 14px;}
/* .region-link-s a:before {  content: ''; background-color: var(--grey10); width: 32px; height: 32px; position: absolute; top: 0;  left: 0;  border-radius: 50%;} */
.region-link-s a:hover { color: var(--black);}
.headernavigation .hs-menu-wrapper > ul {display: flex;flex-wrap: wrap;justify-content: center;    align-items: center;}
.cls-icons , .mobile-sec { display: none; }


header.header {transition: all ease .4s; animation: animates .5s; width: 100%; top: 0; position: fixed; z-index: 99999; left: 0;}
.fixed header.header { box-shadow: 0 0 10px rgb(0 0 0 / 15%); background-color: #fff;}
.fixed header.header .headernavigation .hs-menu-wrapper>ul>li>a { padding-top: 40px; padding-bottom: 40px;}
.header-end-cl {  margin-left: 20px; }


.region-grp-ss {display: flex;flex-wrap: wrap; align-items: center;}
.reg-left-s {  width: 32px;  height: 32px; border-radius: 50%;  background-color: var(--grey10); background-position :center center; background-repeat: no-repeat; background-size: cover; }
.reg-right-s { width: calc(100% - 32px);}

@media (min-width: 768px) {

  .header-middle-cl { display: block !important; overflow: visible !important; }
  a.expandMenu { display: none; }
  .headernavigation .hs-menu-wrapper>ul>li>ul { display: block !important;  }
  .headernavigation .hs-menu-wrapper > ul > li > ul > span { background-color: var(--red90);  height: 4px; position: absolute; top: -4px;  left: 50%; z-index: 2; transition: all ease 0.4s; transform: translateX(-50%); }
  /*   .headernavigation .hs-menu-wrapper > ul > li:hover:before { width: 100%;} */

}

@media (max-width: 1080px) {

  .headernavigation .hs-menu-wrapper>ul>li>ul {left: 70px;}
  .headernavigation .hs-menu-wrapper>ul>li>ul>span {left: 42%;}

}

@media (max-width: 991px) {

  .header-fst-cl {width: 150px;}
  .header-end-cl {width: 90px;}
  .header-middle-cl {width: calc(100% - 240px);}
  .headernavigation .hs-menu-wrapper>ul>li+li {margin-left: 10px;}
  /*   .headernavigation .hs-menu-wrapper>ul>li>ul {left: -40px;} */
  .headernavigation .hs-menu-wrapper>ul>li>ul {left: 140px;}
  .headernavigation .hs-menu-wrapper>ul>li>ul>span {left: 27%;}

}

@media (max-width: 767px) {


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

  a.expandMenu { width: 40px;height: 40px;display: block;cursor: pointer;padding: 3px;position: absolute;top: 50%;right: 16px;border-radius: 50%;transform: translateY(-50%); align-content: center;}
  a.expandMenu i { position: relative; width: 20px;  height: 3px; opacity: 1; display: block; background: var(--black); margin: 3px 0;  transition: all .3s ease;
    -webkit-transition: all .3s ease; -moz-transition: all ease .3s;  left: 8px; top: 10px;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: -8px; 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: var(--black); 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 { position: relative; padding-top: 16px;padding-bottom: 16px;}
  .header-middle-cl {position: fixed;top: 0;left: 0;width: 100%;    height: 100%;z-index: 999; background-color: var(--white);opacity: 0; visibility:hidden; margin-top: 40px; display: block; transition: all ease 0.3s; -webkit-transition: all ease 0.3s } 
  .openMenu .header-middle-cl { margin-top: 0; opacity: 1; visibility: visible }
  .header-three-col { justify-content: space-between; }
  .header-end-cl {width: auto;padding-right: 64px;}
  .headernavigation .hs-menu-wrapper>ul>li>a { padding: 0; display: block;  font-size: 24px; line-height: 1.33;  padding-top: 16px;  padding-bottom: 16px; }
  .headernavigation .hs-menu-wrapper>ul>li { width: 100%; text-align: center;}
  .headernavigation .hs-menu-wrapper>ul>li>ul {position: static; opacity: 1; visibility: visible; width: 100%;  left: 0;  max-width: 100%;  padding: 0;  display: none; box-shadow: none;
    margin:0; transition: none;}
  .headernavigation .hs-menu-wrapper>ul>li + li {border-top: 1px solid var(--grey20);}
  /*   .headernavigation .hs-menu-wrapper>ul>li>ul> li {border-top: 1px solid var(--grey20);} */
  .headernavigation .hs-menu-wrapper>ul>li>ul>li>a {display: block;padding-top: 16px;padding-bottom: 16px;}
  .headernavigation .hs-menu-wrapper>ul>li+li {margin: 0;}
  a.expandMenu {background-color: var(--grey10);}
  .mobile-sec { display: block; }
  .two-cols-s {display: flex;justify-content: space-between;flex-wrap: nowrap; align-items: center; padding: 16px;}
  .col-left-s { width: 140px;}
  .col-right-s { padding-right: 64px;}  
  .closeIconB {position: absolute;top: 16px;right: 16px;background-color: var(--grey10);width: 40px;height: 40px;border-radius: 50%;display: flex;align-items: center;    justify-content: center;
    flex-wrap: nowrap;cursor: pointer; }
  .closeIconB svg {width: 16px;height: auto; }
  .cls-icons { display: block; }
  .headernavigation .hs-menu-wrapper>ul>li:hover ul {margin: 0;padding: 0 24px;}
  .headernavigation .hs-menu-wrapper>ul>li ul {padding: 0 24px;}
  /*   .headernavigation .hs-menu-wrapper>ul>li:first-child>a {border-bottom: 1px solid var(--grey20);} */
  .headernavigation .hs-menu-wrapper>ul>li:first-child.open > a {border-bottom: 1px solid var(--grey20);}
  .headernavigation .hs-menu-wrapper>ul>li>ul>li + li {border-top: 1px solid var(--grey20); }
  .headernavigation .hs-menu-wrapper>ul>li>ul>li:first-child {border-top: transparent;}
  .header-logo {width: 140px;max-width: 100%; }
  .headernavigation .hs-menu-wrapper>ul>li>a {text-transform: none; }

  .region-grp-ss {width: 100%;padding-left: 0;padding-right: 0; }
  .region-grp-ss + .region-grp-ss {padding-top: 30px;padding-left: 0;padding-right: 0; }
  .popupBoxSearchBox {padding: 40px 25px;}
  /*   .region-link-s a:before {width: 22px;height: 22px;} */

  .reg-left-s {height: 28px;width: 28px; }
  .region-link-s a {padding-left: 14px;}
  .fixed header.header .headernavigation .hs-menu-wrapper>ul>li>a { padding: 16px 0;   }
  .headernavigation .hs-menu-wrapper>ul>li>ul { transform: none; }



}     

@media (max-width: 375px) {

  .header-fst-cl {width: 105px;}
  .col-left-s {width: 105px;}

}

/* ----------------------  footer ----------------- */

.footer-section {padding: 48px 0;border-top:1px solid var(--grey20)}
.footer-nav .hs-menu-wrapper > ul { display: flex; flex-wrap: wrap;  justify-content: center;  align-items: center;}
.footer-nav .hs-menu-wrapper > ul > li > a { font-size: 18px; line-height: 1.44;  color: var(--black);}
.footer-nav .hs-menu-wrapper > ul > li + li { padding-left: 40px;}
.f-copyright {font-size: 18px;line-height: 1.44;}
.footer-nav .hs-menu-wrapper > ul > li > a:hover { color: var(--red90);}

@media (max-width: 1080px) {

  .footer-nav .hs-menu-wrapper>ul>li+li {padding-left: 20px;}

}

@media (max-width: 767px) {

  .footer-left , .footer-right {width: 100%;}
  .footer-section {text-align: center;padding-top: 24px;padding-bottom: 42px;}
  .footer-nav .hs-menu-wrapper>ul>li>a {font-size: 16px;line-height: 1.75;}
  .footer-nav .hs-menu-wrapper>ul>li+li {padding-left: 0;padding-top: 16px;}  
  .footer-right {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%;
}

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